@activepieces/piece-date-helper 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2109 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.timeZoneOptions = exports.addSubtractTime = exports.ChangeDateFormat = exports.timeDiff = exports.createNewDate = exports.getDateInformation = exports.createDateFromInfo = exports.optionalTimeFormats = exports.timeFormatDescription = exports.timeParts = exports.timeFormatLabel = exports.timeFormat = void 0;
4
+ var timeFormat;
5
+ (function (timeFormat) {
6
+ timeFormat["format00"] = "DDD MMM DD YYYY HH:mm:ss";
7
+ timeFormat["format01"] = "DDD MMM DD HH:mm:ss YYYY";
8
+ timeFormat["format02"] = "MMMM DD YYYY HH:mm:ss";
9
+ timeFormat["format03"] = "MMMM DD YYYY";
10
+ timeFormat["format04"] = "MMM DD YYYY";
11
+ timeFormat["format05"] = "YYYY-MM-DDTHH:mm:ss";
12
+ timeFormat["format06"] = "YYYY-MM-DD HH:mm:ss";
13
+ timeFormat["format07"] = "YYYY-MM-DD";
14
+ timeFormat["format08"] = "MM-DD-YYYY";
15
+ timeFormat["format09"] = "MM/DD/YYYY";
16
+ timeFormat["format10"] = "MM/DD/YY";
17
+ timeFormat["format11"] = "DD-MM-YYYY";
18
+ timeFormat["format12"] = "DD/MM/YYYY";
19
+ timeFormat["format13"] = "DD/MM/YY";
20
+ timeFormat["format14"] = "X";
21
+ })(timeFormat || (exports.timeFormat = timeFormat = {}));
22
+ var timeFormatLabel;
23
+ (function (timeFormatLabel) {
24
+ timeFormatLabel["format00"] = "DDD MMM DD YYYY HH:mm:ss (Sun Sep 17 2023 11:23:58)";
25
+ timeFormatLabel["format01"] = "DDD MMM DD HH:mm:ss YYYY (Sun Sep 17 11:23:58 2023)";
26
+ timeFormatLabel["format02"] = "MMMM DD YYYY HH:mm:ss (September 17 2023 11:23:58)";
27
+ timeFormatLabel["format03"] = "MMMM DD YYYY (September 17 2023)";
28
+ timeFormatLabel["format04"] = "MMM DD YYYY (Sep 17 2023)";
29
+ timeFormatLabel["format05"] = "YYYY-MM-DDTHH:mm:ss (2023-09-17T11:23:58) ";
30
+ timeFormatLabel["format06"] = "YYYY-MM-DD HH:mm:ss (2023-09-17 11:23:58)";
31
+ timeFormatLabel["format07"] = "YYYY-MM-DD (2023-09-17)";
32
+ timeFormatLabel["format08"] = "MM-DD-YYYY (09-17-2023)";
33
+ timeFormatLabel["format09"] = "MM/DD/YYYY (09/17/2023)";
34
+ timeFormatLabel["format10"] = "MM/DD/YY (09/17/23)";
35
+ timeFormatLabel["format11"] = "DD-MM-YYYY (17-09-2023)";
36
+ timeFormatLabel["format12"] = "DD/MM/YYYY (17/09/2023)";
37
+ timeFormatLabel["format13"] = "DD/MM/YY (17/09/23)";
38
+ timeFormatLabel["format14"] = "X (1694949838)";
39
+ })(timeFormatLabel || (exports.timeFormatLabel = timeFormatLabel = {}));
40
+ var timeParts;
41
+ (function (timeParts) {
42
+ timeParts["year"] = "year";
43
+ timeParts["month"] = "month";
44
+ timeParts["day"] = "day";
45
+ timeParts["hour"] = "hour";
46
+ timeParts["minute"] = "minute";
47
+ timeParts["second"] = "second";
48
+ timeParts["unix_time"] = "unix_time";
49
+ timeParts["dayOfWeek"] = "dayOfWeek";
50
+ timeParts["monthName"] = "monthName";
51
+ })(timeParts || (exports.timeParts = timeParts = {}));
52
+ exports.timeFormatDescription = `Here's what each part of the format (eg. YYYY) means:
53
+ \nYYYY : Year (4 digits)
54
+ \nYY : Year (2 digits)
55
+ \nMMMM : Month (full name)
56
+ \nMMM : Month (short name)
57
+ \nMM : Month (2 digits)
58
+ \nDDDD : Day (full name)
59
+ \nDDD : Day (short name)
60
+ \nDD : Day (2 digits)
61
+ \nHH : Hour (2 digits)
62
+ \nmm : Minute (2 digits)
63
+ \nss : Second (2 digits)
64
+ \nX : Time in unix format`;
65
+ exports.optionalTimeFormats = [
66
+ { label: timeFormatLabel.format00, value: timeFormat.format00 },
67
+ { label: timeFormatLabel.format01, value: timeFormat.format01 },
68
+ { label: timeFormatLabel.format02, value: timeFormat.format02 },
69
+ { label: timeFormatLabel.format03, value: timeFormat.format03 },
70
+ { label: timeFormatLabel.format04, value: timeFormat.format04 },
71
+ { label: timeFormatLabel.format05, value: timeFormat.format05 },
72
+ { label: timeFormatLabel.format06, value: timeFormat.format06 },
73
+ { label: timeFormatLabel.format07, value: timeFormat.format07 },
74
+ { label: timeFormatLabel.format08, value: timeFormat.format08 },
75
+ { label: timeFormatLabel.format09, value: timeFormat.format09 },
76
+ { label: timeFormatLabel.format10, value: timeFormat.format10 },
77
+ { label: timeFormatLabel.format11, value: timeFormat.format11 },
78
+ { label: timeFormatLabel.format12, value: timeFormat.format12 },
79
+ { label: timeFormatLabel.format13, value: timeFormat.format13 },
80
+ { label: timeFormatLabel.format14, value: timeFormat.format14 },
81
+ ];
82
+ function formatNumber(num, length) {
83
+ let result = num.toString();
84
+ while (result.length < length)
85
+ result = '0' + result;
86
+ return result;
87
+ }
88
+ function getYear(dateString, typeString) {
89
+ let yearIndex = typeString.indexOf('YYYY'), year = 0;
90
+ if (yearIndex !== -1) {
91
+ const stringYear = dateString.substring(yearIndex, yearIndex + 4);
92
+ year = parseInt(stringYear);
93
+ if (Number.isNaN(year)) {
94
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringYear}" for "YYYY" cannot be parsed as an integer.`);
95
+ }
96
+ }
97
+ else {
98
+ yearIndex = typeString.indexOf('YY');
99
+ if (yearIndex !== -1) {
100
+ const stringYear = dateString.substring(yearIndex, yearIndex + 2);
101
+ year = parseInt(stringYear);
102
+ if (Number.isNaN(year)) {
103
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringYear}" for "YY" cannot be parsed as an integer.`);
104
+ }
105
+ year = year + 2000;
106
+ }
107
+ }
108
+ return year;
109
+ }
110
+ function getMonth(dateString, typeString) {
111
+ let monthIndex = typeString.indexOf('MMMM'), month = 0;
112
+ if (monthIndex !== -1) {
113
+ const monthNames1 = [
114
+ 'January',
115
+ 'February',
116
+ 'March',
117
+ 'April',
118
+ 'May',
119
+ 'June',
120
+ 'July',
121
+ 'August',
122
+ 'September',
123
+ 'October',
124
+ 'November',
125
+ 'December',
126
+ ];
127
+ for (let i = 0; i < monthNames1.length; i++) {
128
+ if (dateString.toLowerCase().includes(monthNames1[i].toLowerCase())) {
129
+ month = i + 1;
130
+ break;
131
+ }
132
+ }
133
+ if (month == 0)
134
+ throw new Error(`Invalid Date format in ${typeString}. The value for "MMMM" which is long month cannot be found in ${dateString}.`);
135
+ }
136
+ else {
137
+ monthIndex = typeString.indexOf('MMM');
138
+ if (monthIndex !== -1) {
139
+ const monthNames2 = [
140
+ 'Jan',
141
+ 'Feb',
142
+ 'Mar',
143
+ 'Apr',
144
+ 'May',
145
+ 'Jun',
146
+ 'Jul',
147
+ 'Aug',
148
+ 'Sep',
149
+ 'Oct',
150
+ 'Nov',
151
+ 'Dec',
152
+ ];
153
+ for (let i = 0; i < monthNames2.length; i++) {
154
+ if (dateString.toLowerCase().includes(monthNames2[i].toLowerCase())) {
155
+ month = i + 1;
156
+ break;
157
+ }
158
+ }
159
+ if (month == 0)
160
+ throw new Error(`Invalid Date format in ${typeString}. The value for "MMM" which is short month cannot be found in ${dateString}.`);
161
+ }
162
+ else {
163
+ monthIndex = typeString.indexOf('MM');
164
+ if (monthIndex !== -1) {
165
+ const monthString = dateString.substring(monthIndex, monthIndex + 2);
166
+ month = parseInt(monthString);
167
+ if (Number.isNaN(month))
168
+ throw new Error(`Invalid Date format in ${typeString}. The value "${monthString}" for "MM" cannot be parsed as an integer.`);
169
+ }
170
+ }
171
+ }
172
+ return month;
173
+ }
174
+ function getDay(dateString, typeString) {
175
+ const dayIndex = typeString.indexOf('DD');
176
+ let day = 0;
177
+ if (dayIndex !== -1) {
178
+ const stringDay = dateString.substring(dayIndex, dayIndex + 2);
179
+ day = parseInt(stringDay);
180
+ if (Number.isNaN(day))
181
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringDay}" for "DD" cannot be parsed as an integer.`);
182
+ }
183
+ return day;
184
+ }
185
+ function getHour(dateString, typeString) {
186
+ const hourIndex = typeString.indexOf('HH');
187
+ let hour = 0;
188
+ if (hourIndex !== -1) {
189
+ const stringHour = dateString.substring(hourIndex, hourIndex + 2);
190
+ hour = parseInt(stringHour);
191
+ if (Number.isNaN(hour))
192
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringHour}" for "HH" cannot be parsed as an integer.`);
193
+ }
194
+ return hour;
195
+ }
196
+ function getMinute(dateString, typeString) {
197
+ const minuteIndex = typeString.indexOf('mm');
198
+ let minute = 0;
199
+ if (minuteIndex !== -1) {
200
+ const stringMinute = dateString.substring(minuteIndex, minuteIndex + 2);
201
+ minute = parseInt(stringMinute);
202
+ if (Number.isNaN(minute))
203
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringMinute}" for "mm" cannot be parsed as an integer.`);
204
+ }
205
+ return minute;
206
+ }
207
+ function getSecond(dateString, typeString) {
208
+ const secondIndex = typeString.indexOf('ss');
209
+ let second = 0;
210
+ if (secondIndex !== -1) {
211
+ const stringSecond = dateString.substring(secondIndex, secondIndex + 2);
212
+ second = parseInt(stringSecond);
213
+ if (Number.isNaN(second))
214
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringSecond}" for "ss" cannot be parsed as an integer.`);
215
+ }
216
+ return second;
217
+ }
218
+ function getUnixTime(dateString, typeString) {
219
+ const unixIndex = typeString.indexOf('X');
220
+ let unixTime = 0;
221
+ if (unixIndex !== -1) {
222
+ let endIndex = unixIndex;
223
+ while (dateString[endIndex] >= '0' && dateString[endIndex] <= '9')
224
+ endIndex++;
225
+ const stringnix = dateString.substring(unixIndex, endIndex);
226
+ unixTime = parseInt(stringnix);
227
+ if (Number.isNaN(unixTime))
228
+ throw new Error(`Invalid Date format in ${typeString}. The value "${stringnix}" for "X" cannot be parsed as an integer.`);
229
+ }
230
+ return unixTime;
231
+ }
232
+ function removeMonth(date) {
233
+ const longMonthNames = [
234
+ 'January',
235
+ 'February',
236
+ 'March',
237
+ 'April',
238
+ 'May',
239
+ 'June',
240
+ 'July',
241
+ 'August',
242
+ 'September',
243
+ 'October',
244
+ 'November',
245
+ 'December',
246
+ ];
247
+ const shortMonthNames = [
248
+ 'Jan',
249
+ 'Feb',
250
+ 'Mar',
251
+ 'Apr',
252
+ 'May',
253
+ 'Jun',
254
+ 'Jul',
255
+ 'Aug',
256
+ 'Sep',
257
+ 'Oct',
258
+ 'Nov',
259
+ 'Dec',
260
+ ];
261
+ for (let i = 0; i < longMonthNames.length; i++) {
262
+ date = date.replace(longMonthNames[i], '');
263
+ }
264
+ for (let i = 0; i < shortMonthNames.length; i++) {
265
+ date = date.replace(shortMonthNames[i], '');
266
+ }
267
+ return date;
268
+ }
269
+ function removeDay(date) {
270
+ const longDayNames = [
271
+ 'Sunday',
272
+ 'Monday',
273
+ 'Tuesday',
274
+ 'Wednesday',
275
+ 'Thursday',
276
+ 'Friday',
277
+ 'Saturday',
278
+ ];
279
+ const shortDayNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
280
+ for (let i = 0; i < longDayNames.length; i++) {
281
+ date = date.replace(longDayNames[i], '');
282
+ }
283
+ for (let i = 0; i < shortDayNames.length; i++) {
284
+ date = date.replace(shortDayNames[i], '');
285
+ }
286
+ return date;
287
+ }
288
+ function createDateFromInfo(dateInfo) {
289
+ let date;
290
+ if (dateInfo.unix_time !== 0)
291
+ date = new Date(dateInfo.unix_time * 1000);
292
+ else
293
+ date = new Date(dateInfo.year, dateInfo.month - 1, dateInfo.day, dateInfo.hour, dateInfo.minute, dateInfo.second);
294
+ return date;
295
+ }
296
+ exports.createDateFromInfo = createDateFromInfo;
297
+ function getDateInformation(date, TF) {
298
+ let typeString = TF.toString();
299
+ // first we strip the month names and day names from the date string
300
+ const month = getMonth(date, typeString);
301
+ date = removeMonth(date);
302
+ typeString = typeString
303
+ .replace('MMMM', '')
304
+ .replace('MMM', '')
305
+ .replace('DDDD', '')
306
+ .replace('DDD', '');
307
+ date = removeDay(date);
308
+ const day = getDay(date, typeString);
309
+ const year = getYear(date, typeString);
310
+ const hour = getHour(date, typeString);
311
+ const minute = getMinute(date, typeString);
312
+ const second = getSecond(date, typeString);
313
+ const unix_time = getUnixTime(date, typeString);
314
+ return {
315
+ year: year,
316
+ month: month,
317
+ day: day,
318
+ hour: hour,
319
+ minute: minute,
320
+ second: second,
321
+ unix_time: unix_time,
322
+ };
323
+ }
324
+ exports.getDateInformation = getDateInformation;
325
+ function createNewDate(date, TF) {
326
+ const year = formatNumber(date.getFullYear(), 4);
327
+ const result = TF.replace('YYYY', year)
328
+ .replace('YY', year.substring(2, 4))
329
+ .replace('MMMM', date.toLocaleString('default', { month: 'long' }))
330
+ .replace('MMM', date.toLocaleString('default', { month: 'short' }))
331
+ .replace('MM', formatNumber(date.getMonth() + 1, 2))
332
+ .replace('DDDD', date.toLocaleString('default', { weekday: 'long' }))
333
+ .replace('DDD', date.toLocaleString('default', { weekday: 'short' }))
334
+ .replace('DD', formatNumber(date.getDate(), 2))
335
+ .replace('HH', formatNumber(date.getHours(), 2))
336
+ .replace('mm', formatNumber(date.getMinutes(), 2))
337
+ .replace('ss', formatNumber(date.getSeconds(), 2))
338
+ .replace('X', (date.getTime() / 1000).toString());
339
+ return result;
340
+ }
341
+ exports.createNewDate = createNewDate;
342
+ function timeDiff(beforeTimeZone, afterTimeZone) {
343
+ const date = new Date();
344
+ const BeforeDate = new Date(date.toLocaleString('en-US', { timeZone: beforeTimeZone }));
345
+ const AfterDate = new Date(date.toLocaleString('en-US', { timeZone: afterTimeZone }));
346
+ const diff = (AfterDate.getTime() - BeforeDate.getTime()) / 60000;
347
+ return diff;
348
+ }
349
+ exports.timeDiff = timeDiff;
350
+ function ChangeDateFormat(date, beforeFormat, beforeTimeZone, afterFormat, afterTimeZone) {
351
+ const DateInfo = getDateInformation(date, beforeFormat);
352
+ const BeforeDate = createDateFromInfo(DateInfo);
353
+ BeforeDate.setMinutes(BeforeDate.getMinutes() + timeDiff(beforeTimeZone, afterTimeZone));
354
+ const newDate = createNewDate(BeforeDate, afterFormat);
355
+ return newDate;
356
+ }
357
+ exports.ChangeDateFormat = ChangeDateFormat;
358
+ function addSubtractTime(date, expression) {
359
+ // remove all the spaces and line breaks from the expression
360
+ expression = expression.replace(/(\r\n|\n|\r)/gm, '').replace(/ /g, '');
361
+ const parts = expression.split(/(\+|-)/);
362
+ let sign = 1;
363
+ const numbers = [];
364
+ const units = [];
365
+ for (let i = 0; i < parts.length; i++) {
366
+ if (parts[i] === '+')
367
+ sign = 1;
368
+ else if (parts[i] === '-')
369
+ sign = -1;
370
+ else if (parts[i] === '')
371
+ continue;
372
+ let number = '';
373
+ let unit = '';
374
+ for (let j = 0; j < parts[i].length; j++) {
375
+ if (parts[i][j] === ' ')
376
+ continue;
377
+ if (parts[i][j] >= '0' && parts[i][j] <= '9') {
378
+ if (unit !== '') {
379
+ numbers.push(sign * parseInt(number));
380
+ units.push(unit);
381
+ number = '';
382
+ unit = '';
383
+ }
384
+ number += parts[i][j];
385
+ }
386
+ else {
387
+ if (number === '')
388
+ continue;
389
+ unit += parts[i][j];
390
+ }
391
+ }
392
+ if (unit !== '') {
393
+ numbers.push(sign * parseInt(number));
394
+ units.push(unit);
395
+ }
396
+ }
397
+ for (let i = 0; i < numbers.length; i++) {
398
+ const val = units[i].toLowerCase();
399
+ switch (val) {
400
+ case timeParts.year:
401
+ date.setFullYear(date.getFullYear() + numbers[i]);
402
+ break;
403
+ case timeParts.month:
404
+ date.setMonth(date.getMonth() + numbers[i]);
405
+ break;
406
+ case timeParts.day:
407
+ date.setDate(date.getDate() + numbers[i]);
408
+ break;
409
+ case timeParts.hour:
410
+ date.setHours(date.getHours() + numbers[i]);
411
+ break;
412
+ case timeParts.minute:
413
+ date.setMinutes(date.getMinutes() + numbers[i]);
414
+ break;
415
+ case timeParts.second:
416
+ date.setSeconds(date.getSeconds() + numbers[i]);
417
+ break;
418
+ case timeParts.dayOfWeek:
419
+ case timeParts.monthName:
420
+ case timeParts.unix_time:
421
+ break;
422
+ default: {
423
+ const nvr = val;
424
+ console.error(nvr, 'unhandled case was reached');
425
+ }
426
+ }
427
+ }
428
+ return date;
429
+ }
430
+ exports.addSubtractTime = addSubtractTime;
431
+ exports.timeZoneOptions = [
432
+ {
433
+ label: '(GMT-11:00) Pacific, Midway',
434
+ value: 'Pacific/Midway',
435
+ },
436
+ {
437
+ label: '(GMT-11:00) Pacific, Niue',
438
+ value: 'Pacific/Niue',
439
+ },
440
+ {
441
+ label: '(GMT-11:00) Pacific, Pago Pago',
442
+ value: 'Pacific/Pago_Pago',
443
+ },
444
+ {
445
+ label: '(GMT-10:00) Pacific, Honolulu',
446
+ value: 'Pacific/Honolulu',
447
+ },
448
+ {
449
+ label: '(GMT-10:00) Pacific, Rarotonga',
450
+ value: 'Pacific/Rarotonga',
451
+ },
452
+ {
453
+ label: '(GMT-10:00) Pacific, Tahiti',
454
+ value: 'Pacific/Tahiti',
455
+ },
456
+ {
457
+ label: '(GMT-09:30) Pacific, Marquesas',
458
+ value: 'Pacific/Marquesas',
459
+ },
460
+ {
461
+ label: '(GMT-09:00) America, Adak',
462
+ value: 'America/Adak',
463
+ },
464
+ {
465
+ label: '(GMT-09:00) Pacific, Gambier',
466
+ value: 'Pacific/Gambier',
467
+ },
468
+ {
469
+ label: '(GMT-08:00) America, Anchorage',
470
+ value: 'America/Anchorage',
471
+ },
472
+ {
473
+ label: '(GMT-08:00) America, Juneau',
474
+ value: 'America/Juneau',
475
+ },
476
+ {
477
+ label: '(GMT-08:00) America, Metlakatla',
478
+ value: 'America/Metlakatla',
479
+ },
480
+ {
481
+ label: '(GMT-08:00) America, Nome',
482
+ value: 'America/Nome',
483
+ },
484
+ {
485
+ label: '(GMT-08:00) America, Sitka',
486
+ value: 'America/Sitka',
487
+ },
488
+ {
489
+ label: '(GMT-08:00) America, Yakutat',
490
+ value: 'America/Yakutat',
491
+ },
492
+ {
493
+ label: '(GMT-08:00) Pacific, Pitcairn',
494
+ value: 'Pacific/Pitcairn',
495
+ },
496
+ {
497
+ label: '(GMT-07:00) America, Creston',
498
+ value: 'America/Creston',
499
+ },
500
+ {
501
+ label: '(GMT-07:00) America, Dawson',
502
+ value: 'America/Dawson',
503
+ },
504
+ {
505
+ label: '(GMT-07:00) America, Dawson Creek',
506
+ value: 'America/Dawson_Creek',
507
+ },
508
+ {
509
+ label: '(GMT-07:00) America, Fort Nelson',
510
+ value: 'America/Fort_Nelson',
511
+ },
512
+ {
513
+ label: '(GMT-07:00) America, Hermosillo',
514
+ value: 'America/Hermosillo',
515
+ },
516
+ {
517
+ label: '(GMT-07:00) America, Los Angeles',
518
+ value: 'America/Los_Angeles',
519
+ },
520
+ {
521
+ label: '(GMT-07:00) America, Mazatlan',
522
+ value: 'America/Mazatlan',
523
+ },
524
+ {
525
+ label: '(GMT-07:00) America, Phoenix',
526
+ value: 'America/Phoenix',
527
+ },
528
+ {
529
+ label: '(GMT-07:00) America, Tijuana',
530
+ value: 'America/Tijuana',
531
+ },
532
+ {
533
+ label: '(GMT-07:00) America, Vancouver',
534
+ value: 'America/Vancouver',
535
+ },
536
+ {
537
+ label: '(GMT-07:00) America, Whitehorse',
538
+ value: 'America/Whitehorse',
539
+ },
540
+ {
541
+ label: '(GMT-06:00) America, Bahia Banderas',
542
+ value: 'America/Bahia_Banderas',
543
+ },
544
+ {
545
+ label: '(GMT-06:00) America, Belize',
546
+ value: 'America/Belize',
547
+ },
548
+ {
549
+ label: '(GMT-06:00) America, Boise',
550
+ value: 'America/Boise',
551
+ },
552
+ {
553
+ label: '(GMT-06:00) America, Cambridge Bay',
554
+ value: 'America/Cambridge_Bay',
555
+ },
556
+ {
557
+ label: '(GMT-06:00) America, Chihuahua',
558
+ value: 'America/Chihuahua',
559
+ },
560
+ {
561
+ label: '(GMT-06:00) America, Ciudad Juarez',
562
+ value: 'America/Ciudad_Juarez',
563
+ },
564
+ {
565
+ label: '(GMT-06:00) America, Costa Rica',
566
+ value: 'America/Costa_Rica',
567
+ },
568
+ {
569
+ label: '(GMT-06:00) America, Denver',
570
+ value: 'America/Denver',
571
+ },
572
+ {
573
+ label: '(GMT-06:00) America, Edmonton',
574
+ value: 'America/Edmonton',
575
+ },
576
+ {
577
+ label: '(GMT-06:00) America, El Salvador',
578
+ value: 'America/El_Salvador',
579
+ },
580
+ {
581
+ label: '(GMT-06:00) America, Guatemala',
582
+ value: 'America/Guatemala',
583
+ },
584
+ {
585
+ label: '(GMT-06:00) America, Inuvik',
586
+ value: 'America/Inuvik',
587
+ },
588
+ {
589
+ label: '(GMT-06:00) America, Managua',
590
+ value: 'America/Managua',
591
+ },
592
+ {
593
+ label: '(GMT-06:00) America, Merida',
594
+ value: 'America/Merida',
595
+ },
596
+ {
597
+ label: '(GMT-06:00) America, Mexico City',
598
+ value: 'America/Mexico_City',
599
+ },
600
+ {
601
+ label: '(GMT-06:00) America, Monterrey',
602
+ value: 'America/Monterrey',
603
+ },
604
+ {
605
+ label: '(GMT-06:00) America, Regina',
606
+ value: 'America/Regina',
607
+ },
608
+ {
609
+ label: '(GMT-06:00) America, Swift Current',
610
+ value: 'America/Swift_Current',
611
+ },
612
+ {
613
+ label: '(GMT-06:00) America, Tegucigalpa',
614
+ value: 'America/Tegucigalpa',
615
+ },
616
+ {
617
+ label: '(GMT-06:00) Pacific, Easter',
618
+ value: 'Pacific/Easter',
619
+ },
620
+ {
621
+ label: '(GMT-06:00) Pacific, Galapagos',
622
+ value: 'Pacific/Galapagos',
623
+ },
624
+ {
625
+ label: '(GMT-05:00) America, Atikokan',
626
+ value: 'America/Atikokan',
627
+ },
628
+ {
629
+ label: '(GMT-05:00) America, Bogota',
630
+ value: 'America/Bogota',
631
+ },
632
+ {
633
+ label: '(GMT-05:00) America, Cancun',
634
+ value: 'America/Cancun',
635
+ },
636
+ {
637
+ label: '(GMT-05:00) America, Cayman',
638
+ value: 'America/Cayman',
639
+ },
640
+ {
641
+ label: '(GMT-05:00) America, Chicago',
642
+ value: 'America/Chicago',
643
+ },
644
+ {
645
+ label: '(GMT-05:00) America, Eirunepe',
646
+ value: 'America/Eirunepe',
647
+ },
648
+ {
649
+ label: '(GMT-05:00) America, Guayaquil',
650
+ value: 'America/Guayaquil',
651
+ },
652
+ {
653
+ label: '(GMT-05:00) America, Indiana, Knox',
654
+ value: 'America/Indiana/Knox',
655
+ },
656
+ {
657
+ label: '(GMT-05:00) America, Indiana, Tell City',
658
+ value: 'America/Indiana/Tell_City',
659
+ },
660
+ {
661
+ label: '(GMT-05:00) America, Jamaica',
662
+ value: 'America/Jamaica',
663
+ },
664
+ {
665
+ label: '(GMT-05:00) America, Lima',
666
+ value: 'America/Lima',
667
+ },
668
+ {
669
+ label: '(GMT-05:00) America, Matamoros',
670
+ value: 'America/Matamoros',
671
+ },
672
+ {
673
+ label: '(GMT-05:00) America, Menominee',
674
+ value: 'America/Menominee',
675
+ },
676
+ {
677
+ label: '(GMT-05:00) America, North Dakota, Beulah',
678
+ value: 'America/North_Dakota/Beulah',
679
+ },
680
+ {
681
+ label: '(GMT-05:00) America, North Dakota, Center',
682
+ value: 'America/North_Dakota/Center',
683
+ },
684
+ {
685
+ label: '(GMT-05:00) America, North Dakota, New Salem',
686
+ value: 'America/North_Dakota/New_Salem',
687
+ },
688
+ {
689
+ label: '(GMT-05:00) America, Ojinaga',
690
+ value: 'America/Ojinaga',
691
+ },
692
+ {
693
+ label: '(GMT-05:00) America, Panama',
694
+ value: 'America/Panama',
695
+ },
696
+ {
697
+ label: '(GMT-05:00) America, Rankin Inlet',
698
+ value: 'America/Rankin_Inlet',
699
+ },
700
+ {
701
+ label: '(GMT-05:00) America, Resolute',
702
+ value: 'America/Resolute',
703
+ },
704
+ {
705
+ label: '(GMT-05:00) America, Rio Branco',
706
+ value: 'America/Rio_Branco',
707
+ },
708
+ {
709
+ label: '(GMT-05:00) America, Winnipeg',
710
+ value: 'America/Winnipeg',
711
+ },
712
+ {
713
+ label: '(GMT-04:00) America, Anguilla',
714
+ value: 'America/Anguilla',
715
+ },
716
+ {
717
+ label: '(GMT-04:00) America, Antigua',
718
+ value: 'America/Antigua',
719
+ },
720
+ {
721
+ label: '(GMT-04:00) America, Aruba',
722
+ value: 'America/Aruba',
723
+ },
724
+ {
725
+ label: '(GMT-04:00) America, Asuncion',
726
+ value: 'America/Asuncion',
727
+ },
728
+ {
729
+ label: '(GMT-04:00) America, Barbados',
730
+ value: 'America/Barbados',
731
+ },
732
+ {
733
+ label: '(GMT-04:00) America, Blanc-Sablon',
734
+ value: 'America/Blanc-Sablon',
735
+ },
736
+ {
737
+ label: '(GMT-04:00) America, Boa Vista',
738
+ value: 'America/Boa_Vista',
739
+ },
740
+ {
741
+ label: '(GMT-04:00) America, Campo Grande',
742
+ value: 'America/Campo_Grande',
743
+ },
744
+ {
745
+ label: '(GMT-04:00) America, Caracas',
746
+ value: 'America/Caracas',
747
+ },
748
+ {
749
+ label: '(GMT-04:00) America, Cuiaba',
750
+ value: 'America/Cuiaba',
751
+ },
752
+ {
753
+ label: '(GMT-04:00) America, Curacao',
754
+ value: 'America/Curacao',
755
+ },
756
+ {
757
+ label: '(GMT-04:00) America, Detroit',
758
+ value: 'America/Detroit',
759
+ },
760
+ {
761
+ label: '(GMT-04:00) America, Dominica',
762
+ value: 'America/Dominica',
763
+ },
764
+ {
765
+ label: '(GMT-04:00) America, Grand Turk',
766
+ value: 'America/Grand_Turk',
767
+ },
768
+ {
769
+ label: '(GMT-04:00) America, Grenada',
770
+ value: 'America/Grenada',
771
+ },
772
+ {
773
+ label: '(GMT-04:00) America, Guadeloupe',
774
+ value: 'America/Guadeloupe',
775
+ },
776
+ {
777
+ label: '(GMT-04:00) America, Guyana',
778
+ value: 'America/Guyana',
779
+ },
780
+ {
781
+ label: '(GMT-04:00) America, Havana',
782
+ value: 'America/Havana',
783
+ },
784
+ {
785
+ label: '(GMT-04:00) America, Indiana, Indianapolis',
786
+ value: 'America/Indiana/Indianapolis',
787
+ },
788
+ {
789
+ label: '(GMT-04:00) America, Indiana, Marengo',
790
+ value: 'America/Indiana/Marengo',
791
+ },
792
+ {
793
+ label: '(GMT-04:00) America, Indiana, Petersburg',
794
+ value: 'America/Indiana/Petersburg',
795
+ },
796
+ {
797
+ label: '(GMT-04:00) America, Indiana, Vevay',
798
+ value: 'America/Indiana/Vevay',
799
+ },
800
+ {
801
+ label: '(GMT-04:00) America, Indiana, Vincennes',
802
+ value: 'America/Indiana/Vincennes',
803
+ },
804
+ {
805
+ label: '(GMT-04:00) America, Indiana, Winamac',
806
+ value: 'America/Indiana/Winamac',
807
+ },
808
+ {
809
+ label: '(GMT-04:00) America, Iqaluit',
810
+ value: 'America/Iqaluit',
811
+ },
812
+ {
813
+ label: '(GMT-04:00) America, Kentucky, Louisville',
814
+ value: 'America/Kentucky/Louisville',
815
+ },
816
+ {
817
+ label: '(GMT-04:00) America, Kentucky, Monticello',
818
+ value: 'America/Kentucky/Monticello',
819
+ },
820
+ {
821
+ label: '(GMT-04:00) America, Kralendijk',
822
+ value: 'America/Kralendijk',
823
+ },
824
+ {
825
+ label: '(GMT-04:00) America, La Paz',
826
+ value: 'America/La_Paz',
827
+ },
828
+ {
829
+ label: '(GMT-04:00) America, Lower Princes',
830
+ value: 'America/Lower_Princes',
831
+ },
832
+ {
833
+ label: '(GMT-04:00) America, Manaus',
834
+ value: 'America/Manaus',
835
+ },
836
+ {
837
+ label: '(GMT-04:00) America, Marigot',
838
+ value: 'America/Marigot',
839
+ },
840
+ {
841
+ label: '(GMT-04:00) America, Martinique',
842
+ value: 'America/Martinique',
843
+ },
844
+ {
845
+ label: '(GMT-04:00) America, Montserrat',
846
+ value: 'America/Montserrat',
847
+ },
848
+ {
849
+ label: '(GMT-04:00) America, Nassau',
850
+ value: 'America/Nassau',
851
+ },
852
+ {
853
+ label: '(GMT-04:00) America, New York',
854
+ value: 'America/New_York',
855
+ },
856
+ {
857
+ label: '(GMT-04:00) America, Port of Spain',
858
+ value: 'America/Port_of_Spain',
859
+ },
860
+ {
861
+ label: '(GMT-04:00) America, Port-au-Prince',
862
+ value: 'America/Port-au-Prince',
863
+ },
864
+ {
865
+ label: '(GMT-04:00) America, Porto Velho',
866
+ value: 'America/Porto_Velho',
867
+ },
868
+ {
869
+ label: '(GMT-04:00) America, Puerto Rico',
870
+ value: 'America/Puerto_Rico',
871
+ },
872
+ {
873
+ label: '(GMT-04:00) America, Santiago',
874
+ value: 'America/Santiago',
875
+ },
876
+ {
877
+ label: '(GMT-04:00) America, Santo Domingo',
878
+ value: 'America/Santo_Domingo',
879
+ },
880
+ {
881
+ label: '(GMT-04:00) America, St. Barthelemy',
882
+ value: 'America/St_Barthelemy',
883
+ },
884
+ {
885
+ label: '(GMT-04:00) America, St. Kitts',
886
+ value: 'America/St_Kitts',
887
+ },
888
+ {
889
+ label: '(GMT-04:00) America, St. Lucia',
890
+ value: 'America/St_Lucia',
891
+ },
892
+ {
893
+ label: '(GMT-04:00) America, St. Thomas',
894
+ value: 'America/St_Thomas',
895
+ },
896
+ {
897
+ label: '(GMT-04:00) America, St. Vincent',
898
+ value: 'America/St_Vincent',
899
+ },
900
+ {
901
+ label: '(GMT-04:00) America, Toronto',
902
+ value: 'America/Toronto',
903
+ },
904
+ {
905
+ label: '(GMT-04:00) America, Tortola',
906
+ value: 'America/Tortola',
907
+ },
908
+ {
909
+ label: '(GMT-03:00) America, Araguaina',
910
+ value: 'America/Araguaina',
911
+ },
912
+ {
913
+ label: '(GMT-03:00) America, Argentina, Buenos Aires',
914
+ value: 'America/Argentina/Buenos_Aires',
915
+ },
916
+ {
917
+ label: '(GMT-03:00) America, Argentina, Catamarca',
918
+ value: 'America/Argentina/Catamarca',
919
+ },
920
+ {
921
+ label: '(GMT-03:00) America, Argentina, Cordoba',
922
+ value: 'America/Argentina/Cordoba',
923
+ },
924
+ {
925
+ label: '(GMT-03:00) America, Argentina, Jujuy',
926
+ value: 'America/Argentina/Jujuy',
927
+ },
928
+ {
929
+ label: '(GMT-03:00) America, Argentina, La Rioja',
930
+ value: 'America/Argentina/La_Rioja',
931
+ },
932
+ {
933
+ label: '(GMT-03:00) America, Argentina, Mendoza',
934
+ value: 'America/Argentina/Mendoza',
935
+ },
936
+ {
937
+ label: '(GMT-03:00) America, Argentina, Rio Gallegos',
938
+ value: 'America/Argentina/Rio_Gallegos',
939
+ },
940
+ {
941
+ label: '(GMT-03:00) America, Argentina, Salta',
942
+ value: 'America/Argentina/Salta',
943
+ },
944
+ {
945
+ label: '(GMT-03:00) America, Argentina, San Juan',
946
+ value: 'America/Argentina/San_Juan',
947
+ },
948
+ {
949
+ label: '(GMT-03:00) America, Argentina, San Luis',
950
+ value: 'America/Argentina/San_Luis',
951
+ },
952
+ {
953
+ label: '(GMT-03:00) America, Argentina, Tucuman',
954
+ value: 'America/Argentina/Tucuman',
955
+ },
956
+ {
957
+ label: '(GMT-03:00) America, Argentina, Ushuaia',
958
+ value: 'America/Argentina/Ushuaia',
959
+ },
960
+ {
961
+ label: '(GMT-03:00) America, Bahia',
962
+ value: 'America/Bahia',
963
+ },
964
+ {
965
+ label: '(GMT-03:00) America, Belem',
966
+ value: 'America/Belem',
967
+ },
968
+ {
969
+ label: '(GMT-03:00) America, Cayenne',
970
+ value: 'America/Cayenne',
971
+ },
972
+ {
973
+ label: '(GMT-03:00) America, Fortaleza',
974
+ value: 'America/Fortaleza',
975
+ },
976
+ {
977
+ label: '(GMT-03:00) America, Glace Bay',
978
+ value: 'America/Glace_Bay',
979
+ },
980
+ {
981
+ label: '(GMT-03:00) America, Goose Bay',
982
+ value: 'America/Goose_Bay',
983
+ },
984
+ {
985
+ label: '(GMT-03:00) America, Halifax',
986
+ value: 'America/Halifax',
987
+ },
988
+ {
989
+ label: '(GMT-03:00) America, Maceio',
990
+ value: 'America/Maceio',
991
+ },
992
+ {
993
+ label: '(GMT-03:00) America, Moncton',
994
+ value: 'America/Moncton',
995
+ },
996
+ {
997
+ label: '(GMT-03:00) America, Montevideo',
998
+ value: 'America/Montevideo',
999
+ },
1000
+ {
1001
+ label: '(GMT-03:00) America, Paramaribo',
1002
+ value: 'America/Paramaribo',
1003
+ },
1004
+ {
1005
+ label: '(GMT-03:00) America, Punta Arenas',
1006
+ value: 'America/Punta_Arenas',
1007
+ },
1008
+ {
1009
+ label: '(GMT-03:00) America, Recife',
1010
+ value: 'America/Recife',
1011
+ },
1012
+ {
1013
+ label: '(GMT-03:00) America, Santarem',
1014
+ value: 'America/Santarem',
1015
+ },
1016
+ {
1017
+ label: '(GMT-03:00) America, Sao Paulo',
1018
+ value: 'America/Sao_Paulo',
1019
+ },
1020
+ {
1021
+ label: '(GMT-03:00) America, Thule',
1022
+ value: 'America/Thule',
1023
+ },
1024
+ {
1025
+ label: '(GMT-03:00) Antarctica, Palmer',
1026
+ value: 'Antarctica/Palmer',
1027
+ },
1028
+ {
1029
+ label: '(GMT-03:00) Antarctica, Rothera',
1030
+ value: 'Antarctica/Rothera',
1031
+ },
1032
+ {
1033
+ label: '(GMT-03:00) Atlantic, Bermuda',
1034
+ value: 'Atlantic/Bermuda',
1035
+ },
1036
+ {
1037
+ label: '(GMT-03:00) Atlantic, Stanley',
1038
+ value: 'Atlantic/Stanley',
1039
+ },
1040
+ {
1041
+ label: '(GMT-02:30) America, St. Johns',
1042
+ value: 'America/St_Johns',
1043
+ },
1044
+ {
1045
+ label: '(GMT-02:00) America, Miquelon',
1046
+ value: 'America/Miquelon',
1047
+ },
1048
+ {
1049
+ label: '(GMT-02:00) America, Noronha',
1050
+ value: 'America/Noronha',
1051
+ },
1052
+ {
1053
+ label: '(GMT-02:00) America, Nuuk',
1054
+ value: 'America/Nuuk',
1055
+ },
1056
+ {
1057
+ label: '(GMT-02:00) Atlantic, South Georgia',
1058
+ value: 'Atlantic/South_Georgia',
1059
+ },
1060
+ {
1061
+ label: '(GMT-01:00) Atlantic, Cape Verde',
1062
+ value: 'Atlantic/Cape_Verde',
1063
+ },
1064
+ {
1065
+ label: '(GMT) Africa, Abidjan',
1066
+ value: 'Africa/Abidjan',
1067
+ },
1068
+ {
1069
+ label: '(GMT) Africa, Accra',
1070
+ value: 'Africa/Accra',
1071
+ },
1072
+ {
1073
+ label: '(GMT) Africa, Bamako',
1074
+ value: 'Africa/Bamako',
1075
+ },
1076
+ {
1077
+ label: '(GMT) Africa, Banjul',
1078
+ value: 'Africa/Banjul',
1079
+ },
1080
+ {
1081
+ label: '(GMT) Africa, Bissau',
1082
+ value: 'Africa/Bissau',
1083
+ },
1084
+ {
1085
+ label: '(GMT) Africa, Conakry',
1086
+ value: 'Africa/Conakry',
1087
+ },
1088
+ {
1089
+ label: '(GMT) Africa, Dakar',
1090
+ value: 'Africa/Dakar',
1091
+ },
1092
+ {
1093
+ label: '(GMT) Africa, Freetown',
1094
+ value: 'Africa/Freetown',
1095
+ },
1096
+ {
1097
+ label: '(GMT) Africa, Lome',
1098
+ value: 'Africa/Lome',
1099
+ },
1100
+ {
1101
+ label: '(GMT) Africa, Monrovia',
1102
+ value: 'Africa/Monrovia',
1103
+ },
1104
+ {
1105
+ label: '(GMT) Africa, Nouakchott',
1106
+ value: 'Africa/Nouakchott',
1107
+ },
1108
+ {
1109
+ label: '(GMT) Africa, Ouagadougou',
1110
+ value: 'Africa/Ouagadougou',
1111
+ },
1112
+ {
1113
+ label: '(GMT) Africa, Sao Tome',
1114
+ value: 'Africa/Sao_Tome',
1115
+ },
1116
+ {
1117
+ label: '(GMT) America, Danmarkshavn',
1118
+ value: 'America/Danmarkshavn',
1119
+ },
1120
+ {
1121
+ label: '(GMT) America, Scoresbysund',
1122
+ value: 'America/Scoresbysund',
1123
+ },
1124
+ {
1125
+ label: '(GMT) Atlantic, Azores',
1126
+ value: 'Atlantic/Azores',
1127
+ },
1128
+ {
1129
+ label: '(GMT) Atlantic, Reykjavik',
1130
+ value: 'Atlantic/Reykjavik',
1131
+ },
1132
+ {
1133
+ label: '(GMT) Atlantic, St. Helena',
1134
+ value: 'Atlantic/St_Helena',
1135
+ },
1136
+ {
1137
+ label: '(GMT) UTC',
1138
+ value: 'UTC',
1139
+ },
1140
+ {
1141
+ label: '(GMT+01:00) Africa, Algiers',
1142
+ value: 'Africa/Algiers',
1143
+ },
1144
+ {
1145
+ label: '(GMT+01:00) Africa, Bangui',
1146
+ value: 'Africa/Bangui',
1147
+ },
1148
+ {
1149
+ label: '(GMT+01:00) Africa, Brazzaville',
1150
+ value: 'Africa/Brazzaville',
1151
+ },
1152
+ {
1153
+ label: '(GMT+01:00) Africa, Casablanca',
1154
+ value: 'Africa/Casablanca',
1155
+ },
1156
+ {
1157
+ label: '(GMT+01:00) Africa, Douala',
1158
+ value: 'Africa/Douala',
1159
+ },
1160
+ {
1161
+ label: '(GMT+01:00) Africa, El Aaiun',
1162
+ value: 'Africa/El_Aaiun',
1163
+ },
1164
+ {
1165
+ label: '(GMT+01:00) Africa, Kinshasa',
1166
+ value: 'Africa/Kinshasa',
1167
+ },
1168
+ {
1169
+ label: '(GMT+01:00) Africa, Lagos',
1170
+ value: 'Africa/Lagos',
1171
+ },
1172
+ {
1173
+ label: '(GMT+01:00) Africa, Libreville',
1174
+ value: 'Africa/Libreville',
1175
+ },
1176
+ {
1177
+ label: '(GMT+01:00) Africa, Luanda',
1178
+ value: 'Africa/Luanda',
1179
+ },
1180
+ {
1181
+ label: '(GMT+01:00) Africa, Malabo',
1182
+ value: 'Africa/Malabo',
1183
+ },
1184
+ {
1185
+ label: '(GMT+01:00) Africa, Ndjamena',
1186
+ value: 'Africa/Ndjamena',
1187
+ },
1188
+ {
1189
+ label: '(GMT+01:00) Africa, Niamey',
1190
+ value: 'Africa/Niamey',
1191
+ },
1192
+ {
1193
+ label: '(GMT+01:00) Africa, Porto-Novo',
1194
+ value: 'Africa/Porto-Novo',
1195
+ },
1196
+ {
1197
+ label: '(GMT+01:00) Africa, Tunis',
1198
+ value: 'Africa/Tunis',
1199
+ },
1200
+ {
1201
+ label: '(GMT+01:00) Atlantic, Canary',
1202
+ value: 'Atlantic/Canary',
1203
+ },
1204
+ {
1205
+ label: '(GMT+01:00) Atlantic, Faroe',
1206
+ value: 'Atlantic/Faroe',
1207
+ },
1208
+ {
1209
+ label: '(GMT+01:00) Atlantic, Madeira',
1210
+ value: 'Atlantic/Madeira',
1211
+ },
1212
+ {
1213
+ label: '(GMT+01:00) Europe, Dublin',
1214
+ value: 'Europe/Dublin',
1215
+ },
1216
+ {
1217
+ label: '(GMT+01:00) Europe, Guernsey',
1218
+ value: 'Europe/Guernsey',
1219
+ },
1220
+ {
1221
+ label: '(GMT+01:00) Europe, Isle of Man',
1222
+ value: 'Europe/Isle_of_Man',
1223
+ },
1224
+ {
1225
+ label: '(GMT+01:00) Europe, Jersey',
1226
+ value: 'Europe/Jersey',
1227
+ },
1228
+ {
1229
+ label: '(GMT+01:00) Europe, Lisbon',
1230
+ value: 'Europe/Lisbon',
1231
+ },
1232
+ {
1233
+ label: '(GMT+01:00) Europe, London',
1234
+ value: 'Europe/London',
1235
+ },
1236
+ {
1237
+ label: '(GMT+02:00) Africa, Blantyre',
1238
+ value: 'Africa/Blantyre',
1239
+ },
1240
+ {
1241
+ label: '(GMT+02:00) Africa, Bujumbura',
1242
+ value: 'Africa/Bujumbura',
1243
+ },
1244
+ {
1245
+ label: '(GMT+02:00) Africa, Ceuta',
1246
+ value: 'Africa/Ceuta',
1247
+ },
1248
+ {
1249
+ label: '(GMT+02:00) Africa, Gaborone',
1250
+ value: 'Africa/Gaborone',
1251
+ },
1252
+ {
1253
+ label: '(GMT+02:00) Africa, Harare',
1254
+ value: 'Africa/Harare',
1255
+ },
1256
+ {
1257
+ label: '(GMT+02:00) Africa, Johannesburg',
1258
+ value: 'Africa/Johannesburg',
1259
+ },
1260
+ {
1261
+ label: '(GMT+02:00) Africa, Juba',
1262
+ value: 'Africa/Juba',
1263
+ },
1264
+ {
1265
+ label: '(GMT+02:00) Africa, Khartoum',
1266
+ value: 'Africa/Khartoum',
1267
+ },
1268
+ {
1269
+ label: '(GMT+02:00) Africa, Kigali',
1270
+ value: 'Africa/Kigali',
1271
+ },
1272
+ {
1273
+ label: '(GMT+02:00) Africa, Lubumbashi',
1274
+ value: 'Africa/Lubumbashi',
1275
+ },
1276
+ {
1277
+ label: '(GMT+02:00) Africa, Lusaka',
1278
+ value: 'Africa/Lusaka',
1279
+ },
1280
+ {
1281
+ label: '(GMT+02:00) Africa, Maputo',
1282
+ value: 'Africa/Maputo',
1283
+ },
1284
+ {
1285
+ label: '(GMT+02:00) Africa, Maseru',
1286
+ value: 'Africa/Maseru',
1287
+ },
1288
+ {
1289
+ label: '(GMT+02:00) Africa, Mbabane',
1290
+ value: 'Africa/Mbabane',
1291
+ },
1292
+ {
1293
+ label: '(GMT+02:00) Africa, Tripoli',
1294
+ value: 'Africa/Tripoli',
1295
+ },
1296
+ {
1297
+ label: '(GMT+02:00) Africa, Windhoek',
1298
+ value: 'Africa/Windhoek',
1299
+ },
1300
+ {
1301
+ label: '(GMT+02:00) Antarctica, Troll',
1302
+ value: 'Antarctica/Troll',
1303
+ },
1304
+ {
1305
+ label: '(GMT+02:00) Arctic, Longyearbyen',
1306
+ value: 'Arctic/Longyearbyen',
1307
+ },
1308
+ {
1309
+ label: '(GMT+02:00) Europe, Amsterdam',
1310
+ value: 'Europe/Amsterdam',
1311
+ },
1312
+ {
1313
+ label: '(GMT+02:00) Europe, Andorra',
1314
+ value: 'Europe/Andorra',
1315
+ },
1316
+ {
1317
+ label: '(GMT+02:00) Europe, Belgrade',
1318
+ value: 'Europe/Belgrade',
1319
+ },
1320
+ {
1321
+ label: '(GMT+02:00) Europe, Berlin',
1322
+ value: 'Europe/Berlin',
1323
+ },
1324
+ {
1325
+ label: '(GMT+02:00) Europe, Bratislava',
1326
+ value: 'Europe/Bratislava',
1327
+ },
1328
+ {
1329
+ label: '(GMT+02:00) Europe, Brussels',
1330
+ value: 'Europe/Brussels',
1331
+ },
1332
+ {
1333
+ label: '(GMT+02:00) Europe, Budapest',
1334
+ value: 'Europe/Budapest',
1335
+ },
1336
+ {
1337
+ label: '(GMT+02:00) Europe, Busingen',
1338
+ value: 'Europe/Busingen',
1339
+ },
1340
+ {
1341
+ label: '(GMT+02:00) Europe, Copenhagen',
1342
+ value: 'Europe/Copenhagen',
1343
+ },
1344
+ {
1345
+ label: '(GMT+02:00) Europe, Gibraltar',
1346
+ value: 'Europe/Gibraltar',
1347
+ },
1348
+ {
1349
+ label: '(GMT+02:00) Europe, Kaliningrad',
1350
+ value: 'Europe/Kaliningrad',
1351
+ },
1352
+ {
1353
+ label: '(GMT+02:00) Europe, Ljubljana',
1354
+ value: 'Europe/Ljubljana',
1355
+ },
1356
+ {
1357
+ label: '(GMT+02:00) Europe, Luxembourg',
1358
+ value: 'Europe/Luxembourg',
1359
+ },
1360
+ {
1361
+ label: '(GMT+02:00) Europe, Madrid',
1362
+ value: 'Europe/Madrid',
1363
+ },
1364
+ {
1365
+ label: '(GMT+02:00) Europe, Malta',
1366
+ value: 'Europe/Malta',
1367
+ },
1368
+ {
1369
+ label: '(GMT+02:00) Europe, Monaco',
1370
+ value: 'Europe/Monaco',
1371
+ },
1372
+ {
1373
+ label: '(GMT+02:00) Europe, Oslo',
1374
+ value: 'Europe/Oslo',
1375
+ },
1376
+ {
1377
+ label: '(GMT+02:00) Europe, Paris',
1378
+ value: 'Europe/Paris',
1379
+ },
1380
+ {
1381
+ label: '(GMT+02:00) Europe, Podgorica',
1382
+ value: 'Europe/Podgorica',
1383
+ },
1384
+ {
1385
+ label: '(GMT+02:00) Europe, Prague',
1386
+ value: 'Europe/Prague',
1387
+ },
1388
+ {
1389
+ label: '(GMT+02:00) Europe, Rome',
1390
+ value: 'Europe/Rome',
1391
+ },
1392
+ {
1393
+ label: '(GMT+02:00) Europe, San Marino',
1394
+ value: 'Europe/San_Marino',
1395
+ },
1396
+ {
1397
+ label: '(GMT+02:00) Europe, Sarajevo',
1398
+ value: 'Europe/Sarajevo',
1399
+ },
1400
+ {
1401
+ label: '(GMT+02:00) Europe, Skopje',
1402
+ value: 'Europe/Skopje',
1403
+ },
1404
+ {
1405
+ label: '(GMT+02:00) Europe, Stockholm',
1406
+ value: 'Europe/Stockholm',
1407
+ },
1408
+ {
1409
+ label: '(GMT+02:00) Europe, Tirane',
1410
+ value: 'Europe/Tirane',
1411
+ },
1412
+ {
1413
+ label: '(GMT+02:00) Europe, Vaduz',
1414
+ value: 'Europe/Vaduz',
1415
+ },
1416
+ {
1417
+ label: '(GMT+02:00) Europe, Vatican',
1418
+ value: 'Europe/Vatican',
1419
+ },
1420
+ {
1421
+ label: '(GMT+02:00) Europe, Vienna',
1422
+ value: 'Europe/Vienna',
1423
+ },
1424
+ {
1425
+ label: '(GMT+02:00) Europe, Warsaw',
1426
+ value: 'Europe/Warsaw',
1427
+ },
1428
+ {
1429
+ label: '(GMT+02:00) Europe, Zagreb',
1430
+ value: 'Europe/Zagreb',
1431
+ },
1432
+ {
1433
+ label: '(GMT+02:00) Europe, Zurich',
1434
+ value: 'Europe/Zurich',
1435
+ },
1436
+ {
1437
+ label: '(GMT+03:00) Africa, Addis Ababa',
1438
+ value: 'Africa/Addis_Ababa',
1439
+ },
1440
+ {
1441
+ label: '(GMT+03:00) Africa, Asmara',
1442
+ value: 'Africa/Asmara',
1443
+ },
1444
+ {
1445
+ label: '(GMT+03:00) Africa, Cairo',
1446
+ value: 'Africa/Cairo',
1447
+ },
1448
+ {
1449
+ label: '(GMT+03:00) Africa, Dar es Salaam',
1450
+ value: 'Africa/Dar_es_Salaam',
1451
+ },
1452
+ {
1453
+ label: '(GMT+03:00) Africa, Djibouti',
1454
+ value: 'Africa/Djibouti',
1455
+ },
1456
+ {
1457
+ label: '(GMT+03:00) Africa, Kampala',
1458
+ value: 'Africa/Kampala',
1459
+ },
1460
+ {
1461
+ label: '(GMT+03:00) Africa, Mogadishu',
1462
+ value: 'Africa/Mogadishu',
1463
+ },
1464
+ {
1465
+ label: '(GMT+03:00) Africa, Nairobi',
1466
+ value: 'Africa/Nairobi',
1467
+ },
1468
+ {
1469
+ label: '(GMT+03:00) Antarctica, Syowa',
1470
+ value: 'Antarctica/Syowa',
1471
+ },
1472
+ {
1473
+ label: '(GMT+03:00) Asia, Aden',
1474
+ value: 'Asia/Aden',
1475
+ },
1476
+ {
1477
+ label: '(GMT+03:00) Asia, Amman',
1478
+ value: 'Asia/Amman',
1479
+ },
1480
+ {
1481
+ label: '(GMT+03:00) Asia, Baghdad',
1482
+ value: 'Asia/Baghdad',
1483
+ },
1484
+ {
1485
+ label: '(GMT+03:00) Asia, Bahrain',
1486
+ value: 'Asia/Bahrain',
1487
+ },
1488
+ {
1489
+ label: '(GMT+03:00) Asia, Beirut',
1490
+ value: 'Asia/Beirut',
1491
+ },
1492
+ {
1493
+ label: '(GMT+03:00) Asia, Damascus',
1494
+ value: 'Asia/Damascus',
1495
+ },
1496
+ {
1497
+ label: '(GMT+03:00) Asia, Famagusta',
1498
+ value: 'Asia/Famagusta',
1499
+ },
1500
+ {
1501
+ label: '(GMT+03:00) Asia, Gaza',
1502
+ value: 'Asia/Gaza',
1503
+ },
1504
+ {
1505
+ label: '(GMT+03:00) Asia, Hebron',
1506
+ value: 'Asia/Hebron',
1507
+ },
1508
+ {
1509
+ label: '(GMT+03:00) Asia, Jerusalem',
1510
+ value: 'Asia/Jerusalem',
1511
+ },
1512
+ {
1513
+ label: '(GMT+03:00) Asia, Kuwait',
1514
+ value: 'Asia/Kuwait',
1515
+ },
1516
+ {
1517
+ label: '(GMT+03:00) Asia, Nicosia',
1518
+ value: 'Asia/Nicosia',
1519
+ },
1520
+ {
1521
+ label: '(GMT+03:00) Asia, Qatar',
1522
+ value: 'Asia/Qatar',
1523
+ },
1524
+ {
1525
+ label: '(GMT+03:00) Asia, Riyadh',
1526
+ value: 'Asia/Riyadh',
1527
+ },
1528
+ {
1529
+ label: '(GMT+03:00) Europe, Athens',
1530
+ value: 'Europe/Athens',
1531
+ },
1532
+ {
1533
+ label: '(GMT+03:00) Europe, Bucharest',
1534
+ value: 'Europe/Bucharest',
1535
+ },
1536
+ {
1537
+ label: '(GMT+03:00) Europe, Chisinau',
1538
+ value: 'Europe/Chisinau',
1539
+ },
1540
+ {
1541
+ label: '(GMT+03:00) Europe, Helsinki',
1542
+ value: 'Europe/Helsinki',
1543
+ },
1544
+ {
1545
+ label: '(GMT+03:00) Europe, Istanbul',
1546
+ value: 'Europe/Istanbul',
1547
+ },
1548
+ {
1549
+ label: '(GMT+03:00) Europe, Kirov',
1550
+ value: 'Europe/Kirov',
1551
+ },
1552
+ {
1553
+ label: '(GMT+03:00) Europe, Kyiv',
1554
+ value: 'Europe/Kyiv',
1555
+ },
1556
+ {
1557
+ label: '(GMT+03:00) Europe, Mariehamn',
1558
+ value: 'Europe/Mariehamn',
1559
+ },
1560
+ {
1561
+ label: '(GMT+03:00) Europe, Minsk',
1562
+ value: 'Europe/Minsk',
1563
+ },
1564
+ {
1565
+ label: '(GMT+03:00) Europe, Moscow',
1566
+ value: 'Europe/Moscow',
1567
+ },
1568
+ {
1569
+ label: '(GMT+03:00) Europe, Riga',
1570
+ value: 'Europe/Riga',
1571
+ },
1572
+ {
1573
+ label: '(GMT+03:00) Europe, Simferopol',
1574
+ value: 'Europe/Simferopol',
1575
+ },
1576
+ {
1577
+ label: '(GMT+03:00) Europe, Sofia',
1578
+ value: 'Europe/Sofia',
1579
+ },
1580
+ {
1581
+ label: '(GMT+03:00) Europe, Tallinn',
1582
+ value: 'Europe/Tallinn',
1583
+ },
1584
+ {
1585
+ label: '(GMT+03:00) Europe, Vilnius',
1586
+ value: 'Europe/Vilnius',
1587
+ },
1588
+ {
1589
+ label: '(GMT+03:00) Europe, Volgograd',
1590
+ value: 'Europe/Volgograd',
1591
+ },
1592
+ {
1593
+ label: '(GMT+03:00) Indian, Antananarivo',
1594
+ value: 'Indian/Antananarivo',
1595
+ },
1596
+ {
1597
+ label: '(GMT+03:00) Indian, Comoro',
1598
+ value: 'Indian/Comoro',
1599
+ },
1600
+ {
1601
+ label: '(GMT+03:00) Indian, Mayotte',
1602
+ value: 'Indian/Mayotte',
1603
+ },
1604
+ {
1605
+ label: '(GMT+03:30) Asia, Tehran',
1606
+ value: 'Asia/Tehran',
1607
+ },
1608
+ {
1609
+ label: '(GMT+04:00) Asia, Baku',
1610
+ value: 'Asia/Baku',
1611
+ },
1612
+ {
1613
+ label: '(GMT+04:00) Asia, Dubai',
1614
+ value: 'Asia/Dubai',
1615
+ },
1616
+ {
1617
+ label: '(GMT+04:00) Asia, Muscat',
1618
+ value: 'Asia/Muscat',
1619
+ },
1620
+ {
1621
+ label: '(GMT+04:00) Asia, Tbilisi',
1622
+ value: 'Asia/Tbilisi',
1623
+ },
1624
+ {
1625
+ label: '(GMT+04:00) Asia, Yerevan',
1626
+ value: 'Asia/Yerevan',
1627
+ },
1628
+ {
1629
+ label: '(GMT+04:00) Europe, Astrakhan',
1630
+ value: 'Europe/Astrakhan',
1631
+ },
1632
+ {
1633
+ label: '(GMT+04:00) Europe, Samara',
1634
+ value: 'Europe/Samara',
1635
+ },
1636
+ {
1637
+ label: '(GMT+04:00) Europe, Saratov',
1638
+ value: 'Europe/Saratov',
1639
+ },
1640
+ {
1641
+ label: '(GMT+04:00) Europe, Ulyanovsk',
1642
+ value: 'Europe/Ulyanovsk',
1643
+ },
1644
+ {
1645
+ label: '(GMT+04:00) Indian, Mahe',
1646
+ value: 'Indian/Mahe',
1647
+ },
1648
+ {
1649
+ label: '(GMT+04:00) Indian, Mauritius',
1650
+ value: 'Indian/Mauritius',
1651
+ },
1652
+ {
1653
+ label: '(GMT+04:00) Indian, Reunion',
1654
+ value: 'Indian/Reunion',
1655
+ },
1656
+ {
1657
+ label: '(GMT+04:30) Asia, Kabul',
1658
+ value: 'Asia/Kabul',
1659
+ },
1660
+ {
1661
+ label: '(GMT+05:00) Antarctica, Mawson',
1662
+ value: 'Antarctica/Mawson',
1663
+ },
1664
+ {
1665
+ label: '(GMT+05:00) Asia, Aqtau',
1666
+ value: 'Asia/Aqtau',
1667
+ },
1668
+ {
1669
+ label: '(GMT+05:00) Asia, Aqtobe',
1670
+ value: 'Asia/Aqtobe',
1671
+ },
1672
+ {
1673
+ label: '(GMT+05:00) Asia, Ashgabat',
1674
+ value: 'Asia/Ashgabat',
1675
+ },
1676
+ {
1677
+ label: '(GMT+05:00) Asia, Atyrau',
1678
+ value: 'Asia/Atyrau',
1679
+ },
1680
+ {
1681
+ label: '(GMT+05:00) Asia, Dushanbe',
1682
+ value: 'Asia/Dushanbe',
1683
+ },
1684
+ {
1685
+ label: '(GMT+05:00) Asia, Karachi',
1686
+ value: 'Asia/Karachi',
1687
+ },
1688
+ {
1689
+ label: '(GMT+05:00) Asia, Oral',
1690
+ value: 'Asia/Oral',
1691
+ },
1692
+ {
1693
+ label: '(GMT+05:00) Asia, Qyzylorda',
1694
+ value: 'Asia/Qyzylorda',
1695
+ },
1696
+ {
1697
+ label: '(GMT+05:00) Asia, Samarkand',
1698
+ value: 'Asia/Samarkand',
1699
+ },
1700
+ {
1701
+ label: '(GMT+05:00) Asia, Tashkent',
1702
+ value: 'Asia/Tashkent',
1703
+ },
1704
+ {
1705
+ label: '(GMT+05:00) Asia, Yekaterinburg',
1706
+ value: 'Asia/Yekaterinburg',
1707
+ },
1708
+ {
1709
+ label: '(GMT+05:00) Indian, Kerguelen',
1710
+ value: 'Indian/Kerguelen',
1711
+ },
1712
+ {
1713
+ label: '(GMT+05:00) Indian, Maldives',
1714
+ value: 'Indian/Maldives',
1715
+ },
1716
+ {
1717
+ label: '(GMT+05:30) Asia, Colombo',
1718
+ value: 'Asia/Colombo',
1719
+ },
1720
+ {
1721
+ label: '(GMT+05:30) Asia, Kolkata',
1722
+ value: 'Asia/Kolkata',
1723
+ },
1724
+ {
1725
+ label: '(GMT+05:45) Asia, Kathmandu',
1726
+ value: 'Asia/Kathmandu',
1727
+ },
1728
+ {
1729
+ label: '(GMT+06:00) Antarctica, Vostok',
1730
+ value: 'Antarctica/Vostok',
1731
+ },
1732
+ {
1733
+ label: '(GMT+06:00) Asia, Almaty',
1734
+ value: 'Asia/Almaty',
1735
+ },
1736
+ {
1737
+ label: '(GMT+06:00) Asia, Bishkek',
1738
+ value: 'Asia/Bishkek',
1739
+ },
1740
+ {
1741
+ label: '(GMT+06:00) Asia, Dhaka',
1742
+ value: 'Asia/Dhaka',
1743
+ },
1744
+ {
1745
+ label: '(GMT+06:00) Asia, Omsk',
1746
+ value: 'Asia/Omsk',
1747
+ },
1748
+ {
1749
+ label: '(GMT+06:00) Asia, Qostanay',
1750
+ value: 'Asia/Qostanay',
1751
+ },
1752
+ {
1753
+ label: '(GMT+06:00) Asia, Thimphu',
1754
+ value: 'Asia/Thimphu',
1755
+ },
1756
+ {
1757
+ label: '(GMT+06:00) Asia, Urumqi',
1758
+ value: 'Asia/Urumqi',
1759
+ },
1760
+ {
1761
+ label: '(GMT+06:00) Indian, Chagos',
1762
+ value: 'Indian/Chagos',
1763
+ },
1764
+ {
1765
+ label: '(GMT+06:30) Asia, Yangon',
1766
+ value: 'Asia/Yangon',
1767
+ },
1768
+ {
1769
+ label: '(GMT+06:30) Indian, Cocos',
1770
+ value: 'Indian/Cocos',
1771
+ },
1772
+ {
1773
+ label: '(GMT+07:00) Antarctica, Davis',
1774
+ value: 'Antarctica/Davis',
1775
+ },
1776
+ {
1777
+ label: '(GMT+07:00) Asia, Bangkok',
1778
+ value: 'Asia/Bangkok',
1779
+ },
1780
+ {
1781
+ label: '(GMT+07:00) Asia, Barnaul',
1782
+ value: 'Asia/Barnaul',
1783
+ },
1784
+ {
1785
+ label: '(GMT+07:00) Asia, Ho Chi Minh',
1786
+ value: 'Asia/Ho_Chi_Minh',
1787
+ },
1788
+ {
1789
+ label: '(GMT+07:00) Asia, Hovd',
1790
+ value: 'Asia/Hovd',
1791
+ },
1792
+ {
1793
+ label: '(GMT+07:00) Asia, Jakarta',
1794
+ value: 'Asia/Jakarta',
1795
+ },
1796
+ {
1797
+ label: '(GMT+07:00) Asia, Krasnoyarsk',
1798
+ value: 'Asia/Krasnoyarsk',
1799
+ },
1800
+ {
1801
+ label: '(GMT+07:00) Asia, Novokuznetsk',
1802
+ value: 'Asia/Novokuznetsk',
1803
+ },
1804
+ {
1805
+ label: '(GMT+07:00) Asia, Novosibirsk',
1806
+ value: 'Asia/Novosibirsk',
1807
+ },
1808
+ {
1809
+ label: '(GMT+07:00) Asia, Phnom Penh',
1810
+ value: 'Asia/Phnom_Penh',
1811
+ },
1812
+ {
1813
+ label: '(GMT+07:00) Asia, Pontianak',
1814
+ value: 'Asia/Pontianak',
1815
+ },
1816
+ {
1817
+ label: '(GMT+07:00) Asia, Tomsk',
1818
+ value: 'Asia/Tomsk',
1819
+ },
1820
+ {
1821
+ label: '(GMT+07:00) Asia, Vientiane',
1822
+ value: 'Asia/Vientiane',
1823
+ },
1824
+ {
1825
+ label: '(GMT+07:00) Indian, Christmas',
1826
+ value: 'Indian/Christmas',
1827
+ },
1828
+ {
1829
+ label: '(GMT+08:00) Asia, Brunei',
1830
+ value: 'Asia/Brunei',
1831
+ },
1832
+ {
1833
+ label: '(GMT+08:00) Asia, Choibalsan',
1834
+ value: 'Asia/Choibalsan',
1835
+ },
1836
+ {
1837
+ label: '(GMT+08:00) Asia, Hong Kong',
1838
+ value: 'Asia/Hong_Kong',
1839
+ },
1840
+ {
1841
+ label: '(GMT+08:00) Asia, Irkutsk',
1842
+ value: 'Asia/Irkutsk',
1843
+ },
1844
+ {
1845
+ label: '(GMT+08:00) Asia, Kuala Lumpur',
1846
+ value: 'Asia/Kuala_Lumpur',
1847
+ },
1848
+ {
1849
+ label: '(GMT+08:00) Asia, Kuching',
1850
+ value: 'Asia/Kuching',
1851
+ },
1852
+ {
1853
+ label: '(GMT+08:00) Asia, Macau',
1854
+ value: 'Asia/Macau',
1855
+ },
1856
+ {
1857
+ label: '(GMT+08:00) Asia, Makassar',
1858
+ value: 'Asia/Makassar',
1859
+ },
1860
+ {
1861
+ label: '(GMT+08:00) Asia, Manila',
1862
+ value: 'Asia/Manila',
1863
+ },
1864
+ {
1865
+ label: '(GMT+08:00) Asia, Shanghai',
1866
+ value: 'Asia/Shanghai',
1867
+ },
1868
+ {
1869
+ label: '(GMT+08:00) Asia, Singapore',
1870
+ value: 'Asia/Singapore',
1871
+ },
1872
+ {
1873
+ label: '(GMT+08:00) Asia, Taipei',
1874
+ value: 'Asia/Taipei',
1875
+ },
1876
+ {
1877
+ label: '(GMT+08:00) Asia, Ulaanbaatar',
1878
+ value: 'Asia/Ulaanbaatar',
1879
+ },
1880
+ {
1881
+ label: '(GMT+08:00) Australia, Perth',
1882
+ value: 'Australia/Perth',
1883
+ },
1884
+ {
1885
+ label: '(GMT+08:45) Australia, Eucla',
1886
+ value: 'Australia/Eucla',
1887
+ },
1888
+ {
1889
+ label: '(GMT+09:00) Asia, Chita',
1890
+ value: 'Asia/Chita',
1891
+ },
1892
+ {
1893
+ label: '(GMT+09:00) Asia, Dili',
1894
+ value: 'Asia/Dili',
1895
+ },
1896
+ {
1897
+ label: '(GMT+09:00) Asia, Jayapura',
1898
+ value: 'Asia/Jayapura',
1899
+ },
1900
+ {
1901
+ label: '(GMT+09:00) Asia, Khandyga',
1902
+ value: 'Asia/Khandyga',
1903
+ },
1904
+ {
1905
+ label: '(GMT+09:00) Asia, Pyongyang',
1906
+ value: 'Asia/Pyongyang',
1907
+ },
1908
+ {
1909
+ label: '(GMT+09:00) Asia, Seoul',
1910
+ value: 'Asia/Seoul',
1911
+ },
1912
+ {
1913
+ label: '(GMT+09:00) Asia, Tokyo',
1914
+ value: 'Asia/Tokyo',
1915
+ },
1916
+ {
1917
+ label: '(GMT+09:00) Asia, Yakutsk',
1918
+ value: 'Asia/Yakutsk',
1919
+ },
1920
+ {
1921
+ label: '(GMT+09:00) Pacific, Palau',
1922
+ value: 'Pacific/Palau',
1923
+ },
1924
+ {
1925
+ label: '(GMT+09:30) Australia, Adelaide',
1926
+ value: 'Australia/Adelaide',
1927
+ },
1928
+ {
1929
+ label: '(GMT+09:30) Australia, Broken Hill',
1930
+ value: 'Australia/Broken_Hill',
1931
+ },
1932
+ {
1933
+ label: '(GMT+09:30) Australia, Darwin',
1934
+ value: 'Australia/Darwin',
1935
+ },
1936
+ {
1937
+ label: '(GMT+10:00) Antarctica, DumontDUrville',
1938
+ value: 'Antarctica/DumontDUrville',
1939
+ },
1940
+ {
1941
+ label: '(GMT+10:00) Antarctica, Macquarie',
1942
+ value: 'Antarctica/Macquarie',
1943
+ },
1944
+ {
1945
+ label: '(GMT+10:00) Asia, Ust-Nera',
1946
+ value: 'Asia/Ust-Nera',
1947
+ },
1948
+ {
1949
+ label: '(GMT+10:00) Asia, Vladivostok',
1950
+ value: 'Asia/Vladivostok',
1951
+ },
1952
+ {
1953
+ label: '(GMT+10:00) Australia, Brisbane',
1954
+ value: 'Australia/Brisbane',
1955
+ },
1956
+ {
1957
+ label: '(GMT+10:00) Australia, Hobart',
1958
+ value: 'Australia/Hobart',
1959
+ },
1960
+ {
1961
+ label: '(GMT+10:00) Australia, Lindeman',
1962
+ value: 'Australia/Lindeman',
1963
+ },
1964
+ {
1965
+ label: '(GMT+10:00) Australia, Melbourne',
1966
+ value: 'Australia/Melbourne',
1967
+ },
1968
+ {
1969
+ label: '(GMT+10:00) Australia, Sydney',
1970
+ value: 'Australia/Sydney',
1971
+ },
1972
+ {
1973
+ label: '(GMT+10:00) Pacific, Chuuk',
1974
+ value: 'Pacific/Chuuk',
1975
+ },
1976
+ {
1977
+ label: '(GMT+10:00) Pacific, Guam',
1978
+ value: 'Pacific/Guam',
1979
+ },
1980
+ {
1981
+ label: '(GMT+10:00) Pacific, Port Moresby',
1982
+ value: 'Pacific/Port_Moresby',
1983
+ },
1984
+ {
1985
+ label: '(GMT+10:00) Pacific, Saipan',
1986
+ value: 'Pacific/Saipan',
1987
+ },
1988
+ {
1989
+ label: '(GMT+10:30) Australia, Lord Howe',
1990
+ value: 'Australia/Lord_Howe',
1991
+ },
1992
+ {
1993
+ label: '(GMT+11:00) Antarctica, Casey',
1994
+ value: 'Antarctica/Casey',
1995
+ },
1996
+ {
1997
+ label: '(GMT+11:00) Asia, Magadan',
1998
+ value: 'Asia/Magadan',
1999
+ },
2000
+ {
2001
+ label: '(GMT+11:00) Asia, Sakhalin',
2002
+ value: 'Asia/Sakhalin',
2003
+ },
2004
+ {
2005
+ label: '(GMT+11:00) Asia, Srednekolymsk',
2006
+ value: 'Asia/Srednekolymsk',
2007
+ },
2008
+ {
2009
+ label: '(GMT+11:00) Pacific, Bougainville',
2010
+ value: 'Pacific/Bougainville',
2011
+ },
2012
+ {
2013
+ label: '(GMT+11:00) Pacific, Efate',
2014
+ value: 'Pacific/Efate',
2015
+ },
2016
+ {
2017
+ label: '(GMT+11:00) Pacific, Guadalcanal',
2018
+ value: 'Pacific/Guadalcanal',
2019
+ },
2020
+ {
2021
+ label: '(GMT+11:00) Pacific, Kosrae',
2022
+ value: 'Pacific/Kosrae',
2023
+ },
2024
+ {
2025
+ label: '(GMT+11:00) Pacific, Norfolk',
2026
+ value: 'Pacific/Norfolk',
2027
+ },
2028
+ {
2029
+ label: '(GMT+11:00) Pacific, Noumea',
2030
+ value: 'Pacific/Noumea',
2031
+ },
2032
+ {
2033
+ label: '(GMT+11:00) Pacific, Pohnpei',
2034
+ value: 'Pacific/Pohnpei',
2035
+ },
2036
+ {
2037
+ label: '(GMT+12:00) Antarctica, McMurdo',
2038
+ value: 'Antarctica/McMurdo',
2039
+ },
2040
+ {
2041
+ label: '(GMT+12:00) Asia, Anadyr',
2042
+ value: 'Asia/Anadyr',
2043
+ },
2044
+ {
2045
+ label: '(GMT+12:00) Asia, Kamchatka',
2046
+ value: 'Asia/Kamchatka',
2047
+ },
2048
+ {
2049
+ label: '(GMT+12:00) Pacific, Auckland',
2050
+ value: 'Pacific/Auckland',
2051
+ },
2052
+ {
2053
+ label: '(GMT+12:00) Pacific, Fiji',
2054
+ value: 'Pacific/Fiji',
2055
+ },
2056
+ {
2057
+ label: '(GMT+12:00) Pacific, Funafuti',
2058
+ value: 'Pacific/Funafuti',
2059
+ },
2060
+ {
2061
+ label: '(GMT+12:00) Pacific, Kwajalein',
2062
+ value: 'Pacific/Kwajalein',
2063
+ },
2064
+ {
2065
+ label: '(GMT+12:00) Pacific, Majuro',
2066
+ value: 'Pacific/Majuro',
2067
+ },
2068
+ {
2069
+ label: '(GMT+12:00) Pacific, Nauru',
2070
+ value: 'Pacific/Nauru',
2071
+ },
2072
+ {
2073
+ label: '(GMT+12:00) Pacific, Tarawa',
2074
+ value: 'Pacific/Tarawa',
2075
+ },
2076
+ {
2077
+ label: '(GMT+12:00) Pacific, Wake',
2078
+ value: 'Pacific/Wake',
2079
+ },
2080
+ {
2081
+ label: '(GMT+12:00) Pacific, Wallis',
2082
+ value: 'Pacific/Wallis',
2083
+ },
2084
+ {
2085
+ label: '(GMT+12:45) Pacific, Chatham',
2086
+ value: 'Pacific/Chatham',
2087
+ },
2088
+ {
2089
+ label: '(GMT+13:00) Pacific, Apia',
2090
+ value: 'Pacific/Apia',
2091
+ },
2092
+ {
2093
+ label: '(GMT+13:00) Pacific, Fakaofo',
2094
+ value: 'Pacific/Fakaofo',
2095
+ },
2096
+ {
2097
+ label: '(GMT+13:00) Pacific, Kanton',
2098
+ value: 'Pacific/Kanton',
2099
+ },
2100
+ {
2101
+ label: '(GMT+13:00) Pacific, Tongatapu',
2102
+ value: 'Pacific/Tongatapu',
2103
+ },
2104
+ {
2105
+ label: '(GMT+14:00) Pacific, Kiritimati',
2106
+ value: 'Pacific/Kiritimati',
2107
+ },
2108
+ ];
2109
+ //# sourceMappingURL=index.js.map