Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/kn_IN
diff options
context:
space:
mode:
authorDean Karn <Dean.Karn@metricaid.com>2016-09-11 06:35:17 +0300
committerDean Karn <Dean.Karn@metricaid.com>2016-09-11 06:35:17 +0300
commitaaae900248cc5de78e3c73c1ec3b3cc6dac92f9b (patch)
tree389c87c9e8c2607c1c7683fe2f5a3b419c488136 /kn_IN
parentaba249d95ca17c471f1beec3df4b0b9d438c9af8 (diff)
covered stored data from []byte to string
appending to a []byte is faster using a string rather than another []byte...who knew
Diffstat (limited to 'kn_IN')
-rw-r--r--kn_IN/kn_IN.go209
1 files changed, 93 insertions, 116 deletions
diff --git a/kn_IN/kn_IN.go b/kn_IN/kn_IN.go
index f8f6b8a3..fd1e62f2 100644
--- a/kn_IN/kn_IN.go
+++ b/kn_IN/kn_IN.go
@@ -14,31 +14,31 @@ type kn_IN struct {
pluralsCardinal []locales.PluralRule
pluralsOrdinal []locales.PluralRule
pluralsRange []locales.PluralRule
- decimal []byte
- group []byte
- minus []byte
- percent []byte
- perMille []byte
- timeSeparator []byte
- inifinity []byte
- currencies [][]byte // idx = enum of currency code
- currencyNegativePrefix []byte
- currencyNegativeSuffix []byte
- monthsAbbreviated [][]byte
- monthsNarrow [][]byte
- monthsWide [][]byte
- daysAbbreviated [][]byte
- daysNarrow [][]byte
- daysShort [][]byte
- daysWide [][]byte
- periodsAbbreviated [][]byte
- periodsNarrow [][]byte
- periodsShort [][]byte
- periodsWide [][]byte
- erasAbbreviated [][]byte
- erasNarrow [][]byte
- erasWide [][]byte
- timezones map[string][]byte
+ decimal string
+ group string
+ minus string
+ percent string
+ perMille string
+ timeSeparator string
+ inifinity string
+ currencies []string // idx = enum of currency code
+ currencyNegativePrefix string
+ currencyNegativeSuffix string
+ monthsAbbreviated []string
+ monthsNarrow []string
+ monthsWide []string
+ daysAbbreviated []string
+ daysNarrow []string
+ daysShort []string
+ daysWide []string
+ periodsAbbreviated []string
+ periodsNarrow []string
+ periodsShort []string
+ periodsWide []string
+ erasAbbreviated []string
+ erasNarrow []string
+ erasWide []string
+ timezones map[string]string
}
// New returns a new instance of translator for the 'kn_IN' locale
@@ -48,30 +48,30 @@ func New() locales.Translator {
pluralsCardinal: []locales.PluralRule{2, 6},
pluralsOrdinal: []locales.PluralRule{6},
pluralsRange: []locales.PluralRule{2, 6},
- decimal: []byte{0x2e},
- group: []byte{0x2c},
- minus: []byte{0x2d},
- percent: []byte{0x25},
- perMille: []byte{0xe2, 0x80, 0xb0},
- timeSeparator: []byte{0x3a},
- inifinity: []byte{0xe2, 0x88, 0x9e},
- currencies: [][]uint8{{0x41, 0x44, 0x50, 0x20}, {0x41, 0x45, 0x44, 0x20}, {0x41, 0x46, 0x41, 0x20}, {0x41, 0x46, 0x4e, 0x20}, {0x41, 0x4c, 0x4b, 0x20}, {0x41, 0x4c, 0x4c, 0x20}, {0x41, 0x4d, 0x44, 0x20}, {0x41, 0x4e, 0x47, 0x20}, {0x41, 0x4f, 0x41, 0x20}, {0x41, 0x4f, 0x4b, 0x20}, {0x41, 0x4f, 0x4e, 0x20}, {0x41, 0x4f, 0x52, 0x20}, {0x41, 0x52, 0x41, 0x20}, {0x41, 0x52, 0x4c, 0x20}, {0x41, 0x52, 0x4d, 0x20}, {0x41, 0x52, 0x50, 0x20}, {0x41, 0x52, 0x53, 0x20}, {0x41, 0x54, 0x53, 0x20}, {0x41, 0x55, 0x44, 0x20}, {0x41, 0x57, 0x47, 0x20}, {0x41, 0x5a, 0x4d, 0x20}, {0x41, 0x5a, 0x4e, 0x20}, {0x42, 0x41, 0x44, 0x20}, {0x42, 0x41, 0x4d, 0x20}, {0x42, 0x41, 0x4e, 0x20}, {0x42, 0x42, 0x44, 0x20}, {0x42, 0x44, 0x54, 0x20}, {0x42, 0x45, 0x43, 0x20}, {0x42, 0x45, 0x46, 0x20}, {0x42, 0x45, 0x4c, 0x20}, {0x42, 0x47, 0x4c, 0x20}, {0x42, 0x47, 0x4d, 0x20}, {0x42, 0x47, 0x4e, 0x20}, {0x42, 0x47, 0x4f, 0x20}, {0x42, 0x48, 0x44, 0x20}, {0x42, 0x49, 0x46, 0x20}, {0x42, 0x4d, 0x44, 0x20}, {0x42, 0x4e, 0x44, 0x20}, {0x42, 0x4f, 0x42, 0x20}, {0x42, 0x4f, 0x4c, 0x20}, {0x42, 0x4f, 0x50, 0x20}, {0x42, 0x4f, 0x56, 0x20}, {0x42, 0x52, 0x42, 0x20}, {0x42, 0x52, 0x43, 0x20}, {0x42, 0x52, 0x45, 0x20}, {0x42, 0x52, 0x4c, 0x20}, {0x42, 0x52, 0x4e, 0x20}, {0x42, 0x52, 0x52, 0x20}, {0x42, 0x52, 0x5a, 0x20}, {0x42, 0x53, 0x44, 0x20}, {0x42, 0x54, 0x4e, 0x20}, {0x42, 0x55, 0x4b, 0x20}, {0x42, 0x57, 0x50, 0x20}, {0x42, 0x59, 0x42, 0x20}, {0x42, 0x59, 0x52, 0x20}, {0x42, 0x5a, 0x44, 0x20}, {0x43, 0x41, 0x44, 0x20}, {0x43, 0x44, 0x46, 0x20}, {0x43, 0x48, 0x45, 0x20}, {0x43, 0x48, 0x46, 0x20}, {0x43, 0x48, 0x57, 0x20}, {0x43, 0x4c, 0x45, 0x20}, {0x43, 0x4c, 0x46, 0x20}, {0x43, 0x4c, 0x50, 0x20}, {0x43, 0x4e, 0x58, 0x20}, {0x43, 0x4e, 0x59, 0x20}, {0x43, 0x4f, 0x50, 0x20}, {0x43, 0x4f, 0x55, 0x20}, {0x43, 0x52, 0x43, 0x20}, {0x43, 0x53, 0x44, 0x20}, {0x43, 0x53, 0x4b, 0x20}, {0x43, 0x55, 0x43, 0x20}, {0x43, 0x55, 0x50, 0x20}, {0x43, 0x56, 0x45, 0x20}, {0x43, 0x59, 0x50, 0x20}, {0x43, 0x5a, 0x4b, 0x20}, {0x44, 0x44, 0x4d, 0x20}, {0x44, 0x45, 0x4d, 0x20}, {0x44, 0x4a, 0x46, 0x20}, {0x44, 0x4b, 0x4b, 0x20}, {0x44, 0x4f, 0x50, 0x20}, {0x44, 0x5a, 0x44, 0x20}, {0x45, 0x43, 0x53, 0x20}, {0x45, 0x43, 0x56, 0x20}, {0x45, 0x45, 0x4b, 0x20}, {0x45, 0x47, 0x50, 0x20}, {0x45, 0x52, 0x4e, 0x20}, {0x45, 0x53, 0x41, 0x20}, {0x45, 0x53, 0x42, 0x20}, {0x45, 0x53, 0x50, 0x20}, {0x45, 0x54, 0x42, 0x20}, {0x45, 0x55, 0x52, 0x20}, {0x46, 0x49, 0x4d, 0x20}, {0x46, 0x4a, 0x44, 0x20}, {0x46, 0x4b, 0x50, 0x20}, {0x46, 0x52, 0x46, 0x20}, {0x47, 0x42, 0x50, 0x20}, {0x47, 0x45, 0x4b, 0x20}, {0x47, 0x45, 0x4c, 0x20}, {0x47, 0x48, 0x43, 0x20}, {0x47, 0x48, 0x53, 0x20}, {0x47, 0x49, 0x50, 0x20}, {0x47, 0x4d, 0x44, 0x20}, {0x47, 0x4e, 0x46, 0x20}, {0x47, 0x4e, 0x53, 0x20}, {0x47, 0x51, 0x45, 0x20}, {0x47, 0x52, 0x44, 0x20}, {0x47, 0x54, 0x51, 0x20}, {0x47, 0x57, 0x45, 0x20}, {0x47, 0x57, 0x50, 0x20}, {0x47, 0x59, 0x44, 0x20}, {0x48, 0x4b, 0x44, 0x20}, {0x48, 0x4e, 0x4c, 0x20}, {0x48, 0x52, 0x44, 0x20}, {0x48, 0x52, 0x4b, 0x20}, {0x48, 0x54, 0x47, 0x20}, {0x48, 0x55, 0x46, 0x20}, {0x49, 0x44, 0x52, 0x20}, {0x49, 0x45, 0x50, 0x20}, {0x49, 0x4c, 0x50, 0x20}, {0x49, 0x4c, 0x52, 0x20}, {0x49, 0x4c, 0x53, 0x20}, {0x49, 0x4e, 0x52, 0x20}, {0x49, 0x51, 0x44, 0x20}, {0x49, 0x52, 0x52, 0x20}, {0x49, 0x53, 0x4a, 0x20}, {0x49, 0x53, 0x4b, 0x20}, {0x49, 0x54, 0x4c, 0x20}, {0x4a, 0x4d, 0x44, 0x20}, {0x4a, 0x4f, 0x44, 0x20}, {0x4a, 0x50, 0x59, 0x20}, {0x4b, 0x45, 0x53, 0x20}, {0x4b, 0x47, 0x53, 0x20}, {0x4b, 0x48, 0x52, 0x20}, {0x4b, 0x4d, 0x46, 0x20}, {0x4b, 0x50, 0x57, 0x20}, {0x4b, 0x52, 0x48, 0x20}, {0x4b, 0x52, 0x4f, 0x20}, {0x4b, 0x52, 0x57, 0x20}, {0x4b, 0x57, 0x44, 0x20}, {0x4b, 0x59, 0x44, 0x20}, {0x4b, 0x5a, 0x54, 0x20}, {0x4c, 0x41, 0x4b, 0x20}, {0x4c, 0x42, 0x50, 0x20}, {0x4c, 0x4b, 0x52, 0x20}, {0x4c, 0x52, 0x44, 0x20}, {0x4c, 0x53, 0x4c, 0x20}, {0x4c, 0x54, 0x4c, 0x20}, {0x4c, 0x54, 0x54, 0x20}, {0x4c, 0x55, 0x43, 0x20}, {0x4c, 0x55, 0x46, 0x20}, {0x4c, 0x55, 0x4c, 0x20}, {0x4c, 0x56, 0x4c, 0x20}, {0x4c, 0x56, 0x52, 0x20}, {0x4c, 0x59, 0x44, 0x20}, {0x4d, 0x41, 0x44, 0x20}, {0x4d, 0x41, 0x46, 0x20}, {0x4d, 0x43, 0x46, 0x20}, {0x4d, 0x44, 0x43, 0x20}, {0x4d, 0x44, 0x4c, 0x20}, {0x4d, 0x47, 0x41, 0x20}, {0x4d, 0x47, 0x46, 0x20}, {0x4d, 0x4b, 0x44, 0x20}, {0x4d, 0x4b, 0x4e, 0x20}, {0x4d, 0x4c, 0x46, 0x20}, {0x4d, 0x4d, 0x4b, 0x20}, {0x4d, 0x4e, 0x54, 0x20}, {0x4d, 0x4f, 0x50, 0x20}, {0x4d, 0x52, 0x4f, 0x20}, {0x4d, 0x54, 0x4c, 0x20}, {0x4d, 0x54, 0x50, 0x20}, {0x4d, 0x55, 0x52, 0x20}, {0x4d, 0x56, 0x50, 0x20}, {0x4d, 0x56, 0x52, 0x20}, {0x4d, 0x57, 0x4b, 0x20}, {0x4d, 0x58, 0x4e, 0x20}, {0x4d, 0x58, 0x50, 0x20}, {0x4d, 0x58, 0x56, 0x20}, {0x4d, 0x59, 0x52, 0x20}, {0x4d, 0x5a, 0x45, 0x20}, {0x4d, 0x5a, 0x4d, 0x20}, {0x4d, 0x5a, 0x4e, 0x20}, {0x4e, 0x41, 0x44, 0x20}, {0x4e, 0x47, 0x4e, 0x20}, {0x4e, 0x49, 0x43, 0x20}, {0x4e, 0x49, 0x4f, 0x20}, {0x4e, 0x4c, 0x47, 0x20}, {0x4e, 0x4f, 0x4b, 0x20}, {0x4e, 0x50, 0x52, 0x20}, {0x4e, 0x5a, 0x44, 0x20}, {0x4f, 0x4d, 0x52, 0x20}, {0x50, 0x41, 0x42, 0x20}, {0x50, 0x45, 0x49, 0x20}, {0x50, 0x45, 0x4e, 0x20}, {0x50, 0x45, 0x53, 0x20}, {0x50, 0x47, 0x4b, 0x20}, {0x50, 0x48, 0x50, 0x20}, {0x50, 0x4b, 0x52, 0x20}, {0x50, 0x4c, 0x4e, 0x20}, {0x50, 0x4c, 0x5a, 0x20}, {0x50, 0x54, 0x45, 0x20}, {0x50, 0x59, 0x47, 0x20}, {0x51, 0x41, 0x52, 0x20}, {0x52, 0x48, 0x44, 0x20}, {0x52, 0x4f, 0x4c, 0x20}, {0x52, 0x4f, 0x4e, 0x20}, {0x52, 0x53, 0x44, 0x20}, {0x52, 0x55, 0x42, 0x20}, {0x52, 0x55, 0x52, 0x20}, {0x52, 0x57, 0x46, 0x20}, {0x53, 0x41, 0x52, 0x20}, {0x53, 0x42, 0x44, 0x20}, {0x53, 0x43, 0x52, 0x20}, {0x53, 0x44, 0x44, 0x20}, {0x53, 0x44, 0x47, 0x20}, {0x53, 0x44, 0x50, 0x20}, {0x53, 0x45, 0x4b, 0x20}, {0x53, 0x47, 0x44, 0x20}, {0x53, 0x48, 0x50, 0x20}, {0x53, 0x49, 0x54, 0x20}, {0x53, 0x4b, 0x4b, 0x20}, {0x53, 0x4c, 0x4c, 0x20}, {0x53, 0x4f, 0x53, 0x20}, {0x53, 0x52, 0x44, 0x20}, {0x53, 0x52, 0x47, 0x20}, {0x53, 0x53, 0x50, 0x20}, {0x53, 0x54, 0x44, 0x20}, {0x53, 0x55, 0x52, 0x20}, {0x53, 0x56, 0x43, 0x20}, {0x53, 0x59, 0x50, 0x20}, {0x53, 0x5a, 0x4c, 0x20}, {0x54, 0x48, 0x42, 0x20}, {0x54, 0x4a, 0x52, 0x20}, {0x54, 0x4a, 0x53, 0x20}, {0x54, 0x4d, 0x4d, 0x20}, {0x54, 0x4d, 0x54, 0x20}, {0x54, 0x4e, 0x44, 0x20}, {0x54, 0x4f, 0x50, 0x20}, {0x54, 0x50, 0x45, 0x20}, {0x54, 0x52, 0x4c, 0x20}, {0x54, 0x52, 0x59, 0x20}, {0x54, 0x54, 0x44, 0x20}, {0x54, 0x57, 0x44, 0x20}, {0x54, 0x5a, 0x53, 0x20}, {0x55, 0x41, 0x48, 0x20}, {0x55, 0x41, 0x4b, 0x20}, {0x55, 0x47, 0x53, 0x20}, {0x55, 0x47, 0x58, 0x20}, {0x55, 0x53, 0x44, 0x20}, {0x55, 0x53, 0x4e, 0x20}, {0x55, 0x53, 0x53, 0x20}, {0x55, 0x59, 0x49, 0x20}, {0x55, 0x59, 0x50, 0x20}, {0x55, 0x59, 0x55, 0x20}, {0x55, 0x5a, 0x53, 0x20}, {0x56, 0x45, 0x42, 0x20}, {0x56, 0x45, 0x46, 0x20}, {0x56, 0x4e, 0x44, 0x20}, {0x56, 0x4e, 0x4e, 0x20}, {0x56, 0x55, 0x56, 0x20}, {0x57, 0x53, 0x54, 0x20}, {0x58, 0x41, 0x46, 0x20}, {0x58, 0x41, 0x47, 0x20}, {0x58, 0x41, 0x55, 0x20}, {0x58, 0x42, 0x41, 0x20}, {0x58, 0x42, 0x42, 0x20}, {0x58, 0x42, 0x43, 0x20}, {0x58, 0x42, 0x44, 0x20}, {0x58, 0x43, 0x44, 0x20}, {0x58, 0x44, 0x52, 0x20}, {0x58, 0x45, 0x55, 0x20}, {0x58, 0x46, 0x4f, 0x20}, {0x58, 0x46, 0x55, 0x20}, {0x58, 0x4f, 0x46, 0x20}, {0x58, 0x50, 0x44, 0x20}, {0x58, 0x50, 0x46, 0x20}, {0x58, 0x50, 0x54, 0x20}, {0x58, 0x52, 0x45, 0x20}, {0x58, 0x53, 0x55, 0x20}, {0x58, 0x54, 0x53, 0x20}, {0x58, 0x55, 0x41, 0x20}, {0x58, 0x58, 0x58, 0x20}, {0x59, 0x44, 0x44, 0x20}, {0x59, 0x45, 0x52, 0x20}, {0x59, 0x55, 0x44, 0x20}, {0x59, 0x55, 0x4d, 0x20}, {0x59, 0x55, 0x4e, 0x20}, {0x59, 0x55, 0x52, 0x20}, {0x5a, 0x41, 0x4c, 0x20}, {0x5a, 0x41, 0x52, 0x20}, {0x5a, 0x4d, 0x4b, 0x20}, {0x5a, 0x4d, 0x57, 0x20}, {0x5a, 0x52, 0x4e, 0x20}, {0x5a, 0x52, 0x5a, 0x20}, {0x5a, 0x57, 0x44, 0x20}, {0x5a, 0x57, 0x4c, 0x20}, {0x5a, 0x57, 0x52, 0x20}},
- currencyNegativePrefix: []byte{0x28},
- currencyNegativeSuffix: []byte{0x29},
- monthsAbbreviated: [][]uint8{[]uint8(nil), {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xa8}, {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x8f, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf}, {0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x88}, {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0x97}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82}, {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8b}, {0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82}, {0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82}},
- monthsNarrow: [][]uint8{[]uint8(nil), {0xe0, 0xb2, 0x9c}, {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x86}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe}, {0xe0, 0xb2, 0x8f}, {0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x82}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0x86}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86}, {0xe0, 0xb2, 0x85}, {0xe0, 0xb2, 0xa8}, {0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbf}},
- monthsWide: [][]uint8{[]uint8(nil), {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf}, {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x8f, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x88}, {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}},
- daysAbbreviated: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xae}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb3}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xa7}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf}},
- daysNarrow: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6}},
- daysShort: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xae}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb3}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xa7}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf}},
- daysWide: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb3, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xa7, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}},
- periodsAbbreviated: [][]uint8{{0x41, 0x4d}, {0x50, 0x4d}},
- periodsNarrow: [][]uint8{{0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82}, {0xe0, 0xb2, 0x85}},
- periodsWide: [][]uint8{{0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa8}, {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa8}},
- erasAbbreviated: [][]uint8{{0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0x2e, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82}, {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0x2e, 0xe0, 0xb2, 0xb6}},
- erasNarrow: [][]uint8{[]uint8(nil), []uint8(nil)},
- erasWide: [][]uint8{{0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5}, {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0x95}},
- timezones: map[string][]uint8{"AWDT": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CHAST": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xa5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CHADT": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xa5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "TMT": {0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ARST": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "GYT": {0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WAST": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "BT": {0xe0, 0xb2, 0xad, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WITA": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HADT": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbf, 0x2d, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "LHST": {0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "∅∅∅": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AEDT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MYT": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WARST": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AEST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WIB": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CAT": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CLT": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CLST": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "COT": {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8a, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "PST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xab, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "PDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xab, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "SGT": {0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "NZST": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "NZDT": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "IST": {0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "VET": {0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACDT": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MEZ": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AKDT": {0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AWST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "GMT": {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8}, "UYT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x87, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACWST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "LHDT": {0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb3, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HKST": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "SAST": {0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa3, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "EAT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HNT": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8c, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ChST": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WART": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "UYST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x87, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HAT": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8c, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "EDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AKST": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WEZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ECT": {0xe0, 0xb2, 0x88, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ART": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "GFT": {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "EST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACWDT": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WESZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HKT": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "OEZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "OESZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "BOT": {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x8a, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "COST": {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8a, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HAST": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbf, 0x2d, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "SRT": {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MESZ": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "TMST": {0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ADT": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WAT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AST": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "JST": {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "JDT": {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WIT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}},
+ decimal: ".",
+ group: ",",
+ minus: "-",
+ percent: "%",
+ perMille: "‰",
+ timeSeparator: ":",
+ inifinity: "∞",
+ currencies: []string{"ADP ", "AED ", "AFA ", "AFN ", "ALK ", "ALL ", "AMD ", "ANG ", "AOA ", "AOK ", "AON ", "AOR ", "ARA ", "ARL ", "ARM ", "ARP ", "ARS ", "ATS ", "AUD ", "AWG ", "AZM ", "AZN ", "BAD ", "BAM ", "BAN ", "BBD ", "BDT ", "BEC ", "BEF ", "BEL ", "BGL ", "BGM ", "BGN ", "BGO ", "BHD ", "BIF ", "BMD ", "BND ", "BOB ", "BOL ", "BOP ", "BOV ", "BRB ", "BRC ", "BRE ", "BRL ", "BRN ", "BRR ", "BRZ ", "BSD ", "BTN ", "BUK ", "BWP ", "BYB ", "BYR ", "BZD ", "CAD ", "CDF ", "CHE ", "CHF ", "CHW ", "CLE ", "CLF ", "CLP ", "CNX ", "CNY ", "COP ", "COU ", "CRC ", "CSD ", "CSK ", "CUC ", "CUP ", "CVE ", "CYP ", "CZK ", "DDM ", "DEM ", "DJF ", "DKK ", "DOP ", "DZD ", "ECS ", "ECV ", "EEK ", "EGP ", "ERN ", "ESA ", "ESB ", "ESP ", "ETB ", "EUR ", "FIM ", "FJD ", "FKP ", "FRF ", "GBP ", "GEK ", "GEL ", "GHC ", "GHS ", "GIP ", "GMD ", "GNF ", "GNS ", "GQE ", "GRD ", "GTQ ", "GWE ", "GWP ", "GYD ", "HKD ", "HNL ", "HRD ", "HRK ", "HTG ", "HUF ", "IDR ", "IEP ", "ILP ", "ILR ", "ILS ", "INR ", "IQD ", "IRR ", "ISJ ", "ISK ", "ITL ", "JMD ", "JOD ", "JPY ", "KES ", "KGS ", "KHR ", "KMF ", "KPW ", "KRH ", "KRO ", "KRW ", "KWD ", "KYD ", "KZT ", "LAK ", "LBP ", "LKR ", "LRD ", "LSL ", "LTL ", "LTT ", "LUC ", "LUF ", "LUL ", "LVL ", "LVR ", "LYD ", "MAD ", "MAF ", "MCF ", "MDC ", "MDL ", "MGA ", "MGF ", "MKD ", "MKN ", "MLF ", "MMK ", "MNT ", "MOP ", "MRO ", "MTL ", "MTP ", "MUR ", "MVP ", "MVR ", "MWK ", "MXN ", "MXP ", "MXV ", "MYR ", "MZE ", "MZM ", "MZN ", "NAD ", "NGN ", "NIC ", "NIO ", "NLG ", "NOK ", "NPR ", "NZD ", "OMR ", "PAB ", "PEI ", "PEN ", "PES ", "PGK ", "PHP ", "PKR ", "PLN ", "PLZ ", "PTE ", "PYG ", "QAR ", "RHD ", "ROL ", "RON ", "RSD ", "RUB ", "RUR ", "RWF ", "SAR ", "SBD ", "SCR ", "SDD ", "SDG ", "SDP ", "SEK ", "SGD ", "SHP ", "SIT ", "SKK ", "SLL ", "SOS ", "SRD ", "SRG ", "SSP ", "STD ", "SUR ", "SVC ", "SYP ", "SZL ", "THB ", "TJR ", "TJS ", "TMM ", "TMT ", "TND ", "TOP ", "TPE ", "TRL ", "TRY ", "TTD ", "TWD ", "TZS ", "UAH ", "UAK ", "UGS ", "UGX ", "USD ", "USN ", "USS ", "UYI ", "UYP ", "UYU ", "UZS ", "VEB ", "VEF ", "VND ", "VNN ", "VUV ", "WST ", "XAF ", "XAG ", "XAU ", "XBA ", "XBB ", "XBC ", "XBD ", "XCD ", "XDR ", "XEU ", "XFO ", "XFU ", "XOF ", "XPD ", "XPF ", "XPT ", "XRE ", "XSU ", "XTS ", "XUA ", "XXX ", "YDD ", "YER ", "YUD ", "YUM ", "YUN ", "YUR ", "ZAL ", "ZAR ", "ZMK ", "ZMW ", "ZRN ", "ZRZ ", "ZWD ", "ZWL ", "ZWR "},
+ currencyNegativePrefix: "(",
+ currencyNegativeSuffix: ")",
+ monthsAbbreviated: []string{"", "ಜನ", "ಫೆಬ್ರ", "ಮಾರ್ಚ್", "ಏಪ್ರಿ", "ಮೇ", "ಜೂನ್", "ಜುಲೈ", "ಆಗ", "ಸೆಪ್ಟೆಂ", "ಅಕ್ಟೋ", "ನವೆಂ", "ಡಿಸೆಂ"},
+ monthsNarrow: []string{"", "ಜ", "ಫೆ", "ಮಾ", "ಏ", "ಮೇ", "ಜೂ", "ಜು", "ಆ", "ಸೆ", "ಅ", "ನ", "ಡಿ"},
+ monthsWide: []string{"", "ಜನವರಿ", "ಫೆಬ್ರವರಿ", "ಮಾರ್ಚ್", "ಏಪ್ರಿಲ್", "ಮೇ", "ಜೂನ್", "ಜುಲೈ", "ಆಗಸ್ಟ್", "ಸೆಪ್ಟೆಂಬರ್", "ಅಕ್ಟೋಬರ್", "ನವೆಂಬರ್", "ಡಿಸೆಂಬರ್"},
+ daysAbbreviated: []string{"ಭಾನು", "ಸೋಮ", "ಮಂಗಳ", "ಬುಧ", "ಗುರು", "ಶುಕ್ರ", "ಶನಿ"},
+ daysNarrow: []string{"ಭಾ", "ಸೋ", "ಮಂ", "ಬು", "ಗು", "ಶು", "ಶ"},
+ daysShort: []string{"ಭಾನು", "ಸೋಮ", "ಮಂಗಳ", "ಬುಧ", "ಗುರು", "ಶುಕ್ರ", "ಶನಿ"},
+ daysWide: []string{"ಭಾನುವಾರ", "ಸೋಮವಾರ", "ಮಂಗಳವಾರ", "ಬುಧವಾರ", "ಗುರುವಾರ", "ಶುಕ್ರವಾರ", "ಶನಿವಾರ"},
+ periodsAbbreviated: []string{"AM", "PM"},
+ periodsNarrow: []string{"ಪೂ", "ಅ"},
+ periodsWide: []string{"ಪೂರ್ವಾಹ್ನ", "ಅಪರಾಹ್ನ"},
+ erasAbbreviated: []string{"ಕ್ರಿ.ಪೂ", "ಕ್ರಿ.ಶ"},
+ erasNarrow: []string{"", ""},
+ erasWide: []string{"ಕ್ರಿಸ್ತ ಪೂರ್ವ", "ಕ್ರಿಸ್ತ ಶಕ"},
+ timezones: map[string]string{"ART": "ಅರ್ಜೆಂಟೀನಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "SRT": "ಸುರಿನೇಮ್ ಸಮಯ", "ACWST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಪಶ್ಚಿಮ ಪ್ರಮಾಣಿತ ಸಮಯ", "ACWDT": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಪಶ್ಚಿಮ ಹಗಲು ಸಮಯ", "VET": "ವೆನಿಜುವೆಲಾ ಸಮಯ", "AST": "ಅಟ್ಲಾಂಟಿಕ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "ChST": "ಚಮೋರೋ ಪ್ರಮಾಣಿತ ಸಮಯ", "HKT": "ಹಾಂಗ್ ಕಾಂಗ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "PDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೆಸಿಫಿಕ್ ದಿನದ ಸಮಯ", "WIT": "ಪೂರ್ವ ಇಂಡೋನೇಷಿಯಾ ಸಮಯ", "CAT": "ಮಧ್ಯ ಆಫ್ರಿಕಾ ಸಮಯ", "ACST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಪ್ರಮಾಣಿತ ಸಮಯ", "WARST": "ಪಶ್ಚಿಮ ಅರ್ಜೆಂಟೀನಾ ಬೇಸಿಗೆ ಸಮಯ", "WITA": "ಮಧ್ಯ ಇಂಡೋನೇಷಿಯಾ ಸಮಯ", "JDT": "ಜಪಾನ್ ಹಗಲು ಸಮಯ", "WEZ": "ಪಶ್ಚಿಮ ಯುರೋಪಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "HAT": "ನ್ಯೂಫೌಂಡ್\u200cಲ್ಯಾಂಡ್ ದಿನದ ಸಮಯ", "EST": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೂರ್ವದ ಪ್ರಮಾಣಿತ ಸಮಯ", "PST": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೆಸಿಫಿಕ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "OEZ": "ಪೂರ್ವ ಯುರೋಪಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "NZDT": "ನ್ಯೂಜಿಲ್ಯಾಂಡ್ ಹಗಲು ಸಮಯ", "CHADT": "ಚಥಾಮ್ ಹಗಲು ಸಮಯ", "TMT": "ತುರ್ಕ್\u200cಮೇನಿಸ್ತಾನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "LHST": "ಲಾರ್ಡ್ ಹೋವ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "HNT": "ನ್ಯೂಫೌಂಡ್\u200cಲ್ಯಾಂಡ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "CLT": "ಚಿಲಿ ಪ್ರಮಾಣಿತ ಸಮಯ", "COT": "ಕೊಲಂಬಿಯಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "WAT": "ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "GYT": "ಗಯಾನಾ ಸಮಯ", "WART": "ಪಶ್ಚಿಮ ಅರ್ಜೆಂಟೀನಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "MDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಪರ್ವತ ದಿನದ ಸಮಯ", "HAST": "ಹವಾಯಿ-ಅಲ್ಯುಟಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "CLST": "ಚಿಲಿ ಬೇಸಿಗೆ ಸಮಯ", "UYT": "ಉರುಗ್ವೇ ಪ್ರಮಾಣಿತ ಸಮಯ", "BOT": "ಬೊಲಿವಿಯಾ ಸಮಯ", "MEZ": "ಮಧ್ಯ ಯುರೋಪಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "JST": "ಜಪಾನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "∅∅∅": "ಅಜೋರಸ್ ಬೇಸಿಗೆ ಸಮಯ", "IST": "ಭಾರತೀಯ ಪ್ರಮಾಣಿತ ಸಮಯ", "AKST": "ಅಲಸ್ಕಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "AWST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಪಶ್ಚಿಮ ಪ್ರಮಾಣಿತ ಸಮಯ", "AWDT": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಪಶ್ಚಿಮ ಹಗಲು ಸಮಯ", "NZST": "ನ್ಯೂಜಿಲ್ಯಾಂಡ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "WAST": "ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾ ಬೇಸಿಗೆ ಸಮಯ", "TMST": "ತುರ್ಕ್\u200cಮೇನಿಸ್ತಾನ್ ಬೇಸಿಗೆ ಸಮಯ", "AKDT": "\u200cಅಲಾಸ್ಕಾ ಹಗಲು ಸಮಯ", "HADT": "ಹವಾಯಿ-ಅಲ್ಯುಟಿಯನ್ ಹಗಲು ಸಮಯ", "CDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಕೇಂದ್ರೀಯ ದಿನದ ಸಮಯ", "EAT": "ಪೂರ್ವ ಆಫ್ರಿಕಾ ಸಮಯ", "HKST": "ಹಾಂಗ್ ಕಾಂಗ್ ಬೇಸಿಗೆ ಸಮಯ", "AEDT": "ಪೂರ್ವ ಆಸ್ಟ್ರೇಲಿಯಾದ ಹಗಲು ಸಮಯ", "COST": "ಕೊಲಂಬಿಯಾ ಬೇಸಿಗೆ ಸಮಯ", "ACDT": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಹಗಲು ಸಮಯ", "ARST": "ಅರ್ಜೆಂಟಿನಾ ಬೇಸಿಗೆ ಸಮಯ", "GFT": "ಫ್ರೆಂಚ್ ಗಯಾನಾ ಸಮಯ", "AEST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಪೂರ್ವ ಪ್ರಮಾಣಿತ ಸಮಯ", "SGT": "ಸಿಂಗಾಪುರ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "LHDT": "ಲಾರ್ಡ್ ಹೋವ್ ಬೆಳಗಿನ ಸಮಯ", "ADT": "ಅಟ್ಲಾಂಟಿಕ್ ದಿನದ ಸಮಯ", "BT": "ಭೂತಾನ್ ಸಮಯ", "MST": "ಉತ್ತರ ಅಮೆರಿಕದ ಪರ್ವತ ಪ್ರಮಾಣಿತ ಸಮಯ", "CST": "ಉತ್ತರ ಅಮೆರಿಕದ ಕೇಂದ್ರ ಪ್ರಮಾಣಿತ ಸಮಯ", "OESZ": "ಪೂರ್ವ ಯುರೋಪಿಯನ್ ಬೇಸಿಗೆ ಸಮಯ", "GMT": "ಗ್ರೀನ್\u200cವಿಚ್ ಸರಾಸರಿ ಕಾಲಮಾನ", "WIB": "ಪಶ್ಚಿಮ ಇಂಡೋನೇಷಿಯ ಸಮಯ", "SAST": "ದಕ್ಷಿಣ ಆಫ್ರಿಕಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "UYST": "ಉರುಗ್ವೇ ಬೇಸಿಗೆ ಸಮಯ", "MESZ": "ಮಧ್ಯ ಯುರೋಪಿಯನ್ ಬೇಸಿಗೆ ಸಮಯ", "WESZ": "ಪಶ್ಚಿಮ ಯುರೋಪಿಯನ್ ಬೇಸಿಗೆ ಸಮಯ", "EDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೂರ್ವದ ದಿನದ ಸಮಯ", "MYT": "ಮಲೇಷಿಯಾ ಸಮಯ", "ECT": "ಈಕ್ವೆಡಾರ್ ಸಮಯ", "CHAST": "ಚಥಾಮ್ ಪ್ರಮಾಣಿತ ಸಮಯ"},
}
}
@@ -130,80 +130,77 @@ func (kn *kn_IN) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint6
}
// MonthAbbreviated returns the locales abbreviated month given the 'month' provided
-func (kn *kn_IN) MonthAbbreviated(month time.Month) []byte {
+func (kn *kn_IN) MonthAbbreviated(month time.Month) string {
return kn.monthsAbbreviated[month]
}
// MonthsAbbreviated returns the locales abbreviated months
-func (kn *kn_IN) MonthsAbbreviated() [][]byte {
+func (kn *kn_IN) MonthsAbbreviated() []string {
return kn.monthsAbbreviated[1:]
}
// MonthNarrow returns the locales narrow month given the 'month' provided
-func (kn *kn_IN) MonthNarrow(month time.Month) []byte {
+func (kn *kn_IN) MonthNarrow(month time.Month) string {
return kn.monthsNarrow[month]
}
// MonthsNarrow returns the locales narrow months
-func (kn *kn_IN) MonthsNarrow() [][]byte {
+func (kn *kn_IN) MonthsNarrow() []string {
return kn.monthsNarrow[1:]
}
// MonthWide returns the locales wide month given the 'month' provided
-func (kn *kn_IN) MonthWide(month time.Month) []byte {
+func (kn *kn_IN) MonthWide(month time.Month) string {
return kn.monthsWide[month]
}
// MonthsWide returns the locales wide months
-func (kn *kn_IN) MonthsWide() [][]byte {
+func (kn *kn_IN) MonthsWide() []string {
return kn.monthsWide[1:]
}
// WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
-func (kn *kn_IN) WeekdayAbbreviated(weekday time.Weekday) []byte {
+func (kn *kn_IN) WeekdayAbbreviated(weekday time.Weekday) string {
return kn.daysAbbreviated[weekday]
}
// WeekdaysAbbreviated returns the locales abbreviated weekdays
-func (kn *kn_IN) WeekdaysAbbreviated() [][]byte {
+func (kn *kn_IN) WeekdaysAbbreviated() []string {
return kn.daysAbbreviated
}
// WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
-func (kn *kn_IN) WeekdayNarrow(weekday time.Weekday) []byte {
+func (kn *kn_IN) WeekdayNarrow(weekday time.Weekday) string {
return kn.daysNarrow[weekday]
}
// WeekdaysNarrow returns the locales narrow weekdays
-func (kn *kn_IN) WeekdaysNarrow() [][]byte {
+func (kn *kn_IN) WeekdaysNarrow() []string {
return kn.daysNarrow
}
// WeekdayShort returns the locales short weekday given the 'weekday' provided
-func (kn *kn_IN) WeekdayShort(weekday time.Weekday) []byte {
+func (kn *kn_IN) WeekdayShort(weekday time.Weekday) string {
return kn.daysShort[weekday]
}
// WeekdaysShort returns the locales short weekdays
-func (kn *kn_IN) WeekdaysShort() [][]byte {
+func (kn *kn_IN) WeekdaysShort() []string {
return kn.daysShort
}
// WeekdayWide returns the locales wide weekday given the 'weekday' provided
-func (kn *kn_IN) WeekdayWide(weekday time.Weekday) []byte {
+func (kn *kn_IN) WeekdayWide(weekday time.Weekday) string {
return kn.daysWide[weekday]
}
// WeekdaysWide returns the locales wide weekdays
-func (kn *kn_IN) WeekdaysWide() [][]byte {
+func (kn *kn_IN) WeekdaysWide() []string {
return kn.daysWide
}
// FmtNumber returns 'num' with digits/precision of 'v' for 'kn_IN' and handles both Whole and Real numbers based on 'v'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtNumber(num float64, v uint64) []byte {
-
+func (kn *kn_IN) FmtNumber(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(kn.decimal) + len(kn.group)*len(s[:len(s)-int(v)-1])/3
count := 0
@@ -239,15 +236,13 @@ func (kn *kn_IN) FmtNumber(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- return b
+ results = string(b)
+ return
}
// FmtPercent returns 'num' with digits/precision of 'v' for 'kn_IN' and handles both Whole and Real numbers based on 'v'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
// NOTE: 'num' passed into FmtPercent is assumed to be in percent already
-func (kn *kn_IN) FmtPercent(num float64, v uint64) []byte {
-
+func (kn *kn_IN) FmtPercent(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(kn.decimal)
b := make([]byte, 0, l)
@@ -273,13 +268,12 @@ func (kn *kn_IN) FmtPercent(num float64, v uint64) []byte {
b = append(b, kn.percent...)
- return b
+ results = string(b)
+ return
}
// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtCurrency(num float64, v uint64, currency currency.Type) []byte {
+func (kn *kn_IN) FmtCurrency(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := kn.currencies[currency]
@@ -332,13 +326,13 @@ func (kn *kn_IN) FmtCurrency(num float64, v uint64, currency currency.Type) []by
}
}
- return b
+ results = string(b)
+ return
}
// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'kn_IN'
-// in accounting notation. returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+// in accounting notation.
+func (kn *kn_IN) FmtAccounting(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := kn.currencies[currency]
@@ -373,9 +367,7 @@ func (kn *kn_IN) FmtAccounting(num float64, v uint64, currency currency.Type) []
b = append(b, symbol[j])
}
- for j := len(kn.currencyNegativePrefix) - 1; j >= 0; j-- {
- b = append(b, kn.currencyNegativePrefix[j])
- }
+ b = append(b, kn.currencyNegativePrefix[0])
} else {
@@ -405,13 +397,12 @@ func (kn *kn_IN) FmtAccounting(num float64, v uint64, currency currency.Type) []
b = append(b, kn.currencyNegativeSuffix...)
}
- return b
+ results = string(b)
+ return
}
// FmtDateShort returns the short date representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtDateShort(t time.Time) []byte {
+func (kn *kn_IN) FmtDateShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -426,13 +417,11 @@ func (kn *kn_IN) FmtDateShort(t time.Time) []byte {
b = append(b, strconv.Itoa(t.Year())[1:]...)
}
- return b
+ return string(b)
}
// FmtDateMedium returns the medium date representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtDateMedium(t time.Time) []byte {
+func (kn *kn_IN) FmtDateMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -442,13 +431,11 @@ func (kn *kn_IN) FmtDateMedium(t time.Time) []byte {
b = append(b, []byte{0x2c, 0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateLong returns the long date representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtDateLong(t time.Time) []byte {
+func (kn *kn_IN) FmtDateLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -458,13 +445,11 @@ func (kn *kn_IN) FmtDateLong(t time.Time) []byte {
b = append(b, []byte{0x2c, 0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateFull returns the full date representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtDateFull(t time.Time) []byte {
+func (kn *kn_IN) FmtDateFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -476,13 +461,11 @@ func (kn *kn_IN) FmtDateFull(t time.Time) []byte {
b = append(b, []byte{0x2c, 0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtTimeShort returns the short time representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtTimeShort(t time.Time) []byte {
+func (kn *kn_IN) FmtTimeShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -512,13 +495,11 @@ func (kn *kn_IN) FmtTimeShort(t time.Time) []byte {
b = append(b, kn.periodsAbbreviated[1]...)
}
- return b
+ return string(b)
}
// FmtTimeMedium returns the medium time representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtTimeMedium(t time.Time) []byte {
+func (kn *kn_IN) FmtTimeMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -555,13 +536,11 @@ func (kn *kn_IN) FmtTimeMedium(t time.Time) []byte {
b = append(b, kn.periodsAbbreviated[1]...)
}
- return b
+ return string(b)
}
// FmtTimeLong returns the long time representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtTimeLong(t time.Time) []byte {
+func (kn *kn_IN) FmtTimeLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -603,13 +582,11 @@ func (kn *kn_IN) FmtTimeLong(t time.Time) []byte {
tz, _ := t.Zone()
b = append(b, tz...)
- return b
+ return string(b)
}
// FmtTimeFull returns the full time representation of 't' for 'kn_IN'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn_IN) FmtTimeFull(t time.Time) []byte {
+func (kn *kn_IN) FmtTimeFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -656,5 +633,5 @@ func (kn *kn_IN) FmtTimeFull(t time.Time) []byte {
b = append(b, tz...)
}
- return b
+ return string(b)
}