1// Copyright (C) 2021 The Qt Company Ltd.
2// Copyright (C) 2013 John Layt <jlayt@kde.org>
3// Copyright © 2004-2023 Unicode, Inc.
4// SPDX-License-Identifier: Unicode-3.0
5
6#ifndef QTIMEZONEPRIVATE_DATA_P_H
7#define QTIMEZONEPRIVATE_DATA_P_H
8
9//
10// W A R N I N G
11// -------------
12//
13// This file is not a normal header file.
14// It defines data tables for internal use by QTimeZone's L10n code.
15// It may change incompatibly between versions, or even be removed.
16//
17// We mean it.
18//
19
20QT_REQUIRE_CONFIG(timezone);
21QT_BEGIN_NAMESPACE
22
23namespace QtTimeZoneCldr {
24/*
25 Recognized UTC-offset zones and CLDR-derived data on timezone IDs.
26
27 The UTC-offset zone table is provided for generic UTC±HH:mm format time
28 zones. The UTC backend can support arbitrary offsets in seconds, but only
29 advertises a limited repertoire of offsets as "available" in the normal
30 sense.
31
32 Windows Zone ID support is included in the default base class, QTZP, so can
33 be used on all platforms, since an app running on Linux may need to
34 communicate with a Windows Outlook server. These tables can also be used to
35 look up Region Codes and UTC Offsets on platforms whose backends don't
36 directly support them. For example, Darwin does not support
37 availableTimeZones() filtering by region or offset. This table is
38 auto-generated from the CLDR supplemental/windowsZones.xml data file, with
39 IDs converted from CLDR-stable to IANA-current using bcp47/timezone.xml
40 data.
41
42 Please do not edit this data directly. See the generated section for details
43 of its last update and how to update it.
44*/
45
46struct AliasData
47{
48 // Table is sorted on aliasId(), then on ianaId().
49 // These are both indices into the IANA table.
50 quint16 aliasIdIndex;
51 quint16 ianaIdIndex;
52 // Values for the actual IDs:
53 constexpr QByteArrayView aliasId() const;
54 constexpr QByteArrayView ianaId() const;
55};
56
57struct ZoneData
58{
59 // Keys (table is sorted in Windows ID, then on territory enum value):
60 quint16 windowsIdKey; // Windows ID sequence number
61 quint16 territory; // QLocale::Territory, AnyTerritory means No Territory
62 // Values for this Windows zone and territory:
63 quint16 ianaIdIndex; // Index in ianaListData of space-joined IANA IDs
64 constexpr QLatin1StringView id() const; // Space-joined list of IANA IDs
65 constexpr auto ids() const { return id().tokenize(needle: u' '); } // Iterate IANA IDs
66};
67
68struct WindowsData
69{
70 // Table is sorted on key and this puts the windowsId()s in ascending order.
71 quint16 windowsIdKey; // Windows ID sequence number
72 quint16 windowsIdIndex; // Index of Windows ID in windowsIdData
73 // Values for this Windows zone:
74 quint16 ianaIdIndex; // Index in ianaIdData of single IANA ID
75 qint32 offsetFromUtc; // Standard Time Offset from UTC, used for quick look-ups
76 constexpr QByteArrayView windowsId() const;
77 constexpr QByteArrayView ianaId() const; // Single IANA ID
78};
79
80struct UtcData
81{
82 quint16 ianaIdIndex; // Index in ianaListData of space-joined IANA IDs
83 qint32 offsetFromUtc; // Offset form UTC in seconds
84 constexpr QByteArrayView id() const; // Space-joined list of IANA IDs
85};
86
87#if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu)
88/* Data comes from CldrAccess::readMetaZoneMap(alias) */
89
90struct TerritoryZone
91{
92 // Table is sorted by territory (should have no duplicates)
93 quint16 territory; // QLocale::Territory value
94 quint16 ianaIdIndex; // Index in alias table
95 constexpr QByteArrayView ianaId() const;
96};
97
98struct MetaZoneData
99{
100 // Table is sorted by metazone key and name (monotonic in each other), then territory:
101 quint16 metaZoneKey; // Index from 1 to number of metazones
102 quint16 metaIdIndex; // Index in metazone ID data
103 quint16 territory; // QLocale::Territory value
104 quint16 ianaIdIndex; // Index in alias table
105 constexpr QByteArrayView ianaId() const;
106 constexpr QByteArrayView metaZoneId() const;
107};
108
109struct ZoneMetaHistory
110{
111 // Table is sorted on ianaId then, among those with same ianaId,
112 // earlier end <= begin < end <= later begin.
113 quint16 ianaIdIndex; // Index in alias table
114 quint16 metaZoneKey; // See MetaZoneData
115 // quint32 epoch minutes, with 0xffffffff +inf and 0xfffffffe reserved.
116 quint32 begin; // zone is in metazone from this datetime
117 quint32 end; // zone is no longer in metazone from this datetime
118 constexpr QByteArrayView ianaId() const;
119};
120#endif // timezone_locale but not ICU
121
122// GENERATED PART STARTS HERE
123
124/*
125 This part of the file was generated on 2025-06-17 from the
126 Common Locale Data Repository v47
127
128 http://www.unicode.org/cldr/
129
130 Do not edit this section: instead regenerate it using
131 cldr2qlocalexml.py and qlocalexml2cpp.py on updated (or
132 edited) CLDR data; see qtbase/util/locale_database/.
133*/
134
135// IANA ID indices of alias and IANA ID
136static inline constexpr AliasData aliasMappingTable[] = {
137 { .aliasIdIndex: 0, .ianaIdIndex: 14 }, // Africa/Asmera -> Africa/Asmara
138 { .aliasIdIndex: 28, .ianaIdIndex: 44 }, // Africa/Timbuktu -> Africa/Bamako
139 { .aliasIdIndex: 58, .ianaIdIndex: 91 }, // America/Argentina/ComodRivadavia -> America/Argentina/Catamarca
140 { .aliasIdIndex: 119, .ianaIdIndex: 132 }, // America/Atka -> America/Adak
141 { .aliasIdIndex: 145, .ianaIdIndex: 166 }, // America/Buenos_Aires -> America/Argentina/Buenos_Aires
142 { .aliasIdIndex: 197, .ianaIdIndex: 91 }, // America/Catamarca -> America/Argentina/Catamarca
143 { .aliasIdIndex: 215, .ianaIdIndex: 237 }, // America/Coral_Harbour -> America/Atikokan
144 { .aliasIdIndex: 254, .ianaIdIndex: 270 }, // America/Cordoba -> America/Argentina/Cordoba
145 { .aliasIdIndex: 296, .ianaIdIndex: 313 }, // America/Ensenada -> America/Tijuana
146 { .aliasIdIndex: 329, .ianaIdIndex: 348 }, // America/Fort_Wayne -> America/Indiana/Indianapolis
147 { .aliasIdIndex: 377, .ianaIdIndex: 393 }, // America/Godthab -> America/Nuuk
148 { .aliasIdIndex: 406, .ianaIdIndex: 348 }, // America/Indianapolis -> America/Indiana/Indianapolis
149 { .aliasIdIndex: 427, .ianaIdIndex: 441 }, // America/Jujuy -> America/Argentina/Jujuy
150 { .aliasIdIndex: 465, .ianaIdIndex: 481 }, // America/Knox_IN -> America/Indiana/Knox
151 { .aliasIdIndex: 502, .ianaIdIndex: 521 }, // America/Louisville -> America/Kentucky/Louisville
152 { .aliasIdIndex: 549, .ianaIdIndex: 565 }, // America/Mendoza -> America/Argentina/Mendoza
153 { .aliasIdIndex: 591, .ianaIdIndex: 608 }, // America/Montreal -> America/Toronto
154 { .aliasIdIndex: 624, .ianaIdIndex: 608 }, // America/Nipigon -> America/Toronto
155 { .aliasIdIndex: 640, .ianaIdIndex: 660 }, // America/Pangnirtung -> America/Iqaluit
156 { .aliasIdIndex: 676, .ianaIdIndex: 695 }, // America/Porto_Acre -> America/Rio_Branco
157 { .aliasIdIndex: 714, .ianaIdIndex: 734 }, // America/Rainy_River -> America/Winnipeg
158 { .aliasIdIndex: 751, .ianaIdIndex: 270 }, // America/Rosario -> America/Argentina/Cordoba
159 { .aliasIdIndex: 767, .ianaIdIndex: 313 }, // America/Santa_Isabel -> America/Tijuana
160 { .aliasIdIndex: 788, .ianaIdIndex: 805 }, // America/Shiprock -> America/Denver
161 { .aliasIdIndex: 820, .ianaIdIndex: 608 }, // America/Thunder_Bay -> America/Toronto
162 { .aliasIdIndex: 840, .ianaIdIndex: 855 }, // America/Virgin -> America/St_Thomas
163 { .aliasIdIndex: 873, .ianaIdIndex: 893 }, // America/Yellowknife -> America/Edmonton
164 { .aliasIdIndex: 910, .ianaIdIndex: 932 }, // Antarctica/South_Pole -> Pacific/Auckland
165 { .aliasIdIndex: 949, .ianaIdIndex: 964 }, // Asia/Ashkhabad -> Asia/Ashgabat
166 { .aliasIdIndex: 978, .ianaIdIndex: 992 }, // Asia/Calcutta -> Asia/Kolkata
167 { .aliasIdIndex: 1005, .ianaIdIndex: 1021 }, // Asia/Choibalsan -> Asia/Ulaanbaatar
168 { .aliasIdIndex: 1038, .ianaIdIndex: 1053 }, // Asia/Chongqing -> Asia/Shanghai
169 { .aliasIdIndex: 1067, .ianaIdIndex: 1053 }, // Asia/Chungking -> Asia/Shanghai
170 { .aliasIdIndex: 1082, .ianaIdIndex: 1093 }, // Asia/Dacca -> Asia/Dhaka
171 { .aliasIdIndex: 1104, .ianaIdIndex: 1053 }, // Asia/Harbin -> Asia/Shanghai
172 { .aliasIdIndex: 1116, .ianaIdIndex: 1130 }, // Asia/Istanbul -> Europe/Istanbul
173 { .aliasIdIndex: 1146, .ianaIdIndex: 1159 }, // Asia/Kashgar -> Asia/Urumqi
174 { .aliasIdIndex: 1171, .ianaIdIndex: 1185 }, // Asia/Katmandu -> Asia/Kathmandu
175 { .aliasIdIndex: 1200, .ianaIdIndex: 1211 }, // Asia/Macao -> Asia/Macau
176 { .aliasIdIndex: 1222, .ianaIdIndex: 1235 }, // Asia/Rangoon -> Asia/Yangon
177 { .aliasIdIndex: 1247, .ianaIdIndex: 1259 }, // Asia/Saigon -> Asia/Ho_Chi_Minh
178 { .aliasIdIndex: 1276, .ianaIdIndex: 1290 }, // Asia/Tel_Aviv -> Asia/Jerusalem
179 { .aliasIdIndex: 1305, .ianaIdIndex: 1317 }, // Asia/Thimbu -> Asia/Thimphu
180 { .aliasIdIndex: 1330, .ianaIdIndex: 1349 }, // Asia/Ujung_Pandang -> Asia/Makassar
181 { .aliasIdIndex: 1363, .ianaIdIndex: 1021 }, // Asia/Ulan_Bator -> Asia/Ulaanbaatar
182 { .aliasIdIndex: 1379, .ianaIdIndex: 1395 }, // Atlantic/Faeroe -> Atlantic/Faroe
183 { .aliasIdIndex: 1410, .ianaIdIndex: 1429 }, // Atlantic/Jan_Mayen -> Arctic/Longyearbyen
184 { .aliasIdIndex: 1449, .ianaIdIndex: 1463 }, // Australia/ACT -> Australia/Sydney
185 { .aliasIdIndex: 1480, .ianaIdIndex: 1463 }, // Australia/Canberra -> Australia/Sydney
186 { .aliasIdIndex: 1499, .ianaIdIndex: 1516 }, // Australia/Currie -> Australia/Hobart
187 { .aliasIdIndex: 1533, .ianaIdIndex: 1547 }, // Australia/LHI -> Australia/Lord_Howe
188 { .aliasIdIndex: 1567, .ianaIdIndex: 1583 }, // Australia/North -> Australia/Darwin
189 { .aliasIdIndex: 1600, .ianaIdIndex: 1463 }, // Australia/NSW -> Australia/Sydney
190 { .aliasIdIndex: 1614, .ianaIdIndex: 1635 }, // Australia/Queensland -> Australia/Brisbane
191 { .aliasIdIndex: 1654, .ianaIdIndex: 1670 }, // Australia/South -> Australia/Adelaide
192 { .aliasIdIndex: 1689, .ianaIdIndex: 1516 }, // Australia/Tasmania -> Australia/Hobart
193 { .aliasIdIndex: 1708, .ianaIdIndex: 1727 }, // Australia/Victoria -> Australia/Melbourne
194 { .aliasIdIndex: 1747, .ianaIdIndex: 1762 }, // Australia/West -> Australia/Perth
195 { .aliasIdIndex: 1778, .ianaIdIndex: 1799 }, // Australia/Yancowinna -> Australia/Broken_Hill
196 { .aliasIdIndex: 1821, .ianaIdIndex: 695 }, // Brazil/Acre -> America/Rio_Branco
197 { .aliasIdIndex: 1833, .ianaIdIndex: 1850 }, // Brazil/DeNoronha -> America/Noronha
198 { .aliasIdIndex: 1866, .ianaIdIndex: 1878 }, // Brazil/East -> America/Sao_Paulo
199 { .aliasIdIndex: 1896, .ianaIdIndex: 1908 }, // Brazil/West -> America/Manaus
200 { .aliasIdIndex: 1923, .ianaIdIndex: 1939 }, // Canada/Atlantic -> America/Halifax
201 { .aliasIdIndex: 1955, .ianaIdIndex: 734 }, // Canada/Central -> America/Winnipeg
202 { .aliasIdIndex: 1970, .ianaIdIndex: 1995 }, // Canada/East-Saskatchewan -> America/Regina
203 { .aliasIdIndex: 2010, .ianaIdIndex: 608 }, // Canada/Eastern -> America/Toronto
204 { .aliasIdIndex: 2025, .ianaIdIndex: 893 }, // Canada/Mountain -> America/Edmonton
205 { .aliasIdIndex: 2041, .ianaIdIndex: 2061 }, // Canada/Newfoundland -> America/St_Johns
206 { .aliasIdIndex: 2078, .ianaIdIndex: 2093 }, // Canada/Pacific -> America/Vancouver
207 { .aliasIdIndex: 2111, .ianaIdIndex: 1995 }, // Canada/Saskatchewan -> America/Regina
208 { .aliasIdIndex: 2131, .ianaIdIndex: 2144 }, // Canada/Yukon -> America/Whitehorse
209 { .aliasIdIndex: 2163, .ianaIdIndex: 2167 }, // CET -> Europe/Brussels
210 { .aliasIdIndex: 2183, .ianaIdIndex: 2201 }, // Chile/Continental -> America/Santiago
211 { .aliasIdIndex: 2218, .ianaIdIndex: 2237 }, // Chile/EasterIsland -> Pacific/Easter
212 { .aliasIdIndex: 2252, .ianaIdIndex: 2260 }, // CST6CDT -> America/Chicago
213 { .aliasIdIndex: 2276, .ianaIdIndex: 2281 }, // Cuba -> America/Havana
214 { .aliasIdIndex: 2296, .ianaIdIndex: 2300 }, // EET -> Europe/Athens
215 { .aliasIdIndex: 2314, .ianaIdIndex: 2320 }, // Egypt -> Africa/Cairo
216 { .aliasIdIndex: 2333, .ianaIdIndex: 2338 }, // Eire -> Europe/Dublin
217 { .aliasIdIndex: 2352, .ianaIdIndex: 2356 }, // EST -> America/Panama
218 { .aliasIdIndex: 2371, .ianaIdIndex: 2379 }, // EST5EDT -> America/New_York
219 { .aliasIdIndex: 2396, .ianaIdIndex: 2406 }, // Etc/GMT+0 -> Etc/GMT
220 { .aliasIdIndex: 2414, .ianaIdIndex: 2406 }, // Etc/GMT-0 -> Etc/GMT
221 { .aliasIdIndex: 2424, .ianaIdIndex: 2406 }, // Etc/GMT0 -> Etc/GMT
222 { .aliasIdIndex: 2433, .ianaIdIndex: 2406 }, // Etc/Greenwich -> Etc/GMT
223 { .aliasIdIndex: 2447, .ianaIdIndex: 2455 }, // Etc/UCT -> Etc/UTC
224 { .aliasIdIndex: 2463, .ianaIdIndex: 2455 }, // Etc/Universal -> Etc/UTC
225 { .aliasIdIndex: 2477, .ianaIdIndex: 2455 }, // Etc/Zulu -> Etc/UTC
226 { .aliasIdIndex: 2486, .ianaIdIndex: 2501 }, // Europe/Belfast -> Europe/London
227 { .aliasIdIndex: 2515, .ianaIdIndex: 2527 }, // Europe/Kiev -> Europe/Kyiv
228 { .aliasIdIndex: 2539, .ianaIdIndex: 2554 }, // Europe/Nicosia -> Asia/Nicosia
229 { .aliasIdIndex: 2567, .ianaIdIndex: 2583 }, // Europe/Tiraspol -> Europe/Chisinau
230 { .aliasIdIndex: 2599, .ianaIdIndex: 2527 }, // Europe/Uzhgorod -> Europe/Kyiv
231 { .aliasIdIndex: 2615, .ianaIdIndex: 2527 }, // Europe/Zaporozhye -> Europe/Kyiv
232 { .aliasIdIndex: 2633, .ianaIdIndex: 2641 }, // Factory -> Etc/Unknown
233 { .aliasIdIndex: 2653, .ianaIdIndex: 2501 }, // GB -> Europe/London
234 { .aliasIdIndex: 2656, .ianaIdIndex: 2501 }, // GB-Eire -> Europe/London
235 { .aliasIdIndex: 2664, .ianaIdIndex: 2406 }, // GMT -> Etc/GMT
236 { .aliasIdIndex: 2668, .ianaIdIndex: 2406 }, // GMT+0 -> Etc/GMT
237 { .aliasIdIndex: 2674, .ianaIdIndex: 2406 }, // GMT-0 -> Etc/GMT
238 { .aliasIdIndex: 2680, .ianaIdIndex: 2406 }, // GMT0 -> Etc/GMT
239 { .aliasIdIndex: 2685, .ianaIdIndex: 2406 }, // Greenwich -> Etc/GMT
240 { .aliasIdIndex: 2695, .ianaIdIndex: 2704 }, // Hongkong -> Asia/Hong_Kong
241 { .aliasIdIndex: 2719, .ianaIdIndex: 2723 }, // HST -> Pacific/Honolulu
242 { .aliasIdIndex: 2740, .ianaIdIndex: 2748 }, // Iceland -> Atlantic/Reykjavik
243 { .aliasIdIndex: 2767, .ianaIdIndex: 2772 }, // Iran -> Asia/Tehran
244 { .aliasIdIndex: 2784, .ianaIdIndex: 1290 }, // Israel -> Asia/Jerusalem
245 { .aliasIdIndex: 2791, .ianaIdIndex: 2799 }, // Jamaica -> America/Jamaica
246 { .aliasIdIndex: 2815, .ianaIdIndex: 2821 }, // Japan -> Asia/Tokyo
247 { .aliasIdIndex: 2832, .ianaIdIndex: 2842 }, // Kwajalein -> Pacific/Kwajalein
248 { .aliasIdIndex: 2860, .ianaIdIndex: 2866 }, // Libya -> Africa/Tripoli
249 { .aliasIdIndex: 2881, .ianaIdIndex: 2167 }, // MET -> Europe/Brussels
250 { .aliasIdIndex: 2885, .ianaIdIndex: 313 }, // Mexico/BajaNorte -> America/Tijuana
251 { .aliasIdIndex: 2902, .ianaIdIndex: 2917 }, // Mexico/BajaSur -> America/Mazatlan
252 { .aliasIdIndex: 2934, .ianaIdIndex: 2949 }, // Mexico/General -> America/Mexico_City
253 { .aliasIdIndex: 2969, .ianaIdIndex: 2973 }, // MST -> America/Phoenix
254 { .aliasIdIndex: 2989, .ianaIdIndex: 805 }, // MST7MDT -> America/Denver
255 { .aliasIdIndex: 2997, .ianaIdIndex: 805 }, // Navajo -> America/Denver
256 { .aliasIdIndex: 3004, .ianaIdIndex: 932 }, // NZ -> Pacific/Auckland
257 { .aliasIdIndex: 3007, .ianaIdIndex: 3015 }, // NZ-CHAT -> Pacific/Chatham
258 { .aliasIdIndex: 3031, .ianaIdIndex: 3049 }, // Pacific/Enderbury -> Pacific/Kanton
259 { .aliasIdIndex: 3064, .ianaIdIndex: 2723 }, // Pacific/Johnston -> Pacific/Honolulu
260 { .aliasIdIndex: 3081, .ianaIdIndex: 3096 }, // Pacific/Ponape -> Pacific/Pohnpei
261 { .aliasIdIndex: 3112, .ianaIdIndex: 3126 }, // Pacific/Samoa -> Pacific/Pago_Pago
262 { .aliasIdIndex: 3144, .ianaIdIndex: 3157 }, // Pacific/Truk -> Pacific/Chuuk
263 { .aliasIdIndex: 3171, .ianaIdIndex: 3157 }, // Pacific/Yap -> Pacific/Chuuk
264 { .aliasIdIndex: 3183, .ianaIdIndex: 3190 }, // Poland -> Europe/Warsaw
265 { .aliasIdIndex: 3204, .ianaIdIndex: 3213 }, // Portugal -> Europe/Lisbon
266 { .aliasIdIndex: 3227, .ianaIdIndex: 1053 }, // PRC -> Asia/Shanghai
267 { .aliasIdIndex: 3231, .ianaIdIndex: 3239 }, // PST8PDT -> America/Los_Angeles
268 { .aliasIdIndex: 3259, .ianaIdIndex: 3263 }, // ROC -> Asia/Taipei
269 { .aliasIdIndex: 3275, .ianaIdIndex: 3279 }, // ROK -> Asia/Seoul
270 { .aliasIdIndex: 3290, .ianaIdIndex: 3300 }, // Singapore -> Asia/Singapore
271 { .aliasIdIndex: 3315, .ianaIdIndex: 1130 }, // Turkey -> Europe/Istanbul
272 { .aliasIdIndex: 3322, .ianaIdIndex: 2455 }, // UCT -> Etc/UTC
273 { .aliasIdIndex: 3326, .ianaIdIndex: 2455 }, // Universal -> Etc/UTC
274 { .aliasIdIndex: 3336, .ianaIdIndex: 3346 }, // US/Alaska -> America/Anchorage
275 { .aliasIdIndex: 3364, .ianaIdIndex: 132 }, // US/Aleutian -> America/Adak
276 { .aliasIdIndex: 3376, .ianaIdIndex: 2973 }, // US/Arizona -> America/Phoenix
277 { .aliasIdIndex: 3387, .ianaIdIndex: 2260 }, // US/Central -> America/Chicago
278 { .aliasIdIndex: 3398, .ianaIdIndex: 348 }, // US/East-Indiana -> America/Indiana/Indianapolis
279 { .aliasIdIndex: 3414, .ianaIdIndex: 2379 }, // US/Eastern -> America/New_York
280 { .aliasIdIndex: 3425, .ianaIdIndex: 2723 }, // US/Hawaii -> Pacific/Honolulu
281 { .aliasIdIndex: 3435, .ianaIdIndex: 481 }, // US/Indiana-Starke -> America/Indiana/Knox
282 { .aliasIdIndex: 3453, .ianaIdIndex: 3465 }, // US/Michigan -> America/Detroit
283 { .aliasIdIndex: 3481, .ianaIdIndex: 805 }, // US/Mountain -> America/Denver
284 { .aliasIdIndex: 3493, .ianaIdIndex: 3239 }, // US/Pacific -> America/Los_Angeles
285 { .aliasIdIndex: 3504, .ianaIdIndex: 3239 }, // US/Pacific-New -> America/Los_Angeles
286 { .aliasIdIndex: 3519, .ianaIdIndex: 3126 }, // US/Samoa -> Pacific/Pago_Pago
287 { .aliasIdIndex: 3528, .ianaIdIndex: 2455 }, // UTC -> Etc/UTC
288 { .aliasIdIndex: 3532, .ianaIdIndex: 3537 }, // W-SU -> Europe/Moscow
289 { .aliasIdIndex: 3551, .ianaIdIndex: 3213 }, // WET -> Europe/Lisbon
290 { .aliasIdIndex: 3555, .ianaIdIndex: 2455 }, // Zulu -> Etc/UTC
291};
292
293// Windows ID Key, Territory Enum, IANA List Index
294static inline constexpr ZoneData zoneDataTable[] = {
295 { .windowsIdKey: 1, .territory: 1, .ianaIdIndex: 0 }, // Afghanistan Standard Time / Afghanistan
296 { .windowsIdKey: 2, .territory: 248, .ianaIdIndex: 11 }, // Alaskan Standard Time / United States
297 { .windowsIdKey: 3, .territory: 248, .ianaIdIndex: 106 }, // Aleutian Standard Time / United States
298 { .windowsIdKey: 4, .territory: 193, .ianaIdIndex: 119 }, // Altai Standard Time / Russia
299 { .windowsIdKey: 5, .territory: 19, .ianaIdIndex: 132 }, // Arab Standard Time / Bahrain
300 { .windowsIdKey: 5, .territory: 127, .ianaIdIndex: 145 }, // Arab Standard Time / Kuwait
301 { .windowsIdKey: 5, .territory: 190, .ianaIdIndex: 157 }, // Arab Standard Time / Qatar
302 { .windowsIdKey: 5, .territory: 205, .ianaIdIndex: 168 }, // Arab Standard Time / Saudi Arabia
303 { .windowsIdKey: 5, .territory: 259, .ianaIdIndex: 180 }, // Arab Standard Time / Yemen
304 { .windowsIdKey: 6, .territory: 0, .ianaIdIndex: 190 }, // Arabian Standard Time / AnyTerritory
305 { .windowsIdKey: 6, .territory: 176, .ianaIdIndex: 200 }, // Arabian Standard Time / Oman
306 { .windowsIdKey: 6, .territory: 245, .ianaIdIndex: 212 }, // Arabian Standard Time / United Arab Emirates
307 { .windowsIdKey: 7, .territory: 113, .ianaIdIndex: 223 }, // Arabic Standard Time / Iraq
308 { .windowsIdKey: 8, .territory: 11, .ianaIdIndex: 236 }, // Argentina Standard Time / Argentina
309 { .windowsIdKey: 9, .territory: 193, .ianaIdIndex: 559 }, // Astrakhan Standard Time / Russia
310 { .windowsIdKey: 10, .territory: 26, .ianaIdIndex: 593 }, // Atlantic Standard Time / Bermuda
311 { .windowsIdKey: 10, .territory: 41, .ianaIdIndex: 610 }, // Atlantic Standard Time / Canada
312 { .windowsIdKey: 10, .territory: 95, .ianaIdIndex: 678 }, // Atlantic Standard Time / Greenland
313 { .windowsIdKey: 11, .territory: 15, .ianaIdIndex: 692 }, // AUS Central Standard Time / Australia
314 { .windowsIdKey: 12, .territory: 15, .ianaIdIndex: 709 }, // Aus Central W. Standard Time / Australia
315 { .windowsIdKey: 13, .territory: 15, .ianaIdIndex: 725 }, // AUS Eastern Standard Time / Australia
316 { .windowsIdKey: 14, .territory: 17, .ianaIdIndex: 762 }, // Azerbaijan Standard Time / Azerbaijan
317 { .windowsIdKey: 15, .territory: 95, .ianaIdIndex: 772 }, // Azores Standard Time / Greenland
318 { .windowsIdKey: 15, .territory: 188, .ianaIdIndex: 793 }, // Azores Standard Time / Portugal
319 { .windowsIdKey: 16, .territory: 32, .ianaIdIndex: 809 }, // Bahia Standard Time / Brazil
320 { .windowsIdKey: 17, .territory: 20, .ianaIdIndex: 823 }, // Bangladesh Standard Time / Bangladesh
321 { .windowsIdKey: 17, .territory: 27, .ianaIdIndex: 834 }, // Bangladesh Standard Time / Bhutan
322 { .windowsIdKey: 18, .territory: 22, .ianaIdIndex: 847 }, // Belarus Standard Time / Belarus
323 { .windowsIdKey: 19, .territory: 182, .ianaIdIndex: 860 }, // Bougainville Standard Time / Papua New Guinea
324 { .windowsIdKey: 20, .territory: 41, .ianaIdIndex: 881 }, // Canada Central Standard Time / Canada
325 { .windowsIdKey: 21, .territory: 0, .ianaIdIndex: 918 }, // Cape Verde Standard Time / AnyTerritory
326 { .windowsIdKey: 21, .territory: 43, .ianaIdIndex: 928 }, // Cape Verde Standard Time / Cape Verde
327 { .windowsIdKey: 22, .territory: 12, .ianaIdIndex: 948 }, // Caucasus Standard Time / Armenia
328 { .windowsIdKey: 23, .territory: 15, .ianaIdIndex: 961 }, // Cen. Australia Standard Time / Australia
329 { .windowsIdKey: 24, .territory: 0, .ianaIdIndex: 1002 }, // Central America Standard Time / AnyTerritory
330 { .windowsIdKey: 24, .territory: 24, .ianaIdIndex: 1012 }, // Central America Standard Time / Belize
331 { .windowsIdKey: 24, .territory: 59, .ianaIdIndex: 1027 }, // Central America Standard Time / Costa Rica
332 { .windowsIdKey: 24, .territory: 70, .ianaIdIndex: 1046 }, // Central America Standard Time / Ecuador
333 { .windowsIdKey: 24, .territory: 72, .ianaIdIndex: 1064 }, // Central America Standard Time / El Salvador
334 { .windowsIdKey: 24, .territory: 99, .ianaIdIndex: 1084 }, // Central America Standard Time / Guatemala
335 { .windowsIdKey: 24, .territory: 106, .ianaIdIndex: 1102 }, // Central America Standard Time / Honduras
336 { .windowsIdKey: 24, .territory: 168, .ianaIdIndex: 1122 }, // Central America Standard Time / Nicaragua
337 { .windowsIdKey: 25, .territory: 0, .ianaIdIndex: 1138 }, // Central Asia Standard Time / AnyTerritory
338 { .windowsIdKey: 25, .territory: 9, .ianaIdIndex: 1148 }, // Central Asia Standard Time / Antarctica
339 { .windowsIdKey: 25, .territory: 33, .ianaIdIndex: 1166 }, // Central Asia Standard Time / British Indian Ocean Territory
340 { .windowsIdKey: 25, .territory: 50, .ianaIdIndex: 1180 }, // Central Asia Standard Time / China
341 { .windowsIdKey: 25, .territory: 128, .ianaIdIndex: 1192 }, // Central Asia Standard Time / Kyrgyzstan
342 { .windowsIdKey: 26, .territory: 32, .ianaIdIndex: 1205 }, // Central Brazilian Standard Time / Brazil
343 { .windowsIdKey: 27, .territory: 3, .ianaIdIndex: 1241 }, // Central Europe Standard Time / Albania
344 { .windowsIdKey: 27, .territory: 64, .ianaIdIndex: 1255 }, // Central Europe Standard Time / Czechia
345 { .windowsIdKey: 27, .territory: 108, .ianaIdIndex: 1269 }, // Central Europe Standard Time / Hungary
346 { .windowsIdKey: 27, .territory: 157, .ianaIdIndex: 1285 }, // Central Europe Standard Time / Montenegro
347 { .windowsIdKey: 27, .territory: 207, .ianaIdIndex: 1302 }, // Central Europe Standard Time / Serbia
348 { .windowsIdKey: 27, .territory: 212, .ianaIdIndex: 1318 }, // Central Europe Standard Time / Slovakia
349 { .windowsIdKey: 27, .territory: 213, .ianaIdIndex: 1336 }, // Central Europe Standard Time / Slovenia
350 { .windowsIdKey: 28, .territory: 29, .ianaIdIndex: 1353 }, // Central European Standard Time / Bosnia and Herzegovina
351 { .windowsIdKey: 28, .territory: 60, .ianaIdIndex: 1369 }, // Central European Standard Time / Croatia
352 { .windowsIdKey: 28, .territory: 140, .ianaIdIndex: 1383 }, // Central European Standard Time / Macedonia
353 { .windowsIdKey: 28, .territory: 187, .ianaIdIndex: 1397 }, // Central European Standard Time / Poland
354 { .windowsIdKey: 29, .territory: 0, .ianaIdIndex: 1411 }, // Central Pacific Standard Time / AnyTerritory
355 { .windowsIdKey: 29, .territory: 9, .ianaIdIndex: 1422 }, // Central Pacific Standard Time / Antarctica
356 { .windowsIdKey: 29, .territory: 153, .ianaIdIndex: 1439 }, // Central Pacific Standard Time / Micronesia
357 { .windowsIdKey: 29, .territory: 166, .ianaIdIndex: 1470 }, // Central Pacific Standard Time / New Caledonia
358 { .windowsIdKey: 29, .territory: 214, .ianaIdIndex: 1485 }, // Central Pacific Standard Time / Solomon Islands
359 { .windowsIdKey: 29, .territory: 252, .ianaIdIndex: 1505 }, // Central Pacific Standard Time / Vanuatu
360 { .windowsIdKey: 30, .territory: 41, .ianaIdIndex: 1519 }, // Central Standard Time / Canada
361 { .windowsIdKey: 30, .territory: 152, .ianaIdIndex: 1574 }, // Central Standard Time / Mexico
362 { .windowsIdKey: 30, .territory: 248, .ianaIdIndex: 1608 }, // Central Standard Time / United States
363 { .windowsIdKey: 31, .territory: 152, .ianaIdIndex: 1776 }, // Central Standard Time (Mexico) / Mexico
364 { .windowsIdKey: 32, .territory: 167, .ianaIdIndex: 1870 }, // Chatham Islands Standard Time / New Zealand
365 { .windowsIdKey: 33, .territory: 50, .ianaIdIndex: 1886 }, // China Standard Time / China
366 { .windowsIdKey: 33, .territory: 107, .ianaIdIndex: 1900 }, // China Standard Time / Hong Kong
367 { .windowsIdKey: 33, .territory: 139, .ianaIdIndex: 1915 }, // China Standard Time / Macao
368 { .windowsIdKey: 34, .territory: 61, .ianaIdIndex: 1926 }, // Cuba Standard Time / Cuba
369 { .windowsIdKey: 35, .territory: 0, .ianaIdIndex: 1941 }, // Dateline Standard Time / AnyTerritory
370 { .windowsIdKey: 36, .territory: 0, .ianaIdIndex: 1952 }, // E. Africa Standard Time / AnyTerritory
371 { .windowsIdKey: 36, .territory: 9, .ianaIdIndex: 1962 }, // E. Africa Standard Time / Antarctica
372 { .windowsIdKey: 36, .territory: 55, .ianaIdIndex: 1979 }, // E. Africa Standard Time / Comoros
373 { .windowsIdKey: 36, .territory: 67, .ianaIdIndex: 1993 }, // E. Africa Standard Time / Djibouti
374 { .windowsIdKey: 36, .territory: 74, .ianaIdIndex: 2009 }, // E. Africa Standard Time / Eritrea
375 { .windowsIdKey: 36, .territory: 77, .ianaIdIndex: 2023 }, // E. Africa Standard Time / Ethiopia
376 { .windowsIdKey: 36, .territory: 124, .ianaIdIndex: 2042 }, // E. Africa Standard Time / Kenya
377 { .windowsIdKey: 36, .territory: 141, .ianaIdIndex: 2057 }, // E. Africa Standard Time / Madagascar
378 { .windowsIdKey: 36, .territory: 151, .ianaIdIndex: 2077 }, // E. Africa Standard Time / Mayotte
379 { .windowsIdKey: 36, .territory: 215, .ianaIdIndex: 2092 }, // E. Africa Standard Time / Somalia
380 { .windowsIdKey: 36, .territory: 230, .ianaIdIndex: 2109 }, // E. Africa Standard Time / Tanzania
381 { .windowsIdKey: 36, .territory: 243, .ianaIdIndex: 2130 }, // E. Africa Standard Time / Uganda
382 { .windowsIdKey: 37, .territory: 15, .ianaIdIndex: 2145 }, // E. Australia Standard Time / Australia
383 { .windowsIdKey: 38, .territory: 154, .ianaIdIndex: 2183 }, // E. Europe Standard Time / Moldova
384 { .windowsIdKey: 39, .territory: 32, .ianaIdIndex: 2199 }, // E. South America Standard Time / Brazil
385 { .windowsIdKey: 40, .territory: 49, .ianaIdIndex: 2217 }, // Easter Island Standard Time / Chile
386 { .windowsIdKey: 41, .territory: 18, .ianaIdIndex: 2232 }, // Eastern Standard Time / Bahamas
387 { .windowsIdKey: 41, .territory: 41, .ianaIdIndex: 2247 }, // Eastern Standard Time / Canada
388 { .windowsIdKey: 41, .territory: 248, .ianaIdIndex: 2279 }, // Eastern Standard Time / United States
389 { .windowsIdKey: 42, .territory: 152, .ianaIdIndex: 2445 }, // Eastern Standard Time (Mexico) / Mexico
390 { .windowsIdKey: 43, .territory: 71, .ianaIdIndex: 2460 }, // Egypt Standard Time / Egypt
391 { .windowsIdKey: 44, .territory: 193, .ianaIdIndex: 2473 }, // Ekaterinburg Standard Time / Russia
392 { .windowsIdKey: 45, .territory: 82, .ianaIdIndex: 2492 }, // Fiji Standard Time / Fiji
393 { .windowsIdKey: 46, .territory: 2, .ianaIdIndex: 2505 }, // FLE Standard Time / Aland Islands
394 { .windowsIdKey: 46, .territory: 36, .ianaIdIndex: 2522 }, // FLE Standard Time / Bulgaria
395 { .windowsIdKey: 46, .territory: 75, .ianaIdIndex: 2535 }, // FLE Standard Time / Estonia
396 { .windowsIdKey: 46, .territory: 83, .ianaIdIndex: 2550 }, // FLE Standard Time / Finland
397 { .windowsIdKey: 46, .territory: 131, .ianaIdIndex: 2566 }, // FLE Standard Time / Latvia
398 { .windowsIdKey: 46, .territory: 137, .ianaIdIndex: 2578 }, // FLE Standard Time / Lithuania
399 { .windowsIdKey: 46, .territory: 244, .ianaIdIndex: 2593 }, // FLE Standard Time / Ukraine
400 { .windowsIdKey: 47, .territory: 90, .ianaIdIndex: 2605 }, // Georgian Standard Time / Georgia
401 { .windowsIdKey: 48, .territory: 81, .ianaIdIndex: 2618 }, // GMT Standard Time / Faroe Islands
402 { .windowsIdKey: 48, .territory: 100, .ianaIdIndex: 2633 }, // GMT Standard Time / Guernsey
403 { .windowsIdKey: 48, .territory: 114, .ianaIdIndex: 2649 }, // GMT Standard Time / Ireland
404 { .windowsIdKey: 48, .territory: 115, .ianaIdIndex: 2663 }, // GMT Standard Time / Isle of Man
405 { .windowsIdKey: 48, .territory: 121, .ianaIdIndex: 2682 }, // GMT Standard Time / Jersey
406 { .windowsIdKey: 48, .territory: 188, .ianaIdIndex: 2696 }, // GMT Standard Time / Portugal
407 { .windowsIdKey: 48, .territory: 220, .ianaIdIndex: 2727 }, // GMT Standard Time / Spain
408 { .windowsIdKey: 48, .territory: 246, .ianaIdIndex: 2743 }, // GMT Standard Time / United Kingdom
409 { .windowsIdKey: 49, .territory: 95, .ianaIdIndex: 2757 }, // Greenland Standard Time / Greenland
410 { .windowsIdKey: 50, .territory: 37, .ianaIdIndex: 2770 }, // Greenwich Standard Time / Burkina Faso
411 { .windowsIdKey: 50, .territory: 89, .ianaIdIndex: 2789 }, // Greenwich Standard Time / Gambia
412 { .windowsIdKey: 50, .territory: 92, .ianaIdIndex: 2803 }, // Greenwich Standard Time / Ghana
413 { .windowsIdKey: 50, .territory: 95, .ianaIdIndex: 2816 }, // Greenwich Standard Time / Greenland
414 { .windowsIdKey: 50, .territory: 101, .ianaIdIndex: 2837 }, // Greenwich Standard Time / Guinea-Bissau
415 { .windowsIdKey: 50, .territory: 102, .ianaIdIndex: 2851 }, // Greenwich Standard Time / Guinea
416 { .windowsIdKey: 50, .territory: 109, .ianaIdIndex: 2866 }, // Greenwich Standard Time / Iceland
417 { .windowsIdKey: 50, .territory: 118, .ianaIdIndex: 2885 }, // Greenwich Standard Time / Ivory Coast
418 { .windowsIdKey: 50, .territory: 134, .ianaIdIndex: 2900 }, // Greenwich Standard Time / Liberia
419 { .windowsIdKey: 50, .territory: 145, .ianaIdIndex: 2916 }, // Greenwich Standard Time / Mali
420 { .windowsIdKey: 50, .territory: 149, .ianaIdIndex: 2930 }, // Greenwich Standard Time / Mauritania
421 { .windowsIdKey: 50, .territory: 196, .ianaIdIndex: 2948 }, // Greenwich Standard Time / Saint Helena
422 { .windowsIdKey: 50, .territory: 206, .ianaIdIndex: 2967 }, // Greenwich Standard Time / Senegal
423 { .windowsIdKey: 50, .territory: 209, .ianaIdIndex: 2980 }, // Greenwich Standard Time / Sierra Leone
424 { .windowsIdKey: 50, .territory: 233, .ianaIdIndex: 2996 }, // Greenwich Standard Time / Togo
425 { .windowsIdKey: 51, .territory: 63, .ianaIdIndex: 3008 }, // GTB Standard Time / Cyprus
426 { .windowsIdKey: 51, .territory: 94, .ianaIdIndex: 3036 }, // GTB Standard Time / Greece
427 { .windowsIdKey: 51, .territory: 192, .ianaIdIndex: 3050 }, // GTB Standard Time / Romania
428 { .windowsIdKey: 52, .territory: 104, .ianaIdIndex: 3067 }, // Haiti Standard Time / Haiti
429 { .windowsIdKey: 53, .territory: 0, .ianaIdIndex: 3090 }, // Hawaiian Standard Time / AnyTerritory
430 { .windowsIdKey: 53, .territory: 58, .ianaIdIndex: 3101 }, // Hawaiian Standard Time / Cook Islands
431 { .windowsIdKey: 53, .territory: 86, .ianaIdIndex: 3119 }, // Hawaiian Standard Time / French Polynesia
432 { .windowsIdKey: 53, .territory: 248, .ianaIdIndex: 3134 }, // Hawaiian Standard Time / United States
433 { .windowsIdKey: 54, .territory: 110, .ianaIdIndex: 3151 }, // India Standard Time / India
434 { .windowsIdKey: 55, .territory: 112, .ianaIdIndex: 3164 }, // Iran Standard Time / Iran
435 { .windowsIdKey: 56, .territory: 116, .ianaIdIndex: 3176 }, // Israel Standard Time / Israel
436 { .windowsIdKey: 57, .territory: 122, .ianaIdIndex: 3191 }, // Jordan Standard Time / Jordan
437 { .windowsIdKey: 58, .territory: 193, .ianaIdIndex: 3202 }, // Kaliningrad Standard Time / Russia
438 { .windowsIdKey: 59, .territory: 218, .ianaIdIndex: 3221 }, // Korea Standard Time / South Korea
439 { .windowsIdKey: 60, .territory: 135, .ianaIdIndex: 3232 }, // Libya Standard Time / Libya
440 { .windowsIdKey: 61, .territory: 0, .ianaIdIndex: 3247 }, // Line Islands Standard Time / AnyTerritory
441 { .windowsIdKey: 61, .territory: 125, .ianaIdIndex: 3258 }, // Line Islands Standard Time / Kiribati
442 { .windowsIdKey: 62, .territory: 15, .ianaIdIndex: 3277 }, // Lord Howe Standard Time / Australia
443 { .windowsIdKey: 63, .territory: 193, .ianaIdIndex: 3297 }, // Magadan Standard Time / Russia
444 { .windowsIdKey: 64, .territory: 49, .ianaIdIndex: 3310 }, // Magallanes Standard Time / Chile
445 { .windowsIdKey: 65, .territory: 86, .ianaIdIndex: 3331 }, // Marquesas Standard Time / French Polynesia
446 { .windowsIdKey: 66, .territory: 150, .ianaIdIndex: 3349 }, // Mauritius Standard Time / Mauritius
447 { .windowsIdKey: 66, .territory: 191, .ianaIdIndex: 3366 }, // Mauritius Standard Time / Reunion
448 { .windowsIdKey: 66, .territory: 208, .ianaIdIndex: 3381 }, // Mauritius Standard Time / Seychelles
449 { .windowsIdKey: 67, .territory: 132, .ianaIdIndex: 3393 }, // Middle East Standard Time / Lebanon
450 { .windowsIdKey: 68, .territory: 250, .ianaIdIndex: 3405 }, // Montevideo Standard Time / Uruguay
451 { .windowsIdKey: 69, .territory: 159, .ianaIdIndex: 3424 }, // Morocco Standard Time / Morocco
452 { .windowsIdKey: 69, .territory: 257, .ianaIdIndex: 3442 }, // Morocco Standard Time / Western Sahara
453 { .windowsIdKey: 70, .territory: 41, .ianaIdIndex: 3458 }, // Mountain Standard Time / Canada
454 { .windowsIdKey: 70, .territory: 152, .ianaIdIndex: 3512 }, // Mountain Standard Time / Mexico
455 { .windowsIdKey: 70, .territory: 248, .ianaIdIndex: 3534 }, // Mountain Standard Time / United States
456 { .windowsIdKey: 71, .territory: 152, .ianaIdIndex: 3563 }, // Mountain Standard Time (Mexico) / Mexico
457 { .windowsIdKey: 72, .territory: 53, .ianaIdIndex: 3580 }, // Myanmar Standard Time / Cocos Islands
458 { .windowsIdKey: 72, .territory: 161, .ianaIdIndex: 3593 }, // Myanmar Standard Time / Myanmar
459 { .windowsIdKey: 73, .territory: 193, .ianaIdIndex: 3605 }, // N. Central Asia Standard Time / Russia
460 { .windowsIdKey: 74, .territory: 162, .ianaIdIndex: 3622 }, // Namibia Standard Time / Namibia
461 { .windowsIdKey: 75, .territory: 164, .ianaIdIndex: 3638 }, // Nepal Standard Time / Nepal
462 { .windowsIdKey: 76, .territory: 9, .ianaIdIndex: 3653 }, // New Zealand Standard Time / Antarctica
463 { .windowsIdKey: 76, .territory: 167, .ianaIdIndex: 3672 }, // New Zealand Standard Time / New Zealand
464 { .windowsIdKey: 77, .territory: 41, .ianaIdIndex: 3689 }, // Newfoundland Standard Time / Canada
465 { .windowsIdKey: 78, .territory: 172, .ianaIdIndex: 3706 }, // Norfolk Standard Time / Norfolk Island
466 { .windowsIdKey: 79, .territory: 193, .ianaIdIndex: 3722 }, // North Asia East Standard Time / Russia
467 { .windowsIdKey: 80, .territory: 193, .ianaIdIndex: 3735 }, // North Asia Standard Time / Russia
468 { .windowsIdKey: 81, .territory: 174, .ianaIdIndex: 3770 }, // North Korea Standard Time / North Korea
469 { .windowsIdKey: 82, .territory: 193, .ianaIdIndex: 3785 }, // Omsk Standard Time / Russia
470 { .windowsIdKey: 83, .territory: 49, .ianaIdIndex: 3795 }, // Pacific SA Standard Time / Chile
471 { .windowsIdKey: 84, .territory: 41, .ianaIdIndex: 3812 }, // Pacific Standard Time / Canada
472 { .windowsIdKey: 84, .territory: 248, .ianaIdIndex: 3830 }, // Pacific Standard Time / United States
473 { .windowsIdKey: 85, .territory: 152, .ianaIdIndex: 3850 }, // Pacific Standard Time (Mexico) / Mexico
474 { .windowsIdKey: 86, .territory: 178, .ianaIdIndex: 3866 }, // Pakistan Standard Time / Pakistan
475 { .windowsIdKey: 87, .territory: 183, .ianaIdIndex: 3879 }, // Paraguay Standard Time / Paraguay
476 { .windowsIdKey: 88, .territory: 123, .ianaIdIndex: 3896 }, // Qyzylorda Standard Time / Kazakhstan
477 { .windowsIdKey: 89, .territory: 23, .ianaIdIndex: 3911 }, // Romance Standard Time / Belgium
478 { .windowsIdKey: 89, .territory: 65, .ianaIdIndex: 3927 }, // Romance Standard Time / Denmark
479 { .windowsIdKey: 89, .territory: 84, .ianaIdIndex: 3945 }, // Romance Standard Time / France
480 { .windowsIdKey: 89, .territory: 220, .ianaIdIndex: 3958 }, // Romance Standard Time / Spain
481 { .windowsIdKey: 90, .territory: 193, .ianaIdIndex: 3985 }, // Russia Time Zone 10 / Russia
482 { .windowsIdKey: 91, .territory: 193, .ianaIdIndex: 4004 }, // Russia Time Zone 11 / Russia
483 { .windowsIdKey: 92, .territory: 193, .ianaIdIndex: 4031 }, // Russia Time Zone 3 / Russia
484 { .windowsIdKey: 93, .territory: 193, .ianaIdIndex: 4045 }, // Russian Standard Time / Russia
485 { .windowsIdKey: 93, .territory: 244, .ianaIdIndex: 4072 }, // Russian Standard Time / Ukraine
486 { .windowsIdKey: 94, .territory: 0, .ianaIdIndex: 4090 }, // SA Eastern Standard Time / AnyTerritory
487 { .windowsIdKey: 94, .territory: 9, .ianaIdIndex: 4100 }, // SA Eastern Standard Time / Antarctica
488 { .windowsIdKey: 94, .territory: 32, .ianaIdIndex: 4137 }, // SA Eastern Standard Time / Brazil
489 { .windowsIdKey: 94, .territory: 80, .ianaIdIndex: 4216 }, // SA Eastern Standard Time / Falkland Islands
490 { .windowsIdKey: 94, .territory: 85, .ianaIdIndex: 4233 }, // SA Eastern Standard Time / French Guiana
491 { .windowsIdKey: 94, .territory: 223, .ianaIdIndex: 4249 }, // SA Eastern Standard Time / Suriname
492 { .windowsIdKey: 95, .territory: 0, .ianaIdIndex: 4268 }, // SA Pacific Standard Time / AnyTerritory
493 { .windowsIdKey: 95, .territory: 32, .ianaIdIndex: 4278 }, // SA Pacific Standard Time / Brazil
494 { .windowsIdKey: 95, .territory: 41, .ianaIdIndex: 4314 }, // SA Pacific Standard Time / Canada
495 { .windowsIdKey: 95, .territory: 45, .ianaIdIndex: 4331 }, // SA Pacific Standard Time / Cayman Islands
496 { .windowsIdKey: 95, .territory: 54, .ianaIdIndex: 4346 }, // SA Pacific Standard Time / Colombia
497 { .windowsIdKey: 95, .territory: 70, .ianaIdIndex: 4361 }, // SA Pacific Standard Time / Ecuador
498 { .windowsIdKey: 95, .territory: 119, .ianaIdIndex: 4379 }, // SA Pacific Standard Time / Jamaica
499 { .windowsIdKey: 95, .territory: 181, .ianaIdIndex: 4395 }, // SA Pacific Standard Time / Panama
500 { .windowsIdKey: 95, .territory: 184, .ianaIdIndex: 4410 }, // SA Pacific Standard Time / Peru
501 { .windowsIdKey: 96, .territory: 0, .ianaIdIndex: 4423 }, // SA Western Standard Time / AnyTerritory
502 { .windowsIdKey: 96, .territory: 8, .ianaIdIndex: 4433 }, // SA Western Standard Time / Anguilla
503 { .windowsIdKey: 96, .territory: 10, .ianaIdIndex: 4450 }, // SA Western Standard Time / Antigua and Barbuda
504 { .windowsIdKey: 96, .territory: 13, .ianaIdIndex: 4466 }, // SA Western Standard Time / Aruba
505 { .windowsIdKey: 96, .territory: 21, .ianaIdIndex: 4480 }, // SA Western Standard Time / Barbados
506 { .windowsIdKey: 96, .territory: 28, .ianaIdIndex: 4497 }, // SA Western Standard Time / Bolivia
507 { .windowsIdKey: 96, .territory: 32, .ianaIdIndex: 4512 }, // SA Western Standard Time / Brazil
508 { .windowsIdKey: 96, .territory: 34, .ianaIdIndex: 4565 }, // SA Western Standard Time / British Virgin Islands
509 { .windowsIdKey: 96, .territory: 41, .ianaIdIndex: 4581 }, // SA Western Standard Time / Canada
510 { .windowsIdKey: 96, .territory: 44, .ianaIdIndex: 4602 }, // SA Western Standard Time / Caribbean Netherlands
511 { .windowsIdKey: 96, .territory: 62, .ianaIdIndex: 4621 }, // SA Western Standard Time / Curacao
512 { .windowsIdKey: 96, .territory: 68, .ianaIdIndex: 4637 }, // SA Western Standard Time / Dominica
513 { .windowsIdKey: 96, .territory: 69, .ianaIdIndex: 4654 }, // SA Western Standard Time / Dominican Republic
514 { .windowsIdKey: 96, .territory: 96, .ianaIdIndex: 4676 }, // SA Western Standard Time / Grenada
515 { .windowsIdKey: 96, .territory: 97, .ianaIdIndex: 4692 }, // SA Western Standard Time / Guadeloupe
516 { .windowsIdKey: 96, .territory: 103, .ianaIdIndex: 4711 }, // SA Western Standard Time / Guyana
517 { .windowsIdKey: 96, .territory: 148, .ianaIdIndex: 4726 }, // SA Western Standard Time / Martinique
518 { .windowsIdKey: 96, .territory: 158, .ianaIdIndex: 4745 }, // SA Western Standard Time / Montserrat
519 { .windowsIdKey: 96, .territory: 189, .ianaIdIndex: 4764 }, // SA Western Standard Time / Puerto Rico
520 { .windowsIdKey: 96, .territory: 195, .ianaIdIndex: 4784 }, // SA Western Standard Time / Saint Barthelemy
521 { .windowsIdKey: 96, .territory: 197, .ianaIdIndex: 4806 }, // SA Western Standard Time / Saint Kitts and Nevis
522 { .windowsIdKey: 96, .territory: 198, .ianaIdIndex: 4823 }, // SA Western Standard Time / Saint Lucia
523 { .windowsIdKey: 96, .territory: 199, .ianaIdIndex: 4840 }, // SA Western Standard Time / Saint Martin
524 { .windowsIdKey: 96, .territory: 201, .ianaIdIndex: 4856 }, // SA Western Standard Time / Saint Vincent and Grenadines
525 { .windowsIdKey: 96, .territory: 211, .ianaIdIndex: 4875 }, // SA Western Standard Time / Sint Maarten
526 { .windowsIdKey: 96, .territory: 236, .ianaIdIndex: 4897 }, // SA Western Standard Time / Trinidad and Tobago
527 { .windowsIdKey: 96, .territory: 249, .ianaIdIndex: 4919 }, // SA Western Standard Time / United States Virgin Islands
528 { .windowsIdKey: 97, .territory: 200, .ianaIdIndex: 4937 }, // Saint Pierre Standard Time / Saint Pierre and Miquelon
529 { .windowsIdKey: 98, .territory: 193, .ianaIdIndex: 4954 }, // Sakhalin Standard Time / Russia
530 { .windowsIdKey: 99, .territory: 202, .ianaIdIndex: 4968 }, // Samoa Standard Time / Samoa
531 { .windowsIdKey: 100, .territory: 204, .ianaIdIndex: 4981 }, // Sao Tome Standard Time / Sao Tome and Principe
532 { .windowsIdKey: 101, .territory: 193, .ianaIdIndex: 4997 }, // Saratov Standard Time / Russia
533 { .windowsIdKey: 102, .territory: 0, .ianaIdIndex: 5012 }, // SE Asia Standard Time / AnyTerritory
534 { .windowsIdKey: 102, .territory: 9, .ianaIdIndex: 5022 }, // SE Asia Standard Time / Antarctica
535 { .windowsIdKey: 102, .territory: 39, .ianaIdIndex: 5039 }, // SE Asia Standard Time / Cambodia
536 { .windowsIdKey: 102, .territory: 51, .ianaIdIndex: 5055 }, // SE Asia Standard Time / Christmas Island
537 { .windowsIdKey: 102, .territory: 111, .ianaIdIndex: 5072 }, // SE Asia Standard Time / Indonesia
538 { .windowsIdKey: 102, .territory: 129, .ianaIdIndex: 5100 }, // SE Asia Standard Time / Laos
539 { .windowsIdKey: 102, .territory: 231, .ianaIdIndex: 5115 }, // SE Asia Standard Time / Thailand
540 { .windowsIdKey: 102, .territory: 255, .ianaIdIndex: 5128 }, // SE Asia Standard Time / Vietnam
541 { .windowsIdKey: 103, .territory: 0, .ianaIdIndex: 5145 }, // Singapore Standard Time / AnyTerritory
542 { .windowsIdKey: 103, .territory: 35, .ianaIdIndex: 5155 }, // Singapore Standard Time / Brunei
543 { .windowsIdKey: 103, .territory: 111, .ianaIdIndex: 5167 }, // Singapore Standard Time / Indonesia
544 { .windowsIdKey: 103, .territory: 143, .ianaIdIndex: 5181 }, // Singapore Standard Time / Malaysia
545 { .windowsIdKey: 103, .territory: 185, .ianaIdIndex: 5212 }, // Singapore Standard Time / Philippines
546 { .windowsIdKey: 103, .territory: 210, .ianaIdIndex: 5224 }, // Singapore Standard Time / Singapore
547 { .windowsIdKey: 104, .territory: 0, .ianaIdIndex: 5239 }, // South Africa Standard Time / AnyTerritory
548 { .windowsIdKey: 104, .territory: 30, .ianaIdIndex: 5249 }, // South Africa Standard Time / Botswana
549 { .windowsIdKey: 104, .territory: 38, .ianaIdIndex: 5265 }, // South Africa Standard Time / Burundi
550 { .windowsIdKey: 104, .territory: 57, .ianaIdIndex: 5282 }, // South Africa Standard Time / Congo - Kinshasa
551 { .windowsIdKey: 104, .territory: 76, .ianaIdIndex: 5300 }, // South Africa Standard Time / Eswatini
552 { .windowsIdKey: 104, .territory: 133, .ianaIdIndex: 5315 }, // South Africa Standard Time / Lesotho
553 { .windowsIdKey: 104, .territory: 142, .ianaIdIndex: 5329 }, // South Africa Standard Time / Malawi
554 { .windowsIdKey: 104, .territory: 160, .ianaIdIndex: 5345 }, // South Africa Standard Time / Mozambique
555 { .windowsIdKey: 104, .territory: 194, .ianaIdIndex: 5359 }, // South Africa Standard Time / Rwanda
556 { .windowsIdKey: 104, .territory: 216, .ianaIdIndex: 5373 }, // South Africa Standard Time / South Africa
557 { .windowsIdKey: 104, .territory: 260, .ianaIdIndex: 5393 }, // South Africa Standard Time / Zambia
558 { .windowsIdKey: 104, .territory: 261, .ianaIdIndex: 5407 }, // South Africa Standard Time / Zimbabwe
559 { .windowsIdKey: 105, .territory: 219, .ianaIdIndex: 5421 }, // South Sudan Standard Time / South Sudan
560 { .windowsIdKey: 106, .territory: 221, .ianaIdIndex: 5433 }, // Sri Lanka Standard Time / Sri Lanka
561 { .windowsIdKey: 107, .territory: 222, .ianaIdIndex: 5446 }, // Sudan Standard Time / Sudan
562 { .windowsIdKey: 108, .territory: 227, .ianaIdIndex: 5462 }, // Syria Standard Time / Syria
563 { .windowsIdKey: 109, .territory: 228, .ianaIdIndex: 5476 }, // Taipei Standard Time / Taiwan
564 { .windowsIdKey: 110, .territory: 15, .ianaIdIndex: 5488 }, // Tasmania Standard Time / Australia
565 { .windowsIdKey: 111, .territory: 32, .ianaIdIndex: 5526 }, // Tocantins Standard Time / Brazil
566 { .windowsIdKey: 112, .territory: 0, .ianaIdIndex: 5544 }, // Tokyo Standard Time / AnyTerritory
567 { .windowsIdKey: 112, .territory: 111, .ianaIdIndex: 5554 }, // Tokyo Standard Time / Indonesia
568 { .windowsIdKey: 112, .territory: 120, .ianaIdIndex: 5568 }, // Tokyo Standard Time / Japan
569 { .windowsIdKey: 112, .territory: 179, .ianaIdIndex: 5579 }, // Tokyo Standard Time / Palau
570 { .windowsIdKey: 112, .territory: 232, .ianaIdIndex: 5593 }, // Tokyo Standard Time / Timor-Leste
571 { .windowsIdKey: 113, .territory: 193, .ianaIdIndex: 5603 }, // Tomsk Standard Time / Russia
572 { .windowsIdKey: 114, .territory: 235, .ianaIdIndex: 5614 }, // Tonga Standard Time / Tonga
573 { .windowsIdKey: 115, .territory: 193, .ianaIdIndex: 5632 }, // Transbaikal Standard Time / Russia
574 { .windowsIdKey: 116, .territory: 239, .ianaIdIndex: 5643 }, // Turkey Standard Time / Turkey
575 { .windowsIdKey: 117, .territory: 241, .ianaIdIndex: 5659 }, // Turks And Caicos Standard Time / Turks and Caicos Islands
576 { .windowsIdKey: 118, .territory: 156, .ianaIdIndex: 5678 }, // Ulaanbaatar Standard Time / Mongolia
577 { .windowsIdKey: 119, .territory: 248, .ianaIdIndex: 5695 }, // US Eastern Standard Time / United States
578 { .windowsIdKey: 120, .territory: 0, .ianaIdIndex: 5770 }, // US Mountain Standard Time / AnyTerritory
579 { .windowsIdKey: 120, .territory: 41, .ianaIdIndex: 5780 }, // US Mountain Standard Time / Canada
580 { .windowsIdKey: 120, .territory: 152, .ianaIdIndex: 5837 }, // US Mountain Standard Time / Mexico
581 { .windowsIdKey: 120, .territory: 248, .ianaIdIndex: 5856 }, // US Mountain Standard Time / United States
582 { .windowsIdKey: 121, .territory: 0, .ianaIdIndex: 5872 }, // UTC / AnyTerritory
583 { .windowsIdKey: 122, .territory: 0, .ianaIdIndex: 5888 }, // UTC+12 / AnyTerritory
584 { .windowsIdKey: 122, .territory: 125, .ianaIdIndex: 5899 }, // UTC+12 / Kiribati
585 { .windowsIdKey: 122, .territory: 147, .ianaIdIndex: 5914 }, // UTC+12 / Marshall Islands
586 { .windowsIdKey: 122, .territory: 163, .ianaIdIndex: 5947 }, // UTC+12 / Nauru
587 { .windowsIdKey: 122, .territory: 242, .ianaIdIndex: 5961 }, // UTC+12 / Tuvalu
588 { .windowsIdKey: 122, .territory: 247, .ianaIdIndex: 5978 }, // UTC+12 / United States Outlying Islands
589 { .windowsIdKey: 122, .territory: 256, .ianaIdIndex: 5991 }, // UTC+12 / Wallis and Futuna
590 { .windowsIdKey: 123, .territory: 0, .ianaIdIndex: 6006 }, // UTC+13 / AnyTerritory
591 { .windowsIdKey: 123, .territory: 125, .ianaIdIndex: 6017 }, // UTC+13 / Kiribati
592 { .windowsIdKey: 123, .territory: 234, .ianaIdIndex: 6032 }, // UTC+13 / Tokelau
593 { .windowsIdKey: 124, .territory: 0, .ianaIdIndex: 6048 }, // UTC-02 / AnyTerritory
594 { .windowsIdKey: 124, .territory: 32, .ianaIdIndex: 6058 }, // UTC-02 / Brazil
595 { .windowsIdKey: 124, .territory: 217, .ianaIdIndex: 6074 }, // UTC-02 / South Georgia and South Sandwich Islands
596 { .windowsIdKey: 125, .territory: 0, .ianaIdIndex: 6097 }, // UTC-08 / AnyTerritory
597 { .windowsIdKey: 125, .territory: 186, .ianaIdIndex: 6107 }, // UTC-08 / Pitcairn
598 { .windowsIdKey: 126, .territory: 0, .ianaIdIndex: 6124 }, // UTC-09 / AnyTerritory
599 { .windowsIdKey: 126, .territory: 86, .ianaIdIndex: 6134 }, // UTC-09 / French Polynesia
600 { .windowsIdKey: 127, .territory: 0, .ianaIdIndex: 6150 }, // UTC-11 / AnyTerritory
601 { .windowsIdKey: 127, .territory: 5, .ianaIdIndex: 6161 }, // UTC-11 / American Samoa
602 { .windowsIdKey: 127, .territory: 171, .ianaIdIndex: 6179 }, // UTC-11 / Niue
603 { .windowsIdKey: 127, .territory: 247, .ianaIdIndex: 6192 }, // UTC-11 / United States Outlying Islands
604 { .windowsIdKey: 128, .territory: 254, .ianaIdIndex: 6207 }, // Venezuela Standard Time / Venezuela
605 { .windowsIdKey: 129, .territory: 193, .ianaIdIndex: 6223 }, // Vladivostok Standard Time / Russia
606 { .windowsIdKey: 130, .territory: 193, .ianaIdIndex: 6254 }, // Volgograd Standard Time / Russia
607 { .windowsIdKey: 131, .territory: 15, .ianaIdIndex: 6271 }, // W. Australia Standard Time / Australia
608 { .windowsIdKey: 132, .territory: 0, .ianaIdIndex: 6287 }, // W. Central Africa Standard Time / AnyTerritory
609 { .windowsIdKey: 132, .territory: 4, .ianaIdIndex: 6297 }, // W. Central Africa Standard Time / Algeria
610 { .windowsIdKey: 132, .territory: 7, .ianaIdIndex: 6312 }, // W. Central Africa Standard Time / Angola
611 { .windowsIdKey: 132, .territory: 25, .ianaIdIndex: 6326 }, // W. Central Africa Standard Time / Benin
612 { .windowsIdKey: 132, .territory: 40, .ianaIdIndex: 6344 }, // W. Central Africa Standard Time / Cameroon
613 { .windowsIdKey: 132, .territory: 46, .ianaIdIndex: 6358 }, // W. Central Africa Standard Time / Central African Republic
614 { .windowsIdKey: 132, .territory: 48, .ianaIdIndex: 6372 }, // W. Central Africa Standard Time / Chad
615 { .windowsIdKey: 132, .territory: 56, .ianaIdIndex: 6388 }, // W. Central Africa Standard Time / Congo - Brazzaville
616 { .windowsIdKey: 132, .territory: 57, .ianaIdIndex: 6407 }, // W. Central Africa Standard Time / Congo - Kinshasa
617 { .windowsIdKey: 132, .territory: 73, .ianaIdIndex: 6423 }, // W. Central Africa Standard Time / Equatorial Guinea
618 { .windowsIdKey: 132, .territory: 88, .ianaIdIndex: 6437 }, // W. Central Africa Standard Time / Gabon
619 { .windowsIdKey: 132, .territory: 169, .ianaIdIndex: 6455 }, // W. Central Africa Standard Time / Nigeria
620 { .windowsIdKey: 132, .territory: 170, .ianaIdIndex: 6468 }, // W. Central Africa Standard Time / Niger
621 { .windowsIdKey: 132, .territory: 238, .ianaIdIndex: 6482 }, // W. Central Africa Standard Time / Tunisia
622 { .windowsIdKey: 133, .territory: 6, .ianaIdIndex: 6495 }, // W. Europe Standard Time / Andorra
623 { .windowsIdKey: 133, .territory: 16, .ianaIdIndex: 6510 }, // W. Europe Standard Time / Austria
624 { .windowsIdKey: 133, .territory: 91, .ianaIdIndex: 6524 }, // W. Europe Standard Time / Germany
625 { .windowsIdKey: 133, .territory: 93, .ianaIdIndex: 6554 }, // W. Europe Standard Time / Gibraltar
626 { .windowsIdKey: 133, .territory: 117, .ianaIdIndex: 6571 }, // W. Europe Standard Time / Italy
627 { .windowsIdKey: 133, .territory: 136, .ianaIdIndex: 6583 }, // W. Europe Standard Time / Liechtenstein
628 { .windowsIdKey: 133, .territory: 138, .ianaIdIndex: 6596 }, // W. Europe Standard Time / Luxembourg
629 { .windowsIdKey: 133, .territory: 146, .ianaIdIndex: 6614 }, // W. Europe Standard Time / Malta
630 { .windowsIdKey: 133, .territory: 155, .ianaIdIndex: 6627 }, // W. Europe Standard Time / Monaco
631 { .windowsIdKey: 133, .territory: 165, .ianaIdIndex: 6641 }, // W. Europe Standard Time / Netherlands
632 { .windowsIdKey: 133, .territory: 175, .ianaIdIndex: 6658 }, // W. Europe Standard Time / Norway
633 { .windowsIdKey: 133, .territory: 203, .ianaIdIndex: 6670 }, // W. Europe Standard Time / San Marino
634 { .windowsIdKey: 133, .territory: 224, .ianaIdIndex: 6688 }, // W. Europe Standard Time / Svalbard and Jan Mayen
635 { .windowsIdKey: 133, .territory: 225, .ianaIdIndex: 6708 }, // W. Europe Standard Time / Sweden
636 { .windowsIdKey: 133, .territory: 226, .ianaIdIndex: 6725 }, // W. Europe Standard Time / Switzerland
637 { .windowsIdKey: 133, .territory: 253, .ianaIdIndex: 6739 }, // W. Europe Standard Time / Vatican City
638 { .windowsIdKey: 134, .territory: 156, .ianaIdIndex: 6754 }, // W. Mongolia Standard Time / Mongolia
639 { .windowsIdKey: 135, .territory: 0, .ianaIdIndex: 6764 }, // West Asia Standard Time / AnyTerritory
640 { .windowsIdKey: 135, .territory: 9, .ianaIdIndex: 6774 }, // West Asia Standard Time / Antarctica
641 { .windowsIdKey: 135, .territory: 87, .ianaIdIndex: 6792 }, // West Asia Standard Time / French Southern Territories
642 { .windowsIdKey: 135, .territory: 123, .ianaIdIndex: 6809 }, // West Asia Standard Time / Kazakhstan
643 { .windowsIdKey: 135, .territory: 144, .ianaIdIndex: 6880 }, // West Asia Standard Time / Maldives
644 { .windowsIdKey: 135, .territory: 229, .ianaIdIndex: 6896 }, // West Asia Standard Time / Tajikistan
645 { .windowsIdKey: 135, .territory: 240, .ianaIdIndex: 6910 }, // West Asia Standard Time / Turkmenistan
646 { .windowsIdKey: 135, .territory: 251, .ianaIdIndex: 6924 }, // West Asia Standard Time / Uzbekistan
647 { .windowsIdKey: 136, .territory: 180, .ianaIdIndex: 6953 }, // West Bank Standard Time / Palestinian Territories
648 { .windowsIdKey: 137, .territory: 0, .ianaIdIndex: 6975 }, // West Pacific Standard Time / AnyTerritory
649 { .windowsIdKey: 137, .territory: 9, .ianaIdIndex: 6986 }, // West Pacific Standard Time / Antarctica
650 { .windowsIdKey: 137, .territory: 98, .ianaIdIndex: 7012 }, // West Pacific Standard Time / Guam
651 { .windowsIdKey: 137, .territory: 153, .ianaIdIndex: 7025 }, // West Pacific Standard Time / Micronesia
652 { .windowsIdKey: 137, .territory: 173, .ianaIdIndex: 7039 }, // West Pacific Standard Time / Northern Mariana Islands
653 { .windowsIdKey: 137, .territory: 182, .ianaIdIndex: 7054 }, // West Pacific Standard Time / Papua New Guinea
654 { .windowsIdKey: 138, .territory: 193, .ianaIdIndex: 7075 }, // Yakutsk Standard Time / Russia
655 { .windowsIdKey: 139, .territory: 41, .ianaIdIndex: 7102 }, // Yukon Standard Time / Canada
656};
657
658// Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset
659static inline constexpr WindowsData windowsDataTable[] = {
660 { .windowsIdKey: 1, .windowsIdIndex: 0, .ianaIdIndex: 3560, .offsetFromUtc: 16200 }, // Afghanistan Standard Time
661 { .windowsIdKey: 2, .windowsIdIndex: 26, .ianaIdIndex: 3346,.offsetFromUtc: -32400 }, // Alaskan Standard Time
662 { .windowsIdKey: 3, .windowsIdIndex: 48, .ianaIdIndex: 132,.offsetFromUtc: -36000 }, // Aleutian Standard Time
663 { .windowsIdKey: 4, .windowsIdIndex: 71, .ianaIdIndex: 3571, .offsetFromUtc: 25200 }, // Altai Standard Time
664 { .windowsIdKey: 5, .windowsIdIndex: 91, .ianaIdIndex: 3584, .offsetFromUtc: 10800 }, // Arab Standard Time
665 { .windowsIdKey: 6, .windowsIdIndex: 110, .ianaIdIndex: 3596, .offsetFromUtc: 14400 }, // Arabian Standard Time
666 { .windowsIdKey: 7, .windowsIdIndex: 132, .ianaIdIndex: 3607, .offsetFromUtc: 10800 }, // Arabic Standard Time
667 { .windowsIdKey: 8, .windowsIdIndex: 153, .ianaIdIndex: 166,.offsetFromUtc: -10800 }, // Argentina Standard Time
668 { .windowsIdKey: 9, .windowsIdIndex: 177, .ianaIdIndex: 3620, .offsetFromUtc: 14400 }, // Astrakhan Standard Time
669 { .windowsIdKey: 10, .windowsIdIndex: 201, .ianaIdIndex: 1939,.offsetFromUtc: -14400 }, // Atlantic Standard Time
670 { .windowsIdKey: 11, .windowsIdIndex: 224, .ianaIdIndex: 1583, .offsetFromUtc: 34200 }, // AUS Central Standard Time
671 { .windowsIdKey: 12, .windowsIdIndex: 250, .ianaIdIndex: 3637, .offsetFromUtc: 31500 }, // Aus Central W. Standard Time
672 { .windowsIdKey: 13, .windowsIdIndex: 279, .ianaIdIndex: 1463, .offsetFromUtc: 36000 }, // AUS Eastern Standard Time
673 { .windowsIdKey: 14, .windowsIdIndex: 305, .ianaIdIndex: 3653, .offsetFromUtc: 14400 }, // Azerbaijan Standard Time
674 { .windowsIdKey: 15, .windowsIdIndex: 330, .ianaIdIndex: 3663, .offsetFromUtc: -3600 }, // Azores Standard Time
675 { .windowsIdKey: 16, .windowsIdIndex: 351, .ianaIdIndex: 3679,.offsetFromUtc: -10800 }, // Bahia Standard Time
676 { .windowsIdKey: 17, .windowsIdIndex: 371, .ianaIdIndex: 1093, .offsetFromUtc: 21600 }, // Bangladesh Standard Time
677 { .windowsIdKey: 18, .windowsIdIndex: 396, .ianaIdIndex: 3693, .offsetFromUtc: 10800 }, // Belarus Standard Time
678 { .windowsIdKey: 19, .windowsIdIndex: 418, .ianaIdIndex: 3706, .offsetFromUtc: 39600 }, // Bougainville Standard Time
679 { .windowsIdKey: 20, .windowsIdIndex: 445, .ianaIdIndex: 1995,.offsetFromUtc: -21600 }, // Canada Central Standard Time
680 { .windowsIdKey: 21, .windowsIdIndex: 474, .ianaIdIndex: 3727, .offsetFromUtc: -3600 }, // Cape Verde Standard Time
681 { .windowsIdKey: 22, .windowsIdIndex: 499, .ianaIdIndex: 3747, .offsetFromUtc: 14400 }, // Caucasus Standard Time
682 { .windowsIdKey: 23, .windowsIdIndex: 522, .ianaIdIndex: 1670, .offsetFromUtc: 34200 }, // Cen. Australia Standard Time
683 { .windowsIdKey: 24, .windowsIdIndex: 551, .ianaIdIndex: 3760,.offsetFromUtc: -21600 }, // Central America Standard Time
684 { .windowsIdKey: 25, .windowsIdIndex: 581, .ianaIdIndex: 3778, .offsetFromUtc: 21600 }, // Central Asia Standard Time
685 { .windowsIdKey: 26, .windowsIdIndex: 608, .ianaIdIndex: 3791,.offsetFromUtc: -14400 }, // Central Brazilian Standard Time
686 { .windowsIdKey: 27, .windowsIdIndex: 640, .ianaIdIndex: 3806, .offsetFromUtc: 3600 }, // Central Europe Standard Time
687 { .windowsIdKey: 28, .windowsIdIndex: 669, .ianaIdIndex: 3190, .offsetFromUtc: 3600 }, // Central European Standard Time
688 { .windowsIdKey: 29, .windowsIdIndex: 700, .ianaIdIndex: 3822, .offsetFromUtc: 39600 }, // Central Pacific Standard Time
689 { .windowsIdKey: 30, .windowsIdIndex: 730, .ianaIdIndex: 2260,.offsetFromUtc: -21600 }, // Central Standard Time
690 { .windowsIdKey: 31, .windowsIdIndex: 752, .ianaIdIndex: 2949,.offsetFromUtc: -21600 }, // Central Standard Time (Mexico)
691 { .windowsIdKey: 32, .windowsIdIndex: 783, .ianaIdIndex: 3015, .offsetFromUtc: 45900 }, // Chatham Islands Standard Time
692 { .windowsIdKey: 33, .windowsIdIndex: 813, .ianaIdIndex: 1053, .offsetFromUtc: 28800 }, // China Standard Time
693 { .windowsIdKey: 34, .windowsIdIndex: 833, .ianaIdIndex: 2281,.offsetFromUtc: -18000 }, // Cuba Standard Time
694 { .windowsIdKey: 35, .windowsIdIndex: 852, .ianaIdIndex: 3842,.offsetFromUtc: -43200 }, // Dateline Standard Time
695 { .windowsIdKey: 36, .windowsIdIndex: 875, .ianaIdIndex: 3853, .offsetFromUtc: 10800 }, // E. Africa Standard Time
696 { .windowsIdKey: 37, .windowsIdIndex: 899, .ianaIdIndex: 1635, .offsetFromUtc: 36000 }, // E. Australia Standard Time
697 { .windowsIdKey: 38, .windowsIdIndex: 926, .ianaIdIndex: 2583, .offsetFromUtc: 7200 }, // E. Europe Standard Time
698 { .windowsIdKey: 39, .windowsIdIndex: 950, .ianaIdIndex: 1878,.offsetFromUtc: -10800 }, // E. South America Standard Time
699 { .windowsIdKey: 40, .windowsIdIndex: 981, .ianaIdIndex: 2237,.offsetFromUtc: -21600 }, // Easter Island Standard Time
700 { .windowsIdKey: 41, .windowsIdIndex: 1009, .ianaIdIndex: 2379,.offsetFromUtc: -18000 }, // Eastern Standard Time
701 { .windowsIdKey: 42, .windowsIdIndex: 1031, .ianaIdIndex: 3868,.offsetFromUtc: -18000 }, // Eastern Standard Time (Mexico)
702 { .windowsIdKey: 43, .windowsIdIndex: 1062, .ianaIdIndex: 2320, .offsetFromUtc: 7200 }, // Egypt Standard Time
703 { .windowsIdKey: 44, .windowsIdIndex: 1082, .ianaIdIndex: 3883, .offsetFromUtc: 18000 }, // Ekaterinburg Standard Time
704 { .windowsIdKey: 45, .windowsIdIndex: 1109, .ianaIdIndex: 3902, .offsetFromUtc: 43200 }, // Fiji Standard Time
705 { .windowsIdKey: 46, .windowsIdIndex: 1128, .ianaIdIndex: 2527, .offsetFromUtc: 7200 }, // FLE Standard Time
706 { .windowsIdKey: 47, .windowsIdIndex: 1146, .ianaIdIndex: 3915, .offsetFromUtc: 14400 }, // Georgian Standard Time
707 { .windowsIdKey: 48, .windowsIdIndex: 1169, .ianaIdIndex: 2501, .offsetFromUtc: 0 }, // GMT Standard Time
708 { .windowsIdKey: 49, .windowsIdIndex: 1187, .ianaIdIndex: 393,.offsetFromUtc: -10800 }, // Greenland Standard Time
709 { .windowsIdKey: 50, .windowsIdIndex: 1211, .ianaIdIndex: 2748, .offsetFromUtc: 0 }, // Greenwich Standard Time
710 { .windowsIdKey: 51, .windowsIdIndex: 1235, .ianaIdIndex: 3928, .offsetFromUtc: 7200 }, // GTB Standard Time
711 { .windowsIdKey: 52, .windowsIdIndex: 1253, .ianaIdIndex: 3945,.offsetFromUtc: -18000 }, // Haiti Standard Time
712 { .windowsIdKey: 53, .windowsIdIndex: 1273, .ianaIdIndex: 2723,.offsetFromUtc: -36000 }, // Hawaiian Standard Time
713 { .windowsIdKey: 54, .windowsIdIndex: 1296, .ianaIdIndex: 992, .offsetFromUtc: 19800 }, // India Standard Time
714 { .windowsIdKey: 55, .windowsIdIndex: 1316, .ianaIdIndex: 2772, .offsetFromUtc: 12600 }, // Iran Standard Time
715 { .windowsIdKey: 56, .windowsIdIndex: 1335, .ianaIdIndex: 1290, .offsetFromUtc: 7200 }, // Israel Standard Time
716 { .windowsIdKey: 57, .windowsIdIndex: 1356, .ianaIdIndex: 3968, .offsetFromUtc: 7200 }, // Jordan Standard Time
717 { .windowsIdKey: 58, .windowsIdIndex: 1377, .ianaIdIndex: 3979, .offsetFromUtc: 7200 }, // Kaliningrad Standard Time
718 { .windowsIdKey: 59, .windowsIdIndex: 1403, .ianaIdIndex: 3279, .offsetFromUtc: 32400 }, // Korea Standard Time
719 { .windowsIdKey: 60, .windowsIdIndex: 1423, .ianaIdIndex: 2866, .offsetFromUtc: 7200 }, // Libya Standard Time
720 { .windowsIdKey: 61, .windowsIdIndex: 1443, .ianaIdIndex: 3998, .offsetFromUtc: 50400 }, // Line Islands Standard Time
721 { .windowsIdKey: 62, .windowsIdIndex: 1470, .ianaIdIndex: 1547, .offsetFromUtc: 37800 }, // Lord Howe Standard Time
722 { .windowsIdKey: 63, .windowsIdIndex: 1494, .ianaIdIndex: 4017, .offsetFromUtc: 36000 }, // Magadan Standard Time
723 { .windowsIdKey: 64, .windowsIdIndex: 1516, .ianaIdIndex: 4030,.offsetFromUtc: -10800 }, // Magallanes Standard Time
724 { .windowsIdKey: 65, .windowsIdIndex: 1541, .ianaIdIndex: 4051,.offsetFromUtc: -34200 }, // Marquesas Standard Time
725 { .windowsIdKey: 66, .windowsIdIndex: 1565, .ianaIdIndex: 4069, .offsetFromUtc: 14400 }, // Mauritius Standard Time
726 { .windowsIdKey: 67, .windowsIdIndex: 1589, .ianaIdIndex: 4086, .offsetFromUtc: 7200 }, // Middle East Standard Time
727 { .windowsIdKey: 68, .windowsIdIndex: 1615, .ianaIdIndex: 4098,.offsetFromUtc: -10800 }, // Montevideo Standard Time
728 { .windowsIdKey: 69, .windowsIdIndex: 1640, .ianaIdIndex: 4117, .offsetFromUtc: 0 }, // Morocco Standard Time
729 { .windowsIdKey: 70, .windowsIdIndex: 1662, .ianaIdIndex: 805,.offsetFromUtc: -25200 }, // Mountain Standard Time
730 { .windowsIdKey: 71, .windowsIdIndex: 1685, .ianaIdIndex: 2917,.offsetFromUtc: -25200 }, // Mountain Standard Time (Mexico)
731 { .windowsIdKey: 72, .windowsIdIndex: 1717, .ianaIdIndex: 1235, .offsetFromUtc: 23400 }, // Myanmar Standard Time
732 { .windowsIdKey: 73, .windowsIdIndex: 1739, .ianaIdIndex: 4135, .offsetFromUtc: 21600 }, // N. Central Asia Standard Time
733 { .windowsIdKey: 74, .windowsIdIndex: 1769, .ianaIdIndex: 4152, .offsetFromUtc: 3600 }, // Namibia Standard Time
734 { .windowsIdKey: 75, .windowsIdIndex: 1791, .ianaIdIndex: 1185, .offsetFromUtc: 20700 }, // Nepal Standard Time
735 { .windowsIdKey: 76, .windowsIdIndex: 1811, .ianaIdIndex: 932, .offsetFromUtc: 43200 }, // New Zealand Standard Time
736 { .windowsIdKey: 77, .windowsIdIndex: 1837, .ianaIdIndex: 2061,.offsetFromUtc: -12600 }, // Newfoundland Standard Time
737 { .windowsIdKey: 78, .windowsIdIndex: 1864, .ianaIdIndex: 4168, .offsetFromUtc: 39600 }, // Norfolk Standard Time
738 { .windowsIdKey: 79, .windowsIdIndex: 1886, .ianaIdIndex: 4184, .offsetFromUtc: 28800 }, // North Asia East Standard Time
739 { .windowsIdKey: 80, .windowsIdIndex: 1916, .ianaIdIndex: 4197, .offsetFromUtc: 25200 }, // North Asia Standard Time
740 { .windowsIdKey: 81, .windowsIdIndex: 1941, .ianaIdIndex: 4214, .offsetFromUtc: 30600 }, // North Korea Standard Time
741 { .windowsIdKey: 82, .windowsIdIndex: 1967, .ianaIdIndex: 4229, .offsetFromUtc: 21600 }, // Omsk Standard Time
742 { .windowsIdKey: 83, .windowsIdIndex: 1986, .ianaIdIndex: 2201,.offsetFromUtc: -10800 }, // Pacific SA Standard Time
743 { .windowsIdKey: 84, .windowsIdIndex: 2011, .ianaIdIndex: 3239,.offsetFromUtc: -28800 }, // Pacific Standard Time
744 { .windowsIdKey: 85, .windowsIdIndex: 2033, .ianaIdIndex: 313,.offsetFromUtc: -28800 }, // Pacific Standard Time (Mexico)
745 { .windowsIdKey: 86, .windowsIdIndex: 2064, .ianaIdIndex: 4239, .offsetFromUtc: 18000 }, // Pakistan Standard Time
746 { .windowsIdKey: 87, .windowsIdIndex: 2087, .ianaIdIndex: 4252,.offsetFromUtc: -14400 }, // Paraguay Standard Time
747 { .windowsIdKey: 88, .windowsIdIndex: 2110, .ianaIdIndex: 4269, .offsetFromUtc: 18000 }, // Qyzylorda Standard Time
748 { .windowsIdKey: 89, .windowsIdIndex: 2134, .ianaIdIndex: 4284, .offsetFromUtc: 3600 }, // Romance Standard Time
749 { .windowsIdKey: 90, .windowsIdIndex: 2156, .ianaIdIndex: 4297, .offsetFromUtc: 39600 }, // Russia Time Zone 10
750 { .windowsIdKey: 91, .windowsIdIndex: 2176, .ianaIdIndex: 4316, .offsetFromUtc: 43200 }, // Russia Time Zone 11
751 { .windowsIdKey: 92, .windowsIdIndex: 2196, .ianaIdIndex: 4331, .offsetFromUtc: 14400 }, // Russia Time Zone 3
752 { .windowsIdKey: 93, .windowsIdIndex: 2215, .ianaIdIndex: 3537, .offsetFromUtc: 10800 }, // Russian Standard Time
753 { .windowsIdKey: 94, .windowsIdIndex: 2237, .ianaIdIndex: 4345,.offsetFromUtc: -10800 }, // SA Eastern Standard Time
754 { .windowsIdKey: 95, .windowsIdIndex: 2262, .ianaIdIndex: 4361,.offsetFromUtc: -18000 }, // SA Pacific Standard Time
755 { .windowsIdKey: 96, .windowsIdIndex: 2287, .ianaIdIndex: 4376,.offsetFromUtc: -14400 }, // SA Western Standard Time
756 { .windowsIdKey: 97, .windowsIdIndex: 2312, .ianaIdIndex: 4391,.offsetFromUtc: -10800 }, // Saint Pierre Standard Time
757 { .windowsIdKey: 98, .windowsIdIndex: 2339, .ianaIdIndex: 4408, .offsetFromUtc: 39600 }, // Sakhalin Standard Time
758 { .windowsIdKey: 99, .windowsIdIndex: 2362, .ianaIdIndex: 4422, .offsetFromUtc: 46800 }, // Samoa Standard Time
759 { .windowsIdKey: 100, .windowsIdIndex: 2382, .ianaIdIndex: 4435, .offsetFromUtc: 0 }, // Sao Tome Standard Time
760 { .windowsIdKey: 101, .windowsIdIndex: 2405, .ianaIdIndex: 4451, .offsetFromUtc: 14400 }, // Saratov Standard Time
761 { .windowsIdKey: 102, .windowsIdIndex: 2427, .ianaIdIndex: 4466, .offsetFromUtc: 25200 }, // SE Asia Standard Time
762 { .windowsIdKey: 103, .windowsIdIndex: 2449, .ianaIdIndex: 3300, .offsetFromUtc: 28800 }, // Singapore Standard Time
763 { .windowsIdKey: 104, .windowsIdIndex: 2473, .ianaIdIndex: 4479, .offsetFromUtc: 7200 }, // South Africa Standard Time
764 { .windowsIdKey: 105, .windowsIdIndex: 2500, .ianaIdIndex: 4499, .offsetFromUtc: 7200 }, // South Sudan Standard Time
765 { .windowsIdKey: 106, .windowsIdIndex: 2526, .ianaIdIndex: 4511, .offsetFromUtc: 19800 }, // Sri Lanka Standard Time
766 { .windowsIdKey: 107, .windowsIdIndex: 2550, .ianaIdIndex: 4524, .offsetFromUtc: 7200 }, // Sudan Standard Time
767 { .windowsIdKey: 108, .windowsIdIndex: 2570, .ianaIdIndex: 4540, .offsetFromUtc: 7200 }, // Syria Standard Time
768 { .windowsIdKey: 109, .windowsIdIndex: 2590, .ianaIdIndex: 3263, .offsetFromUtc: 28800 }, // Taipei Standard Time
769 { .windowsIdKey: 110, .windowsIdIndex: 2611, .ianaIdIndex: 1516, .offsetFromUtc: 36000 }, // Tasmania Standard Time
770 { .windowsIdKey: 111, .windowsIdIndex: 2634, .ianaIdIndex: 4554,.offsetFromUtc: -10800 }, // Tocantins Standard Time
771 { .windowsIdKey: 112, .windowsIdIndex: 2658, .ianaIdIndex: 2821, .offsetFromUtc: 32400 }, // Tokyo Standard Time
772 { .windowsIdKey: 113, .windowsIdIndex: 2678, .ianaIdIndex: 4572, .offsetFromUtc: 25200 }, // Tomsk Standard Time
773 { .windowsIdKey: 114, .windowsIdIndex: 2698, .ianaIdIndex: 4583, .offsetFromUtc: 46800 }, // Tonga Standard Time
774 { .windowsIdKey: 115, .windowsIdIndex: 2718, .ianaIdIndex: 4601, .offsetFromUtc: 32400 }, // Transbaikal Standard Time
775 { .windowsIdKey: 116, .windowsIdIndex: 2744, .ianaIdIndex: 1130, .offsetFromUtc: 7200 }, // Turkey Standard Time
776 { .windowsIdKey: 117, .windowsIdIndex: 2765, .ianaIdIndex: 4612,.offsetFromUtc: -14400 }, // Turks And Caicos Standard Time
777 { .windowsIdKey: 118, .windowsIdIndex: 2796, .ianaIdIndex: 1021, .offsetFromUtc: 28800 }, // Ulaanbaatar Standard Time
778 { .windowsIdKey: 119, .windowsIdIndex: 2822, .ianaIdIndex: 348,.offsetFromUtc: -18000 }, // US Eastern Standard Time
779 { .windowsIdKey: 120, .windowsIdIndex: 2847, .ianaIdIndex: 2973,.offsetFromUtc: -25200 }, // US Mountain Standard Time
780 { .windowsIdKey: 121, .windowsIdIndex: 2873, .ianaIdIndex: 2455, .offsetFromUtc: 0 }, // UTC
781 { .windowsIdKey: 122, .windowsIdIndex: 2877, .ianaIdIndex: 4631, .offsetFromUtc: 43200 }, // UTC+12
782 { .windowsIdKey: 123, .windowsIdIndex: 2884, .ianaIdIndex: 4642, .offsetFromUtc: 46800 }, // UTC+13
783 { .windowsIdKey: 124, .windowsIdIndex: 2891, .ianaIdIndex: 4653, .offsetFromUtc: -7200 }, // UTC-02
784 { .windowsIdKey: 125, .windowsIdIndex: 2898, .ianaIdIndex: 4663,.offsetFromUtc: -28800 }, // UTC-08
785 { .windowsIdKey: 126, .windowsIdIndex: 2905, .ianaIdIndex: 4673,.offsetFromUtc: -32400 }, // UTC-09
786 { .windowsIdKey: 127, .windowsIdIndex: 2912, .ianaIdIndex: 4683,.offsetFromUtc: -39600 }, // UTC-11
787 { .windowsIdKey: 128, .windowsIdIndex: 2919, .ianaIdIndex: 4694,.offsetFromUtc: -16200 }, // Venezuela Standard Time
788 { .windowsIdKey: 129, .windowsIdIndex: 2943, .ianaIdIndex: 4710, .offsetFromUtc: 36000 }, // Vladivostok Standard Time
789 { .windowsIdKey: 130, .windowsIdIndex: 2969, .ianaIdIndex: 4727, .offsetFromUtc: 14400 }, // Volgograd Standard Time
790 { .windowsIdKey: 131, .windowsIdIndex: 2993, .ianaIdIndex: 1762, .offsetFromUtc: 28800 }, // W. Australia Standard Time
791 { .windowsIdKey: 132, .windowsIdIndex: 3020, .ianaIdIndex: 4744, .offsetFromUtc: 3600 }, // W. Central Africa Standard Time
792 { .windowsIdKey: 133, .windowsIdIndex: 3052, .ianaIdIndex: 4757, .offsetFromUtc: 3600 }, // W. Europe Standard Time
793 { .windowsIdKey: 134, .windowsIdIndex: 3076, .ianaIdIndex: 4771, .offsetFromUtc: 25200 }, // W. Mongolia Standard Time
794 { .windowsIdKey: 135, .windowsIdIndex: 3102, .ianaIdIndex: 4781, .offsetFromUtc: 18000 }, // West Asia Standard Time
795 { .windowsIdKey: 136, .windowsIdIndex: 3126, .ianaIdIndex: 4795, .offsetFromUtc: 7200 }, // West Bank Standard Time
796 { .windowsIdKey: 137, .windowsIdIndex: 3150, .ianaIdIndex: 4807, .offsetFromUtc: 36000 }, // West Pacific Standard Time
797 { .windowsIdKey: 138, .windowsIdIndex: 3177, .ianaIdIndex: 4828, .offsetFromUtc: 32400 }, // Yakutsk Standard Time
798 { .windowsIdKey: 139, .windowsIdIndex: 3199, .ianaIdIndex: 2144,.offsetFromUtc: -25200 }, // Yukon Standard Time
799};
800
801// IANA List Index, UTC Offset
802static inline constexpr UtcData utcDataTable[] = {
803 { .ianaIdIndex: 7136,.offsetFromUtc: -50400 }, // UTC-14:00
804 { .ianaIdIndex: 7146,.offsetFromUtc: -46800 }, // UTC-13:00
805 { .ianaIdIndex: 7156,.offsetFromUtc: -43200 }, // UTC-12:00
806 { .ianaIdIndex: 7166,.offsetFromUtc: -39600 }, // UTC-11:00
807 { .ianaIdIndex: 7176,.offsetFromUtc: -36000 }, // UTC-10:00
808 { .ianaIdIndex: 7186,.offsetFromUtc: -34200 }, // UTC-09:30
809 { .ianaIdIndex: 7196,.offsetFromUtc: -32400 }, // UTC-09:00
810 { .ianaIdIndex: 7206,.offsetFromUtc: -28800 }, // UTC-08:00
811 { .ianaIdIndex: 7216,.offsetFromUtc: -25200 }, // UTC-07:00
812 { .ianaIdIndex: 7226,.offsetFromUtc: -21600 }, // UTC-06:00
813 { .ianaIdIndex: 7236,.offsetFromUtc: -18000 }, // UTC-05:00
814 { .ianaIdIndex: 7246,.offsetFromUtc: -16200 }, // UTC-04:30
815 { .ianaIdIndex: 7256,.offsetFromUtc: -14400 }, // UTC-04:00
816 { .ianaIdIndex: 7266,.offsetFromUtc: -12600 }, // UTC-03:30
817 { .ianaIdIndex: 7276,.offsetFromUtc: -10800 }, // UTC-03:00
818 { .ianaIdIndex: 7286, .offsetFromUtc: -7200 }, // UTC-02:00
819 { .ianaIdIndex: 7296, .offsetFromUtc: -3600 }, // UTC-01:00
820 { .ianaIdIndex: 7306, .offsetFromUtc: 0 }, // UTC
821 { .ianaIdIndex: 7330, .offsetFromUtc: 3600 }, // UTC+01:00
822 { .ianaIdIndex: 7340, .offsetFromUtc: 7200 }, // UTC+02:00
823 { .ianaIdIndex: 7350, .offsetFromUtc: 10800 }, // UTC+03:00
824 { .ianaIdIndex: 7360, .offsetFromUtc: 12600 }, // UTC+03:30
825 { .ianaIdIndex: 7370, .offsetFromUtc: 14400 }, // UTC+04:00
826 { .ianaIdIndex: 7380, .offsetFromUtc: 16200 }, // UTC+04:30
827 { .ianaIdIndex: 7390, .offsetFromUtc: 18000 }, // UTC+05:00
828 { .ianaIdIndex: 7400, .offsetFromUtc: 19800 }, // UTC+05:30
829 { .ianaIdIndex: 7410, .offsetFromUtc: 20700 }, // UTC+05:45
830 { .ianaIdIndex: 7420, .offsetFromUtc: 21600 }, // UTC+06:00
831 { .ianaIdIndex: 7430, .offsetFromUtc: 23400 }, // UTC+06:30
832 { .ianaIdIndex: 7440, .offsetFromUtc: 25200 }, // UTC+07:00
833 { .ianaIdIndex: 7450, .offsetFromUtc: 28800 }, // UTC+08:00
834 { .ianaIdIndex: 7460, .offsetFromUtc: 30600 }, // UTC+08:30
835 { .ianaIdIndex: 7470, .offsetFromUtc: 31500 }, // UTC+08:45
836 { .ianaIdIndex: 7480, .offsetFromUtc: 32400 }, // UTC+09:00
837 { .ianaIdIndex: 7490, .offsetFromUtc: 34200 }, // UTC+09:30
838 { .ianaIdIndex: 7500, .offsetFromUtc: 36000 }, // UTC+10:00
839 { .ianaIdIndex: 7510, .offsetFromUtc: 37800 }, // UTC+10:30
840 { .ianaIdIndex: 7520, .offsetFromUtc: 39600 }, // UTC+11:00
841 { .ianaIdIndex: 7530, .offsetFromUtc: 43200 }, // UTC+12:00
842 { .ianaIdIndex: 7540, .offsetFromUtc: 45900 }, // UTC+12:45
843 { .ianaIdIndex: 7550, .offsetFromUtc: 46800 }, // UTC+13:00
844 { .ianaIdIndex: 7560, .offsetFromUtc: 50400 }, // UTC+14:00
845};
846
847#if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu)
848
849// QLocale::Territory value, IANA ID Index
850static inline constexpr TerritoryZone territoryZoneMap[] = {
851 { 49, 2201 }, // Chile -> America/Santiago
852 { 50, 1053 }, // China -> Asia/Shanghai
853 { 70, 4841 }, // Ecuador -> America/Guayaquil
854 { 91, 4757 }, // Germany -> Europe/Berlin
855 { 143, 4859 }, // Malaysia -> Asia/Kuala_Lumpur
856 { 147, 4877 }, // Marshall Islands -> Pacific/Majuro
857 { 167, 932 }, // New Zealand -> Pacific/Auckland
858 { 188, 3213 }, // Portugal -> Europe/Lisbon
859 { 220, 4892 }, // Spain -> Europe/Madrid
860 { 244, 2527 }, // Ukraine -> Europe/Kyiv
861 { 251, 4781 }, // Uzbekistan -> Asia/Tashkent
862};
863
864// MetaZone Key, MetaZone Name Index, QLocale::Territory value, IANA ID Index
865static inline constexpr MetaZoneData metaZoneTable[] = {
866 { 1, 0, 258, 695 }, // Acre/world -> America/Rio_Branco
867 { 2, 5, 258, 3560 }, // Afghanistan/world -> Asia/Kabul
868 { 3, 17, 30, 4906 }, // Africa_Central/Botswana -> Africa/Gaborone
869 { 3, 17, 38, 4922 }, // Africa_Central/Burundi -> Africa/Bujumbura
870 { 3, 17, 57, 4939 }, // Africa_Central/Congo - Kinshasa -> Africa/Lubumbashi
871 { 3, 17, 142, 4957 }, // Africa_Central/Malawi -> Africa/Blantyre
872 { 3, 17, 194, 4973 }, // Africa_Central/Rwanda -> Africa/Kigali
873 { 3, 17, 258, 4987 }, // Africa_Central/world -> Africa/Maputo
874 { 3, 17, 260, 5001 }, // Africa_Central/Zambia -> Africa/Lusaka
875 { 3, 17, 261, 5015 }, // Africa_Central/Zimbabwe -> Africa/Harare
876 { 4, 32, 55, 5029 }, // Africa_Eastern/Comoros -> Indian/Comoro
877 { 4, 32, 67, 5043 }, // Africa_Eastern/Djibouti -> Africa/Djibouti
878 { 4, 32, 74, 14 }, // Africa_Eastern/Eritrea -> Africa/Asmara
879 { 4, 32, 77, 5059 }, // Africa_Eastern/Ethiopia -> Africa/Addis_Ababa
880 { 4, 32, 141, 5078 }, // Africa_Eastern/Madagascar -> Indian/Antananarivo
881 { 4, 32, 151, 5098 }, // Africa_Eastern/Mayotte -> Indian/Mayotte
882 { 4, 32, 215, 5113 }, // Africa_Eastern/Somalia -> Africa/Mogadishu
883 { 4, 32, 230, 5130 }, // Africa_Eastern/Tanzania -> Africa/Dar_es_Salaam
884 { 4, 32, 243, 5151 }, // Africa_Eastern/Uganda -> Africa/Kampala
885 { 4, 32, 258, 3853 }, // Africa_Eastern/world -> Africa/Nairobi
886 { 5, 47, 258, 5166 }, // Africa_FarWestern/world -> Africa/El_Aaiun
887 { 6, 65, 76, 5182 }, // Africa_Southern/Eswatini -> Africa/Mbabane
888 { 6, 65, 133, 5197 }, // Africa_Southern/Lesotho -> Africa/Maseru
889 { 6, 65, 258, 4479 }, // Africa_Southern/world -> Africa/Johannesburg
890 { 7, 81, 7, 5211 }, // Africa_Western/Angola -> Africa/Luanda
891 { 7, 81, 25, 5225 }, // Africa_Western/Benin -> Africa/Porto-Novo
892 { 7, 81, 40, 5243 }, // Africa_Western/Cameroon -> Africa/Douala
893 { 7, 81, 46, 5257 }, // Africa_Western/Central African Republic -> Africa/Bangui
894 { 7, 81, 48, 5271 }, // Africa_Western/Chad -> Africa/Ndjamena
895 { 7, 81, 56, 5287 }, // Africa_Western/Congo - Brazzaville -> Africa/Brazzaville
896 { 7, 81, 57, 5306 }, // Africa_Western/Congo - Kinshasa -> Africa/Kinshasa
897 { 7, 81, 73, 5322 }, // Africa_Western/Equatorial Guinea -> Africa/Malabo
898 { 7, 81, 88, 5336 }, // Africa_Western/Gabon -> Africa/Libreville
899 { 7, 81, 170, 5354 }, // Africa_Western/Niger -> Africa/Niamey
900 { 7, 81, 258, 4744 }, // Africa_Western/world -> Africa/Lagos
901 { 8, 96, 258, 5368 }, // Aktyubinsk/world -> Asia/Aqtobe
902 { 9, 107, 258, 5380 }, // Alaska/world -> America/Juneau
903 { 10, 114, 258, 3346 }, // Alaska_Hawaii/world -> America/Anchorage
904 { 11, 128, 258, 5395 }, // Almaty/world -> Asia/Almaty
905 { 12, 135, 258, 1908 }, // Amazon/world -> America/Manaus
906 { 13, 142, 24, 5407 }, // America_Central/Belize -> America/Belize
907 { 13, 142, 41, 734 }, // America_Central/Canada -> America/Winnipeg
908 { 13, 142, 59, 5422 }, // America_Central/Costa Rica -> America/Costa_Rica
909 { 13, 142, 72, 5441 }, // America_Central/El Salvador -> America/El_Salvador
910 { 13, 142, 99, 3760 }, // America_Central/Guatemala -> America/Guatemala
911 { 13, 142, 106, 5461 }, // America_Central/Honduras -> America/Tegucigalpa
912 { 13, 142, 152, 2949 }, // America_Central/Mexico -> America/Mexico_City
913 { 13, 142, 258, 2260 }, // America_Central/world -> America/Chicago
914 { 14, 158, 18, 5481 }, // America_Eastern/Bahamas -> America/Nassau
915 { 14, 158, 41, 608 }, // America_Eastern/Canada -> America/Toronto
916 { 14, 158, 45, 5496 }, // America_Eastern/Cayman Islands -> America/Cayman
917 { 14, 158, 104, 3945 }, // America_Eastern/Haiti -> America/Port-au-Prince
918 { 14, 158, 119, 2799 }, // America_Eastern/Jamaica -> America/Jamaica
919 { 14, 158, 181, 2356 }, // America_Eastern/Panama -> America/Panama
920 { 14, 158, 258, 2379 }, // America_Eastern/world -> America/New_York
921 { 15, 174, 41, 893 }, // America_Mountain/Canada -> America/Edmonton
922 { 15, 174, 258, 805 }, // America_Mountain/world -> America/Denver
923 { 16, 191, 41, 2093 }, // America_Pacific/Canada -> America/Vancouver
924 { 16, 191, 152, 313 }, // America_Pacific/Mexico -> America/Tijuana
925 { 16, 191, 258, 3239 }, // America_Pacific/world -> America/Los_Angeles
926 { 17, 207, 258, 5511 }, // Anadyr/world -> Asia/Anadyr
927 { 18, 214, 258, 4422 }, // Apia/world -> Pacific/Apia
928 { 19, 219, 258, 5523 }, // Aqtau/world -> Asia/Aqtau
929 { 20, 225, 258, 5368 }, // Aqtobe/world -> Asia/Aqtobe
930 { 21, 232, 19, 5534 }, // Arabian/Bahrain -> Asia/Bahrain
931 { 21, 232, 113, 3607 }, // Arabian/Iraq -> Asia/Baghdad
932 { 21, 232, 127, 5547 }, // Arabian/Kuwait -> Asia/Kuwait
933 { 21, 232, 190, 5559 }, // Arabian/Qatar -> Asia/Qatar
934 { 21, 232, 258, 3584 }, // Arabian/world -> Asia/Riyadh
935 { 21, 232, 259, 5570 }, // Arabian/Yemen -> Asia/Aden
936 { 22, 240, 258, 166 }, // Argentina/world -> America/Argentina/Buenos_Aires
937 { 23, 250, 258, 5580 }, // Argentina_Western/world -> America/Argentina/San_Luis
938 { 24, 268, 258, 3747 }, // Armenia/world -> Asia/Yerevan
939 { 25, 276, 258, 964 }, // Ashkhabad/world -> Asia/Ashgabat
940 { 26, 286, 8, 5607 }, // Atlantic/Anguilla -> America/Anguilla
941 { 26, 286, 10, 5624 }, // Atlantic/Antigua and Barbuda -> America/Antigua
942 { 26, 286, 13, 5640 }, // Atlantic/Aruba -> America/Aruba
943 { 26, 286, 21, 5654 }, // Atlantic/Barbados -> America/Barbados
944 { 26, 286, 26, 5671 }, // Atlantic/Bermuda -> Atlantic/Bermuda
945 { 26, 286, 34, 5688 }, // Atlantic/British Virgin Islands -> America/Tortola
946 { 26, 286, 44, 5704 }, // Atlantic/Caribbean Netherlands -> America/Kralendijk
947 { 26, 286, 62, 5723 }, // Atlantic/Curacao -> America/Curacao
948 { 26, 286, 68, 5739 }, // Atlantic/Dominica -> America/Dominica
949 { 26, 286, 95, 5756 }, // Atlantic/Greenland -> America/Thule
950 { 26, 286, 96, 5770 }, // Atlantic/Grenada -> America/Grenada
951 { 26, 286, 97, 5786 }, // Atlantic/Guadeloupe -> America/Guadeloupe
952 { 26, 286, 148, 5805 }, // Atlantic/Martinique -> America/Martinique
953 { 26, 286, 158, 5824 }, // Atlantic/Montserrat -> America/Montserrat
954 { 26, 286, 189, 5843 }, // Atlantic/Puerto Rico -> America/Puerto_Rico
955 { 26, 286, 197, 5863 }, // Atlantic/Saint Kitts and Nevis -> America/St_Kitts
956 { 26, 286, 198, 5880 }, // Atlantic/Saint Lucia -> America/St_Lucia
957 { 26, 286, 199, 5897 }, // Atlantic/Saint Martin -> America/Marigot
958 { 26, 286, 201, 5913 }, // Atlantic/Saint Vincent and Grenadines -> America/St_Vincent
959 { 26, 286, 211, 5932 }, // Atlantic/Sint Maarten -> America/Lower_Princes
960 { 26, 286, 236, 5954 }, // Atlantic/Trinidad and Tobago -> America/Port_of_Spain
961 { 26, 286, 249, 855 }, // Atlantic/United States Virgin Islands -> America/St_Thomas
962 { 26, 286, 258, 1939 }, // Atlantic/world -> America/Halifax
963 { 27, 295, 258, 1670 }, // Australia_Central/world -> Australia/Adelaide
964 { 28, 313, 258, 3637 }, // Australia_CentralWestern/world -> Australia/Eucla
965 { 29, 338, 258, 1463 }, // Australia_Eastern/world -> Australia/Sydney
966 { 30, 356, 258, 1762 }, // Australia_Western/world -> Australia/Perth
967 { 31, 374, 258, 3653 }, // Azerbaijan/world -> Asia/Baku
968 { 32, 385, 258, 3663 }, // Azores/world -> Atlantic/Azores
969 { 33, 392, 258, 3653 }, // Baku/world -> Asia/Baku
970 { 34, 397, 258, 1093 }, // Bangladesh/world -> Asia/Dhaka
971 { 35, 408, 258, 132 }, // Bering/world -> America/Adak
972 { 36, 415, 258, 1317 }, // Bhutan/world -> Asia/Thimphu
973 { 37, 422, 258, 4376 }, // Bolivia/world -> America/La_Paz
974 { 38, 430, 258, 5976 }, // Borneo/world -> Asia/Kuching
975 { 39, 437, 258, 1878 }, // Brasilia/world -> America/Sao_Paulo
976 { 40, 446, 258, 2501 }, // British/world -> Europe/London
977 { 41, 454, 258, 5989 }, // Brunei/world -> Asia/Brunei
978 { 42, 461, 258, 3727 }, // Cape_Verde/world -> Atlantic/Cape_Verde
979 { 43, 472, 258, 6001 }, // Casey/world -> Antarctica/Casey
980 { 44, 478, 98, 6018 }, // Chamorro/Guam -> Pacific/Guam
981 { 44, 478, 258, 6031 }, // Chamorro/world -> Pacific/Saipan
982 { 45, 487, 258, 3015 }, // Chatham/world -> Pacific/Chatham
983 { 46, 495, 258, 2201 }, // Chile/world -> America/Santiago
984 { 47, 501, 258, 1053 }, // China/world -> Asia/Shanghai
985 { 48, 507, 258, 6046 }, // Christmas/world -> Indian/Christmas
986 { 49, 517, 258, 6063 }, // Cocos/world -> Indian/Cocos
987 { 50, 523, 258, 4361 }, // Colombia/world -> America/Bogota
988 { 51, 532, 258, 6076 }, // Cook/world -> Pacific/Rarotonga
989 { 52, 537, 258, 2281 }, // Cuba/world -> America/Havana
990 { 53, 542, 258, 1093 }, // Dacca/world -> Asia/Dhaka
991 { 54, 548, 258, 6094 }, // Davis/world -> Antarctica/Davis
992 { 55, 554, 258, 6111 }, // Dominican/world -> America/Santo_Domingo
993 { 56, 564, 258, 6133 }, // DumontDUrville/world -> Antarctica/DumontDUrville
994 { 57, 579, 258, 6159 }, // Dushanbe/world -> Asia/Dushanbe
995 { 58, 588, 258, 6173 }, // Dutch_Guiana/world -> America/Paramaribo
996 { 59, 601, 258, 6192 }, // East_Timor/world -> Asia/Dili
997 { 60, 612, 258, 2237 }, // Easter/world -> Pacific/Easter
998 { 61, 619, 258, 4841 }, // Ecuador/world -> America/Guayaquil
999 { 62, 627, 3, 6202 }, // Europe_Central/Albania -> Europe/Tirane
1000 { 62, 627, 6, 6216 }, // Europe_Central/Andorra -> Europe/Andorra
1001 { 62, 627, 16, 6231 }, // Europe_Central/Austria -> Europe/Vienna
1002 { 62, 627, 23, 2167 }, // Europe_Central/Belgium -> Europe/Brussels
1003 { 62, 627, 29, 6245 }, // Europe_Central/Bosnia and Herzegovina -> Europe/Sarajevo
1004 { 62, 627, 60, 6261 }, // Europe_Central/Croatia -> Europe/Zagreb
1005 { 62, 627, 64, 6275 }, // Europe_Central/Czechia -> Europe/Prague
1006 { 62, 627, 65, 6289 }, // Europe_Central/Denmark -> Europe/Copenhagen
1007 { 62, 627, 91, 4757 }, // Europe_Central/Germany -> Europe/Berlin
1008 { 62, 627, 93, 6307 }, // Europe_Central/Gibraltar -> Europe/Gibraltar
1009 { 62, 627, 108, 3806 }, // Europe_Central/Hungary -> Europe/Budapest
1010 { 62, 627, 117, 6324 }, // Europe_Central/Italy -> Europe/Rome
1011 { 62, 627, 126, 6336 }, // Europe_Central/Kosovo -> Europe/Belgrade
1012 { 62, 627, 136, 6352 }, // Europe_Central/Liechtenstein -> Europe/Vaduz
1013 { 62, 627, 138, 6365 }, // Europe_Central/Luxembourg -> Europe/Luxembourg
1014 { 62, 627, 140, 6383 }, // Europe_Central/Macedonia -> Europe/Skopje
1015 { 62, 627, 146, 6397 }, // Europe_Central/Malta -> Europe/Malta
1016 { 62, 627, 155, 6410 }, // Europe_Central/Monaco -> Europe/Monaco
1017 { 62, 627, 157, 6424 }, // Europe_Central/Montenegro -> Europe/Podgorica
1018 { 62, 627, 165, 6441 }, // Europe_Central/Netherlands -> Europe/Amsterdam
1019 { 62, 627, 175, 6458 }, // Europe_Central/Norway -> Europe/Oslo
1020 { 62, 627, 187, 3190 }, // Europe_Central/Poland -> Europe/Warsaw
1021 { 62, 627, 203, 6470 }, // Europe_Central/San Marino -> Europe/San_Marino
1022 { 62, 627, 207, 6336 }, // Europe_Central/Serbia -> Europe/Belgrade
1023 { 62, 627, 212, 6488 }, // Europe_Central/Slovakia -> Europe/Bratislava
1024 { 62, 627, 213, 6506 }, // Europe_Central/Slovenia -> Europe/Ljubljana
1025 { 62, 627, 220, 4892 }, // Europe_Central/Spain -> Europe/Madrid
1026 { 62, 627, 224, 1429 }, // Europe_Central/Svalbard and Jan Mayen -> Arctic/Longyearbyen
1027 { 62, 627, 225, 6523 }, // Europe_Central/Sweden -> Europe/Stockholm
1028 { 62, 627, 226, 6540 }, // Europe_Central/Switzerland -> Europe/Zurich
1029 { 62, 627, 238, 6554 }, // Europe_Central/Tunisia -> Africa/Tunis
1030 { 62, 627, 253, 6567 }, // Europe_Central/Vatican City -> Europe/Vatican
1031 { 62, 627, 258, 4284 }, // Europe_Central/world -> Europe/Paris
1032 { 63, 642, 2, 6582 }, // Europe_Eastern/Aland Islands -> Europe/Mariehamn
1033 { 63, 642, 36, 6599 }, // Europe_Eastern/Bulgaria -> Europe/Sofia
1034 { 63, 642, 63, 2554 }, // Europe_Eastern/Cyprus -> Asia/Nicosia
1035 { 63, 642, 71, 2320 }, // Europe_Eastern/Egypt -> Africa/Cairo
1036 { 63, 642, 83, 6612 }, // Europe_Eastern/Finland -> Europe/Helsinki
1037 { 63, 642, 94, 2300 }, // Europe_Eastern/Greece -> Europe/Athens
1038 { 63, 642, 132, 4086 }, // Europe_Eastern/Lebanon -> Asia/Beirut
1039 { 63, 642, 258, 3928 }, // Europe_Eastern/world -> Europe/Bucharest
1040 { 64, 657, 193, 3979 }, // Europe_Further_Eastern/Russia -> Europe/Kaliningrad
1041 { 64, 657, 258, 3693 }, // Europe_Further_Eastern/world -> Europe/Minsk
1042 { 65, 680, 81, 1395 }, // Europe_Western/Faroe Islands -> Atlantic/Faroe
1043 { 65, 680, 258, 6628 }, // Europe_Western/world -> Atlantic/Canary
1044 { 66, 695, 258, 6644 }, // Falkland/world -> Atlantic/Stanley
1045 { 67, 704, 258, 3902 }, // Fiji/world -> Pacific/Fiji
1046 { 68, 709, 258, 4345 }, // French_Guiana/world -> America/Cayenne
1047 { 69, 723, 258, 6661 }, // French_Southern/world -> Indian/Kerguelen
1048 { 70, 739, 258, 3778 }, // Frunze/world -> Asia/Bishkek
1049 { 71, 746, 258, 6678 }, // Galapagos/world -> Pacific/Galapagos
1050 { 72, 756, 258, 6696 }, // Gambier/world -> Pacific/Gambier
1051 { 73, 764, 258, 3915 }, // Georgia/world -> Asia/Tbilisi
1052 { 74, 772, 258, 6712 }, // Gilbert_Islands/world -> Pacific/Tarawa
1053 { 75, 788, 37, 6727 }, // GMT/Burkina Faso -> Africa/Ouagadougou
1054 { 75, 788, 89, 6746 }, // GMT/Gambia -> Africa/Banjul
1055 { 75, 788, 92, 6760 }, // GMT/Ghana -> Africa/Accra
1056 { 75, 788, 102, 6773 }, // GMT/Guinea -> Africa/Conakry
1057 { 75, 788, 114, 2338 }, // GMT/Ireland -> Europe/Dublin
1058 { 75, 788, 118, 6788 }, // GMT/Ivory Coast -> Africa/Abidjan
1059 { 75, 788, 145, 44 }, // GMT/Mali -> Africa/Bamako
1060 { 75, 788, 149, 6803 }, // GMT/Mauritania -> Africa/Nouakchott
1061 { 75, 788, 196, 6821 }, // GMT/Saint Helena -> Atlantic/St_Helena
1062 { 75, 788, 206, 6840 }, // GMT/Senegal -> Africa/Dakar
1063 { 75, 788, 209, 6853 }, // GMT/Sierra Leone -> Africa/Freetown
1064 { 75, 788, 233, 6869 }, // GMT/Togo -> Africa/Lome
1065 { 75, 788, 246, 2501 }, // GMT/United Kingdom -> Europe/London
1066 { 75, 788, 258, 2748 }, // GMT/world -> Atlantic/Reykjavik
1067 { 76, 792, 258, 6881 }, // Goose_Bay/world -> America/Goose_Bay
1068 { 77, 802, 258, 393 }, // Greenland/world -> America/Nuuk
1069 { 78, 812, 258, 6899 }, // Greenland_Central/world -> America/Scoresbysund
1070 { 79, 830, 258, 6899 }, // Greenland_Eastern/world -> America/Scoresbysund
1071 { 80, 848, 258, 393 }, // Greenland_Western/world -> America/Nuuk
1072 { 81, 866, 258, 6018 }, // Guam/world -> Pacific/Guam
1073 { 82, 871, 176, 6920 }, // Gulf/Oman -> Asia/Muscat
1074 { 82, 871, 258, 3596 }, // Gulf/world -> Asia/Dubai
1075 { 83, 876, 258, 6932 }, // Guyana/world -> America/Guyana
1076 { 84, 883, 258, 2723 }, // Hawaii_Aleutian/world -> Pacific/Honolulu
1077 { 85, 899, 258, 2704 }, // Hong_Kong/world -> Asia/Hong_Kong
1078 { 86, 909, 258, 4771 }, // Hovd/world -> Asia/Hovd
1079 { 87, 914, 221, 4511 }, // India/Sri Lanka -> Asia/Colombo
1080 { 87, 914, 258, 992 }, // India/world -> Asia/Kolkata
1081 { 88, 920, 258, 6947 }, // Indian_Ocean/world -> Indian/Chagos
1082 { 89, 933, 39, 6961 }, // Indochina/Cambodia -> Asia/Phnom_Penh
1083 { 89, 933, 129, 6977 }, // Indochina/Laos -> Asia/Vientiane
1084 { 89, 933, 258, 4466 }, // Indochina/world -> Asia/Bangkok
1085 { 90, 943, 258, 1349 }, // Indonesia_Central/world -> Asia/Makassar
1086 { 91, 961, 258, 6992 }, // Indonesia_Eastern/world -> Asia/Jayapura
1087 { 92, 979, 258, 7006 }, // Indonesia_Western/world -> Asia/Jakarta
1088 { 93, 997, 258, 2772 }, // Iran/world -> Asia/Tehran
1089 { 94, 1002, 258, 2338 }, // Irish/world -> Europe/Dublin
1090 { 95, 1008, 258, 4184 }, // Irkutsk/world -> Asia/Irkutsk
1091 { 96, 1016, 258, 1290 }, // Israel/world -> Asia/Jerusalem
1092 { 97, 1023, 258, 2821 }, // Japan/world -> Asia/Tokyo
1093 { 98, 1029, 258, 4316 }, // Kamchatka/world -> Asia/Kamchatka
1094 { 99, 1039, 258, 4239 }, // Karachi/world -> Asia/Karachi
1095 { 100, 1047, 258, 5395 }, // Kazakhstan/world -> Asia/Almaty
1096 { 101, 1058, 258, 5395 }, // Kazakhstan_Eastern/world -> Asia/Almaty
1097 { 102, 1077, 258, 5368 }, // Kazakhstan_Western/world -> Asia/Aqtobe
1098 { 103, 1096, 258, 4269 }, // Kizilorda/world -> Asia/Qyzylorda
1099 { 104, 1106, 258, 3279 }, // Korea/world -> Asia/Seoul
1100 { 105, 1112, 258, 7019 }, // Kosrae/world -> Pacific/Kosrae
1101 { 106, 1119, 258, 4197 }, // Krasnoyarsk/world -> Asia/Krasnoyarsk
1102 { 107, 1131, 258, 4331 }, // Kuybyshev/world -> Europe/Samara
1103 { 108, 1141, 258, 2842 }, // Kwajalein/world -> Pacific/Kwajalein
1104 { 109, 1151, 258, 3778 }, // Kyrgystan/world -> Asia/Bishkek
1105 { 110, 1161, 258, 4511 }, // Lanka/world -> Asia/Colombo
1106 { 111, 1167, 258, 7034 }, // Liberia/world -> Africa/Monrovia
1107 { 112, 1175, 258, 3998 }, // Line_Islands/world -> Pacific/Kiritimati
1108 { 113, 1188, 258, 1547 }, // Lord_Howe/world -> Australia/Lord_Howe
1109 { 114, 1198, 258, 1211 }, // Macau/world -> Asia/Macau
1110 { 115, 1204, 258, 4017 }, // Magadan/world -> Asia/Magadan
1111 { 116, 1212, 258, 4859 }, // Malaya/world -> Asia/Kuala_Lumpur
1112 { 117, 1219, 258, 5976 }, // Malaysia/world -> Asia/Kuching
1113 { 118, 1228, 258, 7050 }, // Maldives/world -> Indian/Maldives
1114 { 119, 1237, 258, 4051 }, // Marquesas/world -> Pacific/Marquesas
1115 { 120, 1247, 258, 4877 }, // Marshall_Islands/world -> Pacific/Majuro
1116 { 121, 1264, 258, 4069 }, // Mauritius/world -> Indian/Mauritius
1117 { 122, 1274, 258, 7066 }, // Mawson/world -> Antarctica/Mawson
1118 { 123, 1281, 258, 2917 }, // Mexico_Pacific/world -> America/Mazatlan
1119 { 124, 1296, 258, 1021 }, // Mongolia/world -> Asia/Ulaanbaatar
1120 { 125, 1305, 258, 3537 }, // Moscow/world -> Europe/Moscow
1121 { 126, 1312, 258, 1235 }, // Myanmar/world -> Asia/Yangon
1122 { 127, 1320, 258, 7084 }, // Nauru/world -> Pacific/Nauru
1123 { 128, 1326, 258, 1185 }, // Nepal/world -> Asia/Kathmandu
1124 { 129, 1332, 258, 7098 }, // New_Caledonia/world -> Pacific/Noumea
1125 { 130, 1346, 9, 7113 }, // New_Zealand/Antarctica -> Antarctica/McMurdo
1126 { 130, 1346, 258, 932 }, // New_Zealand/world -> Pacific/Auckland
1127 { 131, 1358, 258, 2061 }, // Newfoundland/world -> America/St_Johns
1128 { 132, 1371, 258, 7132 }, // Niue/world -> Pacific/Niue
1129 { 133, 1376, 258, 4168 }, // Norfolk/world -> Pacific/Norfolk
1130 { 134, 1384, 258, 1850 }, // Noronha/world -> America/Noronha
1131 { 135, 1392, 258, 6031 }, // North_Mariana/world -> Pacific/Saipan
1132 { 136, 1406, 258, 4135 }, // Novosibirsk/world -> Asia/Novosibirsk
1133 { 137, 1418, 258, 4229 }, // Omsk/world -> Asia/Omsk
1134 { 138, 1423, 258, 7145 }, // Oral/world -> Asia/Oral
1135 { 139, 1428, 258, 4239 }, // Pakistan/world -> Asia/Karachi
1136 { 140, 1437, 258, 7155 }, // Palau/world -> Pacific/Palau
1137 { 141, 1443, 258, 4807 }, // Papua_New_Guinea/world -> Pacific/Port_Moresby
1138 { 142, 1460, 258, 4252 }, // Paraguay/world -> America/Asuncion
1139 { 143, 1469, 258, 7169 }, // Peru/world -> America/Lima
1140 { 144, 1474, 258, 7182 }, // Philippines/world -> Asia/Manila
1141 { 145, 1486, 258, 3049 }, // Phoenix_Islands/world -> Pacific/Kanton
1142 { 146, 1502, 258, 4391 }, // Pierre_Miquelon/world -> America/Miquelon
1143 { 147, 1518, 258, 7194 }, // Pitcairn/world -> Pacific/Pitcairn
1144 { 148, 1527, 258, 3096 }, // Ponape/world -> Pacific/Pohnpei
1145 { 149, 1534, 258, 4214 }, // Pyongyang/world -> Asia/Pyongyang
1146 { 150, 1544, 258, 4269 }, // Qyzylorda/world -> Asia/Qyzylorda
1147 { 151, 1554, 258, 7211 }, // Reunion/world -> Indian/Reunion
1148 { 152, 1562, 258, 7226 }, // Rothera/world -> Antarctica/Rothera
1149 { 153, 1570, 258, 4408 }, // Sakhalin/world -> Asia/Sakhalin
1150 { 154, 1579, 258, 4331 }, // Samara/world -> Europe/Samara
1151 { 155, 1586, 258, 7245 }, // Samarkand/world -> Asia/Samarkand
1152 { 156, 1596, 258, 3126 }, // Samoa/world -> Pacific/Pago_Pago
1153 { 157, 1602, 258, 7260 }, // Seychelles/world -> Indian/Mahe
1154 { 158, 1613, 258, 5523 }, // Shevchenko/world -> Asia/Aqtau
1155 { 159, 1624, 258, 3300 }, // Singapore/world -> Asia/Singapore
1156 { 160, 1634, 258, 3822 }, // Solomon/world -> Pacific/Guadalcanal
1157 { 161, 1642, 258, 7272 }, // South_Georgia/world -> Atlantic/South_Georgia
1158 { 162, 1656, 258, 6173 }, // Suriname/world -> America/Paramaribo
1159 { 163, 1665, 258, 3883 }, // Sverdlovsk/world -> Asia/Yekaterinburg
1160 { 164, 1676, 258, 7295 }, // Syowa/world -> Antarctica/Syowa
1161 { 165, 1682, 258, 7312 }, // Tahiti/world -> Pacific/Tahiti
1162 { 166, 1689, 258, 3263 }, // Taipei/world -> Asia/Taipei
1163 { 167, 1696, 258, 6159 }, // Tajikistan/world -> Asia/Dushanbe
1164 { 168, 1707, 258, 4781 }, // Tashkent/world -> Asia/Tashkent
1165 { 169, 1716, 258, 3915 }, // Tbilisi/world -> Asia/Tbilisi
1166 { 170, 1724, 258, 7327 }, // Tokelau/world -> Pacific/Fakaofo
1167 { 171, 1732, 258, 4583 }, // Tonga/world -> Pacific/Tongatapu
1168 { 172, 1738, 258, 3157 }, // Truk/world -> Pacific/Chuuk
1169 { 173, 1743, 258, 1130 }, // Turkey/world -> Europe/Istanbul
1170 { 174, 1750, 258, 964 }, // Turkmenistan/world -> Asia/Ashgabat
1171 { 175, 1763, 258, 7343 }, // Tuvalu/world -> Pacific/Funafuti
1172 { 176, 1770, 258, 7145 }, // Uralsk/world -> Asia/Oral
1173 { 177, 1777, 258, 4098 }, // Uruguay/world -> America/Montevideo
1174 { 178, 1785, 258, 1159 }, // Urumqi/world -> Asia/Urumqi
1175 { 179, 1792, 258, 4781 }, // Uzbekistan/world -> Asia/Tashkent
1176 { 180, 1803, 258, 7360 }, // Vanuatu/world -> Pacific/Efate
1177 { 181, 1811, 258, 4694 }, // Venezuela/world -> America/Caracas
1178 { 182, 1821, 258, 4710 }, // Vladivostok/world -> Asia/Vladivostok
1179 { 183, 1833, 258, 4727 }, // Volgograd/world -> Europe/Volgograd
1180 { 184, 1843, 258, 7374 }, // Vostok/world -> Antarctica/Vostok
1181 { 185, 1850, 258, 7392 }, // Wake/world -> Pacific/Wake
1182 { 186, 1855, 258, 7405 }, // Wallis/world -> Pacific/Wallis
1183 { 187, 1862, 258, 4828 }, // Yakutsk/world -> Asia/Yakutsk
1184 { 188, 1870, 258, 3883 }, // Yekaterinburg/world -> Asia/Yekaterinburg
1185 { 189, 1884, 258, 3747 }, // Yerevan/world -> Asia/Yerevan
1186 { 190, 1892, 258, 2144 }, // Yukon/world -> America/Whitehorse
1187};
1188
1189// IANA ID Index, MetaZone Key, interval start, end
1190static inline constexpr ZoneMetaHistory zoneHistoryTable[] = {
1191 { 6788, 75, 0,4294967295 },
1192 { 6760, 75, 0,4294967295 },
1193 { 5059, 4, 0,4294967295 },
1194 { 7420, 65, 0, 4103940 },
1195 { 7420, 62, 4103940, 5162340 },
1196 { 7420, 65, 5162340, 5958720 },
1197 { 7420, 62, 5958720,4294967295 },
1198 { 14, 4, 0,4294967295 },
1199 { 44, 75, 0,4294967295 },
1200 { 5257, 7, 0,4294967295 },
1201 { 6746, 75, 0,4294967295 },
1202 { 7435, 5, 0, 2629500 },
1203 { 7435, 75, 2629500,4294967295 },
1204 { 4957, 3, 0,4294967295 },
1205 { 5287, 7, 0,4294967295 },
1206 { 4922, 3, 0,4294967295 },
1207 { 2320, 63, 0,4294967295 },
1208 { 4117, 65, 0, 7470720 },
1209 { 4117, 62, 7470720, 8415300 },
1210 { 4117, 65, 8415300, 25678200 },
1211 { 7449, 65, 0, 7470720 },
1212 { 7449, 62, 7470720,4294967295 },
1213 { 6773, 75, 0,4294967295 },
1214 { 6840, 75, 0,4294967295 },
1215 { 5130, 4, 0,4294967295 },
1216 { 5043, 4, 0,4294967295 },
1217 { 5243, 7, 0,4294967295 },
1218 { 5166, 5, 0, 3304860 },
1219 { 5166, 65, 3304860, 25678200 },
1220 { 6853, 75, 0,4294967295 },
1221 { 4906, 3, 0,4294967295 },
1222 { 5015, 3, 0,4294967295 },
1223 { 4479, 6, 0,4294967295 },
1224 { 4499, 3, 0, 15798840 },
1225 { 4499, 4, 15798840, 26868780 },
1226 { 4499, 3, 26868780,4294967295 },
1227 { 5151, 4, 0,4294967295 },
1228 { 4524, 3, 0, 15798840 },
1229 { 4524, 4, 15798840, 25158060 },
1230 { 4524, 3, 25158060,4294967295 },
1231 { 4973, 3, 0,4294967295 },
1232 { 5306, 7, 0,4294967295 },
1233 { 4744, 7, 0,4294967295 },
1234 { 5336, 7, 0,4294967295 },
1235 { 6869, 75, 0,4294967295 },
1236 { 5211, 7, 0,4294967295 },
1237 { 4939, 3, 0,4294967295 },
1238 { 5001, 3, 0,4294967295 },
1239 { 5322, 7, 0,4294967295 },
1240 { 4987, 3, 0,4294967295 },
1241 { 5197, 6, 0,4294967295 },
1242 { 5182, 6, 0,4294967295 },
1243 { 5113, 4, 0,4294967295 },
1244 { 7034, 111, 0, 1225485 },
1245 { 7034, 75, 1225485,4294967295 },
1246 { 3853, 4, 0,4294967295 },
1247 { 5271, 7, 0,4294967295 },
1248 { 5354, 7, 0,4294967295 },
1249 { 6803, 75, 0,4294967295 },
1250 { 6727, 75, 0,4294967295 },
1251 { 5225, 7, 0,4294967295 },
1252 { 4435, 75, 0, 25246140 },
1253 { 4435, 7, 25246140, 25771740 },
1254 { 4435, 75, 25771740,4294967295 },
1255 { 2866, 63, 0, 6311400 },
1256 { 2866, 62, 6311400, 10696260 },
1257 { 2866, 63, 10696260, 14067240 },
1258 { 2866, 62, 14067240, 14598600 },
1259 { 2866, 63, 14598600, 22541760 },
1260 { 2866, 62, 22541760, 23044320 },
1261 { 2866, 63, 23044320,4294967295 },
1262 { 6554, 62, 0,4294967295 },
1263 { 4152, 6, 0, 10632840 },
1264 { 4152, 3, 10632840, 12736680 },
1265 { 4152, 7, 12736680, 25146600 },
1266 { 4152, 3, 25146600,4294967295 },
1267 { 132, 35, 0, 7272720 },
1268 { 132, 84, 7317240,4294967295 },
1269 { 3346, 10, 0, 7272660 },
1270 { 3346, 9, 7317180,4294967295 },
1271 { 5607, 26, 0,4294967295 },
1272 { 5624, 26, 0,4294967295 },
1273 { 4554, 39, 0,4294967295 },
1274 { 166, 22, 0,4294967295 },
1275 { 91, 22, 0, 11132760 },
1276 { 91, 22, 11465520, 18100980 },
1277 { 91, 23, 18100980, 18128400 },
1278 { 91, 22, 18128400,4294967295 },
1279 { 270, 22, 0, 11132760 },
1280 { 270, 22, 11465520,4294967295 },
1281 { 441, 22, 0, 10608600 },
1282 { 441, 22, 11445360,4294967295 },
1283 { 7462, 22, 0, 11129880 },
1284 { 7462, 23, 11129880, 11226480 },
1285 { 7462, 22, 11226480, 18100980 },
1286 { 7462, 23, 18100980, 18128400 },
1287 { 7462, 22, 18128400,4294967295 },
1288 { 565, 22, 0, 10608600 },
1289 { 565, 22, 11989680, 18088020 },
1290 { 565, 22, 18269520,4294967295 },
1291 { 7489, 22, 0, 18100980 },
1292 { 7489, 23, 18100980, 18128400 },
1293 { 7489, 22, 18128400,4294967295 },
1294 { 7520, 22, 0, 11132760 },
1295 { 7520, 22, 11465520,4294967295 },
1296 { 7544, 22, 0, 11129880 },
1297 { 7544, 23, 11129880, 11226480 },
1298 { 7544, 22, 11226480, 18099540 },
1299 { 7544, 23, 18099540, 18178800 },
1300 { 7544, 22, 18178800,4294967295 },
1301 { 5580, 22, 0, 10623000 },
1302 { 5580, 23, 10623000, 11262480 },
1303 { 5580, 22, 11262480, 15648660 },
1304 { 5580, 23, 15648660, 15867540 },
1305 { 5580, 22, 15867540, 18099540 },
1306 { 5580, 23, 18099540, 18178800 },
1307 { 5580, 22, 18178800, 20014680 },
1308 { 5580, 23, 20014680, 20920560 },
1309 { 5580, 22, 20920560,4294967295 },
1310 { 7571, 22, 0, 11132760 },
1311 { 7571, 22, 11465520, 18100980 },
1312 { 7571, 23, 18100980, 18118320 },
1313 { 7571, 22, 18118320,4294967295 },
1314 { 7597, 22, 0, 18098100 },
1315 { 7597, 22, 18128400,4294967295 },
1316 { 5640, 26, 0,4294967295 },
1317 { 4252, 142, 0,4294967295 },
1318 { 237, 14, 0,4294967295 },
1319 { 3679, 39, 0,4294967295 },
1320 { 7623, 15, 0, 21172860 },
1321 { 7623, 13, 21172860,4294967295 },
1322 { 5654, 26, 0,4294967295 },
1323 { 7646, 39, 0,4294967295 },
1324 { 5407, 13, 0,4294967295 },
1325 { 7660, 26, 0,4294967295 },
1326 { 7681, 12, 0,4294967295 },
1327 { 4361, 50, 0,4294967295 },
1328 { 7699, 15, 0,4294967295 },
1329 { 7713, 15, 0, 15689280 },
1330 { 7713, 13, 15689280, 16213380 },
1331 { 7713, 14, 16213380, 16223340 },
1332 { 7713, 13, 16223340, 16435260 },
1333 { 7713, 15, 16435260,4294967295 },
1334 { 7735, 12, 0,4294967295 },
1335 { 3868, 13, 0, 6303360 },
1336 { 3868, 14, 6303360, 6841740 },
1337 { 3868, 13, 6841740, 14630820 },
1338 { 3868, 14, 14630820, 15033960 },
1339 { 3868, 13, 15033960, 23712960 },
1340 { 3868, 14, 23712960,4294967295 },
1341 { 4694, 181, 0,4294967295 },
1342 { 4345, 68, 0,4294967295 },
1343 { 5496, 14, 0,4294967295 },
1344 { 2260, 13, 0,4294967295 },
1345 { 7756, 13, 0, 14862780 },
1346 { 7756, 123, 14862780, 27785280 },
1347 { 7756, 13, 27785280,4294967295 },
1348 { 7774, 13, 0, 14862780 },
1349 { 7774, 123, 14862780, 27785280 },
1350 { 7774, 13, 27785280, 27829800 },
1351 { 7774, 15, 27829800,4294967295 },
1352 { 5422, 13, 0,4294967295 },
1353 { 7796, 15, 0,4294967295 },
1354 { 3791, 12, 0,4294967295 },
1355 { 5723, 26, 0,4294967295 },
1356 { 7812, 80, 0, 13674420 },
1357 { 7812, 75, 13674420,4294967295 },
1358 { 7833, 16, 2010780, 26736900 },
1359 { 7833, 190, 26736900,4294967295 },
1360 { 7848, 16, 0, 1400220 },
1361 { 7848, 15, 1400220,4294967295 },
1362 { 805, 15, 0,4294967295 },
1363 { 3465, 14, 0,4294967295 },
1364 { 5739, 26, 0,4294967295 },
1365 { 893, 15, 0,4294967295 },
1366 { 7869, 1, 0, 20238060 },
1367 { 7869, 12, 20238060, 23067600 },
1368 { 7869, 1, 23067600,4294967295 },
1369 { 5441, 13, 0,4294967295 },
1370 { 7886, 16, 0, 23763480 },
1371 { 7886, 15, 23763480,4294967295 },
1372 { 7906, 39, 0,4294967295 },
1373 { 7924, 26, 0,4294967295 },
1374 { 6881, 26, 0, 9600721 },
1375 { 6881, 76, 9600721, 9903001 },
1376 { 6881, 26, 9903001,4294967295 },
1377 { 4612, 14, 0, 23763300 },
1378 { 4612, 26, 23763300, 25345860 },
1379 { 4612, 14, 25345860,4294967295 },
1380 { 5770, 26, 0,4294967295 },
1381 { 5786, 26, 0,4294967295 },
1382 { 3760, 13, 0,4294967295 },
1383 { 4841, 61, 0,4294967295 },
1384 { 6932, 83, 0,4294967295 },
1385 { 1939, 26, 0,4294967295 },
1386 { 2281, 52, 0,4294967295 },
1387 { 7942, 123, 0,4294967295 },
1388 { 348, 14, 0,4294967295 },
1389 { 481, 13, 0, 11475780 },
1390 { 481, 14, 11475780, 19066020 },
1391 { 481, 13, 19066020,4294967295 },
1392 { 7961, 14, 0, 2111460 },
1393 { 7961, 13, 2111460, 2534820 },
1394 { 7961, 14, 2534820,4294967295 },
1395 { 7985, 13, 0, 4117380 },
1396 { 7985, 14, 4117380, 19066020 },
1397 { 7985, 13, 19066020, 19902660 },
1398 { 7985, 14, 19902660,4294967295 },
1399 { 8012, 14, 0, 19066020 },
1400 { 8012, 13, 19066020,4294967295 },
1401 { 8038, 14, 0,4294967295 },
1402 { 8060, 14, 0, 19066020 },
1403 { 8060, 13, 19066020, 19902660 },
1404 { 8060, 14, 19902660,4294967295 },
1405 { 8086, 14, 0, 19066020 },
1406 { 8086, 13, 19066020, 19560000 },
1407 { 8086, 14, 19560000,4294967295 },
1408 { 8110, 16, 0, 4903800 },
1409 { 8110, 15, 4903800,4294967295 },
1410 { 660, 14, 0, 15689160 },
1411 { 660, 13, 15689160, 16213380 },
1412 { 660, 14, 16213380,4294967295 },
1413 { 2799, 14, 0,4294967295 },
1414 { 5380, 16, 0, 5427960 },
1415 { 5380, 16, 5690040, 7272540 },
1416 { 5380, 9, 7317180,4294967295 },
1417 { 521, 14, 0, 2111460 },
1418 { 521, 13, 2111460, 2534820 },
1419 { 521, 14, 2534820,4294967295 },
1420 { 8125, 13, 0, 16213380 },
1421 { 8125, 14, 16213380,4294967295 },
1422 { 5704, 26, 0,4294967295 },
1423 { 4376, 37, 0,4294967295 },
1424 { 7169, 143, 0,4294967295 },
1425 { 3239, 16, 0,4294967295 },
1426 { 5932, 26, 0,4294967295 },
1427 { 8153, 39, 0,4294967295 },
1428 { 8168, 13, 0, 1751400 },
1429 { 8168, 14, 1751400, 2695980 },
1430 { 8168, 13, 2695980, 11571000 },
1431 { 8168, 14, 11571000, 11955180 },
1432 { 8168, 13, 11955180, 12097800 },
1433 { 8168, 14, 12097800, 14201580 },
1434 { 8168, 13, 14201580,4294967295 },
1435 { 1908, 12, 0,4294967295 },
1436 { 5897, 26, 0,4294967295 },
1437 { 5805, 26, 0,4294967295 },
1438 { 8184, 13, 0,4294967295 },
1439 { 2917, 123, 0,4294967295 },
1440 { 8202, 14, 0, 1748580 },
1441 { 8202, 13, 1748580,4294967295 },
1442 { 8220, 13, 0, 6303360 },
1443 { 8220, 14, 6303360, 6751140 },
1444 { 8220, 13, 6751140,4294967295 },
1445 { 8235, 16, 0, 24106200 },
1446 { 8235, 9, 24106200, 25688760 },
1447 { 8235, 16, 25688760, 25799640 },
1448 { 8235, 9, 25799640,4294967295 },
1449 { 2949, 13, 0,4294967295 },
1450 { 4391, 26, 0, 5433360 },
1451 { 4391, 146, 5433360,4294967295 },
1452 { 8254, 26, 0,4294967295 },
1453 { 8270, 13, 0,4294967295 },
1454 { 4098, 177, 0,4294967295 },
1455 { 5824, 26, 0,4294967295 },
1456 { 5481, 14, 0,4294967295 },
1457 { 2379, 14, 0,4294967295 },
1458 { 8288, 35, 0, 7272720 },
1459 { 8288, 9, 7317180,4294967295 },
1460 { 1850, 134, 0,4294967295 },
1461 { 8301, 15, 0, 21485280 },
1462 { 8301, 13, 21485280,4294967295 },
1463 { 8329, 15, 0, 12000000 },
1464 { 8329, 13, 12000000,4294967295 },
1465 { 8357, 15, 0, 17785920 },
1466 { 8357, 13, 17785920,4294967295 },
1467 { 393, 80, 0, 28523580 },
1468 { 393, 77, 28523580,4294967295 },
1469 { 8388, 13, 0, 14862780 },
1470 { 8388, 15, 14862780, 27785280 },
1471 { 8388, 13, 27785280,4294967295 },
1472 { 2356, 14, 0,4294967295 },
1473 { 6173, 58, 0, 3094770 },
1474 { 6173, 162, 3094770,4294967295 },
1475 { 2973, 15, 0,4294967295 },
1476 { 3945, 14, 0,4294967295 },
1477 { 5954, 26, 0,4294967295 },
1478 { 8404, 12, 0,4294967295 },
1479 { 5843, 26, 0,4294967295 },
1480 { 4030, 46, 0, 24680100 },
1481 { 8424, 13, 0, 16213380 },
1482 { 8424, 14, 16213380, 16435200 },
1483 { 8424, 13, 16435200,4294967295 },
1484 { 8445, 39, 0,4294967295 },
1485 { 1995, 13, 0,4294967295 },
1486 { 8460, 13, 0, 16213380 },
1487 { 8460, 14, 16213380, 16435200 },
1488 { 8460, 13, 16435200, 19368420 },
1489 { 8460, 14, 19368420, 19560000 },
1490 { 8460, 13, 19560000,4294967295 },
1491 { 695, 1, 0, 20238060 },
1492 { 695, 12, 20238060, 23067600 },
1493 { 695, 1, 23067600,4294967295 },
1494 { 8477, 12, 0, 20238000 },
1495 { 8477, 39, 20238000,4294967295 },
1496 { 2201, 46, 0,4294967295 },
1497 { 6111, 55, 0, 2534700 },
1498 { 6111, 26, 2534700, 16213320 },
1499 { 6111, 14, 16213320, 16263720 },
1500 { 6111, 26, 16263720,4294967295 },
1501 { 1878, 39, 0,4294967295 },
1502 { 6899, 78, 0, 5911320 },
1503 { 6899, 79, 5911320, 28530780 },
1504 { 6899, 77, 28530780,4294967295 },
1505 { 8494, 16, 0, 7272540 },
1506 { 8494, 9, 7317180,4294967295 },
1507 { 8508, 26, 0,4294967295 },
1508 { 2061, 131, 0,4294967295 },
1509 { 5863, 26, 0,4294967295 },
1510 { 5880, 26, 0,4294967295 },
1511 { 855, 26, 0,4294967295 },
1512 { 5913, 26, 0,4294967295 },
1513 { 8530, 15, 0, 1224540 },
1514 { 8530, 13, 1224540,4294967295 },
1515 { 5461, 13, 0,4294967295 },
1516 { 5756, 26, 0,4294967295 },
1517 { 313, 16, 0,4294967295 },
1518 { 608, 14, 0,4294967295 },
1519 { 5688, 26, 0,4294967295 },
1520 { 2093, 16, 0,4294967295 },
1521 { 2144, 16, 0, 26736900 },
1522 { 2144, 190, 26736900,4294967295 },
1523 { 734, 13, 0,4294967295 },
1524 { 8552, 9, 7317180,4294967295 },
1525 { 6001, 30, 0, 20930040 },
1526 { 6001, 43, 20930040, 21128580 },
1527 { 6001, 30, 21128580, 21995640 },
1528 { 6001, 43, 21995640, 22164060 },
1529 { 6001, 30, 22164060, 24617760 },
1530 { 6001, 43, 24617760, 25345020 },
1531 { 6001, 30, 25345020, 25647600 },
1532 { 6001, 43, 25647600, 25879200 },
1533 { 6001, 30, 25879200, 26168820 },
1534 { 6001, 43, 26168820, 26393280 },
1535 { 6001, 30, 26393280, 26695681 },
1536 { 6001, 43, 26695681, 26927340 },
1537 { 6001, 30, 26927340, 27219841 },
1538 { 6001, 43, 27219841, 27451500 },
1539 { 6001, 30, 27451500, 27744001 },
1540 { 6001, 43, 27744001, 27971520 },
1541 { 6001, 30, 27971520,4294967295 },
1542 { 6094, 54, 0,4294967295 },
1543 { 6133, 56, 0,4294967295 },
1544 { 8568, 29, 0,4294967295 },
1545 { 7066, 122, 0,4294967295 },
1546 { 7113, 130, 0,4294967295 },
1547 { 8589, 22, 0, 6484500 },
1548 { 8589, 46, 6484500, 24680100 },
1549 { 7226, 152, 0,4294967295 },
1550 { 7295, 164, 0,4294967295 },
1551 { 8607, 75, 0,4294967295 },
1552 { 7374, 184, 0,4294967295 },
1553 { 1429, 62, 0,4294967295 },
1554 { 5570, 21, 0,4294967295 },
1555 { 5395, 11, 0, 18319440 },
1556 { 5395, 101, 18319440, 28487160 },
1557 { 5395, 100, 28487160,4294967295 },
1558 { 3968, 63, 0, 27781800 },
1559 { 5511, 17, 0, 21161640 },
1560 { 5511, 115, 21161640, 23570760 },
1561 { 5511, 17, 23570760,4294967295 },
1562 { 5523, 158, 0, 11547060 },
1563 { 5523, 19, 11547060, 18319560 },
1564 { 5523, 102, 18319560, 28487160 },
1565 { 5523, 100, 28487160,4294967295 },
1566 { 5368, 8, 0, 11547060 },
1567 { 5368, 20, 11547060, 18319500 },
1568 { 5368, 102, 18319500, 28487160 },
1569 { 5368, 100, 28487160,4294967295 },
1570 { 964, 25, 0, 11475120 },
1571 { 964, 174, 11475120,4294967295 },
1572 { 8624, 102, 18319560, 28487160 },
1573 { 8624, 100, 28487160,4294967295 },
1574 { 3607, 21, 0,4294967295 },
1575 { 5534, 82, 0, 1269840 },
1576 { 5534, 21, 1269840,4294967295 },
1577 { 3653, 33, 0, 11391600 },
1578 { 3653, 31, 11391600,4294967295 },
1579 { 4466, 89, 0,4294967295 },
1580 { 4086, 63, 0,4294967295 },
1581 { 3778, 70, 0, 11393040 },
1582 { 3778, 109, 11393040,4294967295 },
1583 { 5989, 41, 0,4294967295 },
1584 { 4601, 187, 0, 23570880 },
1585 { 4601, 95, 23570880, 24316920 },
1586 { 4601, 187, 24316920,4294967295 },
1587 { 4511, 87, 0, 13882710 },
1588 { 4511, 110, 13882710, 19083990 },
1589 { 4511, 87, 19083990,4294967295 },
1590 { 4540, 63, 0, 27781740 },
1591 { 1093, 53, 0, 646200 },
1592 { 1093, 34, 646200,4294967295 },
1593 { 6192, 59, 0, 3331620 },
1594 { 6192, 90, 3331620, 16152000 },
1595 { 6192, 59, 16152000,4294967295 },
1596 { 3596, 82, 0,4294967295 },
1597 { 6159, 57, 0, 11406060 },
1598 { 6159, 167, 11406060,4294967295 },
1599 { 8636, 63, 0, 24554700 },
1600 { 8651, 96, 0, 13674120 },
1601 { 8651, 63, 13674120,4294967295 },
1602 { 4795, 96, 0, 13674120 },
1603 { 4795, 63, 13674120,4294967295 },
1604 { 1259, 89, 2863680,4294967295 },
1605 { 2704, 85, 0,4294967295 },
1606 { 4771, 86, 0,4294967295 },
1607 { 4184, 95, 0,4294967295 },
1608 { 7006, 92, 0,4294967295 },
1609 { 6992, 91, 0,4294967295 },
1610 { 1290, 96, 0,4294967295 },
1611 { 3560, 2, 0,4294967295 },
1612 { 4316, 98, 0,4294967295 },
1613 { 4239, 99, 0, 646260 },
1614 { 4239, 139, 646260,4294967295 },
1615 { 1185, 128, 0,4294967295 },
1616 { 8661, 187, 0, 17881380 },
1617 { 8661, 182, 17881380, 21930540 },
1618 { 8661, 187, 21930540,4294967295 },
1619 { 992, 87, 0,4294967295 },
1620 { 4197, 106, 0,4294967295 },
1621 { 4859, 116, 0, 6311040 },
1622 { 4859, 117, 6311040,4294967295 },
1623 { 5976, 38, 0, 6311040 },
1624 { 5976, 117, 6311040,4294967295 },
1625 { 5547, 21, 0,4294967295 },
1626 { 1211, 114, 0, 15760320 },
1627 { 1211, 47, 15760320,4294967295 },
1628 { 4017, 115, 0,4294967295 },
1629 { 1349, 90, 0,4294967295 },
1630 { 7182, 144, 0,4294967295 },
1631 { 6920, 82, 0,4294967295 },
1632 { 2554, 63, 0,4294967295 },
1633 { 8675, 106, 0, 21161940 },
1634 { 8675, 136, 21161940, 23571060 },
1635 { 8675, 106, 23571060,4294967295 },
1636 { 4135, 136, 0,4294967295 },
1637 { 4229, 137, 0,4294967295 },
1638 { 7145, 176, 0, 11547120 },
1639 { 7145, 138, 11547120, 18319560 },
1640 { 7145, 102, 18319560, 28487160 },
1641 { 7145, 100, 28487160,4294967295 },
1642 { 6961, 89, 0,4294967295 },
1643 { 8693, 90, 0, 9466080 },
1644 { 8693, 92, 9466080,4294967295 },
1645 { 4214, 104, 0, 23992740 },
1646 { 4214, 149, 23992740, 25424100 },
1647 { 4214, 104, 25424100,4294967295 },
1648 { 5559, 82, 0, 1269840 },
1649 { 5559, 21, 1269840,4294967295 },
1650 { 8708, 101, 18319500, 28487160 },
1651 { 8708, 100, 28487160,4294967295 },
1652 { 4269, 103, 0, 11547060 },
1653 { 4269, 150, 11547060, 18319500 },
1654 { 4269, 101, 18319500, 25755480 },
1655 { 4269, 102, 25755480, 28487160 },
1656 { 4269, 100, 28487160,4294967295 },
1657 { 3584, 21, 0,4294967295 },
1658 { 4408, 153, 0,4294967295 },
1659 { 7245, 155, 0, 6178680 },
1660 { 7245, 168, 6178680, 6440760 },
1661 { 7245, 155, 6440760, 11394360 },
1662 { 7245, 179, 11394360,4294967295 },
1663 { 3279, 104, 0,4294967295 },
1664 { 1053, 47, 0,4294967295 },
1665 { 3300, 159, 0,4294967295 },
1666 { 4297, 115, 0, 23570760 },
1667 { 3263, 166, 0,4294967295 },
1668 { 4781, 168, 0, 11394360 },
1669 { 4781, 179, 11394360,4294967295 },
1670 { 3915, 169, 0, 11185680 },
1671 { 3915, 73, 11185680,4294967295 },
1672 { 2772, 93, 0,4294967295 },
1673 { 1317, 87, 0, 9333750 },
1674 { 1317, 36, 9333750,4294967295 },
1675 { 2821, 97, 0,4294967295 },
1676 { 1021, 124, 0,4294967295 },
1677 { 1159, 178, 0,4294967295 },
1678 { 8722, 187, 0, 5914980 },
1679 { 8722, 115, 5914980, 21930480 },
1680 { 8722, 182, 21930480,4294967295 },
1681 { 6977, 89, 0,4294967295 },
1682 { 4710, 182, 0,4294967295 },
1683 { 4828, 187, 0,4294967295 },
1684 { 1235, 126, 0,4294967295 },
1685 { 3883, 163, 0, 11596200 },
1686 { 3883, 188, 11596200,4294967295 },
1687 { 3747, 189, 0, 11426160 },
1688 { 3747, 24, 11426160,4294967295 },
1689 { 3663, 32, 0, 12090360 },
1690 { 3663, 65, 12090360, 12337980 },
1691 { 3663, 32, 12337980,4294967295 },
1692 { 5671, 26, 0,4294967295 },
1693 { 6628, 65, 0,4294967295 },
1694 { 3727, 42, 0,4294967295 },
1695 { 1395, 65, 0,4294967295 },
1696 { 8736, 65, 0,4294967295 },
1697 { 2748, 75, 0,4294967295 },
1698 { 7272, 161, 0,4294967295 },
1699 { 6821, 75, 0,4294967295 },
1700 { 6644, 66, 0,4294967295 },
1701 { 1670, 27, 0,4294967295 },
1702 { 1635, 29, 0,4294967295 },
1703 { 1799, 27, 0,4294967295 },
1704 { 1583, 27, 0,4294967295 },
1705 { 3637, 28, 0,4294967295 },
1706 { 1516, 29, 0,4294967295 },
1707 { 8753, 29, 0,4294967295 },
1708 { 1547, 29, 0, 5870280 },
1709 { 1547, 113, 5870280,4294967295 },
1710 { 1727, 29, 0,4294967295 },
1711 { 1762, 30, 0,4294967295 },
1712 { 1463, 29, 0,4294967295 },
1713 { 2406, 75, 0,4294967295 },
1714 { 6441, 62, 0,4294967295 },
1715 { 6216, 62, 0,4294967295 },
1716 { 3620, 125, 11697000, 24317220 },
1717 { 2300, 63, 0,4294967295 },
1718 { 6336, 62, 0,4294967295 },
1719 { 4757, 62, 0,4294967295 },
1720 { 6488, 62, 0,4294967295 },
1721 { 2167, 62, 0,4294967295 },
1722 { 3928, 63, 0,4294967295 },
1723 { 3806, 62, 0,4294967295 },
1724 { 8772, 62, 0,4294967295 },
1725 { 2583, 125, 0, 10699020 },
1726 { 2583, 63, 10699020,4294967295 },
1727 { 6289, 62, 0,4294967295 },
1728 { 2338, 94, 0, 962040 },
1729 { 2338, 75, 962040,4294967295 },
1730 { 6307, 62, 0,4294967295 },
1731 { 8788, 40, 0, 962040 },
1732 { 8788, 75, 962040,4294967295 },
1733 { 6612, 63, 0,4294967295 },
1734 { 8804, 40, 0, 962040 },
1735 { 8804, 75, 962040,4294967295 },
1736 { 1130, 63, 0, 4465260 },
1737 { 1130, 173, 4465260, 8046540 },
1738 { 1130, 63, 8046540, 24553260 },
1739 { 1130, 173, 24553260,4294967295 },
1740 { 8823, 40, 0, 962040 },
1741 { 8823, 75, 962040,4294967295 },
1742 { 3979, 125, 0, 10114500 },
1743 { 3979, 63, 10114500, 21686400 },
1744 { 3979, 64, 21686400, 23571300 },
1745 { 3979, 63, 23571300,4294967295 },
1746 { 2527, 125, 0, 10779720 },
1747 { 2527, 63, 10779720,4294967295 },
1748 { 3213, 62, 0, 3542400 },
1749 { 3213, 65, 3542400, 11959260 },
1750 { 3213, 62, 11959260, 13803900 },
1751 { 3213, 65, 13803900,4294967295 },
1752 { 6506, 62, 0,4294967295 },
1753 { 2501, 40, 0, 962040 },
1754 { 2501, 75, 962040,4294967295 },
1755 { 6365, 62, 0,4294967295 },
1756 { 4892, 62, 0,4294967295 },
1757 { 6397, 62, 0,4294967295 },
1758 { 6582, 63, 0,4294967295 },
1759 { 3693, 125, 0, 11172900 },
1760 { 3693, 63, 11172900, 21686400 },
1761 { 3693, 64, 21686400, 23572680 },
1762 { 3693, 125, 23572680,4294967295 },
1763 { 6410, 62, 0,4294967295 },
1764 { 3537, 125, 0, 11172900 },
1765 { 3537, 63, 11172900, 11596320 },
1766 { 3537, 125, 11596320,4294967295 },
1767 { 6458, 62, 0,4294967295 },
1768 { 4284, 62, 0,4294967295 },
1769 { 6424, 62, 0,4294967295 },
1770 { 6275, 62, 0,4294967295 },
1771 { 8837, 125, 0, 10114500 },
1772 { 8837, 63, 10114500,4294967295 },
1773 { 6324, 62, 0,4294967295 },
1774 { 4331, 107, 0, 10114440 },
1775 { 4331, 125, 10114440, 11172900 },
1776 { 4331, 63, 11172900, 11435040 },
1777 { 4331, 154, 11435040,4294967295 },
1778 { 6470, 62, 0,4294967295 },
1779 { 6245, 62, 0,4294967295 },
1780 { 4451, 125, 11697000, 24680100 },
1781 { 8849, 125, 0, 10779780 },
1782 { 8849, 63, 10779780, 12795660 },
1783 { 8849, 125, 12795660, 14328060 },
1784 { 8849, 63, 14328060, 23268960 },
1785 { 8849, 125, 23268960,4294967295 },
1786 { 6383, 62, 0,4294967295 },
1787 { 6599, 63, 0,4294967295 },
1788 { 6523, 62, 0,4294967295 },
1789 { 8867, 125, 0, 10114500 },
1790 { 8867, 63, 10114500,4294967295 },
1791 { 6202, 62, 0,4294967295 },
1792 { 8882, 125, 11596320, 24317220 },
1793 { 6352, 62, 0,4294967295 },
1794 { 6567, 62, 0,4294967295 },
1795 { 6231, 62, 0,4294967295 },
1796 { 8899, 125, 0, 10114500 },
1797 { 8899, 63, 10114500, 14852220 },
1798 { 8899, 62, 14852220, 15688860 },
1799 { 8899, 63, 15688860,4294967295 },
1800 { 4727, 183, 0,4294967295 },
1801 { 3190, 62, 0,4294967295 },
1802 { 6261, 62, 0,4294967295 },
1803 { 6540, 62, 0,4294967295 },
1804 { 5078, 4, 0,4294967295 },
1805 { 6947, 88, 0,4294967295 },
1806 { 6046, 48, 0,4294967295 },
1807 { 6063, 49, 0,4294967295 },
1808 { 5029, 4, 0,4294967295 },
1809 { 6661, 69, 0,4294967295 },
1810 { 7260, 157, 0,4294967295 },
1811 { 7050, 118, 0,4294967295 },
1812 { 4069, 121, 0,4294967295 },
1813 { 5098, 4, 0,4294967295 },
1814 { 7211, 151, 0,4294967295 },
1815 { 4422, 18, 0,4294967295 },
1816 { 932, 130, 0,4294967295 },
1817 { 3706, 141, 0, 23661600 },
1818 { 3015, 45, 0,4294967295 },
1819 { 3157, 172, 0,4294967295 },
1820 { 2237, 60, 0,4294967295 },
1821 { 7360, 180, 0,4294967295 },
1822 { 7327, 170, 0,4294967295 },
1823 { 3902, 67, 0,4294967295 },
1824 { 7343, 175, 0,4294967295 },
1825 { 6678, 61, 0, 8415660 },
1826 { 6678, 71, 8415660,4294967295 },
1827 { 6696, 72, 0,4294967295 },
1828 { 3822, 160, 0,4294967295 },
1829 { 6018, 81, 0, 16291560 },
1830 { 6018, 44, 16291560,4294967295 },
1831 { 2723, 10, 0, 7272660 },
1832 { 2723, 84, 7272660,4294967295 },
1833 { 3049, 145, 0,4294967295 },
1834 { 3998, 112, 0,4294967295 },
1835 { 7019, 105, 0,4294967295 },
1836 { 2842, 108, 0, 12432240 },
1837 { 2842, 120, 12432240,4294967295 },
1838 { 4877, 120, 0,4294967295 },
1839 { 4051, 119, 0,4294967295 },
1840 { 8914, 35, 0, 7272720 },
1841 { 8914, 156, 7272720,4294967295 },
1842 { 7084, 127, 0,4294967295 },
1843 { 7132, 132, 0,4294967295 },
1844 { 4168, 133, 0,4294967295 },
1845 { 7098, 129, 0,4294967295 },
1846 { 3126, 35, 0, 7272720 },
1847 { 3126, 156, 7272720,4294967295 },
1848 { 7155, 140, 0,4294967295 },
1849 { 7194, 147, 0,4294967295 },
1850 { 3096, 148, 0,4294967295 },
1851 { 4807, 141, 0,4294967295 },
1852 { 6076, 51, 0,4294967295 },
1853 { 6031, 135, 0, 16291560 },
1854 { 6031, 44, 16291560,4294967295 },
1855 { 7312, 165, 0,4294967295 },
1856 { 6712, 74, 0,4294967295 },
1857 { 4583, 171, 0,4294967295 },
1858 { 7392, 185, 0,4294967295 },
1859 { 7405, 186, 0,4294967295 },
1860};
1861
1862#endif // timezone_locale but not ICU
1863
1864static inline constexpr char windowsIdData[] = {
18650x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e,
18660x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61,
18670x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
18680x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
18690x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x74, 0x61, 0x69, 0x20, 0x53, 0x74, 0x61,
18700x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x20,
18710x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72,
18720x61, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
18730x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
18740x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69,
18750x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
18760x0, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
18770x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69,
18780x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
18790x41, 0x55, 0x53, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e,
18800x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x75, 0x73, 0x20, 0x43, 0x65,
18810x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x57, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
18820x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65,
18830x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
18840x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e,
18850x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73,
18860x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42,
18870x61, 0x68, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
18880x6d, 0x65, 0x0, 0x42, 0x61, 0x6e, 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73, 0x68, 0x20, 0x53, 0x74,
18890x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x65, 0x6c, 0x61,
18900x72, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
18910x65, 0x0, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x20, 0x53,
18920x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x6e,
18930x61, 0x64, 0x61, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e,
18940x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x70, 0x65, 0x20, 0x56,
18950x65, 0x72, 0x64, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
18960x6d, 0x65, 0x0, 0x43, 0x61, 0x75, 0x63, 0x61, 0x73, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e,
18970x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x2e, 0x20, 0x41,
18980x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
18990x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41,
19000x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19010x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69,
19020x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
19030x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x69, 0x61,
19040x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
19050x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53,
19060x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e,
19070x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x61, 0x6e, 0x20, 0x53, 0x74,
19080x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74,
19090x72, 0x61, 0x6c, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e,
19100x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61,
19110x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
19120x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
19130x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x43,
19140x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53,
19150x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x68, 0x69,
19160x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
19170x0, 0x43, 0x75, 0x62, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
19180x69, 0x6d, 0x65, 0x0, 0x44, 0x61, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x53, 0x74, 0x61,
19190x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x66,
19200x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
19210x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20,
19220x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e,
19230x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
19240x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41,
19250x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19260x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x49, 0x73, 0x6c, 0x61,
19270x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
19280x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
19290x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53,
19300x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65,
19310x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e,
19320x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x6b, 0x61, 0x74, 0x65, 0x72,
19330x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19340x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x69, 0x6a, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
19350x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x4c, 0x45, 0x20, 0x53, 0x74, 0x61, 0x6e,
19360x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69,
19370x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
19380x0, 0x47, 0x4d, 0x54, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
19390x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61,
19400x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e,
19410x77, 0x69, 0x63, 0x68, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
19420x6d, 0x65, 0x0, 0x47, 0x54, 0x42, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19430x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x69, 0x74, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
19440x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x61,
19450x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
19460x49, 0x6e, 0x64, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
19470x69, 0x6d, 0x65, 0x0, 0x49, 0x72, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
19480x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x20, 0x53, 0x74,
19490x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4a, 0x6f, 0x72, 0x64,
19500x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
19510x0, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61,
19520x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61,
19530x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c,
19540x69, 0x62, 0x79, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
19550x6d, 0x65, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20,
19560x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, 0x6f,
19570x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
19580x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74,
19590x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61,
19600x6c, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19610x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x20, 0x53,
19620x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x75,
19630x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19640x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x45, 0x61, 0x73, 0x74,
19650x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d,
19660x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
19670x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x72, 0x6f, 0x63, 0x63, 0x6f, 0x20,
19680x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f,
19690x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19700x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74,
19710x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78,
19720x69, 0x63, 0x6f, 0x29, 0x0, 0x4d, 0x79, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61,
19730x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x2e, 0x20, 0x43, 0x65,
19740x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
19750x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x61, 0x6d, 0x69, 0x62, 0x69, 0x61,
19760x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e,
19770x65, 0x70, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
19780x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, 0x20, 0x5a, 0x65, 0x61, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53,
19790x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77,
19800x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
19810x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x20,
19820x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f,
19830x72, 0x74, 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x45, 0x61, 0x73, 0x74, 0x20, 0x53, 0x74,
19840x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74,
19850x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
19860x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x4b, 0x6f, 0x72, 0x65, 0x61,
19870x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4f,
19880x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
19890x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x41, 0x20, 0x53, 0x74, 0x61,
19900x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
19910x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
19920x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
19930x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0,
19940x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
19950x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x20,
19960x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x51, 0x79,
19970x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
19980x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x6f, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x53, 0x74,
19990x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x75, 0x73, 0x73,
20000x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x30, 0x0,
20010x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65,
20020x20, 0x31, 0x31, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20,
20030x5a, 0x6f, 0x6e, 0x65, 0x20, 0x33, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x6e, 0x20, 0x53,
20040x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20,
20050x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
20060x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
20070x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53,
20080x41, 0x20, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
20090x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x69, 0x6e, 0x74, 0x20, 0x50, 0x69,
20100x65, 0x72, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
20110x6d, 0x65, 0x0, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e,
20120x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x20,
20130x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61,
20140x6f, 0x20, 0x54, 0x6f, 0x6d, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
20150x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x76, 0x20, 0x53, 0x74, 0x61,
20160x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x45, 0x20, 0x41, 0x73,
20170x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
20180x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
20190x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41,
20200x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
20210x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20,
20220x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x72,
20230x69, 0x20, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
20240x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e,
20250x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x79, 0x72, 0x69, 0x61, 0x20,
20260x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61,
20270x69, 0x70, 0x65, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
20280x6d, 0x65, 0x0, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e,
20290x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x63, 0x61, 0x6e, 0x74,
20300x69, 0x6e, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
20310x65, 0x0, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
20320x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e,
20330x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x20,
20340x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x72,
20350x61, 0x6e, 0x73, 0x62, 0x61, 0x69, 0x6b, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
20360x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x20, 0x53,
20370x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72,
20380x6b, 0x73, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x69, 0x63, 0x6f, 0x73, 0x20, 0x53, 0x74,
20390x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x6c, 0x61, 0x61,
20400x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
20410x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e,
20420x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55,
20430x53, 0x20, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
20440x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43,
20450x2b, 0x31, 0x32, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30,
20460x32, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x0,
20470x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x0, 0x56, 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61,
20480x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56,
20490x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
20500x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72,
20510x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
20520x0, 0x57, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74,
20530x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x43,
20540x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74,
20550x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x45,
20560x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
20570x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x20,
20580x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65,
20590x73, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
20600x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x42, 0x61, 0x6e, 0x6b, 0x20,
20610x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65,
20620x73, 0x74, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
20630x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b,
20640x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59,
20650x75, 0x6b, 0x6f, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
20660x6d, 0x65, 0x0
2067};
2068
2069static inline constexpr char ianaListData[] = {
20700x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
20710x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x41, 0x6d, 0x65,
20720x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, 0x65, 0x61, 0x75, 0x20, 0x41, 0x6d, 0x65, 0x72,
20730x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, 0x6c, 0x61, 0x20, 0x41,
20740x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72,
20750x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
20760x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
20770x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e,
20780x61, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x72, 0x61, 0x69, 0x6e,
20790x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69,
20800x61, 0x2f, 0x51, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79,
20810x61, 0x64, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x45, 0x74,
20820x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x34, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73,
20830x63, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x62, 0x61, 0x69, 0x0, 0x41,
20840x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, 0x64, 0x61, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72,
20850x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75,
20860x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69,
20870x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f,
20880x52, 0x69, 0x6f, 0x6a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72,
20890x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c,
20900x65, 0x67, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67,
20910x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x20, 0x41, 0x6d, 0x65,
20920x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53,
20930x61, 0x6e, 0x5f, 0x4a, 0x75, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
20940x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4c, 0x75,
20950x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e,
20960x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65,
20970x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55,
20980x73, 0x68, 0x75, 0x61, 0x69, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
20990x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x61, 0x74, 0x61, 0x6d, 0x61, 0x72,
21000x63, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e,
21010x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65,
21020x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4a,
21030x75, 0x6a, 0x75, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67,
21040x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x45,
21050x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20,
21060x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76, 0x73, 0x6b,
21070x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64,
21080x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61,
21090x78, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, 0x65, 0x5f,
21100x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73,
21110x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f,
21120x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68,
21130x75, 0x6c, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61,
21140x72, 0x77, 0x69, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45,
21150x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53,
21160x79, 0x64, 0x6e, 0x65, 0x79, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f,
21170x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42,
21180x61, 0x6b, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72,
21190x65, 0x73, 0x62, 0x79, 0x73, 0x75, 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69,
21200x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
21210x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, 0x61, 0x6b,
21220x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, 0x75, 0x0, 0x45,
21230x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69,
21240x66, 0x69, 0x63, 0x2f, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65,
21250x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x20,
21260x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x43, 0x75,
21270x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x0,
21280x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65,
21290x72, 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e,
21300x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6c, 0x61,
21310x69, 0x64, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72,
21320x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d,
21330x54, 0x2b, 0x36, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69,
21340x7a, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61,
21350x5f, 0x52, 0x69, 0x63, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61,
21360x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
21370x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72,
21380x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x6d,
21390x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x65, 0x67, 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70,
21400x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x75,
21410x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x36, 0x0, 0x41, 0x6e, 0x74, 0x61,
21420x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x49, 0x6e,
21430x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61,
21440x2f, 0x55, 0x72, 0x75, 0x6d, 0x71, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73,
21450x68, 0x6b, 0x65, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69,
21460x61, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x70,
21470x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
21480x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72,
21490x61, 0x67, 0x75, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61,
21500x70, 0x65, 0x73, 0x74, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x6f, 0x64, 0x67,
21510x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c,
21520x67, 0x72, 0x61, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x61,
21530x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c,
21540x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
21550x53, 0x61, 0x72, 0x61, 0x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
21560x5a, 0x61, 0x67, 0x72, 0x65, 0x62, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b,
21570x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x57, 0x61, 0x72, 0x73,
21580x61, 0x77, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x31, 0x0, 0x41, 0x6e,
21590x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x50,
21600x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x68, 0x6e, 0x70, 0x65, 0x69, 0x20, 0x50,
21610x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x50, 0x61,
21620x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, 0x50, 0x61, 0x63,
21630x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, 0x6c,
21640x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41,
21650x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x20,
21660x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49,
21670x6e, 0x6c, 0x65, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x73,
21680x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61,
21690x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
21700x4f, 0x6a, 0x69, 0x6e, 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
21710x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
21720x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x20, 0x41, 0x6d, 0x65,
21730x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, 0x6c,
21740x6c, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d,
21750x65, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
21760x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x42, 0x65,
21770x75, 0x6c, 0x61, 0x68, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72,
21780x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
21790x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44,
21800x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, 0x6c, 0x65, 0x6d, 0x0,
21810x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43,
21820x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69,
21830x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69,
21840x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
21850x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72,
21860x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x50, 0x61,
21870x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x41, 0x73,
21880x69, 0x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61,
21890x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
21900x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61,
21910x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0,
21920x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63,
21930x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61,
21940x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, 0x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
21950x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, 0x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
21960x41, 0x73, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64,
21970x64, 0x69, 0x73, 0x5f, 0x41, 0x62, 0x61, 0x62, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
21980x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f,
21990x41, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, 0x49, 0x6e, 0x64,
22000x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69,
22010x63, 0x61, 0x2f, 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72,
22020x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61,
22030x6d, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61,
22040x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69, 0x73, 0x62,
22050x61, 0x6e, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69,
22060x6e, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68,
22070x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53,
22080x61, 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
22090x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
22100x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54,
22110x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49,
22120x71, 0x61, 0x6c, 0x75, 0x69, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e,
22130x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
22140x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
22150x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75,
22160x72, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61,
22170x6e, 0x61, 0x2f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65,
22180x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e,
22190x61, 0x6d, 0x61, 0x63, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e,
22200x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f,
22210x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b,
22220x79, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65,
22230x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69,
22240x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65,
22250x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, 0x63, 0x69,
22260x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
22270x4d, 0x61, 0x72, 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
22280x2f, 0x53, 0x6f, 0x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61,
22290x6c, 0x6c, 0x69, 0x6e, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c,
22300x73, 0x69, 0x6e, 0x6b, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67,
22310x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, 0x73,
22320x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x79, 0x69, 0x76, 0x0, 0x41, 0x73, 0x69,
22330x61, 0x2f, 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74,
22340x69, 0x63, 0x2f, 0x46, 0x61, 0x72, 0x6f, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
22350x47, 0x75, 0x65, 0x72, 0x6e, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
22360x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73,
22370x6c, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
22380x2f, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c,
22390x69, 0x73, 0x62, 0x6f, 0x6e, 0x20, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d,
22400x61, 0x64, 0x65, 0x69, 0x72, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f,
22410x43, 0x61, 0x6e, 0x61, 0x72, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f,
22420x6e, 0x64, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x75, 0x75,
22430x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, 0x61, 0x67, 0x61, 0x64, 0x6f,
22440x75, 0x67, 0x6f, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x6a,
22450x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x63, 0x63, 0x72, 0x61, 0x0,
22460x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x6b, 0x73,
22470x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x73,
22480x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61, 0x6b, 0x72,
22490x79, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a,
22500x61, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64,
22510x6a, 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x72, 0x6f,
22520x76, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b,
22530x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63, 0x68,
22540x6f, 0x74, 0x74, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x5f,
22550x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61,
22560x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x72, 0x65, 0x65, 0x74,
22570x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65, 0x0,
22580x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x20, 0x41, 0x73, 0x69,
22590x61, 0x2f, 0x46, 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f,
22600x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
22610x2f, 0x42, 0x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
22620x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, 0x63,
22630x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x30, 0x0, 0x50, 0x61, 0x63,
22640x69, 0x66, 0x69, 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x50,
22650x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, 0x61,
22660x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, 0x75, 0x6c, 0x75, 0x0, 0x41,
22670x73, 0x69, 0x61, 0x2f, 0x4b, 0x6f, 0x6c, 0x6b, 0x61, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61,
22680x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x65, 0x72,
22690x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61,
22700x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e,
22710x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0,
22720x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, 0x0, 0x45,
22730x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x34, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
22740x63, 0x2f, 0x4b, 0x69, 0x72, 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x0, 0x41, 0x75, 0x73,
22750x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65,
22760x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x41, 0x6d,
22770x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e,
22780x61, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75,
22790x65, 0x73, 0x61, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72,
22800x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x52, 0x65, 0x75,
22810x6e, 0x69, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x68, 0x65,
22820x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, 0x74, 0x0, 0x41, 0x6d, 0x65,
22830x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x0,
22840x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61, 0x62, 0x6c, 0x61, 0x6e, 0x63,
22850x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75,
22860x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74,
22870x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x62, 0x72,
22880x69, 0x64, 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
22890x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
22900x43, 0x69, 0x75, 0x64, 0x61, 0x64, 0x5f, 0x4a, 0x75, 0x61, 0x72, 0x65, 0x7a, 0x0, 0x41, 0x6d,
22910x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65,
22920x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
22930x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a, 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69,
22940x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61,
22950x6e, 0x67, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x73, 0x69,
22960x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e,
22970x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x68, 0x6d,
22980x61, 0x6e, 0x64, 0x75, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f,
22990x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
23000x41, 0x75, 0x63, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23010x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
23020x63, 0x2f, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49,
23030x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x73,
23040x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76,
23050x6f, 0x6b, 0x75, 0x7a, 0x6e, 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50,
23060x79, 0x6f, 0x6e, 0x67, 0x79, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d,
23070x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69,
23080x61, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63,
23090x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f,
23100x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
23110x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b,
23120x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
23130x73, 0x75, 0x6e, 0x63, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x79, 0x7a,
23140x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72,
23150x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x6f,
23160x70, 0x65, 0x6e, 0x68, 0x61, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
23170x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64,
23180x72, 0x69, 0x64, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x65, 0x75, 0x74, 0x61,
23190x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, 0x6c, 0x79,
23200x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74,
23210x6b, 0x61, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x45,
23220x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72,
23230x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70,
23240x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53,
23250x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d,
23260x54, 0x2b, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52,
23270x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63,
23280x61, 0x2f, 0x50, 0x61, 0x6c, 0x6d, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23290x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x65, 0x7a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69,
23300x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23310x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
23320x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53,
23330x61, 0x6e, 0x74, 0x61, 0x72, 0x65, 0x6d, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63,
23340x2f, 0x53, 0x74, 0x61, 0x6e, 0x6c, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23350x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23360x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, 0x45, 0x74, 0x63, 0x2f,
23370x47, 0x4d, 0x54, 0x2b, 0x35, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x69,
23380x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23390x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
23400x61, 0x2f, 0x41, 0x74, 0x69, 0x6b, 0x6f, 0x6b, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
23410x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
23420x61, 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23430x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
23440x63, 0x61, 0x2f, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
23450x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
23460x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x34,
23470x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x67, 0x75, 0x69, 0x6c, 0x6c,
23480x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75,
23490x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x75, 0x62, 0x61, 0x0,
23500x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73,
23510x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x50, 0x61, 0x7a, 0x0,
23520x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x75, 0x73, 0x20, 0x41,
23530x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, 0x74, 0x61,
23540x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x5f, 0x56,
23550x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72,
23560x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61,
23570x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
23580x61, 0x2f, 0x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65,
23590x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65,
23600x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d,
23610x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, 0x5f, 0x44, 0x6f, 0x6d, 0x69,
23620x6e, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x65, 0x6e,
23630x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x64,
23640x65, 0x6c, 0x6f, 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47,
23650x75, 0x79, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61,
23660x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23670x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72,
23680x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0,
23690x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68,
23700x65, 0x6c, 0x65, 0x6d, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74,
23710x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53,
23720x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
23730x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
23740x53, 0x74, 0x5f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
23750x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x73,
23760x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x6f, 0x66,
23770x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53,
23780x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
23790x2f, 0x4d, 0x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53,
23800x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
23810x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f,
23820x54, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61,
23830x74, 0x6f, 0x76, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x37, 0x0, 0x41, 0x6e,
23840x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41,
23850x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, 0x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68, 0x0, 0x49,
23860x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, 0x74, 0x6d, 0x61, 0x73, 0x0,
23870x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x20, 0x41, 0x73, 0x69,
23880x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61,
23890x2f, 0x56, 0x69, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
23900x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x5f,
23910x43, 0x68, 0x69, 0x5f, 0x4d, 0x69, 0x6e, 0x68, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54,
23920x2d, 0x38, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x41,
23930x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69,
23940x61, 0x2f, 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, 0x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x20, 0x41,
23950x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61,
23960x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e,
23970x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x32,
23980x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65,
23990x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72,
24000x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x62, 0x75, 0x6d, 0x62, 0x61,
24010x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61,
24020x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75,
24030x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65,
24040x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41,
24050x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69, 0x0, 0x41, 0x66, 0x72,
24060x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75, 0x72, 0x67,
24070x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41,
24080x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x72, 0x61, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72,
24090x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f,
24100x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x68, 0x61,
24110x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73,
24120x63, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0,
24130x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74,
24140x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x71,
24150x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72,
24160x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d,
24170x39, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0,
24180x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
24190x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x69,
24200x6c, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, 0x61,
24210x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0,
24220x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
24230x65, 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
24240x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x54, 0x75, 0x72, 0x6b, 0x0, 0x41, 0x73,
24250x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41,
24260x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49,
24270x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72,
24280x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65,
24290x6e, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69,
24300x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, 0x61, 0x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d,
24310x54, 0x2b, 0x37, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x72, 0x65, 0x73,
24320x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73,
24330x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
24340x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65,
24350x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65, 0x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0,
24360x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x0,
24370x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x20, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0,
24380x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x32, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
24390x69, 0x63, 0x2f, 0x54, 0x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
24400x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
24410x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
24420x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
24430x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
24440x63, 0x2f, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57,
24450x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33,
24460x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x0,
24470x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, 0x66, 0x6f, 0x0,
24480x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x32, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
24490x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74,
24500x69, 0x63, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61,
24510x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
24520x69, 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f,
24530x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61,
24540x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x31,
24550x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x67, 0x6f, 0x5f, 0x50, 0x61,
24560x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0,
24570x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, 0x79, 0x0, 0x41,
24580x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41,
24590x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20,
24600x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, 0x45, 0x75,
24610x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41,
24620x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74, 0x68, 0x0, 0x45,
24630x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
24640x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c,
24650x75, 0x61, 0x6e, 0x64, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72,
24660x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44,
24670x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e,
24680x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, 0x6a, 0x61, 0x6d,
24690x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, 0x61, 0x7a, 0x7a,
24700x61, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69,
24710x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61,
24720x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x62, 0x72,
24730x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61,
24740x67, 0x6f, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65,
24750x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45,
24760x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6e, 0x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75,
24770x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f,
24780x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
24790x2f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
24800x2f, 0x47, 0x69, 0x62, 0x72, 0x61, 0x6c, 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
24810x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61,
24820x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x75, 0x78, 0x65, 0x6d,
24830x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c,
24840x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f,
24850x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61,
24860x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75,
24870x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x6e, 0x6f, 0x0,
24880x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, 0x79, 0x65, 0x61, 0x72, 0x62,
24890x79, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b,
24900x68, 0x6f, 0x6c, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69,
24910x63, 0x68, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x74, 0x69, 0x63, 0x61,
24920x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, 0x45, 0x74, 0x63, 0x2f,
24930x47, 0x4d, 0x54, 0x2d, 0x35, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61,
24940x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b,
24950x65, 0x72, 0x67, 0x75, 0x65, 0x6c, 0x65, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72,
24960x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x20, 0x41,
24970x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x61, 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41,
24980x71, 0x74, 0x6f, 0x62, 0x65, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61,
24990x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, 0x79, 0x0,
25000x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x6c, 0x64, 0x69, 0x76, 0x65, 0x73, 0x0,
25010x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x41, 0x73,
25020x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61,
25030x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53,
25040x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65,
25050x62, 0x72, 0x6f, 0x6e, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x47, 0x61, 0x7a, 0x61, 0x0, 0x45,
25060x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x30, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63,
25070x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69,
25080x6c, 0x6c, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d,
25090x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x75, 0x75, 0x6b, 0x0, 0x50,
25100x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, 0x61, 0x6e, 0x0, 0x50, 0x61,
25110x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, 0x73,
25120x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20,
25130x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, 0x67, 0x61, 0x0, 0x41, 0x6d,
25140x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65,
25150x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0,
25160x55, 0x54, 0x43, 0x2d, 0x31, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x33,
25170x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54,
25180x43, 0x2d, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x30, 0x3a, 0x30,
25190x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d,
25200x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x3a, 0x30, 0x30, 0x0,
25210x55, 0x54, 0x43, 0x2d, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x36,
25220x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54,
25230x43, 0x2d, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x30,
25240x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d,
25250x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0,
25260x55, 0x54, 0x43, 0x2d, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x20, 0x55, 0x54,
25270x43, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x20, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x30, 0x3a, 0x30,
25280x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b,
25290x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0,
25300x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34,
25310x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54,
25320x43, 0x2b, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x33,
25330x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b,
25340x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x33, 0x30, 0x0,
25350x55, 0x54, 0x43, 0x2b, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38,
25360x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54,
25370x43, 0x2b, 0x30, 0x38, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x30,
25380x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b,
25390x31, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x33, 0x30, 0x0,
25400x55, 0x54, 0x43, 0x2b, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32,
25410x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54,
25420x43, 0x2b, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x34, 0x3a, 0x30,
25430x30, 0x0
2544};
2545
2546static inline constexpr char ianaIdData[] = {
25470x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x65, 0x72, 0x61, 0x0, 0x41, 0x66,
25480x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69,
25490x63, 0x61, 0x2f, 0x54, 0x69, 0x6d, 0x62, 0x75, 0x6b, 0x74, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69,
25500x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
25510x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x6f, 0x6d, 0x6f,
25520x64, 0x52, 0x69, 0x76, 0x61, 0x64, 0x61, 0x76, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
25530x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x61, 0x74,
25540x61, 0x6d, 0x61, 0x72, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
25550x74, 0x6b, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b,
25560x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f,
25570x41, 0x69, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72,
25580x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41,
25590x69, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x74,
25600x61, 0x6d, 0x61, 0x72, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43,
25610x6f, 0x72, 0x61, 0x6c, 0x5f, 0x48, 0x61, 0x72, 0x62, 0x6f, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65,
25620x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x74, 0x69, 0x6b, 0x6f, 0x6b, 0x61, 0x6e, 0x0, 0x41, 0x6d,
25630x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x0, 0x41, 0x6d,
25640x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f,
25650x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
25660x45, 0x6e, 0x73, 0x65, 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
25670x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
25680x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x57, 0x61, 0x79, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72,
25690x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69,
25700x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
25710x2f, 0x47, 0x6f, 0x64, 0x74, 0x68, 0x61, 0x62, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
25720x2f, 0x4e, 0x75, 0x75, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e,
25730x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
25740x63, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
25750x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79,
25760x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x5f, 0x49, 0x4e,
25770x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61,
25780x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f,
25790x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
25800x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76,
25810x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x6e,
25820x64, 0x6f, 0x7a, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67,
25830x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x41,
25840x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x72, 0x65, 0x61, 0x6c, 0x0,
25850x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x0,
25860x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x70, 0x69, 0x67, 0x6f, 0x6e, 0x0,
25870x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x67, 0x6e, 0x69, 0x72, 0x74,
25880x75, 0x6e, 0x67, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x71, 0x61, 0x6c,
25890x75, 0x69, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74,
25900x6f, 0x5f, 0x41, 0x63, 0x72, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52,
25910x69, 0x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
25920x61, 0x2f, 0x52, 0x61, 0x69, 0x6e, 0x79, 0x5f, 0x52, 0x69, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d,
25930x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x0, 0x41,
25940x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x6f, 0x73, 0x61, 0x72, 0x69, 0x6f, 0x0, 0x41,
25950x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x5f, 0x49, 0x73, 0x61,
25960x62, 0x65, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x68, 0x69, 0x70,
25970x72, 0x6f, 0x63, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e,
25980x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6e,
25990x64, 0x65, 0x72, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
26000x56, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53,
26010x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
26020x2f, 0x59, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x6b, 0x6e, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65,
26030x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6e,
26040x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x50,
26050x6f, 0x6c, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x75, 0x63, 0x6b,
26060x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x6b, 0x68, 0x61,
26070x62, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61,
26080x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x74, 0x74, 0x61, 0x0,
26090x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x6f, 0x6c, 0x6b, 0x61, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69,
26100x61, 0x2f, 0x43, 0x68, 0x6f, 0x69, 0x62, 0x61, 0x6c, 0x73, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69,
26110x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73,
26120x69, 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x6e, 0x67, 0x71, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69,
26130x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
26140x43, 0x68, 0x75, 0x6e, 0x67, 0x6b, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44,
26150x61, 0x63, 0x63, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, 0x61, 0x6b, 0x61, 0x0,
26160x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x61, 0x72, 0x62, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61,
26170x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
26180x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b,
26190x61, 0x73, 0x68, 0x67, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x72, 0x75, 0x6d,
26200x71, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x6d, 0x61, 0x6e, 0x64, 0x75,
26210x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x68, 0x6d, 0x61, 0x6e, 0x64, 0x75, 0x0,
26220x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
26230x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x67, 0x6f,
26240x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6e, 0x67, 0x6f, 0x6e, 0x0, 0x41,
26250x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x69, 0x67, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
26260x48, 0x6f, 0x5f, 0x43, 0x68, 0x69, 0x5f, 0x4d, 0x69, 0x6e, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61,
26270x2f, 0x54, 0x65, 0x6c, 0x5f, 0x41, 0x76, 0x69, 0x76, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a,
26280x65, 0x72, 0x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68,
26290x69, 0x6d, 0x62, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68,
26300x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6a, 0x75, 0x6e, 0x67, 0x5f, 0x50, 0x61, 0x6e,
26310x64, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73,
26320x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x6e, 0x5f, 0x42, 0x61, 0x74,
26330x6f, 0x72, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x65, 0x72,
26340x6f, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x72, 0x6f,
26350x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4a, 0x61, 0x6e, 0x5f, 0x4d,
26360x61, 0x79, 0x65, 0x6e, 0x0, 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67,
26370x79, 0x65, 0x61, 0x72, 0x62, 0x79, 0x65, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c,
26380x69, 0x61, 0x2f, 0x41, 0x43, 0x54, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61,
26390x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69,
26400x61, 0x2f, 0x43, 0x61, 0x6e, 0x62, 0x65, 0x72, 0x72, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72,
26410x61, 0x6c, 0x69, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x72, 0x69, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74,
26420x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x75, 0x73,
26430x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x48, 0x49, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72,
26440x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x41,
26450x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x0, 0x41,
26460x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x77, 0x69, 0x6e, 0x0,
26470x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4e, 0x53, 0x57, 0x0, 0x41, 0x75,
26480x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x51, 0x75, 0x65, 0x65, 0x6e, 0x73, 0x6c, 0x61,
26490x6e, 0x64, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69,
26500x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f,
26510x53, 0x6f, 0x75, 0x74, 0x68, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f,
26520x41, 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c,
26530x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74,
26540x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x56, 0x69, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x0, 0x41,
26550x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72,
26560x6e, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x57, 0x65, 0x73,
26570x74, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74,
26580x68, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6e, 0x63,
26590x6f, 0x77, 0x69, 0x6e, 0x6e, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61,
26600x2f, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x42, 0x72, 0x61,
26610x7a, 0x69, 0x6c, 0x2f, 0x41, 0x63, 0x72, 0x65, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x2f,
26620x44, 0x65, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
26630x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c,
26640x2f, 0x45, 0x61, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61,
26650x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x2f, 0x57,
26660x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61,
26670x75, 0x73, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74,
26680x69, 0x63, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66,
26690x61, 0x78, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61,
26700x6c, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x2d, 0x53, 0x61,
26710x73, 0x6b, 0x61, 0x74, 0x63, 0x68, 0x65, 0x77, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
26720x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61,
26730x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f,
26740x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f,
26750x4e, 0x65, 0x77, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65,
26760x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x43, 0x61,
26770x6e, 0x61, 0x64, 0x61, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, 0x41, 0x6d, 0x65,
26780x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x43,
26790x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x53, 0x61, 0x73, 0x6b, 0x61, 0x74, 0x63, 0x68, 0x65, 0x77,
26800x61, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x59, 0x75, 0x6b, 0x6f, 0x6e, 0x0,
26810x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72,
26820x73, 0x65, 0x0, 0x43, 0x45, 0x54, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72,
26830x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x43, 0x68, 0x69, 0x6c, 0x65, 0x2f, 0x43, 0x6f, 0x6e,
26840x74, 0x69, 0x6e, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
26850x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, 0x61, 0x67, 0x6f, 0x0, 0x43, 0x68, 0x69, 0x6c, 0x65, 0x2f,
26860x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x50, 0x61, 0x63,
26870x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x43, 0x53, 0x54, 0x36,
26880x43, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63,
26890x61, 0x67, 0x6f, 0x0, 0x43, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
26900x2f, 0x48, 0x61, 0x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x45, 0x54, 0x0, 0x45, 0x75, 0x72, 0x6f,
26910x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x0,
26920x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x45, 0x69, 0x72,
26930x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0,
26940x45, 0x53, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61,
26950x6d, 0x61, 0x0, 0x45, 0x53, 0x54, 0x35, 0x45, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
26960x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x45, 0x74, 0x63, 0x2f,
26970x47, 0x4d, 0x54, 0x2b, 0x30, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, 0x45, 0x74,
26980x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x30, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x30,
26990x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, 0x0, 0x45,
27000x74, 0x63, 0x2f, 0x55, 0x43, 0x54, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x45,
27010x74, 0x63, 0x2f, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x0, 0x45, 0x74, 0x63,
27020x2f, 0x5a, 0x75, 0x6c, 0x75, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c,
27030x66, 0x61, 0x73, 0x74, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f, 0x6e, 0x64,
27040x6f, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x0, 0x45,
27050x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x79, 0x69, 0x76, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
27060x65, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e,
27070x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x69,
27080x72, 0x61, 0x73, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68,
27090x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x7a,
27100x68, 0x67, 0x6f, 0x72, 0x6f, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61,
27110x70, 0x6f, 0x72, 0x6f, 0x7a, 0x68, 0x79, 0x65, 0x0, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x79,
27120x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x0, 0x47, 0x42, 0x0,
27130x47, 0x42, 0x2d, 0x45, 0x69, 0x72, 0x65, 0x0, 0x47, 0x4d, 0x54, 0x0, 0x47, 0x4d, 0x54, 0x2b,
27140x30, 0x0, 0x47, 0x4d, 0x54, 0x2d, 0x30, 0x0, 0x47, 0x4d, 0x54, 0x30, 0x0, 0x47, 0x72, 0x65,
27150x65, 0x6e, 0x77, 0x69, 0x63, 0x68, 0x0, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x0,
27160x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x48,
27170x53, 0x54, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c,
27180x75, 0x6c, 0x75, 0x0, 0x49, 0x63, 0x65, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61,
27190x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, 0x61, 0x76, 0x69, 0x6b, 0x0, 0x49,
27200x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0,
27210x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x0, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41,
27220x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x4a,
27230x61, 0x70, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0,
27240x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
27250x63, 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x4c, 0x69, 0x62, 0x79,
27260x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69,
27270x0, 0x4d, 0x45, 0x54, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x42, 0x61, 0x6a, 0x61,
27280x4e, 0x6f, 0x72, 0x74, 0x65, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x42, 0x61, 0x6a,
27290x61, 0x53, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a,
27300x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x47, 0x65, 0x6e,
27310x65, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78,
27320x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x4d, 0x53, 0x54, 0x0, 0x41, 0x6d, 0x65,
27330x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x0, 0x4d, 0x53, 0x54,
27340x37, 0x4d, 0x44, 0x54, 0x0, 0x4e, 0x61, 0x76, 0x61, 0x6a, 0x6f, 0x0, 0x4e, 0x5a, 0x0, 0x4e,
27350x5a, 0x2d, 0x43, 0x48, 0x41, 0x54, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43,
27360x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45,
27370x6e, 0x64, 0x65, 0x72, 0x62, 0x75, 0x72, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
27380x2f, 0x4b, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
27390x4a, 0x6f, 0x68, 0x6e, 0x73, 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
27400x2f, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
27410x50, 0x6f, 0x68, 0x6e, 0x70, 0x65, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
27420x53, 0x61, 0x6d, 0x6f, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61,
27430x67, 0x6f, 0x5f, 0x50, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
27440x54, 0x72, 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x75,
27450x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x59, 0x61, 0x70, 0x0, 0x50,
27460x6f, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x57, 0x61, 0x72,
27470x73, 0x61, 0x77, 0x0, 0x50, 0x6f, 0x72, 0x74, 0x75, 0x67, 0x61, 0x6c, 0x0, 0x45, 0x75, 0x72,
27480x6f, 0x70, 0x65, 0x2f, 0x4c, 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x0, 0x50, 0x52, 0x43, 0x0, 0x50,
27490x53, 0x54, 0x38, 0x50, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c,
27500x6f, 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x52, 0x4f, 0x43, 0x0, 0x41,
27510x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, 0x52, 0x4f, 0x4b, 0x0, 0x41,
27520x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70,
27530x6f, 0x72, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f,
27540x72, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x0, 0x55, 0x43, 0x54, 0x0, 0x55, 0x6e,
27550x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x0, 0x55, 0x53, 0x2f, 0x41, 0x6c, 0x61, 0x73, 0x6b,
27560x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72,
27570x61, 0x67, 0x65, 0x0, 0x55, 0x53, 0x2f, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x0,
27580x55, 0x53, 0x2f, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x0, 0x55, 0x53, 0x2f, 0x43, 0x65,
27590x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x55, 0x53, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x2d, 0x49, 0x6e,
27600x64, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x55, 0x53, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e,
27610x0, 0x55, 0x53, 0x2f, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x0, 0x55, 0x53, 0x2f, 0x49, 0x6e,
27620x64, 0x69, 0x61, 0x6e, 0x61, 0x2d, 0x53, 0x74, 0x61, 0x72, 0x6b, 0x65, 0x0, 0x55, 0x53, 0x2f,
27630x4d, 0x69, 0x63, 0x68, 0x69, 0x67, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
27640x2f, 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x0, 0x55, 0x53, 0x2f, 0x4d, 0x6f, 0x75, 0x6e,
27650x74, 0x61, 0x69, 0x6e, 0x0, 0x55, 0x53, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0,
27660x55, 0x53, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2d, 0x4e, 0x65, 0x77, 0x0, 0x55,
27670x53, 0x2f, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x0, 0x55, 0x54, 0x43, 0x0, 0x57, 0x2d, 0x53, 0x55,
27680x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x57,
27690x45, 0x54, 0x0, 0x5a, 0x75, 0x6c, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62,
27700x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, 0x61, 0x75, 0x6c, 0x0,
27710x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, 0x61, 0x64, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61,
27720x2f, 0x44, 0x75, 0x62, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68,
27730x64, 0x61, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61,
27740x6b, 0x68, 0x61, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45,
27750x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6b, 0x75, 0x0, 0x41,
27760x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41,
27770x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72,
27780x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
27790x63, 0x2f, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41,
27800x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, 0x72,
27810x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, 0x0,
27820x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c,
27830x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x68, 0x6b, 0x65, 0x6b, 0x0, 0x41,
27840x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x0, 0x45, 0x75,
27850x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x0, 0x50, 0x61,
27860x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61,
27870x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0, 0x41, 0x66, 0x72,
27880x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72,
27890x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
27900x59, 0x65, 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61,
27910x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
27920x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42,
27930x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
27940x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x0,
27950x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
27960x65, 0x2f, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x0, 0x50, 0x61,
27970x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x69, 0x72, 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69,
27980x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x41, 0x6d,
27990x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e,
28000x61, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75,
28010x65, 0x73, 0x61, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72,
28020x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75,
28030x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76,
28040x69, 0x64, 0x65, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61,
28050x62, 0x6c, 0x61, 0x6e, 0x63, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f,
28060x73, 0x69, 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57,
28070x69, 0x6e, 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
28080x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49, 0x72, 0x6b,
28090x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x73, 0x6e, 0x6f,
28100x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x79, 0x6f, 0x6e, 0x67,
28110x79, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x41,
28120x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72,
28130x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x75, 0x6e, 0x63, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69,
28140x61, 0x2f, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f,
28150x70, 0x65, 0x2f, 0x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72,
28160x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, 0x6c, 0x79, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61,
28170x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
28180x65, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
28190x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
28200x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
28210x4c, 0x61, 0x5f, 0x50, 0x61, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d,
28220x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6b,
28230x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x70,
28240x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, 0x54, 0x6f,
28250x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f,
28260x76, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, 0x0, 0x41,
28270x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75,
28280x72, 0x67, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, 0x0, 0x41,
28290x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69,
28300x63, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61,
28310x2f, 0x44, 0x61, 0x6d, 0x61, 0x73, 0x63, 0x75, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
28320x61, 0x2f, 0x41, 0x72, 0x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61,
28330x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54,
28340x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68,
28350x69, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e,
28360x64, 0x5f, 0x54, 0x75, 0x72, 0x6b, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31,
28370x32, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, 0x0, 0x45, 0x74, 0x63,
28380x2f, 0x47, 0x4d, 0x54, 0x2b, 0x32, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38,
28390x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47,
28400x4d, 0x54, 0x2b, 0x31, 0x31, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61,
28410x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69,
28420x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f,
28430x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c,
28440x61, 0x67, 0x6f, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c,
28450x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, 0x41, 0x73, 0x69,
28460x61, 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
28470x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50,
28480x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, 0x73, 0x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61,
28490x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
28500x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
28510x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, 0x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x0, 0x50, 0x61, 0x63,
28520x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f,
28530x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
28540x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
28550x2f, 0x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
28560x61, 0x2f, 0x4c, 0x75, 0x62, 0x75, 0x6d, 0x62, 0x61, 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72,
28570x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72,
28580x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
28590x61, 0x2f, 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
28600x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61,
28610x72, 0x61, 0x72, 0x65, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f,
28620x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75,
28630x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x64, 0x69, 0x73, 0x5f,
28640x41, 0x62, 0x61, 0x62, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x41, 0x6e, 0x74,
28650x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e,
28660x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
28670x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
28680x2f, 0x44, 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, 0x6d, 0x0, 0x41,
28690x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66,
28700x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, 0x6e, 0x0, 0x41, 0x66,
28710x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72,
28720x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
28730x61, 0x2f, 0x4c, 0x75, 0x61, 0x6e, 0x64, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
28740x50, 0x6f, 0x72, 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
28750x61, 0x2f, 0x44, 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
28760x42, 0x61, 0x6e, 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64,
28770x6a, 0x61, 0x6d, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72,
28780x61, 0x7a, 0x7a, 0x61, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
28790x2f, 0x4b, 0x69, 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
28800x2f, 0x4d, 0x61, 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c,
28810x69, 0x62, 0x72, 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
28820x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74,
28830x6f, 0x62, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, 0x65,
28840x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0, 0x41,
28850x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, 0x7a, 0x65, 0x0, 0x41, 0x6d,
28860x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, 0x5f, 0x52, 0x69, 0x63, 0x61,
28870x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76,
28880x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x65, 0x67,
28890x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
28900x2f, 0x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
28910x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64,
28920x79, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x61, 0x75, 0x0, 0x41, 0x73,
28930x69, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x72, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
28940x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x61, 0x74, 0x61,
28950x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72,
28960x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61,
28970x6e, 0x5f, 0x4c, 0x75, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
28980x6e, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
28990x41, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
29000x41, 0x72, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61,
29010x72, 0x62, 0x61, 0x64, 0x6f, 0x73, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f,
29020x42, 0x65, 0x72, 0x6d, 0x75, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
29030x54, 0x6f, 0x72, 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
29040x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
29050x63, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
29060x63, 0x61, 0x2f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72,
29070x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
29080x61, 0x2f, 0x47, 0x72, 0x65, 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
29090x61, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x65, 0x6c, 0x6f, 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65,
29100x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0,
29110x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72,
29120x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74,
29130x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53,
29140x74, 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
29150x53, 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
29160x2f, 0x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
29170x2f, 0x53, 0x74, 0x5f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72,
29180x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65,
29190x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x6f,
29200x66, 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63,
29210x68, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69,
29220x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65,
29230x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x50,
29240x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, 0x61, 0x6e, 0x0, 0x49, 0x6e,
29250x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, 0x74, 0x6d, 0x61, 0x73, 0x0, 0x49,
29260x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69,
29270x66, 0x69, 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x41, 0x6e,
29280x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41,
29290x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, 0x5f, 0x44, 0x6f, 0x6d,
29300x69, 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f,
29310x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41,
29320x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x41, 0x6d, 0x65,
29330x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0,
29340x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x69, 0x6c, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
29350x2f, 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41,
29360x6e, 0x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69,
29370x65, 0x6e, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61,
29380x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x67, 0x72,
29390x65, 0x62, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72, 0x61, 0x67, 0x75, 0x65,
29400x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x6f, 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67,
29410x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x69, 0x62, 0x72, 0x61, 0x6c,
29420x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0,
29430x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0,
29440x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72,
29450x6f, 0x70, 0x65, 0x2f, 0x4c, 0x75, 0x78, 0x65, 0x6d, 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45,
29460x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72,
29470x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
29480x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50,
29490x6f, 0x64, 0x67, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
29500x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
29510x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e,
29520x5f, 0x4d, 0x61, 0x72, 0x69, 0x6e, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42,
29530x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
29540x2f, 0x4c, 0x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
29550x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x68, 0x6f, 0x6c, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f,
29560x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, 0x63, 0x68, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
29570x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61,
29580x74, 0x69, 0x63, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x72,
29590x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6f,
29600x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c, 0x73, 0x69,
29610x6e, 0x6b, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x6e,
29620x61, 0x72, 0x79, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x61,
29630x6e, 0x6c, 0x65, 0x79, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, 0x65, 0x72, 0x67,
29640x75, 0x65, 0x6c, 0x65, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61,
29650x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
29660x47, 0x61, 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
29670x54, 0x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75,
29680x61, 0x67, 0x61, 0x64, 0x6f, 0x75, 0x67, 0x6f, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
29690x2f, 0x42, 0x61, 0x6e, 0x6a, 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
29700x63, 0x63, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61,
29710x6b, 0x72, 0x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, 0x6a,
29720x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63,
29730x68, 0x6f, 0x74, 0x74, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74,
29740x5f, 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44,
29750x61, 0x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x72, 0x65, 0x65,
29760x74, 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65,
29770x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42,
29780x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, 0x65,
29790x73, 0x62, 0x79, 0x73, 0x75, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73,
29800x63, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x79, 0x61,
29810x6e, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73,
29820x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, 0x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68,
29830x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0,
29840x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0, 0x41, 0x73,
29850x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
29860x69, 0x63, 0x2f, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
29870x2f, 0x4d, 0x6f, 0x6e, 0x72, 0x6f, 0x76, 0x69, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e,
29880x2f, 0x4d, 0x61, 0x6c, 0x64, 0x69, 0x76, 0x65, 0x73, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63,
29890x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69,
29900x66, 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
29910x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74,
29920x69, 0x63, 0x61, 0x2f, 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69,
29930x66, 0x69, 0x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72,
29940x61, 0x6c, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75,
29950x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x41, 0x73,
29960x69, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
29970x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61,
29980x6e, 0x2f, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63,
29990x74, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69,
30000x61, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x49, 0x6e, 0x64, 0x69,
30010x61, 0x6e, 0x2f, 0x4d, 0x61, 0x68, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63,
30020x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x0, 0x41,
30030x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, 0x61, 0x0,
30040x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50,
30050x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, 0x66, 0x6f, 0x0, 0x50,
30060x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0,
30070x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, 0x6e,
30080x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0,
30090x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x50, 0x61, 0x63,
30100x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69,
30110x63, 0x61, 0x2f, 0x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
30120x61, 0x2f, 0x42, 0x69, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
30130x43, 0x65, 0x75, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72,
30140x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x52, 0x69, 0x6f, 0x6a, 0x61,
30150x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69,
30160x6e, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, 0x65, 0x67, 0x6f, 0x73, 0x0,
30170x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e,
30180x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
30190x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4a, 0x75,
30200x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e,
30210x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65,
30220x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55,
30230x73, 0x68, 0x75, 0x61, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42,
30240x61, 0x68, 0x69, 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x0, 0x41, 0x6d,
30250x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72,
30260x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e,
30270x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73,
30280x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65,
30290x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x62, 0x72, 0x69, 0x64,
30300x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43,
30310x61, 0x6d, 0x70, 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72,
30320x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x41, 0x6d,
30330x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x69, 0x75, 0x64, 0x61, 0x64, 0x5f, 0x4a, 0x75, 0x61,
30340x72, 0x65, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x72, 0x65, 0x73,
30350x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e, 0x6d,
30360x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
30370x2f, 0x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
30380x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x0, 0x41, 0x6d, 0x65,
30390x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, 0x65, 0x0, 0x41, 0x6d,
30400x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f,
30410x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c,
30420x65, 0x7a, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63,
30430x65, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65,
30440x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
30450x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, 0x6e, 0x67, 0x6f,
30460x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61,
30470x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75, 0x72, 0x67, 0x0, 0x41, 0x6d, 0x65, 0x72,
30480x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, 0x6c, 0x6c,
30490x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e,
30500x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72,
30510x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x69, 0x6e, 0x63,
30520x65, 0x6e, 0x6e, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e,
30530x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x61, 0x6d, 0x61, 0x63, 0x0, 0x41, 0x6d,
30540x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x6d, 0x65,
30550x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f,
30560x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
30570x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
30580x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
30590x4d, 0x61, 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
30600x61, 0x2f, 0x4d, 0x65, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72,
30610x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
30620x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, 0x6c, 0x61, 0x0, 0x41, 0x6d,
30630x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d,
30640x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x0,
30650x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x0, 0x41, 0x6d, 0x65,
30660x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74,
30670x61, 0x2f, 0x42, 0x65, 0x75, 0x6c, 0x61, 0x68, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
30680x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65,
30690x6e, 0x74, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72,
30700x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61,
30710x6c, 0x65, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x6a, 0x69, 0x6e,
30720x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74,
30730x6f, 0x5f, 0x56, 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
30740x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, 0x6e, 0x6c, 0x65, 0x74, 0x0, 0x41, 0x6d, 0x65,
30750x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72,
30760x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65,
30770x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x72, 0x65, 0x6d, 0x0, 0x41, 0x6d,
30780x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72,
30790x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68, 0x65, 0x6c, 0x65, 0x6d,
30800x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f,
30810x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
30820x59, 0x61, 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69,
30830x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x71, 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6e, 0x74,
30840x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6c, 0x6d, 0x65, 0x72, 0x0, 0x41,
30850x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x6f, 0x6c, 0x6c, 0x0,
30860x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61,
30870x2f, 0x46, 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
30880x47, 0x61, 0x7a, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79,
30890x67, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x6b, 0x75, 0x7a, 0x6e,
30900x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61,
30910x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61,
30920x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0,
30930x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x64, 0x65, 0x69, 0x72, 0x61,
30940x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69, 0x6e, 0x64, 0x65,
30950x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x73, 0x69, 0x6e,
30960x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x75, 0x65, 0x72, 0x6e,
30970x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, 0x6c, 0x65, 0x5f,
30980x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4a, 0x65,
30990x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, 0x61,
31000x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70,
31010x6f, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, 0x6c, 0x6c, 0x69, 0x6e,
31020x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76,
31030x73, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75,
31040x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, 0x79,
31050x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0
3106};
3107
3108#if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu)
3109
3110static inline constexpr char metaIdData[] = {
31110x41, 0x63, 0x72, 0x65, 0x0, 0x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e,
31120x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0,
31130x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41,
31140x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x46, 0x61, 0x72, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e,
31150x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x65, 0x72, 0x6e,
31160x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0,
31170x41, 0x6b, 0x74, 0x79, 0x75, 0x62, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b,
31180x61, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, 0x5f, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x0,
31190x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x0, 0x41, 0x6d,
31200x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x6d,
31210x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, 0x6d,
31220x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x0, 0x41,
31230x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, 0x41,
31240x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x71, 0x74, 0x61, 0x75,
31250x0, 0x41, 0x71, 0x74, 0x6f, 0x62, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x61, 0x6e, 0x0,
31260x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74,
31270x69, 0x6e, 0x61, 0x5f, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, 0x72, 0x6d, 0x65,
31280x6e, 0x69, 0x61, 0x0, 0x41, 0x73, 0x68, 0x6b, 0x68, 0x61, 0x62, 0x61, 0x64, 0x0, 0x41, 0x74,
31290x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61,
31300x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c,
31310x69, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72,
31320x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74,
31330x65, 0x72, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x5f, 0x57, 0x65,
31340x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e,
31350x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x42, 0x61, 0x6b, 0x75, 0x0, 0x42, 0x61, 0x6e,
31360x67, 0x6c, 0x61, 0x64, 0x65, 0x73, 0x68, 0x0, 0x42, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x0, 0x42,
31370x68, 0x75, 0x74, 0x61, 0x6e, 0x0, 0x42, 0x6f, 0x6c, 0x69, 0x76, 0x69, 0x61, 0x0, 0x42, 0x6f,
31380x72, 0x6e, 0x65, 0x6f, 0x0, 0x42, 0x72, 0x61, 0x73, 0x69, 0x6c, 0x69, 0x61, 0x0, 0x42, 0x72,
31390x69, 0x74, 0x69, 0x73, 0x68, 0x0, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x43, 0x61, 0x70,
31400x65, 0x5f, 0x56, 0x65, 0x72, 0x64, 0x65, 0x0, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x43, 0x68,
31410x61, 0x6d, 0x6f, 0x72, 0x72, 0x6f, 0x0, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x43,
31420x68, 0x69, 0x6c, 0x65, 0x0, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x0, 0x43, 0x68, 0x72, 0x69, 0x73,
31430x74, 0x6d, 0x61, 0x73, 0x0, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x43, 0x6f, 0x6c, 0x6f, 0x6d,
31440x62, 0x69, 0x61, 0x0, 0x43, 0x6f, 0x6f, 0x6b, 0x0, 0x43, 0x75, 0x62, 0x61, 0x0, 0x44, 0x61,
31450x63, 0x63, 0x61, 0x0, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69,
31460x63, 0x61, 0x6e, 0x0, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c,
31470x6c, 0x65, 0x0, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x44, 0x75, 0x74, 0x63,
31480x68, 0x5f, 0x47, 0x75, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x61, 0x73, 0x74, 0x5f, 0x54, 0x69,
31490x6d, 0x6f, 0x72, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x45, 0x63, 0x75, 0x61, 0x64,
31500x6f, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61,
31510x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e,
31520x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x46, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72, 0x5f,
31530x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x57,
31540x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x46, 0x61, 0x6c, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0,
31550x46, 0x69, 0x6a, 0x69, 0x0, 0x46, 0x72, 0x65, 0x6e, 0x63, 0x68, 0x5f, 0x47, 0x75, 0x69, 0x61,
31560x6e, 0x61, 0x0, 0x46, 0x72, 0x65, 0x6e, 0x63, 0x68, 0x5f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x65,
31570x72, 0x6e, 0x0, 0x46, 0x72, 0x75, 0x6e, 0x7a, 0x65, 0x0, 0x47, 0x61, 0x6c, 0x61, 0x70, 0x61,
31580x67, 0x6f, 0x73, 0x0, 0x47, 0x61, 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x47, 0x65, 0x6f, 0x72,
31590x67, 0x69, 0x61, 0x0, 0x47, 0x69, 0x6c, 0x62, 0x65, 0x72, 0x74, 0x5f, 0x49, 0x73, 0x6c, 0x61,
31600x6e, 0x64, 0x73, 0x0, 0x47, 0x4d, 0x54, 0x0, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42, 0x61,
31610x79, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x47, 0x72, 0x65, 0x65,
31620x6e, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x47, 0x72,
31630x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0,
31640x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72,
31650x6e, 0x0, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x47, 0x75, 0x6c, 0x66, 0x0, 0x47, 0x75, 0x79, 0x61,
31660x6e, 0x61, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x5f, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69,
31670x61, 0x6e, 0x0, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x48, 0x6f, 0x76,
31680x64, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x5f, 0x4f,
31690x63, 0x65, 0x61, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x6f, 0x63, 0x68, 0x69, 0x6e, 0x61, 0x0, 0x49,
31700x6e, 0x64, 0x6f, 0x6e, 0x65, 0x73, 0x69, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c,
31710x0, 0x49, 0x6e, 0x64, 0x6f, 0x6e, 0x65, 0x73, 0x69, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65,
31720x72, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x6f, 0x6e, 0x65, 0x73, 0x69, 0x61, 0x5f, 0x57, 0x65, 0x73,
31730x74, 0x65, 0x72, 0x6e, 0x0, 0x49, 0x72, 0x61, 0x6e, 0x0, 0x49, 0x72, 0x69, 0x73, 0x68, 0x0,
31740x49, 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x0, 0x4a,
31750x61, 0x70, 0x61, 0x6e, 0x0, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x0, 0x4b,
31760x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x4b, 0x61, 0x7a, 0x61, 0x6b, 0x68, 0x73, 0x74, 0x61,
31770x6e, 0x0, 0x4b, 0x61, 0x7a, 0x61, 0x6b, 0x68, 0x73, 0x74, 0x61, 0x6e, 0x5f, 0x45, 0x61, 0x73,
31780x74, 0x65, 0x72, 0x6e, 0x0, 0x4b, 0x61, 0x7a, 0x61, 0x6b, 0x68, 0x73, 0x74, 0x61, 0x6e, 0x5f,
31790x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x4b, 0x69, 0x7a, 0x69, 0x6c, 0x6f, 0x72, 0x64,
31800x61, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x0, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x4b,
31810x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x4b, 0x75, 0x79, 0x62, 0x79,
31820x73, 0x68, 0x65, 0x76, 0x0, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x4b,
31830x79, 0x72, 0x67, 0x79, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x0, 0x4c,
31840x69, 0x62, 0x65, 0x72, 0x69, 0x61, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x5f, 0x49, 0x73, 0x6c, 0x61,
31850x6e, 0x64, 0x73, 0x0, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x4d, 0x61,
31860x63, 0x61, 0x75, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x4d, 0x61, 0x6c, 0x61,
31870x79, 0x61, 0x0, 0x4d, 0x61, 0x6c, 0x61, 0x79, 0x73, 0x69, 0x61, 0x0, 0x4d, 0x61, 0x6c, 0x64,
31880x69, 0x76, 0x65, 0x73, 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x0, 0x4d,
31890x61, 0x72, 0x73, 0x68, 0x61, 0x6c, 0x6c, 0x5f, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x0,
31900x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e,
31910x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0,
31920x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x0, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0,
31930x4d, 0x79, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x0, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x4e, 0x65,
31940x70, 0x61, 0x6c, 0x0, 0x4e, 0x65, 0x77, 0x5f, 0x43, 0x61, 0x6c, 0x65, 0x64, 0x6f, 0x6e, 0x69,
31950x61, 0x0, 0x4e, 0x65, 0x77, 0x5f, 0x5a, 0x65, 0x61, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x4e, 0x65,
31960x77, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x4e, 0x69, 0x75, 0x65, 0x0,
31970x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0,
31980x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x4e, 0x6f,
31990x76, 0x6f, 0x73, 0x69, 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x4f,
32000x72, 0x61, 0x6c, 0x0, 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x50, 0x61, 0x6c,
32010x61, 0x75, 0x0, 0x50, 0x61, 0x70, 0x75, 0x61, 0x5f, 0x4e, 0x65, 0x77, 0x5f, 0x47, 0x75, 0x69,
32020x6e, 0x65, 0x61, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x0, 0x50, 0x65, 0x72,
32030x75, 0x0, 0x50, 0x68, 0x69, 0x6c, 0x69, 0x70, 0x70, 0x69, 0x6e, 0x65, 0x73, 0x0, 0x50, 0x68,
32040x6f, 0x65, 0x6e, 0x69, 0x78, 0x5f, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x0, 0x50, 0x69,
32050x65, 0x72, 0x72, 0x65, 0x5f, 0x4d, 0x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x50, 0x69,
32060x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x0, 0x50, 0x79,
32070x6f, 0x6e, 0x67, 0x79, 0x61, 0x6e, 0x67, 0x0, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64,
32080x61, 0x0, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x52, 0x6f, 0x74, 0x68, 0x65, 0x72,
32090x61, 0x0, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x53, 0x61, 0x6d, 0x61, 0x72,
32100x61, 0x0, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x53, 0x61, 0x6d, 0x6f,
32110x61, 0x0, 0x53, 0x65, 0x79, 0x63, 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x0, 0x53, 0x68, 0x65,
32120x76, 0x63, 0x68, 0x65, 0x6e, 0x6b, 0x6f, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72,
32130x65, 0x0, 0x53, 0x6f, 0x6c, 0x6f, 0x6d, 0x6f, 0x6e, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f,
32140x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x0, 0x53, 0x75, 0x72, 0x69, 0x6e, 0x61, 0x6d, 0x65,
32150x0, 0x53, 0x76, 0x65, 0x72, 0x64, 0x6c, 0x6f, 0x76, 0x73, 0x6b, 0x0, 0x53, 0x79, 0x6f, 0x77,
32160x61, 0x0, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0,
32170x54, 0x61, 0x6a, 0x69, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x54, 0x61, 0x73, 0x68, 0x6b,
32180x65, 0x6e, 0x74, 0x0, 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x54, 0x6f, 0x6b, 0x65,
32190x6c, 0x61, 0x75, 0x0, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x54, 0x72, 0x75, 0x6b, 0x0, 0x54,
32200x75, 0x72, 0x6b, 0x65, 0x79, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x6d, 0x65, 0x6e, 0x69, 0x73, 0x74,
32210x61, 0x6e, 0x0, 0x54, 0x75, 0x76, 0x61, 0x6c, 0x75, 0x0, 0x55, 0x72, 0x61, 0x6c, 0x73, 0x6b,
32220x0, 0x55, 0x72, 0x75, 0x67, 0x75, 0x61, 0x79, 0x0, 0x55, 0x72, 0x75, 0x6d, 0x71, 0x69, 0x0,
32230x55, 0x7a, 0x62, 0x65, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x56, 0x61, 0x6e, 0x75, 0x61,
32240x74, 0x75, 0x0, 0x56, 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61, 0x0, 0x56, 0x6c, 0x61,
32250x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72,
32260x61, 0x64, 0x0, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x57,
32270x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x59, 0x65,
32280x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x59, 0x65, 0x72, 0x65,
32290x76, 0x61, 0x6e, 0x0, 0x59, 0x75, 0x6b, 0x6f, 0x6e, 0x0
3230};
3231
3232#endif // timezone_locale but not ICU
3233
3234// GENERATED PART ENDS HERE
3235
3236constexpr QByteArrayView AliasData::aliasId() const { return ianaIdData + aliasIdIndex; }
3237constexpr QByteArrayView AliasData::ianaId() const { return ianaIdData + ianaIdIndex; }
3238#if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu)
3239constexpr QByteArrayView TerritoryZone::ianaId() const { return ianaIdData + ianaIdIndex; }
3240constexpr QByteArrayView MetaZoneData::ianaId() const { return ianaIdData + ianaIdIndex; }
3241constexpr QByteArrayView MetaZoneData::metaZoneId() const { return metaIdData + metaIdIndex; }
3242constexpr QByteArrayView ZoneMetaHistory::ianaId() const { return ianaIdData + ianaIdIndex; }
3243#endif // timezone_locale but not ICU
3244constexpr QByteArrayView WindowsData::windowsId() const { return windowsIdData + windowsIdIndex; }
3245constexpr QByteArrayView WindowsData::ianaId() const { return ianaIdData + ianaIdIndex; }
3246// Each of the following returns a space-joined sequence of IANA IDs:
3247constexpr QByteArrayView UtcData::id() const { return ianaListData + ianaIdIndex; }
3248constexpr QLatin1StringView ZoneData::id() const
3249{ return QLatin1StringView(ianaListData + ianaIdIndex); }
3250
3251} // namespace QtTimeZoneCldr
3252
3253QT_END_NAMESPACE
3254
3255#endif // QTIMEZONEPRIVATE_DATA_P_H
3256

source code of qtbase/src/corelib/time/qtimezoneprivate_data_p.h