@formatjs/intl-locale 3.1.1 → 3.2.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.
package/polyfill.iife.js CHANGED
@@ -5,9 +5,16 @@
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __getProtoOf = Object.getPrototypeOf;
7
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __esm = (fn, res) => function __init() {
9
+ return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
10
+ };
8
11
  var __commonJS = (cb, mod) => function __require() {
9
12
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
10
13
  };
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
11
18
  var __copyProps = (to, from, except, desc) => {
12
19
  if (from && typeof from === "object" || typeof from === "function") {
13
20
  for (let key of __getOwnPropNames(from))
@@ -17,79 +24,382 @@
17
24
  return to;
18
25
  };
19
26
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
27
+ // If the importer is in node compatibility mode or this is not an ESM
28
+ // file that has been converted to a CommonJS file using a Babel-
29
+ // compatible transform (i.e. "__esModule" has not been set), then set
30
+ // "default" to the CommonJS "module.exports" for node compatibility.
20
31
  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
21
32
  mod
22
33
  ));
34
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
23
35
 
24
- // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/tslib@2.4.0/node_modules/tslib/tslib.js
25
- var require_tslib = __commonJS({
26
- "../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/tslib@2.4.0/node_modules/tslib/tslib.js"(exports, module) {
27
- var __extends2;
28
- var __assign2;
29
- var __rest2;
30
- var __decorate2;
31
- var __param2;
32
- var __metadata2;
33
- var __awaiter2;
34
- var __generator2;
35
- var __exportStar2;
36
- var __values2;
37
- var __read2;
38
- var __spread2;
39
- var __spreadArrays2;
40
- var __spreadArray2;
41
- var __await2;
42
- var __asyncGenerator2;
43
- var __asyncDelegator2;
44
- var __asyncValues2;
45
- var __makeTemplateObject2;
46
- var __importStar2;
47
- var __importDefault2;
48
- var __classPrivateFieldGet2;
49
- var __classPrivateFieldSet2;
50
- var __classPrivateFieldIn2;
51
- var __createBinding2;
52
- (function(factory) {
53
- var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
54
- if (typeof define === "function" && define.amd) {
55
- define("tslib", ["exports"], function(exports2) {
56
- factory(createExporter(root, createExporter(exports2)));
57
- });
58
- } else if (typeof module === "object" && typeof module.exports === "object") {
59
- factory(createExporter(root, createExporter(module.exports)));
60
- } else {
61
- factory(createExporter(root));
36
+ // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/tslib@2.4.0/node_modules/tslib/tslib.es6.js
37
+ var tslib_es6_exports = {};
38
+ __export(tslib_es6_exports, {
39
+ __assign: () => __assign,
40
+ __asyncDelegator: () => __asyncDelegator,
41
+ __asyncGenerator: () => __asyncGenerator,
42
+ __asyncValues: () => __asyncValues,
43
+ __await: () => __await,
44
+ __awaiter: () => __awaiter,
45
+ __classPrivateFieldGet: () => __classPrivateFieldGet,
46
+ __classPrivateFieldIn: () => __classPrivateFieldIn,
47
+ __classPrivateFieldSet: () => __classPrivateFieldSet,
48
+ __createBinding: () => __createBinding,
49
+ __decorate: () => __decorate,
50
+ __exportStar: () => __exportStar,
51
+ __extends: () => __extends,
52
+ __generator: () => __generator,
53
+ __importDefault: () => __importDefault,
54
+ __importStar: () => __importStar,
55
+ __makeTemplateObject: () => __makeTemplateObject,
56
+ __metadata: () => __metadata,
57
+ __param: () => __param,
58
+ __read: () => __read,
59
+ __rest: () => __rest,
60
+ __spread: () => __spread,
61
+ __spreadArray: () => __spreadArray,
62
+ __spreadArrays: () => __spreadArrays,
63
+ __values: () => __values
64
+ });
65
+ function __extends(d, b) {
66
+ if (typeof b !== "function" && b !== null)
67
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
68
+ extendStatics(d, b);
69
+ function __() {
70
+ this.constructor = d;
71
+ }
72
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
73
+ }
74
+ function __rest(s, e) {
75
+ var t = {};
76
+ for (var p in s)
77
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
78
+ t[p] = s[p];
79
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
80
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
81
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
82
+ t[p[i]] = s[p[i]];
83
+ }
84
+ return t;
85
+ }
86
+ function __decorate(decorators, target, key, desc) {
87
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
88
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
89
+ r = Reflect.decorate(decorators, target, key, desc);
90
+ else
91
+ for (var i = decorators.length - 1; i >= 0; i--)
92
+ if (d = decorators[i])
93
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
94
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
95
+ }
96
+ function __param(paramIndex, decorator) {
97
+ return function(target, key) {
98
+ decorator(target, key, paramIndex);
99
+ };
100
+ }
101
+ function __metadata(metadataKey, metadataValue) {
102
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
103
+ return Reflect.metadata(metadataKey, metadataValue);
104
+ }
105
+ function __awaiter(thisArg, _arguments, P, generator) {
106
+ function adopt(value) {
107
+ return value instanceof P ? value : new P(function(resolve) {
108
+ resolve(value);
109
+ });
110
+ }
111
+ return new (P || (P = Promise))(function(resolve, reject) {
112
+ function fulfilled(value) {
113
+ try {
114
+ step(generator.next(value));
115
+ } catch (e) {
116
+ reject(e);
62
117
  }
63
- function createExporter(exports2, previous) {
64
- if (exports2 !== root) {
65
- if (typeof Object.create === "function") {
66
- Object.defineProperty(exports2, "__esModule", { value: true });
67
- } else {
68
- exports2.__esModule = true;
69
- }
118
+ }
119
+ function rejected(value) {
120
+ try {
121
+ step(generator["throw"](value));
122
+ } catch (e) {
123
+ reject(e);
124
+ }
125
+ }
126
+ function step(result) {
127
+ result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
128
+ }
129
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
130
+ });
131
+ }
132
+ function __generator(thisArg, body) {
133
+ var _ = { label: 0, sent: function() {
134
+ if (t[0] & 1)
135
+ throw t[1];
136
+ return t[1];
137
+ }, trys: [], ops: [] }, f, y, t, g;
138
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
139
+ return this;
140
+ }), g;
141
+ function verb(n) {
142
+ return function(v) {
143
+ return step([n, v]);
144
+ };
145
+ }
146
+ function step(op) {
147
+ if (f)
148
+ throw new TypeError("Generator is already executing.");
149
+ while (_)
150
+ try {
151
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
152
+ return t;
153
+ if (y = 0, t)
154
+ op = [op[0] & 2, t.value];
155
+ switch (op[0]) {
156
+ case 0:
157
+ case 1:
158
+ t = op;
159
+ break;
160
+ case 4:
161
+ _.label++;
162
+ return { value: op[1], done: false };
163
+ case 5:
164
+ _.label++;
165
+ y = op[1];
166
+ op = [0];
167
+ continue;
168
+ case 7:
169
+ op = _.ops.pop();
170
+ _.trys.pop();
171
+ continue;
172
+ default:
173
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
174
+ _ = 0;
175
+ continue;
176
+ }
177
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
178
+ _.label = op[1];
179
+ break;
180
+ }
181
+ if (op[0] === 6 && _.label < t[1]) {
182
+ _.label = t[1];
183
+ t = op;
184
+ break;
185
+ }
186
+ if (t && _.label < t[2]) {
187
+ _.label = t[2];
188
+ _.ops.push(op);
189
+ break;
190
+ }
191
+ if (t[2])
192
+ _.ops.pop();
193
+ _.trys.pop();
194
+ continue;
70
195
  }
71
- return function(id, v) {
72
- return exports2[id] = previous ? previous(id, v) : v;
73
- };
196
+ op = body.call(thisArg, _);
197
+ } catch (e) {
198
+ op = [6, e];
199
+ y = 0;
200
+ } finally {
201
+ f = t = 0;
74
202
  }
75
- })(function(exporter) {
76
- var extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d, b) {
77
- d.__proto__ = b;
78
- } || function(d, b) {
79
- for (var p in b)
80
- if (Object.prototype.hasOwnProperty.call(b, p))
81
- d[p] = b[p];
203
+ if (op[0] & 5)
204
+ throw op[1];
205
+ return { value: op[0] ? op[1] : void 0, done: true };
206
+ }
207
+ }
208
+ function __exportStar(m, o) {
209
+ for (var p in m)
210
+ if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
211
+ __createBinding(o, m, p);
212
+ }
213
+ function __values(o) {
214
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
215
+ if (m)
216
+ return m.call(o);
217
+ if (o && typeof o.length === "number")
218
+ return {
219
+ next: function() {
220
+ if (o && i >= o.length)
221
+ o = void 0;
222
+ return { value: o && o[i++], done: !o };
223
+ }
224
+ };
225
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
226
+ }
227
+ function __read(o, n) {
228
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
229
+ if (!m)
230
+ return o;
231
+ var i = m.call(o), r, ar = [], e;
232
+ try {
233
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
234
+ ar.push(r.value);
235
+ } catch (error) {
236
+ e = { error };
237
+ } finally {
238
+ try {
239
+ if (r && !r.done && (m = i["return"]))
240
+ m.call(i);
241
+ } finally {
242
+ if (e)
243
+ throw e.error;
244
+ }
245
+ }
246
+ return ar;
247
+ }
248
+ function __spread() {
249
+ for (var ar = [], i = 0; i < arguments.length; i++)
250
+ ar = ar.concat(__read(arguments[i]));
251
+ return ar;
252
+ }
253
+ function __spreadArrays() {
254
+ for (var s = 0, i = 0, il = arguments.length; i < il; i++)
255
+ s += arguments[i].length;
256
+ for (var r = Array(s), k = 0, i = 0; i < il; i++)
257
+ for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
258
+ r[k] = a[j];
259
+ return r;
260
+ }
261
+ function __spreadArray(to, from, pack) {
262
+ if (pack || arguments.length === 2)
263
+ for (var i = 0, l = from.length, ar; i < l; i++) {
264
+ if (ar || !(i in from)) {
265
+ if (!ar)
266
+ ar = Array.prototype.slice.call(from, 0, i);
267
+ ar[i] = from[i];
268
+ }
269
+ }
270
+ return to.concat(ar || Array.prototype.slice.call(from));
271
+ }
272
+ function __await(v) {
273
+ return this instanceof __await ? (this.v = v, this) : new __await(v);
274
+ }
275
+ function __asyncGenerator(thisArg, _arguments, generator) {
276
+ if (!Symbol.asyncIterator)
277
+ throw new TypeError("Symbol.asyncIterator is not defined.");
278
+ var g = generator.apply(thisArg, _arguments || []), i, q = [];
279
+ return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
280
+ return this;
281
+ }, i;
282
+ function verb(n) {
283
+ if (g[n])
284
+ i[n] = function(v) {
285
+ return new Promise(function(a, b) {
286
+ q.push([n, v, a, b]) > 1 || resume(n, v);
287
+ });
82
288
  };
83
- __extends2 = function(d, b) {
84
- if (typeof b !== "function" && b !== null)
85
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
86
- extendStatics(d, b);
87
- function __() {
88
- this.constructor = d;
89
- }
90
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
289
+ }
290
+ function resume(n, v) {
291
+ try {
292
+ step(g[n](v));
293
+ } catch (e) {
294
+ settle(q[0][3], e);
295
+ }
296
+ }
297
+ function step(r) {
298
+ r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r);
299
+ }
300
+ function fulfill(value) {
301
+ resume("next", value);
302
+ }
303
+ function reject(value) {
304
+ resume("throw", value);
305
+ }
306
+ function settle(f, v) {
307
+ if (f(v), q.shift(), q.length)
308
+ resume(q[0][0], q[0][1]);
309
+ }
310
+ }
311
+ function __asyncDelegator(o) {
312
+ var i, p;
313
+ return i = {}, verb("next"), verb("throw", function(e) {
314
+ throw e;
315
+ }), verb("return"), i[Symbol.iterator] = function() {
316
+ return this;
317
+ }, i;
318
+ function verb(n, f) {
319
+ i[n] = o[n] ? function(v) {
320
+ return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v;
321
+ } : f;
322
+ }
323
+ }
324
+ function __asyncValues(o) {
325
+ if (!Symbol.asyncIterator)
326
+ throw new TypeError("Symbol.asyncIterator is not defined.");
327
+ var m = o[Symbol.asyncIterator], i;
328
+ return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
329
+ return this;
330
+ }, i);
331
+ function verb(n) {
332
+ i[n] = o[n] && function(v) {
333
+ return new Promise(function(resolve, reject) {
334
+ v = o[n](v), settle(resolve, reject, v.done, v.value);
335
+ });
336
+ };
337
+ }
338
+ function settle(resolve, reject, d, v) {
339
+ Promise.resolve(v).then(function(v2) {
340
+ resolve({ value: v2, done: d });
341
+ }, reject);
342
+ }
343
+ }
344
+ function __makeTemplateObject(cooked, raw) {
345
+ if (Object.defineProperty) {
346
+ Object.defineProperty(cooked, "raw", { value: raw });
347
+ } else {
348
+ cooked.raw = raw;
349
+ }
350
+ return cooked;
351
+ }
352
+ function __importStar(mod) {
353
+ if (mod && mod.__esModule)
354
+ return mod;
355
+ var result = {};
356
+ if (mod != null) {
357
+ for (var k in mod)
358
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
359
+ __createBinding(result, mod, k);
360
+ }
361
+ __setModuleDefault(result, mod);
362
+ return result;
363
+ }
364
+ function __importDefault(mod) {
365
+ return mod && mod.__esModule ? mod : { default: mod };
366
+ }
367
+ function __classPrivateFieldGet(receiver, state, kind, f) {
368
+ if (kind === "a" && !f)
369
+ throw new TypeError("Private accessor was defined without a getter");
370
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
371
+ throw new TypeError("Cannot read private member from an object whose class did not declare it");
372
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
373
+ }
374
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
375
+ if (kind === "m")
376
+ throw new TypeError("Private method is not writable");
377
+ if (kind === "a" && !f)
378
+ throw new TypeError("Private accessor was defined without a setter");
379
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
380
+ throw new TypeError("Cannot write private member to an object whose class did not declare it");
381
+ return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value;
382
+ }
383
+ function __classPrivateFieldIn(state, receiver) {
384
+ if (receiver === null || typeof receiver !== "object" && typeof receiver !== "function")
385
+ throw new TypeError("Cannot use 'in' operator on non-object");
386
+ return typeof state === "function" ? receiver === state : state.has(receiver);
387
+ }
388
+ var extendStatics, __assign, __createBinding, __setModuleDefault;
389
+ var init_tslib_es6 = __esm({
390
+ "../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/tslib@2.4.0/node_modules/tslib/tslib.es6.js"() {
391
+ extendStatics = function(d, b) {
392
+ extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
393
+ d2.__proto__ = b2;
394
+ } || function(d2, b2) {
395
+ for (var p in b2)
396
+ if (Object.prototype.hasOwnProperty.call(b2, p))
397
+ d2[p] = b2[p];
91
398
  };
92
- __assign2 = Object.assign || function(t) {
399
+ return extendStatics(d, b);
400
+ };
401
+ __assign = function() {
402
+ __assign = Object.assign || function __assign2(t) {
93
403
  for (var s, i = 1, n = arguments.length; i < n; i++) {
94
404
  s = arguments[i];
95
405
  for (var p in s)
@@ -98,366 +408,28 @@
98
408
  }
99
409
  return t;
100
410
  };
101
- __rest2 = function(s, e) {
102
- var t = {};
103
- for (var p in s)
104
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
105
- t[p] = s[p];
106
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
107
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
108
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
109
- t[p[i]] = s[p[i]];
110
- }
111
- return t;
112
- };
113
- __decorate2 = function(decorators, target, key, desc) {
114
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
115
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
116
- r = Reflect.decorate(decorators, target, key, desc);
117
- else
118
- for (var i = decorators.length - 1; i >= 0; i--)
119
- if (d = decorators[i])
120
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
121
- return c > 3 && r && Object.defineProperty(target, key, r), r;
122
- };
123
- __param2 = function(paramIndex, decorator) {
124
- return function(target, key) {
125
- decorator(target, key, paramIndex);
126
- };
127
- };
128
- __metadata2 = function(metadataKey, metadataValue) {
129
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
130
- return Reflect.metadata(metadataKey, metadataValue);
131
- };
132
- __awaiter2 = function(thisArg, _arguments, P, generator) {
133
- function adopt(value) {
134
- return value instanceof P ? value : new P(function(resolve) {
135
- resolve(value);
136
- });
137
- }
138
- return new (P || (P = Promise))(function(resolve, reject) {
139
- function fulfilled(value) {
140
- try {
141
- step(generator.next(value));
142
- } catch (e) {
143
- reject(e);
144
- }
145
- }
146
- function rejected(value) {
147
- try {
148
- step(generator["throw"](value));
149
- } catch (e) {
150
- reject(e);
151
- }
152
- }
153
- function step(result) {
154
- result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
155
- }
156
- step((generator = generator.apply(thisArg, _arguments || [])).next());
157
- });
158
- };
159
- __generator2 = function(thisArg, body) {
160
- var _ = { label: 0, sent: function() {
161
- if (t[0] & 1)
162
- throw t[1];
163
- return t[1];
164
- }, trys: [], ops: [] }, f, y, t, g;
165
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
166
- return this;
167
- }), g;
168
- function verb(n) {
169
- return function(v) {
170
- return step([n, v]);
171
- };
172
- }
173
- function step(op) {
174
- if (f)
175
- throw new TypeError("Generator is already executing.");
176
- while (_)
177
- try {
178
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
179
- return t;
180
- if (y = 0, t)
181
- op = [op[0] & 2, t.value];
182
- switch (op[0]) {
183
- case 0:
184
- case 1:
185
- t = op;
186
- break;
187
- case 4:
188
- _.label++;
189
- return { value: op[1], done: false };
190
- case 5:
191
- _.label++;
192
- y = op[1];
193
- op = [0];
194
- continue;
195
- case 7:
196
- op = _.ops.pop();
197
- _.trys.pop();
198
- continue;
199
- default:
200
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
201
- _ = 0;
202
- continue;
203
- }
204
- if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
205
- _.label = op[1];
206
- break;
207
- }
208
- if (op[0] === 6 && _.label < t[1]) {
209
- _.label = t[1];
210
- t = op;
211
- break;
212
- }
213
- if (t && _.label < t[2]) {
214
- _.label = t[2];
215
- _.ops.push(op);
216
- break;
217
- }
218
- if (t[2])
219
- _.ops.pop();
220
- _.trys.pop();
221
- continue;
222
- }
223
- op = body.call(thisArg, _);
224
- } catch (e) {
225
- op = [6, e];
226
- y = 0;
227
- } finally {
228
- f = t = 0;
229
- }
230
- if (op[0] & 5)
231
- throw op[1];
232
- return { value: op[0] ? op[1] : void 0, done: true };
233
- }
234
- };
235
- __exportStar2 = function(m, o) {
236
- for (var p in m)
237
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
238
- __createBinding2(o, m, p);
239
- };
240
- __createBinding2 = Object.create ? function(o, m, k, k2) {
241
- if (k2 === void 0)
242
- k2 = k;
243
- var desc = Object.getOwnPropertyDescriptor(m, k);
244
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
245
- desc = { enumerable: true, get: function() {
246
- return m[k];
247
- } };
248
- }
249
- Object.defineProperty(o, k2, desc);
250
- } : function(o, m, k, k2) {
251
- if (k2 === void 0)
252
- k2 = k;
253
- o[k2] = m[k];
254
- };
255
- __values2 = function(o) {
256
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
257
- if (m)
258
- return m.call(o);
259
- if (o && typeof o.length === "number")
260
- return {
261
- next: function() {
262
- if (o && i >= o.length)
263
- o = void 0;
264
- return { value: o && o[i++], done: !o };
265
- }
266
- };
267
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
268
- };
269
- __read2 = function(o, n) {
270
- var m = typeof Symbol === "function" && o[Symbol.iterator];
271
- if (!m)
272
- return o;
273
- var i = m.call(o), r, ar = [], e;
274
- try {
275
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
276
- ar.push(r.value);
277
- } catch (error) {
278
- e = { error };
279
- } finally {
280
- try {
281
- if (r && !r.done && (m = i["return"]))
282
- m.call(i);
283
- } finally {
284
- if (e)
285
- throw e.error;
286
- }
287
- }
288
- return ar;
289
- };
290
- __spread2 = function() {
291
- for (var ar = [], i = 0; i < arguments.length; i++)
292
- ar = ar.concat(__read2(arguments[i]));
293
- return ar;
294
- };
295
- __spreadArrays2 = function() {
296
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
297
- s += arguments[i].length;
298
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
299
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
300
- r[k] = a[j];
301
- return r;
302
- };
303
- __spreadArray2 = function(to, from, pack) {
304
- if (pack || arguments.length === 2)
305
- for (var i = 0, l = from.length, ar; i < l; i++) {
306
- if (ar || !(i in from)) {
307
- if (!ar)
308
- ar = Array.prototype.slice.call(from, 0, i);
309
- ar[i] = from[i];
310
- }
311
- }
312
- return to.concat(ar || Array.prototype.slice.call(from));
313
- };
314
- __await2 = function(v) {
315
- return this instanceof __await2 ? (this.v = v, this) : new __await2(v);
316
- };
317
- __asyncGenerator2 = function(thisArg, _arguments, generator) {
318
- if (!Symbol.asyncIterator)
319
- throw new TypeError("Symbol.asyncIterator is not defined.");
320
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
321
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
322
- return this;
323
- }, i;
324
- function verb(n) {
325
- if (g[n])
326
- i[n] = function(v) {
327
- return new Promise(function(a, b) {
328
- q.push([n, v, a, b]) > 1 || resume(n, v);
329
- });
330
- };
331
- }
332
- function resume(n, v) {
333
- try {
334
- step(g[n](v));
335
- } catch (e) {
336
- settle(q[0][3], e);
337
- }
338
- }
339
- function step(r) {
340
- r.value instanceof __await2 ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r);
341
- }
342
- function fulfill(value) {
343
- resume("next", value);
344
- }
345
- function reject(value) {
346
- resume("throw", value);
347
- }
348
- function settle(f, v) {
349
- if (f(v), q.shift(), q.length)
350
- resume(q[0][0], q[0][1]);
351
- }
352
- };
353
- __asyncDelegator2 = function(o) {
354
- var i, p;
355
- return i = {}, verb("next"), verb("throw", function(e) {
356
- throw e;
357
- }), verb("return"), i[Symbol.iterator] = function() {
358
- return this;
359
- }, i;
360
- function verb(n, f) {
361
- i[n] = o[n] ? function(v) {
362
- return (p = !p) ? { value: __await2(o[n](v)), done: n === "return" } : f ? f(v) : v;
363
- } : f;
364
- }
365
- };
366
- __asyncValues2 = function(o) {
367
- if (!Symbol.asyncIterator)
368
- throw new TypeError("Symbol.asyncIterator is not defined.");
369
- var m = o[Symbol.asyncIterator], i;
370
- return m ? m.call(o) : (o = typeof __values2 === "function" ? __values2(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
371
- return this;
372
- }, i);
373
- function verb(n) {
374
- i[n] = o[n] && function(v) {
375
- return new Promise(function(resolve, reject) {
376
- v = o[n](v), settle(resolve, reject, v.done, v.value);
377
- });
378
- };
379
- }
380
- function settle(resolve, reject, d, v) {
381
- Promise.resolve(v).then(function(v2) {
382
- resolve({ value: v2, done: d });
383
- }, reject);
384
- }
385
- };
386
- __makeTemplateObject2 = function(cooked, raw) {
387
- if (Object.defineProperty) {
388
- Object.defineProperty(cooked, "raw", { value: raw });
389
- } else {
390
- cooked.raw = raw;
391
- }
392
- return cooked;
393
- };
394
- var __setModuleDefault = Object.create ? function(o, v) {
395
- Object.defineProperty(o, "default", { enumerable: true, value: v });
396
- } : function(o, v) {
397
- o["default"] = v;
398
- };
399
- __importStar2 = function(mod) {
400
- if (mod && mod.__esModule)
401
- return mod;
402
- var result = {};
403
- if (mod != null) {
404
- for (var k in mod)
405
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
406
- __createBinding2(result, mod, k);
407
- }
408
- __setModuleDefault(result, mod);
409
- return result;
410
- };
411
- __importDefault2 = function(mod) {
412
- return mod && mod.__esModule ? mod : { "default": mod };
413
- };
414
- __classPrivateFieldGet2 = function(receiver, state, kind, f) {
415
- if (kind === "a" && !f)
416
- throw new TypeError("Private accessor was defined without a getter");
417
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
418
- throw new TypeError("Cannot read private member from an object whose class did not declare it");
419
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
420
- };
421
- __classPrivateFieldSet2 = function(receiver, state, value, kind, f) {
422
- if (kind === "m")
423
- throw new TypeError("Private method is not writable");
424
- if (kind === "a" && !f)
425
- throw new TypeError("Private accessor was defined without a setter");
426
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
427
- throw new TypeError("Cannot write private member to an object whose class did not declare it");
428
- return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value;
429
- };
430
- __classPrivateFieldIn2 = function(state, receiver) {
431
- if (receiver === null || typeof receiver !== "object" && typeof receiver !== "function")
432
- throw new TypeError("Cannot use 'in' operator on non-object");
433
- return typeof state === "function" ? receiver === state : state.has(receiver);
434
- };
435
- exporter("__extends", __extends2);
436
- exporter("__assign", __assign2);
437
- exporter("__rest", __rest2);
438
- exporter("__decorate", __decorate2);
439
- exporter("__param", __param2);
440
- exporter("__metadata", __metadata2);
441
- exporter("__awaiter", __awaiter2);
442
- exporter("__generator", __generator2);
443
- exporter("__exportStar", __exportStar2);
444
- exporter("__createBinding", __createBinding2);
445
- exporter("__values", __values2);
446
- exporter("__read", __read2);
447
- exporter("__spread", __spread2);
448
- exporter("__spreadArrays", __spreadArrays2);
449
- exporter("__spreadArray", __spreadArray2);
450
- exporter("__await", __await2);
451
- exporter("__asyncGenerator", __asyncGenerator2);
452
- exporter("__asyncDelegator", __asyncDelegator2);
453
- exporter("__asyncValues", __asyncValues2);
454
- exporter("__makeTemplateObject", __makeTemplateObject2);
455
- exporter("__importStar", __importStar2);
456
- exporter("__importDefault", __importDefault2);
457
- exporter("__classPrivateFieldGet", __classPrivateFieldGet2);
458
- exporter("__classPrivateFieldSet", __classPrivateFieldSet2);
459
- exporter("__classPrivateFieldIn", __classPrivateFieldIn2);
460
- });
411
+ return __assign.apply(this, arguments);
412
+ };
413
+ __createBinding = Object.create ? function(o, m, k, k2) {
414
+ if (k2 === void 0)
415
+ k2 = k;
416
+ var desc = Object.getOwnPropertyDescriptor(m, k);
417
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
418
+ desc = { enumerable: true, get: function() {
419
+ return m[k];
420
+ } };
421
+ }
422
+ Object.defineProperty(o, k2, desc);
423
+ } : function(o, m, k, k2) {
424
+ if (k2 === void 0)
425
+ k2 = k;
426
+ o[k2] = m[k];
427
+ };
428
+ __setModuleDefault = Object.create ? function(o, v) {
429
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
430
+ } : function(o, v) {
431
+ o["default"] = v;
432
+ };
461
433
  }
462
434
  });
463
435
 
@@ -781,7 +753,7 @@
781
753
  "use strict";
782
754
  Object.defineProperty(exports, "__esModule", { value: true });
783
755
  exports.parseUnicodeLocaleId = exports.parseUnicodeLanguageId = exports.isUnicodeVariantSubtag = exports.isUnicodeScriptSubtag = exports.isUnicodeRegionSubtag = exports.isStructurallyValidLanguageTag = exports.isUnicodeLanguageSubtag = exports.SEPARATOR = void 0;
784
- var tslib_1 = require_tslib();
756
+ var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
785
757
  var ALPHANUM_1_8 = /^[a-z0-9]{1,8}$/i;
786
758
  var ALPHANUM_2_8 = /^[a-z0-9]{2,8}$/i;
787
759
  var ALPHANUM_3_8 = /^[a-z0-9]{3,8}$/i;
@@ -1021,7 +993,7 @@
1021
993
  "use strict";
1022
994
  Object.defineProperty(exports, "__esModule", { value: true });
1023
995
  exports.emitUnicodeLocaleId = exports.emitUnicodeLanguageId = void 0;
1024
- var tslib_1 = require_tslib();
996
+ var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
1025
997
  function emitUnicodeLanguageId2(lang) {
1026
998
  if (!lang) {
1027
999
  return "";
@@ -4084,7 +4056,7 @@
4084
4056
  "use strict";
4085
4057
  Object.defineProperty(exports, "__esModule", { value: true });
4086
4058
  exports.canonicalizeUnicodeLocaleId = exports.canonicalizeUnicodeLanguageId = void 0;
4087
- var tslib_1 = require_tslib();
4059
+ var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
4088
4060
  var aliases_generated_1 = require_aliases_generated();
4089
4061
  var parser_1 = require_parser();
4090
4062
  var likelySubtags_generated_1 = require_likelySubtags_generated();
@@ -4287,7 +4259,7 @@
4287
4259
  "use strict";
4288
4260
  Object.defineProperty(exports, "__esModule", { value: true });
4289
4261
  exports.isUnicodeLanguageSubtag = exports.isUnicodeScriptSubtag = exports.isUnicodeRegionSubtag = exports.isStructurallyValidLanguageTag = exports.parseUnicodeLanguageId = exports.parseUnicodeLocaleId = exports.getCanonicalLocales = void 0;
4290
- var tslib_1 = require_tslib();
4262
+ var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
4291
4263
  var parser_1 = require_parser();
4292
4264
  var emitter_1 = require_emitter();
4293
4265
  var canonicalizer_1 = require_canonicalizer();
@@ -4337,37 +4309,8 @@
4337
4309
  }
4338
4310
  });
4339
4311
 
4340
- // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/tslib@2.4.0/node_modules/tslib/modules/index.js
4341
- var import_tslib = __toESM(require_tslib(), 1);
4342
- var {
4343
- __extends,
4344
- __assign,
4345
- __rest,
4346
- __decorate,
4347
- __param,
4348
- __metadata,
4349
- __awaiter,
4350
- __generator,
4351
- __exportStar,
4352
- __createBinding,
4353
- __values,
4354
- __read,
4355
- __spread,
4356
- __spreadArrays,
4357
- __spreadArray,
4358
- __await,
4359
- __asyncGenerator,
4360
- __asyncDelegator,
4361
- __asyncValues,
4362
- __makeTemplateObject,
4363
- __importStar,
4364
- __importDefault,
4365
- __classPrivateFieldGet,
4366
- __classPrivateFieldSet,
4367
- __classPrivateFieldIn
4368
- } = import_tslib.default;
4369
-
4370
4312
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js
4313
+ init_tslib_es6();
4371
4314
  var import_intl_enumerator = __toESM(require_intl_enumerator());
4372
4315
 
4373
4316
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/@formatjs+ecma402-abstract@0.0.0/node_modules/@formatjs/ecma402-abstract/lib/262.js
@@ -4501,15 +4444,19 @@
4501
4444
  var S_DOLLAR_UNICODE_REGEX = new RegExp("".concat(S_UNICODE_REGEX.source, "$"));
4502
4445
 
4503
4446
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/@formatjs+ecma402-abstract@0.0.0/node_modules/@formatjs/ecma402-abstract/lib/data.js
4504
- var MissingLocaleDataError = function(_super) {
4505
- __extends(MissingLocaleDataError2, _super);
4506
- function MissingLocaleDataError2() {
4507
- var _this = _super !== null && _super.apply(this, arguments) || this;
4508
- _this.type = "MISSING_LOCALE_DATA";
4509
- return _this;
4510
- }
4511
- return MissingLocaleDataError2;
4512
- }(Error);
4447
+ init_tslib_es6();
4448
+ var MissingLocaleDataError = (
4449
+ /** @class */
4450
+ function(_super) {
4451
+ __extends(MissingLocaleDataError2, _super);
4452
+ function MissingLocaleDataError2() {
4453
+ var _this = _super !== null && _super.apply(this, arguments) || this;
4454
+ _this.type = "MISSING_LOCALE_DATA";
4455
+ return _this;
4456
+ }
4457
+ return MissingLocaleDataError2;
4458
+ }(Error)
4459
+ );
4513
4460
 
4514
4461
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/node_modules/.aspect_rules_js/@formatjs+ecma402-abstract@0.0.0/node_modules/@formatjs/ecma402-abstract/lib/types/date-time.js
4515
4462
  var RangePatternType;
@@ -4533,6 +4480,9 @@
4533
4480
  return internalSlots;
4534
4481
  }
4535
4482
 
4483
+ // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/preference-data.js
4484
+ init_tslib_es6();
4485
+
4536
4486
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/timezones.generated.js
4537
4487
  var timezones = { "ad": ["Europe/Andorra"], "ae": ["Asia/Dubai"], "af": ["Asia/Kabul"], "ag": ["America/Antigua"], "ai": ["America/Anguilla"], "al": ["Europe/Tirane"], "am": ["Asia/Yerevan"], "an": ["America/Curacao"], "ao": ["Africa/Luanda"], "aq": ["Pacific/Auckland", "Antarctica/Casey", "Antarctica/Davis", "Antarctica/DumontDUrville", "Antarctica/Mawson", "Antarctica/McMurdo", "Antarctica/Palmer", "Antarctica/Rothera", "Antarctica/Syowa", "Antarctica/Troll", "Antarctica/Vostok"], "ar": ["America/Buenos_Aires", "America/Cordoba", "America/Catamarca", "America/Argentina/La_Rioja", "America/Jujuy", "America/Argentina/San_Luis", "America/Mendoza", "America/Argentina/Rio_Gallegos", "America/Argentina/Salta", "America/Argentina/Tucuman", "America/Argentina/San_Juan", "America/Argentina/Ushuaia"], "as": ["Pacific/Pago_Pago"], "at": ["Europe/Vienna"], "au": ["Australia/Adelaide", "Australia/Broken_Hill", "Australia/Brisbane", "Australia/Darwin", "Australia/Eucla", "Australia/Hobart", "Australia/Currie", "Australia/Lindeman", "Australia/Lord_Howe", "Australia/Melbourne", "Antarctica/Macquarie", "Australia/Perth", "Australia/Sydney"], "aw": ["America/Aruba"], "az": ["Asia/Baku"], "ba": ["Europe/Sarajevo"], "bb": ["America/Barbados"], "bd": ["Asia/Dhaka"], "be": ["Europe/Brussels"], "bf": ["Africa/Ouagadougou"], "bg": ["Europe/Sofia"], "bh": ["Asia/Bahrain"], "bi": ["Africa/Bujumbura"], "bj": ["Africa/Porto-Novo"], "bm": ["Atlantic/Bermuda"], "bn": ["Asia/Brunei"], "bo": ["America/La_Paz"], "bq": ["America/Kralendijk"], "br": ["America/Araguaina", "America/Belem", "America/Boa_Vista", "America/Cuiaba", "America/Campo_Grande", "America/Eirunepe", "America/Noronha", "America/Fortaleza", "America/Manaus", "America/Maceio", "America/Porto_Velho", "America/Rio_Branco", "America/Recife", "America/Sao_Paulo", "America/Bahia", "America/Santarem"], "bs": ["America/Nassau"], "bt": ["Asia/Thimphu"], "bw": ["Africa/Gaborone"], "by": ["Europe/Minsk"], "bz": ["America/Belize"], "ca": ["America/Creston", "America/Edmonton", "America/Rainy_River", "America/Fort_Nelson", "America/Glace_Bay", "America/Goose_Bay", "America/Halifax", "America/Iqaluit", "America/Moncton", "America/Montreal", "America/Nipigon", "America/Pangnirtung", "America/Resolute", "America/Regina", "America/St_Johns", "America/Thunder_Bay", "America/Toronto", "America/Vancouver", "America/Winnipeg", "America/Blanc-Sablon", "America/Cambridge_Bay", "America/Dawson", "America/Dawson_Creek", "America/Rankin_Inlet", "America/Inuvik", "America/Whitehorse", "America/Swift_Current", "America/Yellowknife", "America/Coral_Harbour"], "cc": ["Indian/Cocos"], "cd": ["Africa/Lubumbashi", "Africa/Kinshasa"], "cf": ["Africa/Bangui"], "cg": ["Africa/Brazzaville"], "ch": ["Europe/Zurich"], "ci": ["Africa/Abidjan"], "ck": ["Pacific/Rarotonga"], "cl": ["Pacific/Easter", "America/Punta_Arenas", "America/Santiago"], "cm": ["Africa/Douala"], "cn": ["Asia/Shanghai", "Asia/Shanghai", "Asia/Urumqi", "Asia/Shanghai", "Asia/Urumqi"], "co": ["America/Bogota"], "cr": ["America/Costa_Rica"], "cs": ["CST6CDT"], "cu": ["America/Havana"], "cv": ["Atlantic/Cape_Verde"], "cx": ["Indian/Christmas"], "cy": ["Asia/Famagusta", "Asia/Nicosia"], "cz": ["Europe/Prague"], "de": ["Europe/Berlin", "Europe/Busingen"], "dj": ["Africa/Djibouti"], "dk": ["Europe/Copenhagen"], "dm": ["America/Dominica"], "do": ["America/Santo_Domingo"], "dz": ["Africa/Algiers"], "ec": ["Pacific/Galapagos", "America/Guayaquil"], "ee": ["Europe/Tallinn"], "eg": ["Africa/Cairo"], "eh": ["Africa/El_Aaiun"], "er": ["Africa/Asmera"], "es": ["Africa/Ceuta", "Atlantic/Canary", "Europe/Madrid", "EST5EDT"], "et": ["Africa/Addis_Ababa"], "fi": ["Europe/Helsinki", "Europe/Mariehamn"], "fj": ["Pacific/Fiji"], "fk": ["Atlantic/Stanley"], "fm": ["Pacific/Kosrae", "Pacific/Ponape", "Pacific/Truk"], "fo": ["Atlantic/Faeroe"], "fr": ["Europe/Paris"], "ga": ["Africa/Libreville", "Asia/Gaza", "Asia/Gaza"], "gb": ["Europe/London"], "gd": ["America/Grenada"], "ge": ["Asia/Tbilisi"], "gf": ["America/Cayenne"], "gg": ["Europe/Guernsey"], "gh": ["Africa/Accra"], "gi": ["Europe/Gibraltar"], "gl": ["America/Danmarkshavn", "America/Godthab", "America/Scoresbysund", "America/Thule"], "gm": ["Africa/Banjul", "Etc/GMT"], "gn": ["Africa/Conakry"], "gp": ["America/Guadeloupe", "America/Marigot", "America/St_Barthelemy"], "gq": ["Africa/Malabo"], "gr": ["Europe/Athens"], "gs": ["Atlantic/South_Georgia"], "gt": ["America/Guatemala"], "gu": ["Pacific/Guam"], "gw": ["Africa/Bissau"], "gy": ["America/Guyana"], "he": ["Asia/Hebron"], "hk": ["Asia/Hong_Kong"], "hn": ["America/Tegucigalpa"], "hr": ["Europe/Zagreb"], "ht": ["America/Port-au-Prince"], "hu": ["Europe/Budapest"], "id": ["Asia/Jayapura", "Asia/Jakarta", "Asia/Makassar", "Asia/Pontianak"], "ie": ["Europe/Dublin"], "im": ["Europe/Isle_of_Man"], "in": ["Asia/Calcutta"], "io": ["Indian/Chagos"], "iq": ["Asia/Baghdad"], "ir": ["Asia/Tehran"], "is": ["Atlantic/Reykjavik"], "it": ["Europe/Rome"], "je": ["Asia/Jerusalem", "Europe/Jersey"], "jm": ["America/Jamaica"], "jo": ["Asia/Amman"], "jp": ["Asia/Tokyo"], "ke": ["Africa/Nairobi"], "kg": ["Asia/Bishkek"], "kh": ["Asia/Phnom_Penh"], "ki": ["Pacific/Kiritimati", "Pacific/Enderbury", "Pacific/Tarawa"], "km": ["Indian/Comoro"], "kn": ["America/St_Kitts"], "kp": ["Asia/Pyongyang"], "kr": ["Asia/Seoul"], "kw": ["Asia/Kuwait"], "ky": ["America/Cayman"], "kz": ["Asia/Aqtau", "Asia/Aqtobe", "Asia/Almaty", "Asia/Atyrau", "Asia/Qostanay", "Asia/Qyzylorda", "Asia/Oral"], "la": ["Asia/Vientiane"], "lb": ["Asia/Beirut"], "lc": ["America/St_Lucia"], "li": ["Europe/Vaduz"], "lk": ["Asia/Colombo"], "lr": ["Africa/Monrovia"], "ls": ["Africa/Maseru"], "lt": ["Europe/Vilnius"], "lu": ["Europe/Luxembourg"], "lv": ["Europe/Riga"], "ly": ["Africa/Tripoli"], "ma": ["Africa/Casablanca"], "mc": ["Europe/Monaco"], "md": ["Europe/Chisinau"], "me": ["Europe/Podgorica"], "mg": ["Indian/Antananarivo"], "mh": ["Pacific/Kwajalein", "Pacific/Majuro"], "mk": ["Europe/Skopje"], "ml": ["Africa/Bamako"], "mm": ["Asia/Rangoon"], "mn": ["Asia/Choibalsan", "Asia/Hovd", "Asia/Ulaanbaatar"], "mo": ["Asia/Macau"], "mp": ["Pacific/Saipan"], "mq": ["America/Martinique"], "mr": ["Africa/Nouakchott"], "ms": ["America/Montserrat", "MST7MDT"], "mt": ["Europe/Malta"], "mu": ["Indian/Mauritius"], "mv": ["Indian/Maldives"], "mw": ["Africa/Blantyre"], "mx": ["America/Chihuahua", "America/Cancun", "America/Hermosillo", "America/Matamoros", "America/Mexico_City", "America/Merida", "America/Monterrey", "America/Mazatlan", "America/Ojinaga", "America/Bahia_Banderas", "America/Santa_Isabel", "America/Tijuana"], "my": ["Asia/Kuching", "Asia/Kuala_Lumpur"], "mz": ["Africa/Maputo"], "na": ["Africa/Windhoek"], "nc": ["Pacific/Noumea"], "ne": ["Africa/Niamey"], "nf": ["Pacific/Norfolk"], "ng": ["Africa/Lagos"], "ni": ["America/Managua"], "nl": ["Europe/Amsterdam"], "no": ["Europe/Oslo"], "np": ["Asia/Katmandu"], "nr": ["Pacific/Nauru"], "nu": ["Pacific/Niue"], "nz": ["Pacific/Auckland", "Pacific/Chatham"], "om": ["Asia/Muscat"], "pa": ["America/Panama"], "pe": ["America/Lima"], "pf": ["Pacific/Gambier", "Pacific/Marquesas", "Pacific/Tahiti"], "pg": ["Pacific/Port_Moresby", "Pacific/Bougainville"], "ph": ["Asia/Manila"], "pk": ["Asia/Karachi"], "pl": ["Europe/Warsaw"], "pm": ["America/Miquelon"], "pn": ["Pacific/Pitcairn"], "pr": ["America/Puerto_Rico"], "ps": ["PST8PDT"], "pt": ["Atlantic/Madeira", "Europe/Lisbon", "Atlantic/Azores"], "pw": ["Pacific/Palau"], "py": ["America/Asuncion"], "qa": ["Asia/Qatar"], "re": ["Indian/Reunion"], "ro": ["Europe/Bucharest"], "rs": ["Europe/Belgrade"], "ru": ["Europe/Astrakhan", "Asia/Barnaul", "Asia/Chita", "Asia/Anadyr", "Asia/Magadan", "Asia/Irkutsk", "Europe/Kaliningrad", "Asia/Khandyga", "Asia/Krasnoyarsk", "Europe/Samara", "Europe/Kirov", "Europe/Moscow", "Asia/Novokuznetsk", "Asia/Omsk", "Asia/Novosibirsk", "Asia/Kamchatka", "Europe/Saratov", "Asia/Srednekolymsk", "Asia/Tomsk", "Europe/Ulyanovsk", "Asia/Ust-Nera", "Asia/Sakhalin", "Europe/Volgograd", "Asia/Vladivostok", "Asia/Yekaterinburg", "Asia/Yakutsk"], "rw": ["Africa/Kigali"], "sa": ["Asia/Riyadh"], "sb": ["Pacific/Guadalcanal"], "sc": ["Indian/Mahe"], "sd": ["Africa/Khartoum"], "se": ["Europe/Stockholm"], "sg": ["Asia/Singapore"], "sh": ["Atlantic/St_Helena"], "si": ["Europe/Ljubljana"], "sj": ["Arctic/Longyearbyen"], "sk": ["Europe/Bratislava"], "sl": ["Africa/Freetown"], "sm": ["Europe/San_Marino"], "sn": ["Africa/Dakar"], "so": ["Africa/Mogadishu"], "sr": ["America/Paramaribo"], "ss": ["Africa/Juba"], "st": ["Africa/Sao_Tome"], "sv": ["America/El_Salvador"], "sx": ["America/Lower_Princes"], "sy": ["Asia/Damascus"], "sz": ["Africa/Mbabane"], "tc": ["America/Grand_Turk"], "td": ["Africa/Ndjamena"], "tf": ["Indian/Kerguelen"], "tg": ["Africa/Lome"], "th": ["Asia/Bangkok"], "tj": ["Asia/Dushanbe"], "tk": ["Pacific/Fakaofo"], "tl": ["Asia/Dili"], "tm": ["Asia/Ashgabat"], "tn": ["Africa/Tunis"], "to": ["Pacific/Tongatapu"], "tr": ["Europe/Istanbul"], "tt": ["America/Port_of_Spain"], "tv": ["Pacific/Funafuti"], "tw": ["Asia/Taipei"], "tz": ["Africa/Dar_es_Salaam"], "ua": ["Europe/Kiev", "Europe/Zaporozhye", "Europe/Simferopol", "Europe/Uzhgorod"], "ug": ["Africa/Kampala"], "um": ["Pacific/Wake", "Pacific/Johnston", "Pacific/Midway"], "un": ["Etc/Unknown"], "us": ["America/Adak", "America/Indiana/Marengo", "America/Anchorage", "America/Boise", "America/Chicago", "America/Denver", "America/Detroit", "Pacific/Honolulu", "America/Indianapolis", "America/Indiana/Vevay", "America/Juneau", "America/Indiana/Knox", "America/Los_Angeles", "America/Louisville", "America/Menominee", "America/Kentucky/Monticello", "America/Metlakatla", "America/Denver", "America/North_Dakota/Center", "America/North_Dakota/New_Salem", "America/New_York", "America/Indiana/Vincennes", "America/Nome", "America/Phoenix", "America/Sitka", "America/Indiana/Tell_City", "America/Indiana/Winamac", "America/Indiana/Petersburg", "America/North_Dakota/Beulah", "America/Yakutat"], "ut": ["Etc/UTC", "Etc/GMT-1", "Etc/GMT-2", "Etc/GMT-3", "Etc/GMT-4", "Etc/GMT-5", "Etc/GMT-6", "Etc/GMT-7", "Etc/GMT-8", "Etc/GMT-9", "Etc/GMT-10", "Etc/GMT-11", "Etc/GMT-12", "Etc/GMT-13", "Etc/GMT-14", "Etc/GMT+1", "Etc/GMT+2", "Etc/GMT+3", "Etc/GMT+4", "Etc/GMT+5", "Etc/GMT+6", "Etc/GMT+7", "Etc/GMT+8", "Etc/GMT+9", "Etc/GMT+10", "Etc/GMT+11", "Etc/GMT+12"], "uy": ["America/Montevideo"], "uz": ["Asia/Samarkand", "Asia/Tashkent"], "va": ["Europe/Vatican"], "vc": ["America/St_Vincent"], "ve": ["America/Caracas"], "vg": ["America/Tortola"], "vi": ["America/St_Thomas"], "vn": ["Asia/Saigon"], "vu": ["Pacific/Efate"], "wf": ["Pacific/Wallis"], "ws": ["Pacific/Apia"], "ye": ["Asia/Aden"], "yt": ["Indian/Mayotte"], "za": ["Africa/Johannesburg"], "zm": ["Africa/Lusaka"], "zw": ["Africa/Harare"] };
4538
4488
 
@@ -4577,10 +4527,2383 @@
4577
4527
  }
4578
4528
 
4579
4529
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/character-orders.generated.js
4580
- var characterOrders = { "af": "left-to-right", "ak": "left-to-right", "agq": "left-to-right", "am": "left-to-right", "ar-DZ": "right-to-left", "ar-JO": "right-to-left", "ar-AE": "right-to-left", "ar": "right-to-left", "ar-ER": "right-to-left", "ar-DJ": "right-to-left", "af-NA": "left-to-right", "ar-BH": "right-to-left", "ar-IQ": "right-to-left", "ar-EG": "right-to-left", "ar-EH": "right-to-left", "ar-IL": "right-to-left", "ar-LY": "right-to-left", "ar-KW": "right-to-left", "ar-LB": "right-to-left", "ar-MR": "right-to-left", "ar-MA": "right-to-left", "ar-OM": "right-to-left", "ar-KM": "right-to-left", "ar-PS": "right-to-left", "ar-QA": "right-to-left", "ar-SD": "right-to-left", "ar-SA": "right-to-left", "ar-SS": "right-to-left", "ar-SO": "right-to-left", "ar-SY": "right-to-left", "ar-TD": "right-to-left", "ar-TN": "right-to-left", "ar-YE": "right-to-left", "asa": "left-to-right", "as": "left-to-right", "ast": "left-to-right", "az-Cyrl": "left-to-right", "az-Latn": "left-to-right", "bas": "left-to-right", "az": "left-to-right", "be-tarask": "left-to-right", "be": "left-to-right", "bez": "left-to-right", "bem": "left-to-right", "bm": "left-to-right", "bg": "left-to-right", "bn": "left-to-right", "bn-IN": "left-to-right", "bo": "left-to-right", "bo-IN": "left-to-right", "br": "left-to-right", "bs": "left-to-right", "bs-Latn": "left-to-right", "bs-Cyrl": "left-to-right", "brx": "left-to-right", "ca-AD": "left-to-right", "ca": "left-to-right", "ca-ES-valencia": "left-to-right", "ca-FR": "left-to-right", "ca-IT": "left-to-right", "ccp": "left-to-right", "ccp-IN": "left-to-right", "ce": "left-to-right", "ceb": "left-to-right", "cgg": "left-to-right", "chr": "left-to-right", "ckb-IR": "right-to-left", "ckb": "right-to-left", "cs": "left-to-right", "cy": "left-to-right", "da-GL": "left-to-right", "de": "left-to-right", "dav": "left-to-right", "da": "left-to-right", "de-AT": "left-to-right", "de-BE": "left-to-right", "de-CH": "left-to-right", "de-LI": "left-to-right", "de-IT": "left-to-right", "de-LU": "left-to-right", "dje": "left-to-right", "doi": "left-to-right", "dsb": "left-to-right", "dyo": "left-to-right", "dz": "left-to-right", "dua": "left-to-right", "ee-TG": "left-to-right", "el": "left-to-right", "el-CY": "left-to-right", "ebu": "left-to-right", "en": "left-to-right", "en-001": "left-to-right", "en-150": "left-to-right", "en-AE": "left-to-right", "ee": "left-to-right", "en-AG": "left-to-right", "en-AI": "left-to-right", "en-AT": "left-to-right", "en-AS": "left-to-right", "en-AU": "left-to-right", "en-BB": "left-to-right", "en-BM": "left-to-right", "en-BE": "left-to-right", "en-BS": "left-to-right", "en-BI": "left-to-right", "en-BW": "left-to-right", "en-BZ": "left-to-right", "en-CA": "left-to-right", "en-CC": "left-to-right", "en-CH": "left-to-right", "en-CK": "left-to-right", "en-CM": "left-to-right", "en-CY": "left-to-right", "en-DG": "left-to-right", "en-DE": "left-to-right", "en-CX": "left-to-right", "en-ER": "left-to-right", "en-DM": "left-to-right", "en-FI": "left-to-right", "en-GB": "left-to-right", "en-DK": "left-to-right", "en-FM": "left-to-right", "en-FK": "left-to-right", "en-FJ": "left-to-right", "en-GD": "left-to-right", "en-GG": "left-to-right", "en-GH": "left-to-right", "en-GI": "left-to-right", "en-HK": "left-to-right", "en-GY": "left-to-right", "en-GM": "left-to-right", "en-GU": "left-to-right", "en-IE": "left-to-right", "en-IM": "left-to-right", "en-IL": "left-to-right", "en-JE": "left-to-right", "en-IN": "left-to-right", "en-JM": "left-to-right", "en-IO": "left-to-right", "en-KI": "left-to-right", "en-KY": "left-to-right", "en-KN": "left-to-right", "en-KE": "left-to-right", "en-LC": "left-to-right", "en-LS": "left-to-right", "en-LR": "left-to-right", "en-MH": "left-to-right", "en-MO": "left-to-right", "en-MP": "left-to-right", "en-MT": "left-to-right", "en-MU": "left-to-right", "en-MY": "left-to-right", "en-MS": "left-to-right", "en-MW": "left-to-right", "en-MG": "left-to-right", "en-NA": "left-to-right", "en-NG": "left-to-right", "en-NL": "left-to-right", "en-NR": "left-to-right", "en-NF": "left-to-right", "en-PG": "left-to-right", "en-PH": "left-to-right", "en-NZ": "left-to-right", "en-NU": "left-to-right", "en-PK": "left-to-right", "en-PN": "left-to-right", "en-PR": "left-to-right", "en-PW": "left-to-right", "en-RW": "left-to-right", "en-SC": "left-to-right", "en-SE": "left-to-right", "en-SB": "left-to-right", "en-SH": "left-to-right", "en-SD": "left-to-right", "en-SI": "left-to-right", "en-SG": "left-to-right", "en-SL": "left-to-right", "en-SZ": "left-to-right", "en-TK": "left-to-right", "en-SS": "left-to-right", "en-TC": "left-to-right", "en-UM": "left-to-right", "en-TO": "left-to-right", "en-SX": "left-to-right", "en-TT": "left-to-right", "en-TV": "left-to-right", "en-TZ": "left-to-right", "en-UG": "left-to-right", "en-VU": "left-to-right", "en-VI": "left-to-right", "en-VC": "left-to-right", "en-VG": "left-to-right", "en-WS": "left-to-right", "en-ZA": "left-to-right", "es": "left-to-right", "eo": "left-to-right", "en-ZM": "left-to-right", "en-ZW": "left-to-right", "es-AR": "left-to-right", "es-419": "left-to-right", "es-BR": "left-to-right", "es-BZ": "left-to-right", "es-BO": "left-to-right", "es-CR": "left-to-right", "es-CL": "left-to-right", "es-CO": "left-to-right", "es-CU": "left-to-right", "es-DO": "left-to-right", "es-EA": "left-to-right", "es-EC": "left-to-right", "es-GQ": "left-to-right", "es-GT": "left-to-right", "es-HN": "left-to-right", "es-NI": "left-to-right", "es-IC": "left-to-right", "es-MX": "left-to-right", "es-PE": "left-to-right", "es-PH": "left-to-right", "es-PA": "left-to-right", "es-PR": "left-to-right", "es-PY": "left-to-right", "es-SV": "left-to-right", "es-US": "left-to-right", "es-UY": "left-to-right", "es-VE": "left-to-right", "et": "left-to-right", "eu": "left-to-right", "fa": "right-to-left", "ff-Adlm": "right-to-left", "ff": "left-to-right", "ewo": "left-to-right", "ff-Adlm-BF": "right-to-left", "ff-Adlm-CM": "right-to-left", "fa-AF": "right-to-left", "ff-Adlm-GH": "right-to-left", "ff-Adlm-GM": "right-to-left", "ff-Adlm-GW": "right-to-left", "ff-Adlm-LR": "right-to-left", "ff-Adlm-MR": "right-to-left", "ff-Adlm-NE": "right-to-left", "ff-Adlm-NG": "right-to-left", "ff-Adlm-SL": "right-to-left", "ff-Adlm-SN": "right-to-left", "ff-Latn-BF": "left-to-right", "ff-Latn-CM": "left-to-right", "ff-Latn-GH": "left-to-right", "ff-Latn": "left-to-right", "ff-Latn-GN": "left-to-right", "ff-Latn-GM": "left-to-right", "ff-Latn-GW": "left-to-right", "ff-Latn-MR": "left-to-right", "ff-Latn-LR": "left-to-right", "ff-Latn-NG": "left-to-right", "ff-Latn-SL": "left-to-right", "fi": "left-to-right", "ff-Latn-NE": "left-to-right", "fil": "left-to-right", "fo": "left-to-right", "fo-DK": "left-to-right", "fr": "left-to-right", "fr-BE": "left-to-right", "fr-BF": "left-to-right", "fr-BI": "left-to-right", "fr-BJ": "left-to-right", "fr-BL": "left-to-right", "fr-CA": "left-to-right", "fr-CD": "left-to-right", "fr-CF": "left-to-right", "fr-CG": "left-to-right", "fr-CH": "left-to-right", "fr-CM": "left-to-right", "fr-CI": "left-to-right", "fr-DJ": "left-to-right", "fr-DZ": "left-to-right", "fr-GA": "left-to-right", "fr-GF": "left-to-right", "fr-GN": "left-to-right", "fr-GP": "left-to-right", "fr-GQ": "left-to-right", "fr-HT": "left-to-right", "fr-KM": "left-to-right", "fr-LU": "left-to-right", "fr-MA": "left-to-right", "fr-MC": "left-to-right", "fr-MF": "left-to-right", "fr-MG": "left-to-right", "fr-ML": "left-to-right", "fr-MQ": "left-to-right", "fr-MR": "left-to-right", "fr-MU": "left-to-right", "fr-NC": "left-to-right", "fr-NE": "left-to-right", "fr-PF": "left-to-right", "fr-RE": "left-to-right", "fr-PM": "left-to-right", "fr-RW": "left-to-right", "fr-SC": "left-to-right", "fr-SN": "left-to-right", "fr-SY": "left-to-right", "fr-TD": "left-to-right", "fr-TG": "left-to-right", "fr-TN": "left-to-right", "fr-VU": "left-to-right", "fr-WF": "left-to-right", "fur": "left-to-right", "ga": "left-to-right", "ga-GB": "left-to-right", "fy": "left-to-right", "fr-YT": "left-to-right", "gsw-FR": "left-to-right", "gd": "left-to-right", "gl": "left-to-right", "gsw": "left-to-right", "gv": "left-to-right", "gsw-LI": "left-to-right", "gu": "left-to-right", "ha": "left-to-right", "ha-GH": "left-to-right", "guz": "left-to-right", "ha-NE": "left-to-right", "haw": "left-to-right", "he": "right-to-left", "hi": "left-to-right", "hr": "left-to-right", "hr-BA": "left-to-right", "hsb": "left-to-right", "hu": "left-to-right", "hy": "left-to-right", "id": "left-to-right", "ig": "left-to-right", "ia": "left-to-right", "ii": "left-to-right", "is": "left-to-right", "it": "left-to-right", "it-CH": "left-to-right", "it-SM": "left-to-right", "jmc": "left-to-right", "it-VA": "left-to-right", "ja": "left-to-right", "jgo": "left-to-right", "kam": "left-to-right", "kab": "left-to-right", "kgp": "left-to-right", "ka": "left-to-right", "kea": "left-to-right", "ki": "left-to-right", "jv": "left-to-right", "khq": "left-to-right", "kde": "left-to-right", "kk": "left-to-right", "kkj": "left-to-right", "kl": "left-to-right", "kln": "left-to-right", "km": "left-to-right", "ko": "left-to-right", "kn": "left-to-right", "ksb": "left-to-right", "ks": "right-to-left", "ks-Arab": "right-to-left", "ku": "left-to-right", "kw": "left-to-right", "ko-KP": "left-to-right", "ksh": "left-to-right", "ky": "left-to-right", "kok": "left-to-right", "lag": "left-to-right", "ksf": "left-to-right", "lb": "left-to-right", "lg": "left-to-right", "lkt": "left-to-right", "ln-AO": "left-to-right", "ln": "left-to-right", "ln-CF": "left-to-right", "lo": "left-to-right", "lu": "left-to-right", "lrc": "right-to-left", "lt": "left-to-right", "lrc-IQ": "right-to-left", "ln-CG": "left-to-right", "luo": "left-to-right", "luy": "left-to-right", "mai": "left-to-right", "lv": "left-to-right", "mas": "left-to-right", "mas-TZ": "left-to-right", "mer": "left-to-right", "mfe": "left-to-right", "mg": "left-to-right", "mgh": "left-to-right", "mgo": "left-to-right", "mi": "left-to-right", "ml": "left-to-right", "mk": "left-to-right", "mni": "left-to-right", "mni-Beng": "left-to-right", "mn": "left-to-right", "mr": "left-to-right", "ms": "left-to-right", "ms-BN": "left-to-right", "ms-ID": "left-to-right", "ms-SG": "left-to-right", "mt": "left-to-right", "my": "left-to-right", "mua": "left-to-right", "naq": "left-to-right", "mzn": "right-to-left", "nb": "left-to-right", "nb-SJ": "left-to-right", "nds": "left-to-right", "nd": "left-to-right", "ne": "left-to-right", "nds-NL": "left-to-right", "ne-IN": "left-to-right", "nl": "left-to-right", "nl-AW": "left-to-right", "nl-BE": "left-to-right", "nl-BQ": "left-to-right", "nl-CW": "left-to-right", "nl-SR": "left-to-right", "nl-SX": "left-to-right", "nn": "left-to-right", "nmg": "left-to-right", "nnh": "left-to-right", "no": "left-to-right", "nus": "left-to-right", "nyn": "left-to-right", "om": "left-to-right", "om-KE": "left-to-right", "or": "left-to-right", "os": "left-to-right", "os-RU": "left-to-right", "pa": "left-to-right", "pa-Arab": "right-to-left", "pcm": "left-to-right", "pa-Guru": "left-to-right", "pl": "left-to-right", "ps-PK": "right-to-left", "ps": "right-to-left", "pt": "left-to-right", "pt-CH": "left-to-right", "pt-AO": "left-to-right", "pt-CV": "left-to-right", "pt-GW": "left-to-right", "pt-GQ": "left-to-right", "pt-LU": "left-to-right", "pt-MO": "left-to-right", "pt-MZ": "left-to-right", "pt-PT": "left-to-right", "pt-ST": "left-to-right", "qu-BO": "left-to-right", "qu": "left-to-right", "pt-TL": "left-to-right", "rm": "left-to-right", "qu-EC": "left-to-right", "ro-MD": "left-to-right", "rn": "left-to-right", "ro": "left-to-right", "rof": "left-to-right", "ru-BY": "left-to-right", "ru": "left-to-right", "ru-KG": "left-to-right", "ru-KZ": "left-to-right", "ru-MD": "left-to-right", "ru-UA": "left-to-right", "rw": "left-to-right", "sa": "left-to-right", "rwk": "left-to-right", "sah": "left-to-right", "sat-Olck": "left-to-right", "sat": "left-to-right", "saq": "left-to-right", "sc": "left-to-right", "sd": "right-to-left", "sd-Arab": "right-to-left", "sbp": "left-to-right", "sd-Deva": "left-to-right", "se": "left-to-right", "se-SE": "left-to-right", "se-FI": "left-to-right", "seh": "left-to-right", "shi": "left-to-right", "sg": "left-to-right", "shi-Tfng": "left-to-right", "ses": "left-to-right", "si": "left-to-right", "shi-Latn": "left-to-right", "so": "left-to-right", "smn": "left-to-right", "sn": "left-to-right", "so-ET": "left-to-right", "sl": "left-to-right", "sk": "left-to-right", "so-DJ": "left-to-right", "so-KE": "left-to-right", "sq": "left-to-right", "sq-MK": "left-to-right", "sq-XK": "left-to-right", "sr-Cyrl-ME": "left-to-right", "sr": "left-to-right", "sr-Cyrl": "left-to-right", "sr-Cyrl-BA": "left-to-right", "sr-Cyrl-XK": "left-to-right", "sr-Latn-BA": "left-to-right", "sr-Latn": "left-to-right", "sr-Latn-ME": "left-to-right", "sr-Latn-XK": "left-to-right", "su": "left-to-right", "su-Latn": "left-to-right", "sv": "left-to-right", "sv-AX": "left-to-right", "sv-FI": "left-to-right", "sw": "left-to-right", "sw-CD": "left-to-right", "sw-KE": "left-to-right", "ta": "left-to-right", "ta-LK": "left-to-right", "sw-UG": "left-to-right", "ta-MY": "left-to-right", "te": "left-to-right", "ta-SG": "left-to-right", "teo": "left-to-right", "tg": "left-to-right", "teo-KE": "left-to-right", "th": "left-to-right", "ti": "left-to-right", "ti-ER": "left-to-right", "tk": "left-to-right", "to": "left-to-right", "tr": "left-to-right", "tt": "left-to-right", "tzm": "left-to-right", "ug": "right-to-left", "uk": "left-to-right", "und": "left-to-right", "tr-CY": "left-to-right", "ur-IN": "right-to-left", "twq": "left-to-right", "uz-Arab": "right-to-left", "uz-Cyrl": "left-to-right", "uz": "left-to-right", "ur": "right-to-left", "uz-Latn": "left-to-right", "vai": "left-to-right", "vai-Latn": "left-to-right", "vai-Vaii": "left-to-right", "vi": "left-to-right", "vun": "left-to-right", "wae": "left-to-right", "wo": "left-to-right", "xh": "left-to-right", "xog": "left-to-right", "yav": "left-to-right", "yi": "right-to-left", "yo": "left-to-right", "yo-BJ": "left-to-right", "yrl": "left-to-right", "yrl-CO": "left-to-right", "yrl-VE": "left-to-right", "yue": "left-to-right", "yue-Hans": "left-to-right", "yue-Hant": "left-to-right", "zh": "left-to-right", "zgh": "left-to-right", "zh-Hans-MO": "left-to-right", "zh-Hans": "left-to-right", "zu": "left-to-right", "zh-Hans-SG": "left-to-right", "zh-Hant": "left-to-right", "zh-Hant-MO": "left-to-right", "zh-Hans-HK": "left-to-right", "zh-Hant-HK": "left-to-right" };
4530
+ var characterOrders = {
4531
+ "af": "left-to-right",
4532
+ "af-NA": "left-to-right",
4533
+ "agq": "left-to-right",
4534
+ "ak": "left-to-right",
4535
+ "am": "left-to-right",
4536
+ "ar": "right-to-left",
4537
+ "ar-AE": "right-to-left",
4538
+ "ar-BH": "right-to-left",
4539
+ "ar-DJ": "right-to-left",
4540
+ "ar-DZ": "right-to-left",
4541
+ "ar-EG": "right-to-left",
4542
+ "ar-EH": "right-to-left",
4543
+ "ar-ER": "right-to-left",
4544
+ "ar-IL": "right-to-left",
4545
+ "ar-IQ": "right-to-left",
4546
+ "ar-JO": "right-to-left",
4547
+ "ar-KM": "right-to-left",
4548
+ "ar-KW": "right-to-left",
4549
+ "ar-LB": "right-to-left",
4550
+ "ar-LY": "right-to-left",
4551
+ "ar-MA": "right-to-left",
4552
+ "ar-MR": "right-to-left",
4553
+ "ar-OM": "right-to-left",
4554
+ "ar-PS": "right-to-left",
4555
+ "ar-QA": "right-to-left",
4556
+ "ar-SA": "right-to-left",
4557
+ "ar-SD": "right-to-left",
4558
+ "ar-SO": "right-to-left",
4559
+ "ar-SS": "right-to-left",
4560
+ "ar-SY": "right-to-left",
4561
+ "ar-TD": "right-to-left",
4562
+ "ar-TN": "right-to-left",
4563
+ "ar-YE": "right-to-left",
4564
+ "as": "left-to-right",
4565
+ "asa": "left-to-right",
4566
+ "ast": "left-to-right",
4567
+ "az": "left-to-right",
4568
+ "az-Cyrl": "left-to-right",
4569
+ "az-Latn": "left-to-right",
4570
+ "bas": "left-to-right",
4571
+ "be": "left-to-right",
4572
+ "be-tarask": "left-to-right",
4573
+ "bem": "left-to-right",
4574
+ "bez": "left-to-right",
4575
+ "bg": "left-to-right",
4576
+ "bm": "left-to-right",
4577
+ "bn": "left-to-right",
4578
+ "bn-IN": "left-to-right",
4579
+ "bo": "left-to-right",
4580
+ "bo-IN": "left-to-right",
4581
+ "br": "left-to-right",
4582
+ "brx": "left-to-right",
4583
+ "bs": "left-to-right",
4584
+ "bs-Cyrl": "left-to-right",
4585
+ "bs-Latn": "left-to-right",
4586
+ "ca": "left-to-right",
4587
+ "ca-AD": "left-to-right",
4588
+ "ca-ES-valencia": "left-to-right",
4589
+ "ca-FR": "left-to-right",
4590
+ "ca-IT": "left-to-right",
4591
+ "ccp": "left-to-right",
4592
+ "ccp-IN": "left-to-right",
4593
+ "ce": "left-to-right",
4594
+ "ceb": "left-to-right",
4595
+ "cgg": "left-to-right",
4596
+ "chr": "left-to-right",
4597
+ "ckb": "right-to-left",
4598
+ "ckb-IR": "right-to-left",
4599
+ "cs": "left-to-right",
4600
+ "cy": "left-to-right",
4601
+ "da": "left-to-right",
4602
+ "da-GL": "left-to-right",
4603
+ "dav": "left-to-right",
4604
+ "de": "left-to-right",
4605
+ "de-AT": "left-to-right",
4606
+ "de-BE": "left-to-right",
4607
+ "de-CH": "left-to-right",
4608
+ "de-IT": "left-to-right",
4609
+ "de-LI": "left-to-right",
4610
+ "de-LU": "left-to-right",
4611
+ "dje": "left-to-right",
4612
+ "doi": "left-to-right",
4613
+ "dsb": "left-to-right",
4614
+ "dua": "left-to-right",
4615
+ "dyo": "left-to-right",
4616
+ "dz": "left-to-right",
4617
+ "ebu": "left-to-right",
4618
+ "ee": "left-to-right",
4619
+ "ee-TG": "left-to-right",
4620
+ "el": "left-to-right",
4621
+ "el-CY": "left-to-right",
4622
+ "en": "left-to-right",
4623
+ "en-001": "left-to-right",
4624
+ "en-150": "left-to-right",
4625
+ "en-AE": "left-to-right",
4626
+ "en-AG": "left-to-right",
4627
+ "en-AI": "left-to-right",
4628
+ "en-AS": "left-to-right",
4629
+ "en-AT": "left-to-right",
4630
+ "en-AU": "left-to-right",
4631
+ "en-BB": "left-to-right",
4632
+ "en-BE": "left-to-right",
4633
+ "en-BI": "left-to-right",
4634
+ "en-BM": "left-to-right",
4635
+ "en-BS": "left-to-right",
4636
+ "en-BW": "left-to-right",
4637
+ "en-BZ": "left-to-right",
4638
+ "en-CA": "left-to-right",
4639
+ "en-CC": "left-to-right",
4640
+ "en-CH": "left-to-right",
4641
+ "en-CK": "left-to-right",
4642
+ "en-CM": "left-to-right",
4643
+ "en-CX": "left-to-right",
4644
+ "en-CY": "left-to-right",
4645
+ "en-DE": "left-to-right",
4646
+ "en-DG": "left-to-right",
4647
+ "en-DK": "left-to-right",
4648
+ "en-DM": "left-to-right",
4649
+ "en-ER": "left-to-right",
4650
+ "en-FI": "left-to-right",
4651
+ "en-FJ": "left-to-right",
4652
+ "en-FK": "left-to-right",
4653
+ "en-FM": "left-to-right",
4654
+ "en-GB": "left-to-right",
4655
+ "en-GD": "left-to-right",
4656
+ "en-GG": "left-to-right",
4657
+ "en-GH": "left-to-right",
4658
+ "en-GI": "left-to-right",
4659
+ "en-GM": "left-to-right",
4660
+ "en-GU": "left-to-right",
4661
+ "en-GY": "left-to-right",
4662
+ "en-HK": "left-to-right",
4663
+ "en-IE": "left-to-right",
4664
+ "en-IL": "left-to-right",
4665
+ "en-IM": "left-to-right",
4666
+ "en-IN": "left-to-right",
4667
+ "en-IO": "left-to-right",
4668
+ "en-JE": "left-to-right",
4669
+ "en-JM": "left-to-right",
4670
+ "en-KE": "left-to-right",
4671
+ "en-KI": "left-to-right",
4672
+ "en-KN": "left-to-right",
4673
+ "en-KY": "left-to-right",
4674
+ "en-LC": "left-to-right",
4675
+ "en-LR": "left-to-right",
4676
+ "en-LS": "left-to-right",
4677
+ "en-MG": "left-to-right",
4678
+ "en-MH": "left-to-right",
4679
+ "en-MO": "left-to-right",
4680
+ "en-MP": "left-to-right",
4681
+ "en-MS": "left-to-right",
4682
+ "en-MT": "left-to-right",
4683
+ "en-MU": "left-to-right",
4684
+ "en-MW": "left-to-right",
4685
+ "en-MY": "left-to-right",
4686
+ "en-NA": "left-to-right",
4687
+ "en-NF": "left-to-right",
4688
+ "en-NG": "left-to-right",
4689
+ "en-NL": "left-to-right",
4690
+ "en-NR": "left-to-right",
4691
+ "en-NU": "left-to-right",
4692
+ "en-NZ": "left-to-right",
4693
+ "en-PG": "left-to-right",
4694
+ "en-PH": "left-to-right",
4695
+ "en-PK": "left-to-right",
4696
+ "en-PN": "left-to-right",
4697
+ "en-PR": "left-to-right",
4698
+ "en-PW": "left-to-right",
4699
+ "en-RW": "left-to-right",
4700
+ "en-SB": "left-to-right",
4701
+ "en-SC": "left-to-right",
4702
+ "en-SD": "left-to-right",
4703
+ "en-SE": "left-to-right",
4704
+ "en-SG": "left-to-right",
4705
+ "en-SH": "left-to-right",
4706
+ "en-SI": "left-to-right",
4707
+ "en-SL": "left-to-right",
4708
+ "en-SS": "left-to-right",
4709
+ "en-SX": "left-to-right",
4710
+ "en-SZ": "left-to-right",
4711
+ "en-TC": "left-to-right",
4712
+ "en-TK": "left-to-right",
4713
+ "en-TO": "left-to-right",
4714
+ "en-TT": "left-to-right",
4715
+ "en-TV": "left-to-right",
4716
+ "en-TZ": "left-to-right",
4717
+ "en-UG": "left-to-right",
4718
+ "en-UM": "left-to-right",
4719
+ "en-VC": "left-to-right",
4720
+ "en-VG": "left-to-right",
4721
+ "en-VI": "left-to-right",
4722
+ "en-VU": "left-to-right",
4723
+ "en-WS": "left-to-right",
4724
+ "en-ZA": "left-to-right",
4725
+ "en-ZM": "left-to-right",
4726
+ "en-ZW": "left-to-right",
4727
+ "eo": "left-to-right",
4728
+ "es": "left-to-right",
4729
+ "es-419": "left-to-right",
4730
+ "es-AR": "left-to-right",
4731
+ "es-BO": "left-to-right",
4732
+ "es-BR": "left-to-right",
4733
+ "es-BZ": "left-to-right",
4734
+ "es-CL": "left-to-right",
4735
+ "es-CO": "left-to-right",
4736
+ "es-CR": "left-to-right",
4737
+ "es-CU": "left-to-right",
4738
+ "es-DO": "left-to-right",
4739
+ "es-EA": "left-to-right",
4740
+ "es-EC": "left-to-right",
4741
+ "es-GQ": "left-to-right",
4742
+ "es-GT": "left-to-right",
4743
+ "es-HN": "left-to-right",
4744
+ "es-IC": "left-to-right",
4745
+ "es-MX": "left-to-right",
4746
+ "es-NI": "left-to-right",
4747
+ "es-PA": "left-to-right",
4748
+ "es-PE": "left-to-right",
4749
+ "es-PH": "left-to-right",
4750
+ "es-PR": "left-to-right",
4751
+ "es-PY": "left-to-right",
4752
+ "es-SV": "left-to-right",
4753
+ "es-US": "left-to-right",
4754
+ "es-UY": "left-to-right",
4755
+ "es-VE": "left-to-right",
4756
+ "et": "left-to-right",
4757
+ "eu": "left-to-right",
4758
+ "ewo": "left-to-right",
4759
+ "fa": "right-to-left",
4760
+ "fa-AF": "right-to-left",
4761
+ "ff": "left-to-right",
4762
+ "ff-Adlm": "right-to-left",
4763
+ "ff-Adlm-BF": "right-to-left",
4764
+ "ff-Adlm-CM": "right-to-left",
4765
+ "ff-Adlm-GH": "right-to-left",
4766
+ "ff-Adlm-GM": "right-to-left",
4767
+ "ff-Adlm-GW": "right-to-left",
4768
+ "ff-Adlm-LR": "right-to-left",
4769
+ "ff-Adlm-MR": "right-to-left",
4770
+ "ff-Adlm-NE": "right-to-left",
4771
+ "ff-Adlm-NG": "right-to-left",
4772
+ "ff-Adlm-SL": "right-to-left",
4773
+ "ff-Adlm-SN": "right-to-left",
4774
+ "ff-Latn": "left-to-right",
4775
+ "ff-Latn-BF": "left-to-right",
4776
+ "ff-Latn-CM": "left-to-right",
4777
+ "ff-Latn-GH": "left-to-right",
4778
+ "ff-Latn-GM": "left-to-right",
4779
+ "ff-Latn-GN": "left-to-right",
4780
+ "ff-Latn-GW": "left-to-right",
4781
+ "ff-Latn-LR": "left-to-right",
4782
+ "ff-Latn-MR": "left-to-right",
4783
+ "ff-Latn-NE": "left-to-right",
4784
+ "ff-Latn-NG": "left-to-right",
4785
+ "ff-Latn-SL": "left-to-right",
4786
+ "fi": "left-to-right",
4787
+ "fil": "left-to-right",
4788
+ "fo": "left-to-right",
4789
+ "fo-DK": "left-to-right",
4790
+ "fr": "left-to-right",
4791
+ "fr-BE": "left-to-right",
4792
+ "fr-BF": "left-to-right",
4793
+ "fr-BI": "left-to-right",
4794
+ "fr-BJ": "left-to-right",
4795
+ "fr-BL": "left-to-right",
4796
+ "fr-CA": "left-to-right",
4797
+ "fr-CD": "left-to-right",
4798
+ "fr-CF": "left-to-right",
4799
+ "fr-CG": "left-to-right",
4800
+ "fr-CH": "left-to-right",
4801
+ "fr-CI": "left-to-right",
4802
+ "fr-CM": "left-to-right",
4803
+ "fr-DJ": "left-to-right",
4804
+ "fr-DZ": "left-to-right",
4805
+ "fr-GA": "left-to-right",
4806
+ "fr-GF": "left-to-right",
4807
+ "fr-GN": "left-to-right",
4808
+ "fr-GP": "left-to-right",
4809
+ "fr-GQ": "left-to-right",
4810
+ "fr-HT": "left-to-right",
4811
+ "fr-KM": "left-to-right",
4812
+ "fr-LU": "left-to-right",
4813
+ "fr-MA": "left-to-right",
4814
+ "fr-MC": "left-to-right",
4815
+ "fr-MF": "left-to-right",
4816
+ "fr-MG": "left-to-right",
4817
+ "fr-ML": "left-to-right",
4818
+ "fr-MQ": "left-to-right",
4819
+ "fr-MR": "left-to-right",
4820
+ "fr-MU": "left-to-right",
4821
+ "fr-NC": "left-to-right",
4822
+ "fr-NE": "left-to-right",
4823
+ "fr-PF": "left-to-right",
4824
+ "fr-PM": "left-to-right",
4825
+ "fr-RE": "left-to-right",
4826
+ "fr-RW": "left-to-right",
4827
+ "fr-SC": "left-to-right",
4828
+ "fr-SN": "left-to-right",
4829
+ "fr-SY": "left-to-right",
4830
+ "fr-TD": "left-to-right",
4831
+ "fr-TG": "left-to-right",
4832
+ "fr-TN": "left-to-right",
4833
+ "fr-VU": "left-to-right",
4834
+ "fr-WF": "left-to-right",
4835
+ "fr-YT": "left-to-right",
4836
+ "fur": "left-to-right",
4837
+ "fy": "left-to-right",
4838
+ "ga": "left-to-right",
4839
+ "ga-GB": "left-to-right",
4840
+ "gd": "left-to-right",
4841
+ "gl": "left-to-right",
4842
+ "gsw": "left-to-right",
4843
+ "gsw-FR": "left-to-right",
4844
+ "gsw-LI": "left-to-right",
4845
+ "gu": "left-to-right",
4846
+ "guz": "left-to-right",
4847
+ "gv": "left-to-right",
4848
+ "ha": "left-to-right",
4849
+ "ha-GH": "left-to-right",
4850
+ "ha-NE": "left-to-right",
4851
+ "haw": "left-to-right",
4852
+ "he": "right-to-left",
4853
+ "hi": "left-to-right",
4854
+ "hr": "left-to-right",
4855
+ "hr-BA": "left-to-right",
4856
+ "hsb": "left-to-right",
4857
+ "hu": "left-to-right",
4858
+ "hy": "left-to-right",
4859
+ "ia": "left-to-right",
4860
+ "id": "left-to-right",
4861
+ "ig": "left-to-right",
4862
+ "ii": "left-to-right",
4863
+ "is": "left-to-right",
4864
+ "it": "left-to-right",
4865
+ "it-CH": "left-to-right",
4866
+ "it-SM": "left-to-right",
4867
+ "it-VA": "left-to-right",
4868
+ "ja": "left-to-right",
4869
+ "jgo": "left-to-right",
4870
+ "jmc": "left-to-right",
4871
+ "jv": "left-to-right",
4872
+ "ka": "left-to-right",
4873
+ "kab": "left-to-right",
4874
+ "kam": "left-to-right",
4875
+ "kde": "left-to-right",
4876
+ "kea": "left-to-right",
4877
+ "kgp": "left-to-right",
4878
+ "khq": "left-to-right",
4879
+ "ki": "left-to-right",
4880
+ "kk": "left-to-right",
4881
+ "kkj": "left-to-right",
4882
+ "kl": "left-to-right",
4883
+ "kln": "left-to-right",
4884
+ "km": "left-to-right",
4885
+ "kn": "left-to-right",
4886
+ "ko": "left-to-right",
4887
+ "ko-KP": "left-to-right",
4888
+ "kok": "left-to-right",
4889
+ "ks": "right-to-left",
4890
+ "ks-Arab": "right-to-left",
4891
+ "ksb": "left-to-right",
4892
+ "ksf": "left-to-right",
4893
+ "ksh": "left-to-right",
4894
+ "ku": "left-to-right",
4895
+ "kw": "left-to-right",
4896
+ "ky": "left-to-right",
4897
+ "lag": "left-to-right",
4898
+ "lb": "left-to-right",
4899
+ "lg": "left-to-right",
4900
+ "lkt": "left-to-right",
4901
+ "ln": "left-to-right",
4902
+ "ln-AO": "left-to-right",
4903
+ "ln-CF": "left-to-right",
4904
+ "ln-CG": "left-to-right",
4905
+ "lo": "left-to-right",
4906
+ "lrc": "right-to-left",
4907
+ "lrc-IQ": "right-to-left",
4908
+ "lt": "left-to-right",
4909
+ "lu": "left-to-right",
4910
+ "luo": "left-to-right",
4911
+ "luy": "left-to-right",
4912
+ "lv": "left-to-right",
4913
+ "mai": "left-to-right",
4914
+ "mas": "left-to-right",
4915
+ "mas-TZ": "left-to-right",
4916
+ "mer": "left-to-right",
4917
+ "mfe": "left-to-right",
4918
+ "mg": "left-to-right",
4919
+ "mgh": "left-to-right",
4920
+ "mgo": "left-to-right",
4921
+ "mi": "left-to-right",
4922
+ "mk": "left-to-right",
4923
+ "ml": "left-to-right",
4924
+ "mn": "left-to-right",
4925
+ "mni": "left-to-right",
4926
+ "mni-Beng": "left-to-right",
4927
+ "mr": "left-to-right",
4928
+ "ms": "left-to-right",
4929
+ "ms-BN": "left-to-right",
4930
+ "ms-ID": "left-to-right",
4931
+ "ms-SG": "left-to-right",
4932
+ "mt": "left-to-right",
4933
+ "mua": "left-to-right",
4934
+ "my": "left-to-right",
4935
+ "mzn": "right-to-left",
4936
+ "naq": "left-to-right",
4937
+ "nb": "left-to-right",
4938
+ "nb-SJ": "left-to-right",
4939
+ "nd": "left-to-right",
4940
+ "nds": "left-to-right",
4941
+ "nds-NL": "left-to-right",
4942
+ "ne": "left-to-right",
4943
+ "ne-IN": "left-to-right",
4944
+ "nl": "left-to-right",
4945
+ "nl-AW": "left-to-right",
4946
+ "nl-BE": "left-to-right",
4947
+ "nl-BQ": "left-to-right",
4948
+ "nl-CW": "left-to-right",
4949
+ "nl-SR": "left-to-right",
4950
+ "nl-SX": "left-to-right",
4951
+ "nmg": "left-to-right",
4952
+ "nn": "left-to-right",
4953
+ "nnh": "left-to-right",
4954
+ "no": "left-to-right",
4955
+ "nus": "left-to-right",
4956
+ "nyn": "left-to-right",
4957
+ "om": "left-to-right",
4958
+ "om-KE": "left-to-right",
4959
+ "or": "left-to-right",
4960
+ "os": "left-to-right",
4961
+ "os-RU": "left-to-right",
4962
+ "pa": "left-to-right",
4963
+ "pa-Arab": "right-to-left",
4964
+ "pa-Guru": "left-to-right",
4965
+ "pcm": "left-to-right",
4966
+ "pl": "left-to-right",
4967
+ "ps": "right-to-left",
4968
+ "ps-PK": "right-to-left",
4969
+ "pt": "left-to-right",
4970
+ "pt-AO": "left-to-right",
4971
+ "pt-CH": "left-to-right",
4972
+ "pt-CV": "left-to-right",
4973
+ "pt-GQ": "left-to-right",
4974
+ "pt-GW": "left-to-right",
4975
+ "pt-LU": "left-to-right",
4976
+ "pt-MO": "left-to-right",
4977
+ "pt-MZ": "left-to-right",
4978
+ "pt-PT": "left-to-right",
4979
+ "pt-ST": "left-to-right",
4980
+ "pt-TL": "left-to-right",
4981
+ "qu": "left-to-right",
4982
+ "qu-BO": "left-to-right",
4983
+ "qu-EC": "left-to-right",
4984
+ "rm": "left-to-right",
4985
+ "rn": "left-to-right",
4986
+ "ro": "left-to-right",
4987
+ "ro-MD": "left-to-right",
4988
+ "rof": "left-to-right",
4989
+ "ru": "left-to-right",
4990
+ "ru-BY": "left-to-right",
4991
+ "ru-KG": "left-to-right",
4992
+ "ru-KZ": "left-to-right",
4993
+ "ru-MD": "left-to-right",
4994
+ "ru-UA": "left-to-right",
4995
+ "rw": "left-to-right",
4996
+ "rwk": "left-to-right",
4997
+ "sa": "left-to-right",
4998
+ "sah": "left-to-right",
4999
+ "saq": "left-to-right",
5000
+ "sat": "left-to-right",
5001
+ "sat-Olck": "left-to-right",
5002
+ "sbp": "left-to-right",
5003
+ "sc": "left-to-right",
5004
+ "sd": "right-to-left",
5005
+ "sd-Arab": "right-to-left",
5006
+ "sd-Deva": "left-to-right",
5007
+ "se": "left-to-right",
5008
+ "se-FI": "left-to-right",
5009
+ "se-SE": "left-to-right",
5010
+ "seh": "left-to-right",
5011
+ "ses": "left-to-right",
5012
+ "sg": "left-to-right",
5013
+ "shi": "left-to-right",
5014
+ "shi-Latn": "left-to-right",
5015
+ "shi-Tfng": "left-to-right",
5016
+ "si": "left-to-right",
5017
+ "sk": "left-to-right",
5018
+ "sl": "left-to-right",
5019
+ "smn": "left-to-right",
5020
+ "sn": "left-to-right",
5021
+ "so": "left-to-right",
5022
+ "so-DJ": "left-to-right",
5023
+ "so-ET": "left-to-right",
5024
+ "so-KE": "left-to-right",
5025
+ "sq": "left-to-right",
5026
+ "sq-MK": "left-to-right",
5027
+ "sq-XK": "left-to-right",
5028
+ "sr": "left-to-right",
5029
+ "sr-Cyrl": "left-to-right",
5030
+ "sr-Cyrl-BA": "left-to-right",
5031
+ "sr-Cyrl-ME": "left-to-right",
5032
+ "sr-Cyrl-XK": "left-to-right",
5033
+ "sr-Latn": "left-to-right",
5034
+ "sr-Latn-BA": "left-to-right",
5035
+ "sr-Latn-ME": "left-to-right",
5036
+ "sr-Latn-XK": "left-to-right",
5037
+ "su": "left-to-right",
5038
+ "su-Latn": "left-to-right",
5039
+ "sv": "left-to-right",
5040
+ "sv-AX": "left-to-right",
5041
+ "sv-FI": "left-to-right",
5042
+ "sw": "left-to-right",
5043
+ "sw-CD": "left-to-right",
5044
+ "sw-KE": "left-to-right",
5045
+ "sw-UG": "left-to-right",
5046
+ "ta": "left-to-right",
5047
+ "ta-LK": "left-to-right",
5048
+ "ta-MY": "left-to-right",
5049
+ "ta-SG": "left-to-right",
5050
+ "te": "left-to-right",
5051
+ "teo": "left-to-right",
5052
+ "teo-KE": "left-to-right",
5053
+ "tg": "left-to-right",
5054
+ "th": "left-to-right",
5055
+ "ti": "left-to-right",
5056
+ "ti-ER": "left-to-right",
5057
+ "tk": "left-to-right",
5058
+ "to": "left-to-right",
5059
+ "tr": "left-to-right",
5060
+ "tr-CY": "left-to-right",
5061
+ "tt": "left-to-right",
5062
+ "twq": "left-to-right",
5063
+ "tzm": "left-to-right",
5064
+ "ug": "right-to-left",
5065
+ "uk": "left-to-right",
5066
+ "und": "left-to-right",
5067
+ "ur": "right-to-left",
5068
+ "ur-IN": "right-to-left",
5069
+ "uz": "left-to-right",
5070
+ "uz-Arab": "right-to-left",
5071
+ "uz-Cyrl": "left-to-right",
5072
+ "uz-Latn": "left-to-right",
5073
+ "vai": "left-to-right",
5074
+ "vai-Latn": "left-to-right",
5075
+ "vai-Vaii": "left-to-right",
5076
+ "vi": "left-to-right",
5077
+ "vun": "left-to-right",
5078
+ "wae": "left-to-right",
5079
+ "wo": "left-to-right",
5080
+ "xh": "left-to-right",
5081
+ "xog": "left-to-right",
5082
+ "yav": "left-to-right",
5083
+ "yi": "right-to-left",
5084
+ "yo": "left-to-right",
5085
+ "yo-BJ": "left-to-right",
5086
+ "yrl": "left-to-right",
5087
+ "yrl-CO": "left-to-right",
5088
+ "yrl-VE": "left-to-right",
5089
+ "yue": "left-to-right",
5090
+ "yue-Hans": "left-to-right",
5091
+ "yue-Hant": "left-to-right",
5092
+ "zgh": "left-to-right",
5093
+ "zh": "left-to-right",
5094
+ "zh-Hans": "left-to-right",
5095
+ "zh-Hans-HK": "left-to-right",
5096
+ "zh-Hans-MO": "left-to-right",
5097
+ "zh-Hans-SG": "left-to-right",
5098
+ "zh-Hant": "left-to-right",
5099
+ "zh-Hant-HK": "left-to-right",
5100
+ "zh-Hant-MO": "left-to-right",
5101
+ "zu": "left-to-right"
5102
+ };
4581
5103
 
4582
5104
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/numbering-systems.generated.js
4583
- var numberingSystems = { "af": ["latn"], "agq": ["latn"], "af-NA": ["latn"], "am": ["latn", "ethi"], "ar": ["arab"], "ar-BH": ["arab"], "ar-AE": ["latn", "arab"], "ar-DJ": ["arab"], "ak": ["latn"], "ar-DZ": ["latn", "arab"], "ar-EG": ["arab"], "ar-ER": ["arab"], "ar-EH": ["latn", "arab"], "ar-IQ": ["arab"], "ar-JO": ["arab"], "ar-IL": ["arab"], "ar-KW": ["arab"], "ar-MR": ["arab"], "ar-LY": ["latn", "arab"], "ar-OM": ["arab"], "ar-SO": ["arab"], "ar-LB": ["arab"], "ar-QA": ["arab"], "ar-SA": ["arab"], "ar-SD": ["arab"], "ar-SY": ["arab"], "ar-MA": ["latn", "arab"], "ar-TN": ["latn", "arab"], "ar-PS": ["arab"], "ar-TD": ["arab"], "ar-SS": ["arab"], "ar-KM": ["arab"], "asa": ["latn"], "as": ["beng"], "az-Cyrl": ["latn"], "bem": ["latn"], "bg": ["latn"], "ar-YE": ["arab"], "bez": ["latn"], "ast": ["latn"], "bas": ["latn"], "bm": ["latn"], "be-tarask": ["latn"], "az-Latn": ["latn"], "az": ["latn"], "be": ["latn"], "bn": ["beng"], "bn-IN": ["beng"], "bo": ["latn", "tibt"], "br": ["latn"], "ca": ["latn"], "ca-AD": ["latn"], "brx": ["latn", "deva"], "bo-IN": ["latn", "tibt"], "ca-FR": ["latn"], "bs-Latn": ["latn"], "ca-ES-valencia": ["latn"], "bs": ["latn"], "bs-Cyrl": ["latn"], "ccp": ["cakm"], "ccp-IN": ["cakm"], "ce": ["latn"], "ceb": ["latn"], "ca-IT": ["latn"], "chr": ["latn"], "cgg": ["latn"], "da": ["latn"], "cs": ["latn"], "dav": ["latn"], "da-GL": ["latn"], "ckb-IR": ["arab"], "ckb": ["arab"], "cy": ["latn"], "de-AT": ["latn"], "de-CH": ["latn"], "de": ["latn"], "de-BE": ["latn"], "de-IT": ["latn"], "de-LI": ["latn"], "de-LU": ["latn"], "doi": ["latn", "deva"], "dje": ["latn"], "dsb": ["latn"], "dua": ["latn"], "dyo": ["latn"], "ee": ["latn"], "dz": ["tibt"], "ebu": ["latn"], "ee-TG": ["latn"], "el": ["latn", "grek"], "el-CY": ["latn", "grek"], "en": ["latn"], "en-001": ["latn"], "en-150": ["latn"], "en-AE": ["latn"], "en-AG": ["latn"], "en-AI": ["latn"], "en-AS": ["latn"], "en-BB": ["latn"], "en-AU": ["latn"], "en-BE": ["latn"], "en-BI": ["latn"], "en-AT": ["latn"], "en-BM": ["latn"], "en-BS": ["latn"], "en-CA": ["latn"], "en-BW": ["latn"], "en-BZ": ["latn"], "en-CH": ["latn"], "en-CC": ["latn"], "en-CK": ["latn"], "en-CM": ["latn"], "en-CY": ["latn"], "en-CX": ["latn"], "en-ER": ["latn"], "en-DM": ["latn"], "en-DE": ["latn"], "en-DG": ["latn"], "en-DK": ["latn"], "en-FJ": ["latn"], "en-GB": ["latn"], "en-FM": ["latn"], "en-FK": ["latn"], "en-FI": ["latn"], "en-GG": ["latn"], "en-GD": ["latn"], "en-GH": ["latn"], "en-GI": ["latn"], "en-GM": ["latn"], "en-GU": ["latn"], "en-GY": ["latn"], "en-HK": ["latn"], "en-IL": ["latn"], "en-IE": ["latn"], "en-IM": ["latn"], "en-IN": ["latn"], "en-JE": ["latn"], "en-JM": ["latn"], "en-IO": ["latn"], "en-KE": ["latn"], "en-KI": ["latn"], "en-KN": ["latn"], "en-KY": ["latn"], "en-LC": ["latn"], "en-LS": ["latn"], "en-LR": ["latn"], "en-MG": ["latn"], "en-MH": ["latn"], "en-MO": ["latn"], "en-MP": ["latn"], "en-MS": ["latn"], "en-MT": ["latn"], "en-MU": ["latn"], "en-MY": ["latn"], "en-MW": ["latn"], "en-NA": ["latn"], "en-NF": ["latn"], "en-NG": ["latn"], "en-NL": ["latn"], "en-NR": ["latn"], "en-NU": ["latn"], "en-PK": ["latn"], "en-PR": ["latn"], "en-PG": ["latn"], "en-PN": ["latn"], "en-SC": ["latn"], "en-PH": ["latn"], "en-PW": ["latn"], "en-NZ": ["latn"], "en-SB": ["latn"], "en-RW": ["latn"], "en-SD": ["latn"], "en-SE": ["latn"], "en-SG": ["latn"], "en-SH": ["latn"], "en-SI": ["latn"], "en-SL": ["latn"], "en-SX": ["latn"], "en-TK": ["latn"], "en-TT": ["latn"], "en-TO": ["latn"], "en-SZ": ["latn"], "en-TC": ["latn"], "en-TZ": ["latn"], "en-SS": ["latn"], "en-UG": ["latn"], "en-UM": ["latn"], "en-TV": ["latn"], "en-VC": ["latn"], "en-VG": ["latn"], "en-VI": ["latn"], "en-VU": ["latn"], "en-WS": ["latn"], "en-ZA": ["latn"], "en-ZM": ["latn"], "en-ZW": ["latn"], "eo": ["latn"], "es": ["latn"], "es-419": ["latn"], "es-AR": ["latn"], "es-BO": ["latn"], "es-BR": ["latn"], "es-BZ": ["latn"], "es-CL": ["latn"], "es-CO": ["latn"], "es-CR": ["latn"], "es-CU": ["latn"], "es-DO": ["latn"], "es-EA": ["latn"], "es-EC": ["latn"], "es-GQ": ["latn"], "es-HN": ["latn"], "es-GT": ["latn"], "es-IC": ["latn"], "es-MX": ["latn"], "es-NI": ["latn"], "es-PE": ["latn"], "es-PA": ["latn"], "es-PH": ["latn"], "es-PR": ["latn"], "es-PY": ["latn"], "es-SV": ["latn"], "es-US": ["latn"], "es-UY": ["latn"], "eu": ["latn"], "et": ["latn"], "ewo": ["latn"], "es-VE": ["latn"], "fa-AF": ["arabext"], "fa": ["arabext"], "ff-Adlm": ["adlm"], "ff": ["latn"], "ff-Adlm-CM": ["adlm"], "ff-Adlm-BF": ["adlm"], "ff-Adlm-GH": ["adlm"], "ff-Adlm-GM": ["adlm"], "ff-Adlm-GW": ["adlm"], "ff-Adlm-LR": ["adlm"], "ff-Adlm-MR": ["adlm"], "ff-Adlm-NE": ["adlm"], "ff-Adlm-NG": ["adlm"], "ff-Adlm-SL": ["adlm"], "ff-Latn-BF": ["latn"], "ff-Adlm-SN": ["adlm"], "ff-Latn-CM": ["latn"], "ff-Latn-GM": ["latn"], "ff-Latn-GH": ["latn"], "ff-Latn": ["latn"], "ff-Latn-GN": ["latn"], "ff-Latn-GW": ["latn"], "ff-Latn-LR": ["latn"], "ff-Latn-MR": ["latn"], "ff-Latn-NE": ["latn"], "ff-Latn-NG": ["latn"], "ff-Latn-SL": ["latn"], "fi": ["latn"], "fil": ["latn"], "fo-DK": ["latn"], "fo": ["latn"], "fr": ["latn"], "fr-BE": ["latn"], "fr-BF": ["latn"], "fr-BI": ["latn"], "fr-BJ": ["latn"], "fr-BL": ["latn"], "fr-CA": ["latn"], "fr-CD": ["latn"], "fr-CF": ["latn"], "fr-CG": ["latn"], "fr-CH": ["latn"], "fr-CI": ["latn"], "fr-CM": ["latn"], "fr-DJ": ["latn"], "fr-DZ": ["latn"], "fr-GA": ["latn"], "fr-GF": ["latn"], "fr-GN": ["latn"], "fr-GP": ["latn"], "fr-GQ": ["latn"], "fr-HT": ["latn"], "fr-KM": ["latn"], "fr-LU": ["latn"], "fr-MA": ["latn"], "fr-MC": ["latn"], "fr-MF": ["latn"], "fr-MG": ["latn"], "fr-ML": ["latn"], "fr-MQ": ["latn"], "fr-MU": ["latn"], "fr-MR": ["latn"], "fr-NC": ["latn"], "fr-NE": ["latn"], "fr-PF": ["latn"], "fr-RE": ["latn"], "fr-PM": ["latn"], "fr-RW": ["latn"], "fr-SC": ["latn"], "fr-SN": ["latn"], "fr-TD": ["latn"], "fr-SY": ["latn"], "fr-TG": ["latn"], "fr-TN": ["latn"], "fr-VU": ["latn"], "fr-WF": ["latn"], "fr-YT": ["latn"], "fur": ["latn"], "fy": ["latn"], "ga-GB": ["latn"], "ga": ["latn"], "gd": ["latn"], "gl": ["latn"], "gsw": ["latn"], "gsw-FR": ["latn"], "gsw-LI": ["latn"], "guz": ["latn"], "gu": ["latn", "gujr"], "gv": ["latn"], "ha-GH": ["latn"], "ha": ["latn"], "ha-NE": ["latn"], "haw": ["latn"], "he": ["latn", "hebr"], "hr-BA": ["latn"], "hi": ["latn", "deva"], "hr": ["latn"], "hsb": ["latn"], "hu": ["latn"], "hy": ["latn", "armn"], "id": ["latn"], "ia": ["latn"], "ig": ["latn"], "ii": ["latn"], "is": ["latn"], "it": ["latn"], "it-CH": ["latn"], "it-SM": ["latn"], "it-VA": ["latn"], "ja": ["latn", "jpan", "jpanfin"], "jgo": ["latn"], "jmc": ["latn"], "ka": ["latn", "geor"], "jv": ["latn", "java"], "kab": ["latn"], "kam": ["latn"], "kde": ["latn"], "kea": ["latn"], "kgp": ["latn"], "khq": ["latn"], "ki": ["latn"], "kk": ["latn"], "kkj": ["latn"], "kl": ["latn"], "kln": ["latn"], "km": ["latn", "khmr"], "kok": ["latn", "deva"], "ko": ["latn"], "ks-Arab": ["arabext"], "ks": ["arabext"], "ko-KP": ["latn"], "kn": ["latn", "knda"], "ksb": ["latn"], "ksf": ["latn"], "ksh": ["latn"], "ku": ["latn"], "kw": ["latn"], "ky": ["latn"], "lag": ["latn"], "lb": ["latn"], "lg": ["latn"], "lkt": ["latn"], "ln": ["latn"], "ln-AO": ["latn"], "ln-CF": ["latn"], "lo": ["latn", "laoo"], "ln-CG": ["latn"], "lrc": ["arabext"], "lt": ["latn"], "lrc-IQ": ["arabext"], "lu": ["latn"], "luo": ["latn"], "luy": ["latn"], "mai": ["latn", "deva"], "lv": ["latn"], "mas": ["latn"], "mas-TZ": ["latn"], "mer": ["latn"], "mg": ["latn"], "mfe": ["latn"], "mgh": ["latn"], "mgo": ["latn"], "mi": ["latn"], "mk": ["latn"], "mn": ["latn"], "mni": ["beng", "latn"], "ml": ["latn", "mlym"], "mni-Beng": ["beng", "latn"], "mr": ["deva"], "ms": ["latn"], "ms-BN": ["latn"], "ms-ID": ["latn"], "ms-SG": ["latn"], "mt": ["latn"], "mua": ["latn"], "my": ["mymr"], "mzn": ["arabext"], "nb": ["latn"], "naq": ["latn"], "nb-SJ": ["latn"], "nd": ["latn"], "nds-NL": ["latn"], "nds": ["latn"], "ne": ["deva"], "ne-IN": ["deva"], "nl": ["latn"], "nl-AW": ["latn"], "nl-BE": ["latn"], "nl-BQ": ["latn"], "nl-CW": ["latn"], "nl-SR": ["latn"], "nmg": ["latn"], "nl-SX": ["latn"], "nn": ["latn"], "no": ["latn"], "nnh": ["latn"], "nus": ["latn"], "om": ["latn", "ethi"], "nyn": ["latn"], "om-KE": ["latn", "ethi"], "or": ["latn", "orya"], "os-RU": ["latn"], "os": ["latn"], "pa": ["latn", "guru"], "pa-Guru": ["latn", "guru"], "pa-Arab": ["arabext"], "pcm": ["latn"], "pl": ["latn"], "ps": ["arabext"], "ps-PK": ["arabext"], "pt": ["latn"], "pt-CH": ["latn"], "pt-AO": ["latn"], "pt-CV": ["latn"], "pt-GQ": ["latn"], "pt-GW": ["latn"], "pt-LU": ["latn"], "pt-MO": ["latn"], "pt-MZ": ["latn"], "pt-PT": ["latn"], "pt-ST": ["latn"], "pt-TL": ["latn"], "qu-EC": ["latn"], "qu-BO": ["latn"], "rm": ["latn"], "qu": ["latn"], "rn": ["latn"], "ro": ["latn"], "ro-MD": ["latn"], "rof": ["latn"], "ru": ["latn"], "ru-BY": ["latn"], "ru-KG": ["latn"], "ru-MD": ["latn"], "ru-KZ": ["latn"], "ru-UA": ["latn"], "rw": ["latn"], "rwk": ["latn"], "sa": ["deva"], "sat": ["olck", "latn"], "saq": ["latn"], "sah": ["latn"], "sat-Olck": ["olck", "latn"], "sc": ["latn"], "sd": ["arab"], "sbp": ["latn"], "sd-Arab": ["arab"], "sd-Deva": ["latn"], "se": ["latn"], "se-FI": ["latn"], "se-SE": ["latn"], "seh": ["latn"], "ses": ["latn"], "sg": ["latn"], "shi": ["latn"], "shi-Latn": ["latn"], "shi-Tfng": ["latn"], "si": ["latn"], "sk": ["latn"], "sn": ["latn"], "sl": ["latn"], "smn": ["latn"], "so": ["latn"], "so-DJ": ["latn"], "so-ET": ["latn"], "sq": ["latn"], "so-KE": ["latn"], "sq-MK": ["latn"], "sr-Cyrl-BA": ["latn"], "sr-Latn": ["latn"], "sr-Cyrl": ["latn"], "sr-Latn-ME": ["latn"], "sr-Latn-BA": ["latn"], "sq-XK": ["latn"], "sr": ["latn"], "sr-Cyrl-XK": ["latn"], "sr-Cyrl-ME": ["latn"], "sr-Latn-XK": ["latn"], "sv": ["latn"], "su": ["latn"], "su-Latn": ["latn"], "sv-FI": ["latn"], "sv-AX": ["latn"], "sw": ["latn"], "sw-CD": ["latn"], "sw-KE": ["latn"], "ta": ["latn", "tamldec", "taml"], "ta-LK": ["latn", "tamldec", "taml"], "sw-UG": ["latn"], "ta-MY": ["latn", "tamldec", "taml"], "ta-SG": ["latn", "tamldec", "taml"], "te": ["latn", "telu"], "teo": ["latn"], "teo-KE": ["latn"], "tg": ["latn"], "th": ["latn", "thai"], "ti": ["latn", "ethi"], "ti-ER": ["latn", "ethi"], "tk": ["latn"], "tr-CY": ["latn"], "tt": ["latn"], "ug": ["latn", "arabext"], "tr": ["latn"], "tzm": ["latn"], "twq": ["latn"], "to": ["latn"], "uk": ["latn"], "ur": ["latn", "arabext"], "ur-IN": ["arabext"], "uz": ["latn"], "uz-Arab": ["arabext"], "und": ["latn"], "uz-Latn": ["latn"], "vai": ["latn", "vaii"], "uz-Cyrl": ["latn"], "vai-Latn": ["latn", "vaii"], "vai-Vaii": ["latn", "vaii"], "vun": ["latn"], "wae": ["latn"], "vi": ["latn"], "xh": ["latn"], "wo": ["latn"], "xog": ["latn"], "yav": ["latn"], "yi": ["latn", "hebr"], "yrl": ["latn"], "yo-BJ": ["latn"], "yo": ["latn"], "yrl-VE": ["latn"], "yrl-CO": ["latn"], "yue": ["latn", "hanidec", "hant", "hantfin"], "yue-Hans": ["latn", "hanidec", "hans", "hansfin"], "zh": ["latn", "hanidec", "hans", "hansfin"], "zh-Hans": ["latn", "hanidec", "hans", "hansfin"], "yue-Hant": ["latn", "hanidec", "hant", "hantfin"], "zgh": ["latn"], "zh-Hans-HK": ["latn", "hanidec", "hans", "hansfin"], "zh-Hans-MO": ["latn", "hanidec", "hans", "hansfin"], "zh-Hans-SG": ["latn", "hanidec", "hans", "hansfin"], "zh-Hant-HK": ["latn", "hanidec", "hant", "hantfin"], "zh-Hant-MO": ["latn", "hanidec", "hant", "hantfin"], "zh-Hant": ["latn", "hanidec", "hant", "hantfin"], "zu": ["latn"] };
5105
+ var numberingSystems = {
5106
+ "af": [
5107
+ "latn"
5108
+ ],
5109
+ "af-NA": [
5110
+ "latn"
5111
+ ],
5112
+ "agq": [
5113
+ "latn"
5114
+ ],
5115
+ "ak": [
5116
+ "latn"
5117
+ ],
5118
+ "am": [
5119
+ "latn",
5120
+ "ethi"
5121
+ ],
5122
+ "ar": [
5123
+ "arab"
5124
+ ],
5125
+ "ar-AE": [
5126
+ "latn",
5127
+ "arab"
5128
+ ],
5129
+ "ar-BH": [
5130
+ "arab"
5131
+ ],
5132
+ "ar-DJ": [
5133
+ "arab"
5134
+ ],
5135
+ "ar-DZ": [
5136
+ "latn",
5137
+ "arab"
5138
+ ],
5139
+ "ar-EG": [
5140
+ "arab"
5141
+ ],
5142
+ "ar-EH": [
5143
+ "latn",
5144
+ "arab"
5145
+ ],
5146
+ "ar-ER": [
5147
+ "arab"
5148
+ ],
5149
+ "ar-IL": [
5150
+ "arab"
5151
+ ],
5152
+ "ar-IQ": [
5153
+ "arab"
5154
+ ],
5155
+ "ar-JO": [
5156
+ "arab"
5157
+ ],
5158
+ "ar-KM": [
5159
+ "arab"
5160
+ ],
5161
+ "ar-KW": [
5162
+ "arab"
5163
+ ],
5164
+ "ar-LB": [
5165
+ "arab"
5166
+ ],
5167
+ "ar-LY": [
5168
+ "latn",
5169
+ "arab"
5170
+ ],
5171
+ "ar-MA": [
5172
+ "latn",
5173
+ "arab"
5174
+ ],
5175
+ "ar-MR": [
5176
+ "arab"
5177
+ ],
5178
+ "ar-OM": [
5179
+ "arab"
5180
+ ],
5181
+ "ar-PS": [
5182
+ "arab"
5183
+ ],
5184
+ "ar-QA": [
5185
+ "arab"
5186
+ ],
5187
+ "ar-SA": [
5188
+ "arab"
5189
+ ],
5190
+ "ar-SD": [
5191
+ "arab"
5192
+ ],
5193
+ "ar-SO": [
5194
+ "arab"
5195
+ ],
5196
+ "ar-SS": [
5197
+ "arab"
5198
+ ],
5199
+ "ar-SY": [
5200
+ "arab"
5201
+ ],
5202
+ "ar-TD": [
5203
+ "arab"
5204
+ ],
5205
+ "ar-TN": [
5206
+ "latn",
5207
+ "arab"
5208
+ ],
5209
+ "ar-YE": [
5210
+ "arab"
5211
+ ],
5212
+ "as": [
5213
+ "beng"
5214
+ ],
5215
+ "asa": [
5216
+ "latn"
5217
+ ],
5218
+ "ast": [
5219
+ "latn"
5220
+ ],
5221
+ "az": [
5222
+ "latn"
5223
+ ],
5224
+ "az-Cyrl": [
5225
+ "latn"
5226
+ ],
5227
+ "az-Latn": [
5228
+ "latn"
5229
+ ],
5230
+ "bas": [
5231
+ "latn"
5232
+ ],
5233
+ "be": [
5234
+ "latn"
5235
+ ],
5236
+ "be-tarask": [
5237
+ "latn"
5238
+ ],
5239
+ "bem": [
5240
+ "latn"
5241
+ ],
5242
+ "bez": [
5243
+ "latn"
5244
+ ],
5245
+ "bg": [
5246
+ "latn"
5247
+ ],
5248
+ "bm": [
5249
+ "latn"
5250
+ ],
5251
+ "bn": [
5252
+ "beng"
5253
+ ],
5254
+ "bn-IN": [
5255
+ "beng"
5256
+ ],
5257
+ "bo": [
5258
+ "latn",
5259
+ "tibt"
5260
+ ],
5261
+ "bo-IN": [
5262
+ "latn",
5263
+ "tibt"
5264
+ ],
5265
+ "br": [
5266
+ "latn"
5267
+ ],
5268
+ "brx": [
5269
+ "latn",
5270
+ "deva"
5271
+ ],
5272
+ "bs": [
5273
+ "latn"
5274
+ ],
5275
+ "bs-Cyrl": [
5276
+ "latn"
5277
+ ],
5278
+ "bs-Latn": [
5279
+ "latn"
5280
+ ],
5281
+ "ca": [
5282
+ "latn"
5283
+ ],
5284
+ "ca-AD": [
5285
+ "latn"
5286
+ ],
5287
+ "ca-ES-valencia": [
5288
+ "latn"
5289
+ ],
5290
+ "ca-FR": [
5291
+ "latn"
5292
+ ],
5293
+ "ca-IT": [
5294
+ "latn"
5295
+ ],
5296
+ "ccp": [
5297
+ "cakm"
5298
+ ],
5299
+ "ccp-IN": [
5300
+ "cakm"
5301
+ ],
5302
+ "ce": [
5303
+ "latn"
5304
+ ],
5305
+ "ceb": [
5306
+ "latn"
5307
+ ],
5308
+ "cgg": [
5309
+ "latn"
5310
+ ],
5311
+ "chr": [
5312
+ "latn"
5313
+ ],
5314
+ "ckb": [
5315
+ "arab"
5316
+ ],
5317
+ "ckb-IR": [
5318
+ "arab"
5319
+ ],
5320
+ "cs": [
5321
+ "latn"
5322
+ ],
5323
+ "cy": [
5324
+ "latn"
5325
+ ],
5326
+ "da": [
5327
+ "latn"
5328
+ ],
5329
+ "da-GL": [
5330
+ "latn"
5331
+ ],
5332
+ "dav": [
5333
+ "latn"
5334
+ ],
5335
+ "de": [
5336
+ "latn"
5337
+ ],
5338
+ "de-AT": [
5339
+ "latn"
5340
+ ],
5341
+ "de-BE": [
5342
+ "latn"
5343
+ ],
5344
+ "de-CH": [
5345
+ "latn"
5346
+ ],
5347
+ "de-IT": [
5348
+ "latn"
5349
+ ],
5350
+ "de-LI": [
5351
+ "latn"
5352
+ ],
5353
+ "de-LU": [
5354
+ "latn"
5355
+ ],
5356
+ "dje": [
5357
+ "latn"
5358
+ ],
5359
+ "doi": [
5360
+ "latn",
5361
+ "deva"
5362
+ ],
5363
+ "dsb": [
5364
+ "latn"
5365
+ ],
5366
+ "dua": [
5367
+ "latn"
5368
+ ],
5369
+ "dyo": [
5370
+ "latn"
5371
+ ],
5372
+ "dz": [
5373
+ "tibt"
5374
+ ],
5375
+ "ebu": [
5376
+ "latn"
5377
+ ],
5378
+ "ee": [
5379
+ "latn"
5380
+ ],
5381
+ "ee-TG": [
5382
+ "latn"
5383
+ ],
5384
+ "el": [
5385
+ "latn",
5386
+ "grek"
5387
+ ],
5388
+ "el-CY": [
5389
+ "latn",
5390
+ "grek"
5391
+ ],
5392
+ "en": [
5393
+ "latn"
5394
+ ],
5395
+ "en-001": [
5396
+ "latn"
5397
+ ],
5398
+ "en-150": [
5399
+ "latn"
5400
+ ],
5401
+ "en-AE": [
5402
+ "latn"
5403
+ ],
5404
+ "en-AG": [
5405
+ "latn"
5406
+ ],
5407
+ "en-AI": [
5408
+ "latn"
5409
+ ],
5410
+ "en-AS": [
5411
+ "latn"
5412
+ ],
5413
+ "en-AT": [
5414
+ "latn"
5415
+ ],
5416
+ "en-AU": [
5417
+ "latn"
5418
+ ],
5419
+ "en-BB": [
5420
+ "latn"
5421
+ ],
5422
+ "en-BE": [
5423
+ "latn"
5424
+ ],
5425
+ "en-BI": [
5426
+ "latn"
5427
+ ],
5428
+ "en-BM": [
5429
+ "latn"
5430
+ ],
5431
+ "en-BS": [
5432
+ "latn"
5433
+ ],
5434
+ "en-BW": [
5435
+ "latn"
5436
+ ],
5437
+ "en-BZ": [
5438
+ "latn"
5439
+ ],
5440
+ "en-CA": [
5441
+ "latn"
5442
+ ],
5443
+ "en-CC": [
5444
+ "latn"
5445
+ ],
5446
+ "en-CH": [
5447
+ "latn"
5448
+ ],
5449
+ "en-CK": [
5450
+ "latn"
5451
+ ],
5452
+ "en-CM": [
5453
+ "latn"
5454
+ ],
5455
+ "en-CX": [
5456
+ "latn"
5457
+ ],
5458
+ "en-CY": [
5459
+ "latn"
5460
+ ],
5461
+ "en-DE": [
5462
+ "latn"
5463
+ ],
5464
+ "en-DG": [
5465
+ "latn"
5466
+ ],
5467
+ "en-DK": [
5468
+ "latn"
5469
+ ],
5470
+ "en-DM": [
5471
+ "latn"
5472
+ ],
5473
+ "en-ER": [
5474
+ "latn"
5475
+ ],
5476
+ "en-FI": [
5477
+ "latn"
5478
+ ],
5479
+ "en-FJ": [
5480
+ "latn"
5481
+ ],
5482
+ "en-FK": [
5483
+ "latn"
5484
+ ],
5485
+ "en-FM": [
5486
+ "latn"
5487
+ ],
5488
+ "en-GB": [
5489
+ "latn"
5490
+ ],
5491
+ "en-GD": [
5492
+ "latn"
5493
+ ],
5494
+ "en-GG": [
5495
+ "latn"
5496
+ ],
5497
+ "en-GH": [
5498
+ "latn"
5499
+ ],
5500
+ "en-GI": [
5501
+ "latn"
5502
+ ],
5503
+ "en-GM": [
5504
+ "latn"
5505
+ ],
5506
+ "en-GU": [
5507
+ "latn"
5508
+ ],
5509
+ "en-GY": [
5510
+ "latn"
5511
+ ],
5512
+ "en-HK": [
5513
+ "latn"
5514
+ ],
5515
+ "en-IE": [
5516
+ "latn"
5517
+ ],
5518
+ "en-IL": [
5519
+ "latn"
5520
+ ],
5521
+ "en-IM": [
5522
+ "latn"
5523
+ ],
5524
+ "en-IN": [
5525
+ "latn"
5526
+ ],
5527
+ "en-IO": [
5528
+ "latn"
5529
+ ],
5530
+ "en-JE": [
5531
+ "latn"
5532
+ ],
5533
+ "en-JM": [
5534
+ "latn"
5535
+ ],
5536
+ "en-KE": [
5537
+ "latn"
5538
+ ],
5539
+ "en-KI": [
5540
+ "latn"
5541
+ ],
5542
+ "en-KN": [
5543
+ "latn"
5544
+ ],
5545
+ "en-KY": [
5546
+ "latn"
5547
+ ],
5548
+ "en-LC": [
5549
+ "latn"
5550
+ ],
5551
+ "en-LR": [
5552
+ "latn"
5553
+ ],
5554
+ "en-LS": [
5555
+ "latn"
5556
+ ],
5557
+ "en-MG": [
5558
+ "latn"
5559
+ ],
5560
+ "en-MH": [
5561
+ "latn"
5562
+ ],
5563
+ "en-MO": [
5564
+ "latn"
5565
+ ],
5566
+ "en-MP": [
5567
+ "latn"
5568
+ ],
5569
+ "en-MS": [
5570
+ "latn"
5571
+ ],
5572
+ "en-MT": [
5573
+ "latn"
5574
+ ],
5575
+ "en-MU": [
5576
+ "latn"
5577
+ ],
5578
+ "en-MW": [
5579
+ "latn"
5580
+ ],
5581
+ "en-MY": [
5582
+ "latn"
5583
+ ],
5584
+ "en-NA": [
5585
+ "latn"
5586
+ ],
5587
+ "en-NF": [
5588
+ "latn"
5589
+ ],
5590
+ "en-NG": [
5591
+ "latn"
5592
+ ],
5593
+ "en-NL": [
5594
+ "latn"
5595
+ ],
5596
+ "en-NR": [
5597
+ "latn"
5598
+ ],
5599
+ "en-NU": [
5600
+ "latn"
5601
+ ],
5602
+ "en-NZ": [
5603
+ "latn"
5604
+ ],
5605
+ "en-PG": [
5606
+ "latn"
5607
+ ],
5608
+ "en-PH": [
5609
+ "latn"
5610
+ ],
5611
+ "en-PK": [
5612
+ "latn"
5613
+ ],
5614
+ "en-PN": [
5615
+ "latn"
5616
+ ],
5617
+ "en-PR": [
5618
+ "latn"
5619
+ ],
5620
+ "en-PW": [
5621
+ "latn"
5622
+ ],
5623
+ "en-RW": [
5624
+ "latn"
5625
+ ],
5626
+ "en-SB": [
5627
+ "latn"
5628
+ ],
5629
+ "en-SC": [
5630
+ "latn"
5631
+ ],
5632
+ "en-SD": [
5633
+ "latn"
5634
+ ],
5635
+ "en-SE": [
5636
+ "latn"
5637
+ ],
5638
+ "en-SG": [
5639
+ "latn"
5640
+ ],
5641
+ "en-SH": [
5642
+ "latn"
5643
+ ],
5644
+ "en-SI": [
5645
+ "latn"
5646
+ ],
5647
+ "en-SL": [
5648
+ "latn"
5649
+ ],
5650
+ "en-SS": [
5651
+ "latn"
5652
+ ],
5653
+ "en-SX": [
5654
+ "latn"
5655
+ ],
5656
+ "en-SZ": [
5657
+ "latn"
5658
+ ],
5659
+ "en-TC": [
5660
+ "latn"
5661
+ ],
5662
+ "en-TK": [
5663
+ "latn"
5664
+ ],
5665
+ "en-TO": [
5666
+ "latn"
5667
+ ],
5668
+ "en-TT": [
5669
+ "latn"
5670
+ ],
5671
+ "en-TV": [
5672
+ "latn"
5673
+ ],
5674
+ "en-TZ": [
5675
+ "latn"
5676
+ ],
5677
+ "en-UG": [
5678
+ "latn"
5679
+ ],
5680
+ "en-UM": [
5681
+ "latn"
5682
+ ],
5683
+ "en-VC": [
5684
+ "latn"
5685
+ ],
5686
+ "en-VG": [
5687
+ "latn"
5688
+ ],
5689
+ "en-VI": [
5690
+ "latn"
5691
+ ],
5692
+ "en-VU": [
5693
+ "latn"
5694
+ ],
5695
+ "en-WS": [
5696
+ "latn"
5697
+ ],
5698
+ "en-ZA": [
5699
+ "latn"
5700
+ ],
5701
+ "en-ZM": [
5702
+ "latn"
5703
+ ],
5704
+ "en-ZW": [
5705
+ "latn"
5706
+ ],
5707
+ "eo": [
5708
+ "latn"
5709
+ ],
5710
+ "es": [
5711
+ "latn"
5712
+ ],
5713
+ "es-419": [
5714
+ "latn"
5715
+ ],
5716
+ "es-AR": [
5717
+ "latn"
5718
+ ],
5719
+ "es-BO": [
5720
+ "latn"
5721
+ ],
5722
+ "es-BR": [
5723
+ "latn"
5724
+ ],
5725
+ "es-BZ": [
5726
+ "latn"
5727
+ ],
5728
+ "es-CL": [
5729
+ "latn"
5730
+ ],
5731
+ "es-CO": [
5732
+ "latn"
5733
+ ],
5734
+ "es-CR": [
5735
+ "latn"
5736
+ ],
5737
+ "es-CU": [
5738
+ "latn"
5739
+ ],
5740
+ "es-DO": [
5741
+ "latn"
5742
+ ],
5743
+ "es-EA": [
5744
+ "latn"
5745
+ ],
5746
+ "es-EC": [
5747
+ "latn"
5748
+ ],
5749
+ "es-GQ": [
5750
+ "latn"
5751
+ ],
5752
+ "es-GT": [
5753
+ "latn"
5754
+ ],
5755
+ "es-HN": [
5756
+ "latn"
5757
+ ],
5758
+ "es-IC": [
5759
+ "latn"
5760
+ ],
5761
+ "es-MX": [
5762
+ "latn"
5763
+ ],
5764
+ "es-NI": [
5765
+ "latn"
5766
+ ],
5767
+ "es-PA": [
5768
+ "latn"
5769
+ ],
5770
+ "es-PE": [
5771
+ "latn"
5772
+ ],
5773
+ "es-PH": [
5774
+ "latn"
5775
+ ],
5776
+ "es-PR": [
5777
+ "latn"
5778
+ ],
5779
+ "es-PY": [
5780
+ "latn"
5781
+ ],
5782
+ "es-SV": [
5783
+ "latn"
5784
+ ],
5785
+ "es-US": [
5786
+ "latn"
5787
+ ],
5788
+ "es-UY": [
5789
+ "latn"
5790
+ ],
5791
+ "es-VE": [
5792
+ "latn"
5793
+ ],
5794
+ "et": [
5795
+ "latn"
5796
+ ],
5797
+ "eu": [
5798
+ "latn"
5799
+ ],
5800
+ "ewo": [
5801
+ "latn"
5802
+ ],
5803
+ "fa": [
5804
+ "arabext"
5805
+ ],
5806
+ "fa-AF": [
5807
+ "arabext"
5808
+ ],
5809
+ "ff": [
5810
+ "latn"
5811
+ ],
5812
+ "ff-Adlm": [
5813
+ "adlm"
5814
+ ],
5815
+ "ff-Adlm-BF": [
5816
+ "adlm"
5817
+ ],
5818
+ "ff-Adlm-CM": [
5819
+ "adlm"
5820
+ ],
5821
+ "ff-Adlm-GH": [
5822
+ "adlm"
5823
+ ],
5824
+ "ff-Adlm-GM": [
5825
+ "adlm"
5826
+ ],
5827
+ "ff-Adlm-GW": [
5828
+ "adlm"
5829
+ ],
5830
+ "ff-Adlm-LR": [
5831
+ "adlm"
5832
+ ],
5833
+ "ff-Adlm-MR": [
5834
+ "adlm"
5835
+ ],
5836
+ "ff-Adlm-NE": [
5837
+ "adlm"
5838
+ ],
5839
+ "ff-Adlm-NG": [
5840
+ "adlm"
5841
+ ],
5842
+ "ff-Adlm-SL": [
5843
+ "adlm"
5844
+ ],
5845
+ "ff-Adlm-SN": [
5846
+ "adlm"
5847
+ ],
5848
+ "ff-Latn": [
5849
+ "latn"
5850
+ ],
5851
+ "ff-Latn-BF": [
5852
+ "latn"
5853
+ ],
5854
+ "ff-Latn-CM": [
5855
+ "latn"
5856
+ ],
5857
+ "ff-Latn-GH": [
5858
+ "latn"
5859
+ ],
5860
+ "ff-Latn-GM": [
5861
+ "latn"
5862
+ ],
5863
+ "ff-Latn-GN": [
5864
+ "latn"
5865
+ ],
5866
+ "ff-Latn-GW": [
5867
+ "latn"
5868
+ ],
5869
+ "ff-Latn-LR": [
5870
+ "latn"
5871
+ ],
5872
+ "ff-Latn-MR": [
5873
+ "latn"
5874
+ ],
5875
+ "ff-Latn-NE": [
5876
+ "latn"
5877
+ ],
5878
+ "ff-Latn-NG": [
5879
+ "latn"
5880
+ ],
5881
+ "ff-Latn-SL": [
5882
+ "latn"
5883
+ ],
5884
+ "fi": [
5885
+ "latn"
5886
+ ],
5887
+ "fil": [
5888
+ "latn"
5889
+ ],
5890
+ "fo": [
5891
+ "latn"
5892
+ ],
5893
+ "fo-DK": [
5894
+ "latn"
5895
+ ],
5896
+ "fr": [
5897
+ "latn"
5898
+ ],
5899
+ "fr-BE": [
5900
+ "latn"
5901
+ ],
5902
+ "fr-BF": [
5903
+ "latn"
5904
+ ],
5905
+ "fr-BI": [
5906
+ "latn"
5907
+ ],
5908
+ "fr-BJ": [
5909
+ "latn"
5910
+ ],
5911
+ "fr-BL": [
5912
+ "latn"
5913
+ ],
5914
+ "fr-CA": [
5915
+ "latn"
5916
+ ],
5917
+ "fr-CD": [
5918
+ "latn"
5919
+ ],
5920
+ "fr-CF": [
5921
+ "latn"
5922
+ ],
5923
+ "fr-CG": [
5924
+ "latn"
5925
+ ],
5926
+ "fr-CH": [
5927
+ "latn"
5928
+ ],
5929
+ "fr-CI": [
5930
+ "latn"
5931
+ ],
5932
+ "fr-CM": [
5933
+ "latn"
5934
+ ],
5935
+ "fr-DJ": [
5936
+ "latn"
5937
+ ],
5938
+ "fr-DZ": [
5939
+ "latn"
5940
+ ],
5941
+ "fr-GA": [
5942
+ "latn"
5943
+ ],
5944
+ "fr-GF": [
5945
+ "latn"
5946
+ ],
5947
+ "fr-GN": [
5948
+ "latn"
5949
+ ],
5950
+ "fr-GP": [
5951
+ "latn"
5952
+ ],
5953
+ "fr-GQ": [
5954
+ "latn"
5955
+ ],
5956
+ "fr-HT": [
5957
+ "latn"
5958
+ ],
5959
+ "fr-KM": [
5960
+ "latn"
5961
+ ],
5962
+ "fr-LU": [
5963
+ "latn"
5964
+ ],
5965
+ "fr-MA": [
5966
+ "latn"
5967
+ ],
5968
+ "fr-MC": [
5969
+ "latn"
5970
+ ],
5971
+ "fr-MF": [
5972
+ "latn"
5973
+ ],
5974
+ "fr-MG": [
5975
+ "latn"
5976
+ ],
5977
+ "fr-ML": [
5978
+ "latn"
5979
+ ],
5980
+ "fr-MQ": [
5981
+ "latn"
5982
+ ],
5983
+ "fr-MR": [
5984
+ "latn"
5985
+ ],
5986
+ "fr-MU": [
5987
+ "latn"
5988
+ ],
5989
+ "fr-NC": [
5990
+ "latn"
5991
+ ],
5992
+ "fr-NE": [
5993
+ "latn"
5994
+ ],
5995
+ "fr-PF": [
5996
+ "latn"
5997
+ ],
5998
+ "fr-PM": [
5999
+ "latn"
6000
+ ],
6001
+ "fr-RE": [
6002
+ "latn"
6003
+ ],
6004
+ "fr-RW": [
6005
+ "latn"
6006
+ ],
6007
+ "fr-SC": [
6008
+ "latn"
6009
+ ],
6010
+ "fr-SN": [
6011
+ "latn"
6012
+ ],
6013
+ "fr-SY": [
6014
+ "latn"
6015
+ ],
6016
+ "fr-TD": [
6017
+ "latn"
6018
+ ],
6019
+ "fr-TG": [
6020
+ "latn"
6021
+ ],
6022
+ "fr-TN": [
6023
+ "latn"
6024
+ ],
6025
+ "fr-VU": [
6026
+ "latn"
6027
+ ],
6028
+ "fr-WF": [
6029
+ "latn"
6030
+ ],
6031
+ "fr-YT": [
6032
+ "latn"
6033
+ ],
6034
+ "fur": [
6035
+ "latn"
6036
+ ],
6037
+ "fy": [
6038
+ "latn"
6039
+ ],
6040
+ "ga": [
6041
+ "latn"
6042
+ ],
6043
+ "ga-GB": [
6044
+ "latn"
6045
+ ],
6046
+ "gd": [
6047
+ "latn"
6048
+ ],
6049
+ "gl": [
6050
+ "latn"
6051
+ ],
6052
+ "gsw": [
6053
+ "latn"
6054
+ ],
6055
+ "gsw-FR": [
6056
+ "latn"
6057
+ ],
6058
+ "gsw-LI": [
6059
+ "latn"
6060
+ ],
6061
+ "gu": [
6062
+ "latn",
6063
+ "gujr"
6064
+ ],
6065
+ "guz": [
6066
+ "latn"
6067
+ ],
6068
+ "gv": [
6069
+ "latn"
6070
+ ],
6071
+ "ha": [
6072
+ "latn"
6073
+ ],
6074
+ "ha-GH": [
6075
+ "latn"
6076
+ ],
6077
+ "ha-NE": [
6078
+ "latn"
6079
+ ],
6080
+ "haw": [
6081
+ "latn"
6082
+ ],
6083
+ "he": [
6084
+ "latn",
6085
+ "hebr"
6086
+ ],
6087
+ "hi": [
6088
+ "latn",
6089
+ "deva"
6090
+ ],
6091
+ "hr": [
6092
+ "latn"
6093
+ ],
6094
+ "hr-BA": [
6095
+ "latn"
6096
+ ],
6097
+ "hsb": [
6098
+ "latn"
6099
+ ],
6100
+ "hu": [
6101
+ "latn"
6102
+ ],
6103
+ "hy": [
6104
+ "latn",
6105
+ "armn"
6106
+ ],
6107
+ "ia": [
6108
+ "latn"
6109
+ ],
6110
+ "id": [
6111
+ "latn"
6112
+ ],
6113
+ "ig": [
6114
+ "latn"
6115
+ ],
6116
+ "ii": [
6117
+ "latn"
6118
+ ],
6119
+ "is": [
6120
+ "latn"
6121
+ ],
6122
+ "it": [
6123
+ "latn"
6124
+ ],
6125
+ "it-CH": [
6126
+ "latn"
6127
+ ],
6128
+ "it-SM": [
6129
+ "latn"
6130
+ ],
6131
+ "it-VA": [
6132
+ "latn"
6133
+ ],
6134
+ "ja": [
6135
+ "latn",
6136
+ "jpan",
6137
+ "jpanfin"
6138
+ ],
6139
+ "jgo": [
6140
+ "latn"
6141
+ ],
6142
+ "jmc": [
6143
+ "latn"
6144
+ ],
6145
+ "jv": [
6146
+ "latn",
6147
+ "java"
6148
+ ],
6149
+ "ka": [
6150
+ "latn",
6151
+ "geor"
6152
+ ],
6153
+ "kab": [
6154
+ "latn"
6155
+ ],
6156
+ "kam": [
6157
+ "latn"
6158
+ ],
6159
+ "kde": [
6160
+ "latn"
6161
+ ],
6162
+ "kea": [
6163
+ "latn"
6164
+ ],
6165
+ "kgp": [
6166
+ "latn"
6167
+ ],
6168
+ "khq": [
6169
+ "latn"
6170
+ ],
6171
+ "ki": [
6172
+ "latn"
6173
+ ],
6174
+ "kk": [
6175
+ "latn"
6176
+ ],
6177
+ "kkj": [
6178
+ "latn"
6179
+ ],
6180
+ "kl": [
6181
+ "latn"
6182
+ ],
6183
+ "kln": [
6184
+ "latn"
6185
+ ],
6186
+ "km": [
6187
+ "latn",
6188
+ "khmr"
6189
+ ],
6190
+ "kn": [
6191
+ "latn",
6192
+ "knda"
6193
+ ],
6194
+ "ko": [
6195
+ "latn"
6196
+ ],
6197
+ "ko-KP": [
6198
+ "latn"
6199
+ ],
6200
+ "kok": [
6201
+ "latn",
6202
+ "deva"
6203
+ ],
6204
+ "ks": [
6205
+ "arabext"
6206
+ ],
6207
+ "ks-Arab": [
6208
+ "arabext"
6209
+ ],
6210
+ "ksb": [
6211
+ "latn"
6212
+ ],
6213
+ "ksf": [
6214
+ "latn"
6215
+ ],
6216
+ "ksh": [
6217
+ "latn"
6218
+ ],
6219
+ "ku": [
6220
+ "latn"
6221
+ ],
6222
+ "kw": [
6223
+ "latn"
6224
+ ],
6225
+ "ky": [
6226
+ "latn"
6227
+ ],
6228
+ "lag": [
6229
+ "latn"
6230
+ ],
6231
+ "lb": [
6232
+ "latn"
6233
+ ],
6234
+ "lg": [
6235
+ "latn"
6236
+ ],
6237
+ "lkt": [
6238
+ "latn"
6239
+ ],
6240
+ "ln": [
6241
+ "latn"
6242
+ ],
6243
+ "ln-AO": [
6244
+ "latn"
6245
+ ],
6246
+ "ln-CF": [
6247
+ "latn"
6248
+ ],
6249
+ "ln-CG": [
6250
+ "latn"
6251
+ ],
6252
+ "lo": [
6253
+ "latn",
6254
+ "laoo"
6255
+ ],
6256
+ "lrc": [
6257
+ "arabext"
6258
+ ],
6259
+ "lrc-IQ": [
6260
+ "arabext"
6261
+ ],
6262
+ "lt": [
6263
+ "latn"
6264
+ ],
6265
+ "lu": [
6266
+ "latn"
6267
+ ],
6268
+ "luo": [
6269
+ "latn"
6270
+ ],
6271
+ "luy": [
6272
+ "latn"
6273
+ ],
6274
+ "lv": [
6275
+ "latn"
6276
+ ],
6277
+ "mai": [
6278
+ "latn",
6279
+ "deva"
6280
+ ],
6281
+ "mas": [
6282
+ "latn"
6283
+ ],
6284
+ "mas-TZ": [
6285
+ "latn"
6286
+ ],
6287
+ "mer": [
6288
+ "latn"
6289
+ ],
6290
+ "mfe": [
6291
+ "latn"
6292
+ ],
6293
+ "mg": [
6294
+ "latn"
6295
+ ],
6296
+ "mgh": [
6297
+ "latn"
6298
+ ],
6299
+ "mgo": [
6300
+ "latn"
6301
+ ],
6302
+ "mi": [
6303
+ "latn"
6304
+ ],
6305
+ "mk": [
6306
+ "latn"
6307
+ ],
6308
+ "ml": [
6309
+ "latn",
6310
+ "mlym"
6311
+ ],
6312
+ "mn": [
6313
+ "latn"
6314
+ ],
6315
+ "mni": [
6316
+ "beng",
6317
+ "latn"
6318
+ ],
6319
+ "mni-Beng": [
6320
+ "beng",
6321
+ "latn"
6322
+ ],
6323
+ "mr": [
6324
+ "deva"
6325
+ ],
6326
+ "ms": [
6327
+ "latn"
6328
+ ],
6329
+ "ms-BN": [
6330
+ "latn"
6331
+ ],
6332
+ "ms-ID": [
6333
+ "latn"
6334
+ ],
6335
+ "ms-SG": [
6336
+ "latn"
6337
+ ],
6338
+ "mt": [
6339
+ "latn"
6340
+ ],
6341
+ "mua": [
6342
+ "latn"
6343
+ ],
6344
+ "my": [
6345
+ "mymr"
6346
+ ],
6347
+ "mzn": [
6348
+ "arabext"
6349
+ ],
6350
+ "naq": [
6351
+ "latn"
6352
+ ],
6353
+ "nb": [
6354
+ "latn"
6355
+ ],
6356
+ "nb-SJ": [
6357
+ "latn"
6358
+ ],
6359
+ "nd": [
6360
+ "latn"
6361
+ ],
6362
+ "nds": [
6363
+ "latn"
6364
+ ],
6365
+ "nds-NL": [
6366
+ "latn"
6367
+ ],
6368
+ "ne": [
6369
+ "deva"
6370
+ ],
6371
+ "ne-IN": [
6372
+ "deva"
6373
+ ],
6374
+ "nl": [
6375
+ "latn"
6376
+ ],
6377
+ "nl-AW": [
6378
+ "latn"
6379
+ ],
6380
+ "nl-BE": [
6381
+ "latn"
6382
+ ],
6383
+ "nl-BQ": [
6384
+ "latn"
6385
+ ],
6386
+ "nl-CW": [
6387
+ "latn"
6388
+ ],
6389
+ "nl-SR": [
6390
+ "latn"
6391
+ ],
6392
+ "nl-SX": [
6393
+ "latn"
6394
+ ],
6395
+ "nmg": [
6396
+ "latn"
6397
+ ],
6398
+ "nn": [
6399
+ "latn"
6400
+ ],
6401
+ "nnh": [
6402
+ "latn"
6403
+ ],
6404
+ "no": [
6405
+ "latn"
6406
+ ],
6407
+ "nus": [
6408
+ "latn"
6409
+ ],
6410
+ "nyn": [
6411
+ "latn"
6412
+ ],
6413
+ "om": [
6414
+ "latn",
6415
+ "ethi"
6416
+ ],
6417
+ "om-KE": [
6418
+ "latn",
6419
+ "ethi"
6420
+ ],
6421
+ "or": [
6422
+ "latn",
6423
+ "orya"
6424
+ ],
6425
+ "os": [
6426
+ "latn"
6427
+ ],
6428
+ "os-RU": [
6429
+ "latn"
6430
+ ],
6431
+ "pa": [
6432
+ "latn",
6433
+ "guru"
6434
+ ],
6435
+ "pa-Arab": [
6436
+ "arabext"
6437
+ ],
6438
+ "pa-Guru": [
6439
+ "latn",
6440
+ "guru"
6441
+ ],
6442
+ "pcm": [
6443
+ "latn"
6444
+ ],
6445
+ "pl": [
6446
+ "latn"
6447
+ ],
6448
+ "ps": [
6449
+ "arabext"
6450
+ ],
6451
+ "ps-PK": [
6452
+ "arabext"
6453
+ ],
6454
+ "pt": [
6455
+ "latn"
6456
+ ],
6457
+ "pt-AO": [
6458
+ "latn"
6459
+ ],
6460
+ "pt-CH": [
6461
+ "latn"
6462
+ ],
6463
+ "pt-CV": [
6464
+ "latn"
6465
+ ],
6466
+ "pt-GQ": [
6467
+ "latn"
6468
+ ],
6469
+ "pt-GW": [
6470
+ "latn"
6471
+ ],
6472
+ "pt-LU": [
6473
+ "latn"
6474
+ ],
6475
+ "pt-MO": [
6476
+ "latn"
6477
+ ],
6478
+ "pt-MZ": [
6479
+ "latn"
6480
+ ],
6481
+ "pt-PT": [
6482
+ "latn"
6483
+ ],
6484
+ "pt-ST": [
6485
+ "latn"
6486
+ ],
6487
+ "pt-TL": [
6488
+ "latn"
6489
+ ],
6490
+ "qu": [
6491
+ "latn"
6492
+ ],
6493
+ "qu-BO": [
6494
+ "latn"
6495
+ ],
6496
+ "qu-EC": [
6497
+ "latn"
6498
+ ],
6499
+ "rm": [
6500
+ "latn"
6501
+ ],
6502
+ "rn": [
6503
+ "latn"
6504
+ ],
6505
+ "ro": [
6506
+ "latn"
6507
+ ],
6508
+ "ro-MD": [
6509
+ "latn"
6510
+ ],
6511
+ "rof": [
6512
+ "latn"
6513
+ ],
6514
+ "ru": [
6515
+ "latn"
6516
+ ],
6517
+ "ru-BY": [
6518
+ "latn"
6519
+ ],
6520
+ "ru-KG": [
6521
+ "latn"
6522
+ ],
6523
+ "ru-KZ": [
6524
+ "latn"
6525
+ ],
6526
+ "ru-MD": [
6527
+ "latn"
6528
+ ],
6529
+ "ru-UA": [
6530
+ "latn"
6531
+ ],
6532
+ "rw": [
6533
+ "latn"
6534
+ ],
6535
+ "rwk": [
6536
+ "latn"
6537
+ ],
6538
+ "sa": [
6539
+ "deva"
6540
+ ],
6541
+ "sah": [
6542
+ "latn"
6543
+ ],
6544
+ "saq": [
6545
+ "latn"
6546
+ ],
6547
+ "sat": [
6548
+ "olck",
6549
+ "latn"
6550
+ ],
6551
+ "sat-Olck": [
6552
+ "olck",
6553
+ "latn"
6554
+ ],
6555
+ "sbp": [
6556
+ "latn"
6557
+ ],
6558
+ "sc": [
6559
+ "latn"
6560
+ ],
6561
+ "sd": [
6562
+ "arab"
6563
+ ],
6564
+ "sd-Arab": [
6565
+ "arab"
6566
+ ],
6567
+ "sd-Deva": [
6568
+ "latn"
6569
+ ],
6570
+ "se": [
6571
+ "latn"
6572
+ ],
6573
+ "se-FI": [
6574
+ "latn"
6575
+ ],
6576
+ "se-SE": [
6577
+ "latn"
6578
+ ],
6579
+ "seh": [
6580
+ "latn"
6581
+ ],
6582
+ "ses": [
6583
+ "latn"
6584
+ ],
6585
+ "sg": [
6586
+ "latn"
6587
+ ],
6588
+ "shi": [
6589
+ "latn"
6590
+ ],
6591
+ "shi-Latn": [
6592
+ "latn"
6593
+ ],
6594
+ "shi-Tfng": [
6595
+ "latn"
6596
+ ],
6597
+ "si": [
6598
+ "latn"
6599
+ ],
6600
+ "sk": [
6601
+ "latn"
6602
+ ],
6603
+ "sl": [
6604
+ "latn"
6605
+ ],
6606
+ "smn": [
6607
+ "latn"
6608
+ ],
6609
+ "sn": [
6610
+ "latn"
6611
+ ],
6612
+ "so": [
6613
+ "latn"
6614
+ ],
6615
+ "so-DJ": [
6616
+ "latn"
6617
+ ],
6618
+ "so-ET": [
6619
+ "latn"
6620
+ ],
6621
+ "so-KE": [
6622
+ "latn"
6623
+ ],
6624
+ "sq": [
6625
+ "latn"
6626
+ ],
6627
+ "sq-MK": [
6628
+ "latn"
6629
+ ],
6630
+ "sq-XK": [
6631
+ "latn"
6632
+ ],
6633
+ "sr": [
6634
+ "latn"
6635
+ ],
6636
+ "sr-Cyrl": [
6637
+ "latn"
6638
+ ],
6639
+ "sr-Cyrl-BA": [
6640
+ "latn"
6641
+ ],
6642
+ "sr-Cyrl-ME": [
6643
+ "latn"
6644
+ ],
6645
+ "sr-Cyrl-XK": [
6646
+ "latn"
6647
+ ],
6648
+ "sr-Latn": [
6649
+ "latn"
6650
+ ],
6651
+ "sr-Latn-BA": [
6652
+ "latn"
6653
+ ],
6654
+ "sr-Latn-ME": [
6655
+ "latn"
6656
+ ],
6657
+ "sr-Latn-XK": [
6658
+ "latn"
6659
+ ],
6660
+ "su": [
6661
+ "latn"
6662
+ ],
6663
+ "su-Latn": [
6664
+ "latn"
6665
+ ],
6666
+ "sv": [
6667
+ "latn"
6668
+ ],
6669
+ "sv-AX": [
6670
+ "latn"
6671
+ ],
6672
+ "sv-FI": [
6673
+ "latn"
6674
+ ],
6675
+ "sw": [
6676
+ "latn"
6677
+ ],
6678
+ "sw-CD": [
6679
+ "latn"
6680
+ ],
6681
+ "sw-KE": [
6682
+ "latn"
6683
+ ],
6684
+ "sw-UG": [
6685
+ "latn"
6686
+ ],
6687
+ "ta": [
6688
+ "latn",
6689
+ "tamldec",
6690
+ "taml"
6691
+ ],
6692
+ "ta-LK": [
6693
+ "latn",
6694
+ "tamldec",
6695
+ "taml"
6696
+ ],
6697
+ "ta-MY": [
6698
+ "latn",
6699
+ "tamldec",
6700
+ "taml"
6701
+ ],
6702
+ "ta-SG": [
6703
+ "latn",
6704
+ "tamldec",
6705
+ "taml"
6706
+ ],
6707
+ "te": [
6708
+ "latn",
6709
+ "telu"
6710
+ ],
6711
+ "teo": [
6712
+ "latn"
6713
+ ],
6714
+ "teo-KE": [
6715
+ "latn"
6716
+ ],
6717
+ "tg": [
6718
+ "latn"
6719
+ ],
6720
+ "th": [
6721
+ "latn",
6722
+ "thai"
6723
+ ],
6724
+ "ti": [
6725
+ "latn",
6726
+ "ethi"
6727
+ ],
6728
+ "ti-ER": [
6729
+ "latn",
6730
+ "ethi"
6731
+ ],
6732
+ "tk": [
6733
+ "latn"
6734
+ ],
6735
+ "to": [
6736
+ "latn"
6737
+ ],
6738
+ "tr": [
6739
+ "latn"
6740
+ ],
6741
+ "tr-CY": [
6742
+ "latn"
6743
+ ],
6744
+ "tt": [
6745
+ "latn"
6746
+ ],
6747
+ "twq": [
6748
+ "latn"
6749
+ ],
6750
+ "tzm": [
6751
+ "latn"
6752
+ ],
6753
+ "ug": [
6754
+ "latn",
6755
+ "arabext"
6756
+ ],
6757
+ "uk": [
6758
+ "latn"
6759
+ ],
6760
+ "und": [
6761
+ "latn"
6762
+ ],
6763
+ "ur": [
6764
+ "latn",
6765
+ "arabext"
6766
+ ],
6767
+ "ur-IN": [
6768
+ "arabext"
6769
+ ],
6770
+ "uz": [
6771
+ "latn"
6772
+ ],
6773
+ "uz-Arab": [
6774
+ "arabext"
6775
+ ],
6776
+ "uz-Cyrl": [
6777
+ "latn"
6778
+ ],
6779
+ "uz-Latn": [
6780
+ "latn"
6781
+ ],
6782
+ "vai": [
6783
+ "latn",
6784
+ "vaii"
6785
+ ],
6786
+ "vai-Latn": [
6787
+ "latn",
6788
+ "vaii"
6789
+ ],
6790
+ "vai-Vaii": [
6791
+ "latn",
6792
+ "vaii"
6793
+ ],
6794
+ "vi": [
6795
+ "latn"
6796
+ ],
6797
+ "vun": [
6798
+ "latn"
6799
+ ],
6800
+ "wae": [
6801
+ "latn"
6802
+ ],
6803
+ "wo": [
6804
+ "latn"
6805
+ ],
6806
+ "xh": [
6807
+ "latn"
6808
+ ],
6809
+ "xog": [
6810
+ "latn"
6811
+ ],
6812
+ "yav": [
6813
+ "latn"
6814
+ ],
6815
+ "yi": [
6816
+ "latn",
6817
+ "hebr"
6818
+ ],
6819
+ "yo": [
6820
+ "latn"
6821
+ ],
6822
+ "yo-BJ": [
6823
+ "latn"
6824
+ ],
6825
+ "yrl": [
6826
+ "latn"
6827
+ ],
6828
+ "yrl-CO": [
6829
+ "latn"
6830
+ ],
6831
+ "yrl-VE": [
6832
+ "latn"
6833
+ ],
6834
+ "yue": [
6835
+ "latn",
6836
+ "hanidec",
6837
+ "hant",
6838
+ "hantfin"
6839
+ ],
6840
+ "yue-Hans": [
6841
+ "latn",
6842
+ "hanidec",
6843
+ "hans",
6844
+ "hansfin"
6845
+ ],
6846
+ "yue-Hant": [
6847
+ "latn",
6848
+ "hanidec",
6849
+ "hant",
6850
+ "hantfin"
6851
+ ],
6852
+ "zgh": [
6853
+ "latn"
6854
+ ],
6855
+ "zh": [
6856
+ "latn",
6857
+ "hanidec",
6858
+ "hans",
6859
+ "hansfin"
6860
+ ],
6861
+ "zh-Hans": [
6862
+ "latn",
6863
+ "hanidec",
6864
+ "hans",
6865
+ "hansfin"
6866
+ ],
6867
+ "zh-Hans-HK": [
6868
+ "latn",
6869
+ "hanidec",
6870
+ "hans",
6871
+ "hansfin"
6872
+ ],
6873
+ "zh-Hans-MO": [
6874
+ "latn",
6875
+ "hanidec",
6876
+ "hans",
6877
+ "hansfin"
6878
+ ],
6879
+ "zh-Hans-SG": [
6880
+ "latn",
6881
+ "hanidec",
6882
+ "hans",
6883
+ "hansfin"
6884
+ ],
6885
+ "zh-Hant": [
6886
+ "latn",
6887
+ "hanidec",
6888
+ "hant",
6889
+ "hantfin"
6890
+ ],
6891
+ "zh-Hant-HK": [
6892
+ "latn",
6893
+ "hanidec",
6894
+ "hant",
6895
+ "hantfin"
6896
+ ],
6897
+ "zh-Hant-MO": [
6898
+ "latn",
6899
+ "hanidec",
6900
+ "hant",
6901
+ "hantfin"
6902
+ ],
6903
+ "zu": [
6904
+ "latn"
6905
+ ]
6906
+ };
4584
6907
 
4585
6908
  // ../../../../../../../../execroot/formatjs/bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js
4586
6909
  var RELEVANT_EXTENSION_KEYS = ["ca", "co", "hc", "kf", "kn", "nu"];
@@ -4825,272 +7148,305 @@
4825
7148
  }
4826
7149
  return getWeekDataForRegion(region);
4827
7150
  }
4828
- var Locale = function() {
4829
- function Locale2(tag, opts) {
4830
- var newTarget = this && this instanceof Locale2 ? this.constructor : void 0;
4831
- if (!newTarget) {
4832
- throw new TypeError("Intl.Locale must be called with 'new'");
4833
- }
4834
- var relevantExtensionKeys = Locale2.relevantExtensionKeys;
4835
- var internalSlotsList = [
4836
- "initializedLocale",
4837
- "locale",
4838
- "calendar",
4839
- "collation",
4840
- "hourCycle",
4841
- "numberingSystem"
4842
- ];
4843
- if (relevantExtensionKeys.indexOf("kf") > -1) {
4844
- internalSlotsList.push("caseFirst");
4845
- }
4846
- if (relevantExtensionKeys.indexOf("kn") > -1) {
4847
- internalSlotsList.push("numeric");
4848
- }
4849
- if (tag === void 0) {
4850
- throw new TypeError("First argument to Intl.Locale constructor can't be empty or missing");
4851
- }
4852
- if (typeof tag !== "string" && typeof tag !== "object") {
4853
- throw new TypeError("tag must be a string or object");
4854
- }
4855
- var internalSlots;
4856
- if (typeof tag === "object" && (internalSlots = getInternalSlots(tag)) && internalSlots.initializedLocale) {
4857
- tag = internalSlots.locale;
4858
- } else {
4859
- tag = tag.toString();
4860
- }
4861
- internalSlots = getInternalSlots(this);
4862
- var options = CoerceOptionsToObject(opts);
4863
- tag = applyOptionsToTag(tag, options);
4864
- var opt = /* @__PURE__ */ Object.create(null);
4865
- var calendar = GetOption(options, "calendar", "string", void 0, void 0);
4866
- if (calendar !== void 0) {
4867
- if (!UNICODE_TYPE_REGEX.test(calendar)) {
4868
- throw new RangeError("invalid calendar");
7151
+ var Locale = (
7152
+ /** @class */
7153
+ function() {
7154
+ function Locale2(tag, opts) {
7155
+ var newTarget = this && this instanceof Locale2 ? this.constructor : void 0;
7156
+ if (!newTarget) {
7157
+ throw new TypeError("Intl.Locale must be called with 'new'");
4869
7158
  }
4870
- }
4871
- opt.ca = calendar;
4872
- var collation = GetOption(options, "collation", "string", void 0, void 0);
4873
- if (collation !== void 0) {
4874
- if (!UNICODE_TYPE_REGEX.test(collation)) {
4875
- throw new RangeError("invalid collation");
7159
+ var relevantExtensionKeys = Locale2.relevantExtensionKeys;
7160
+ var internalSlotsList = [
7161
+ "initializedLocale",
7162
+ "locale",
7163
+ "calendar",
7164
+ "collation",
7165
+ "hourCycle",
7166
+ "numberingSystem"
7167
+ ];
7168
+ if (relevantExtensionKeys.indexOf("kf") > -1) {
7169
+ internalSlotsList.push("caseFirst");
4876
7170
  }
4877
- }
4878
- opt.co = collation;
4879
- var hc = GetOption(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0);
4880
- opt.hc = hc;
4881
- var kf = GetOption(options, "caseFirst", "string", ["upper", "lower", "false"], void 0);
4882
- opt.kf = kf;
4883
- var _kn = GetOption(options, "numeric", "boolean", void 0, void 0);
4884
- var kn;
4885
- if (_kn !== void 0) {
4886
- kn = String(_kn);
4887
- }
4888
- opt.kn = kn;
4889
- var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0);
4890
- if (numberingSystem !== void 0) {
4891
- if (!UNICODE_TYPE_REGEX.test(numberingSystem)) {
4892
- throw new RangeError("Invalid numberingSystem");
7171
+ if (relevantExtensionKeys.indexOf("kn") > -1) {
7172
+ internalSlotsList.push("numeric");
4893
7173
  }
7174
+ if (tag === void 0) {
7175
+ throw new TypeError("First argument to Intl.Locale constructor can't be empty or missing");
7176
+ }
7177
+ if (typeof tag !== "string" && typeof tag !== "object") {
7178
+ throw new TypeError("tag must be a string or object");
7179
+ }
7180
+ var internalSlots;
7181
+ if (typeof tag === "object" && (internalSlots = getInternalSlots(tag)) && internalSlots.initializedLocale) {
7182
+ tag = internalSlots.locale;
7183
+ } else {
7184
+ tag = tag.toString();
7185
+ }
7186
+ internalSlots = getInternalSlots(this);
7187
+ var options = CoerceOptionsToObject(opts);
7188
+ tag = applyOptionsToTag(tag, options);
7189
+ var opt = /* @__PURE__ */ Object.create(null);
7190
+ var calendar = GetOption(options, "calendar", "string", void 0, void 0);
7191
+ if (calendar !== void 0) {
7192
+ if (!UNICODE_TYPE_REGEX.test(calendar)) {
7193
+ throw new RangeError("invalid calendar");
7194
+ }
7195
+ }
7196
+ opt.ca = calendar;
7197
+ var collation = GetOption(options, "collation", "string", void 0, void 0);
7198
+ if (collation !== void 0) {
7199
+ if (!UNICODE_TYPE_REGEX.test(collation)) {
7200
+ throw new RangeError("invalid collation");
7201
+ }
7202
+ }
7203
+ opt.co = collation;
7204
+ var hc = GetOption(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0);
7205
+ opt.hc = hc;
7206
+ var kf = GetOption(options, "caseFirst", "string", ["upper", "lower", "false"], void 0);
7207
+ opt.kf = kf;
7208
+ var _kn = GetOption(options, "numeric", "boolean", void 0, void 0);
7209
+ var kn;
7210
+ if (_kn !== void 0) {
7211
+ kn = String(_kn);
7212
+ }
7213
+ opt.kn = kn;
7214
+ var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0);
7215
+ if (numberingSystem !== void 0) {
7216
+ if (!UNICODE_TYPE_REGEX.test(numberingSystem)) {
7217
+ throw new RangeError("Invalid numberingSystem");
7218
+ }
7219
+ }
7220
+ opt.nu = numberingSystem;
7221
+ var r = applyUnicodeExtensionToTag(tag, opt, relevantExtensionKeys);
7222
+ internalSlots.locale = r.locale;
7223
+ internalSlots.calendar = r.ca;
7224
+ internalSlots.collation = r.co;
7225
+ internalSlots.hourCycle = r.hc;
7226
+ if (relevantExtensionKeys.indexOf("kf") > -1) {
7227
+ internalSlots.caseFirst = r.kf;
7228
+ }
7229
+ if (relevantExtensionKeys.indexOf("kn") > -1) {
7230
+ internalSlots.numeric = SameValue(r.kn, "true");
7231
+ }
7232
+ internalSlots.numberingSystem = r.nu;
4894
7233
  }
4895
- opt.nu = numberingSystem;
4896
- var r = applyUnicodeExtensionToTag(tag, opt, relevantExtensionKeys);
4897
- internalSlots.locale = r.locale;
4898
- internalSlots.calendar = r.ca;
4899
- internalSlots.collation = r.co;
4900
- internalSlots.hourCycle = r.hc;
4901
- if (relevantExtensionKeys.indexOf("kf") > -1) {
4902
- internalSlots.caseFirst = r.kf;
4903
- }
4904
- if (relevantExtensionKeys.indexOf("kn") > -1) {
4905
- internalSlots.numeric = SameValue(r.kn, "true");
4906
- }
4907
- internalSlots.numberingSystem = r.nu;
4908
- }
4909
- Locale2.prototype.maximize = function() {
4910
- var locale = getInternalSlots(this).locale;
4911
- try {
4912
- var maximizedLocale = addLikelySubtags(locale);
4913
- return new Locale2(maximizedLocale);
4914
- } catch (e) {
4915
- return new Locale2(locale);
4916
- }
4917
- };
4918
- Locale2.prototype.minimize = function() {
4919
- var locale = getInternalSlots(this).locale;
4920
- try {
4921
- var minimizedLocale = removeLikelySubtags(locale);
4922
- return new Locale2(minimizedLocale);
4923
- } catch (e) {
4924
- return new Locale2(locale);
4925
- }
4926
- };
4927
- Locale2.prototype.toString = function() {
4928
- return getInternalSlots(this).locale;
4929
- };
4930
- Object.defineProperty(Locale2.prototype, "baseName", {
4931
- get: function() {
4932
- var locale = getInternalSlots(this).locale;
4933
- return (0, import_intl_getcanonicallocales.emitUnicodeLanguageId)((0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale));
4934
- },
4935
- enumerable: false,
4936
- configurable: true
4937
- });
4938
- Object.defineProperty(Locale2.prototype, "calendar", {
4939
- get: function() {
4940
- return getInternalSlots(this).calendar;
4941
- },
4942
- enumerable: false,
4943
- configurable: true
4944
- });
4945
- Object.defineProperty(Locale2.prototype, "collation", {
4946
- get: function() {
4947
- return getInternalSlots(this).collation;
4948
- },
4949
- enumerable: false,
4950
- configurable: true
4951
- });
4952
- Object.defineProperty(Locale2.prototype, "hourCycle", {
4953
- get: function() {
4954
- return getInternalSlots(this).hourCycle;
4955
- },
4956
- enumerable: false,
4957
- configurable: true
4958
- });
4959
- Object.defineProperty(Locale2.prototype, "caseFirst", {
4960
- get: function() {
4961
- return getInternalSlots(this).caseFirst;
4962
- },
4963
- enumerable: false,
4964
- configurable: true
4965
- });
4966
- Object.defineProperty(Locale2.prototype, "numeric", {
4967
- get: function() {
4968
- return getInternalSlots(this).numeric;
4969
- },
4970
- enumerable: false,
4971
- configurable: true
4972
- });
4973
- Object.defineProperty(Locale2.prototype, "numberingSystem", {
4974
- get: function() {
4975
- return getInternalSlots(this).numberingSystem;
4976
- },
4977
- enumerable: false,
4978
- configurable: true
4979
- });
4980
- Object.defineProperty(Locale2.prototype, "language", {
4981
- get: function() {
7234
+ Locale2.prototype.maximize = function() {
4982
7235
  var locale = getInternalSlots(this).locale;
4983
- return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).lang;
4984
- },
4985
- enumerable: false,
4986
- configurable: true
4987
- });
4988
- Object.defineProperty(Locale2.prototype, "script", {
4989
- get: function() {
4990
- var locale = getInternalSlots(this).locale;
4991
- return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).script;
4992
- },
4993
- enumerable: false,
4994
- configurable: true
4995
- });
4996
- Object.defineProperty(Locale2.prototype, "region", {
4997
- get: function() {
4998
- var locale = getInternalSlots(this).locale;
4999
- return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).region;
5000
- },
5001
- enumerable: false,
5002
- configurable: true
5003
- });
5004
- Object.defineProperty(Locale2.prototype, "calendars", {
5005
- get: function() {
5006
- return calendarsOfLocale(this);
5007
- },
5008
- enumerable: false,
5009
- configurable: true
5010
- });
5011
- Object.defineProperty(Locale2.prototype, "collations", {
5012
- get: function() {
5013
- return collationsOfLocale(this);
5014
- },
5015
- enumerable: false,
5016
- configurable: true
5017
- });
5018
- Object.defineProperty(Locale2.prototype, "hourCycles", {
5019
- get: function() {
5020
- return hourCyclesOfLocale(this);
5021
- },
5022
- enumerable: false,
5023
- configurable: true
5024
- });
5025
- Object.defineProperty(Locale2.prototype, "numberingSystems", {
5026
- get: function() {
5027
- return numberingSystemsOfLocale(this);
5028
- },
5029
- enumerable: false,
5030
- configurable: true
5031
- });
5032
- Object.defineProperty(Locale2.prototype, "timeZones", {
5033
- get: function() {
5034
- return timeZonesOfLocale(this);
5035
- },
5036
- enumerable: false,
5037
- configurable: true
5038
- });
5039
- Object.defineProperty(Locale2.prototype, "textInfo", {
5040
- get: function() {
5041
7236
  try {
5042
- var info = Object.create(Object.prototype);
5043
- var dir = characterDirectionOfLocale(this);
5044
- Object.defineProperty(info, "direction", {
5045
- value: dir,
5046
- writable: true,
5047
- enumerable: true,
5048
- configurable: true
5049
- });
5050
- return info;
7237
+ var maximizedLocale = addLikelySubtags(locale);
7238
+ return new Locale2(maximizedLocale);
5051
7239
  } catch (e) {
5052
- throw new TypeError("Error retrieving textInfo");
7240
+ return new Locale2(locale);
5053
7241
  }
5054
- },
5055
- enumerable: false,
5056
- configurable: true
5057
- });
5058
- Object.defineProperty(Locale2.prototype, "weekInfo", {
5059
- get: function() {
7242
+ };
7243
+ Locale2.prototype.minimize = function() {
7244
+ var locale = getInternalSlots(this).locale;
5060
7245
  try {
5061
- var info = Object.create(Object.prototype);
5062
- var wi = weekInfoOfLocale(this);
5063
- var we = wi.weekend;
5064
- Object.defineProperty(info, "firstDay", {
5065
- value: wi.firstDay,
5066
- writable: true,
5067
- enumerable: true,
5068
- configurable: true
5069
- });
5070
- Object.defineProperty(info, "weekend", {
5071
- value: we,
5072
- writable: true,
5073
- enumerable: true,
5074
- configurable: true
5075
- });
5076
- Object.defineProperty(info, "minimalDays", {
5077
- value: wi.minimalDays,
5078
- writable: true,
5079
- enumerable: true,
5080
- configurable: true
5081
- });
5082
- return info;
7246
+ var minimizedLocale = removeLikelySubtags(locale);
7247
+ return new Locale2(minimizedLocale);
5083
7248
  } catch (e) {
5084
- throw new TypeError("Error retrieving weekInfo");
7249
+ return new Locale2(locale);
5085
7250
  }
5086
- },
5087
- enumerable: false,
5088
- configurable: true
5089
- });
5090
- Locale2.relevantExtensionKeys = RELEVANT_EXTENSION_KEYS;
5091
- Locale2.polyfilled = true;
5092
- return Locale2;
5093
- }();
7251
+ };
7252
+ Locale2.prototype.toString = function() {
7253
+ return getInternalSlots(this).locale;
7254
+ };
7255
+ Object.defineProperty(Locale2.prototype, "baseName", {
7256
+ get: function() {
7257
+ var locale = getInternalSlots(this).locale;
7258
+ return (0, import_intl_getcanonicallocales.emitUnicodeLanguageId)((0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale));
7259
+ },
7260
+ enumerable: false,
7261
+ configurable: true
7262
+ });
7263
+ Object.defineProperty(Locale2.prototype, "calendar", {
7264
+ get: function() {
7265
+ return getInternalSlots(this).calendar;
7266
+ },
7267
+ enumerable: false,
7268
+ configurable: true
7269
+ });
7270
+ Object.defineProperty(Locale2.prototype, "collation", {
7271
+ get: function() {
7272
+ return getInternalSlots(this).collation;
7273
+ },
7274
+ enumerable: false,
7275
+ configurable: true
7276
+ });
7277
+ Object.defineProperty(Locale2.prototype, "hourCycle", {
7278
+ get: function() {
7279
+ return getInternalSlots(this).hourCycle;
7280
+ },
7281
+ enumerable: false,
7282
+ configurable: true
7283
+ });
7284
+ Object.defineProperty(Locale2.prototype, "caseFirst", {
7285
+ get: function() {
7286
+ return getInternalSlots(this).caseFirst;
7287
+ },
7288
+ enumerable: false,
7289
+ configurable: true
7290
+ });
7291
+ Object.defineProperty(Locale2.prototype, "numeric", {
7292
+ get: function() {
7293
+ return getInternalSlots(this).numeric;
7294
+ },
7295
+ enumerable: false,
7296
+ configurable: true
7297
+ });
7298
+ Object.defineProperty(Locale2.prototype, "numberingSystem", {
7299
+ get: function() {
7300
+ return getInternalSlots(this).numberingSystem;
7301
+ },
7302
+ enumerable: false,
7303
+ configurable: true
7304
+ });
7305
+ Object.defineProperty(Locale2.prototype, "language", {
7306
+ /**
7307
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.language
7308
+ */
7309
+ get: function() {
7310
+ var locale = getInternalSlots(this).locale;
7311
+ return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).lang;
7312
+ },
7313
+ enumerable: false,
7314
+ configurable: true
7315
+ });
7316
+ Object.defineProperty(Locale2.prototype, "script", {
7317
+ /**
7318
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.script
7319
+ */
7320
+ get: function() {
7321
+ var locale = getInternalSlots(this).locale;
7322
+ return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).script;
7323
+ },
7324
+ enumerable: false,
7325
+ configurable: true
7326
+ });
7327
+ Object.defineProperty(Locale2.prototype, "region", {
7328
+ /**
7329
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.region
7330
+ */
7331
+ get: function() {
7332
+ var locale = getInternalSlots(this).locale;
7333
+ return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).region;
7334
+ },
7335
+ enumerable: false,
7336
+ configurable: true
7337
+ });
7338
+ Object.defineProperty(Locale2.prototype, "calendars", {
7339
+ /**
7340
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.calendars
7341
+ */
7342
+ get: function() {
7343
+ return calendarsOfLocale(this);
7344
+ },
7345
+ enumerable: false,
7346
+ configurable: true
7347
+ });
7348
+ Object.defineProperty(Locale2.prototype, "collations", {
7349
+ /**
7350
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.collations
7351
+ */
7352
+ get: function() {
7353
+ return collationsOfLocale(this);
7354
+ },
7355
+ enumerable: false,
7356
+ configurable: true
7357
+ });
7358
+ Object.defineProperty(Locale2.prototype, "hourCycles", {
7359
+ /**
7360
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.hourCycles
7361
+ */
7362
+ get: function() {
7363
+ return hourCyclesOfLocale(this);
7364
+ },
7365
+ enumerable: false,
7366
+ configurable: true
7367
+ });
7368
+ Object.defineProperty(Locale2.prototype, "numberingSystems", {
7369
+ /**
7370
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.numberingSystems
7371
+ */
7372
+ get: function() {
7373
+ return numberingSystemsOfLocale(this);
7374
+ },
7375
+ enumerable: false,
7376
+ configurable: true
7377
+ });
7378
+ Object.defineProperty(Locale2.prototype, "timeZones", {
7379
+ /**
7380
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.timeZones
7381
+ */
7382
+ get: function() {
7383
+ return timeZonesOfLocale(this);
7384
+ },
7385
+ enumerable: false,
7386
+ configurable: true
7387
+ });
7388
+ Object.defineProperty(Locale2.prototype, "textInfo", {
7389
+ /**
7390
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.textInfo
7391
+ */
7392
+ get: function() {
7393
+ try {
7394
+ var info = Object.create(Object.prototype);
7395
+ var dir = characterDirectionOfLocale(this);
7396
+ Object.defineProperty(info, "direction", {
7397
+ value: dir,
7398
+ writable: true,
7399
+ enumerable: true,
7400
+ configurable: true
7401
+ });
7402
+ return info;
7403
+ } catch (e) {
7404
+ throw new TypeError("Error retrieving textInfo");
7405
+ }
7406
+ },
7407
+ enumerable: false,
7408
+ configurable: true
7409
+ });
7410
+ Object.defineProperty(Locale2.prototype, "weekInfo", {
7411
+ /**
7412
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.weekInfo
7413
+ */
7414
+ get: function() {
7415
+ try {
7416
+ var info = Object.create(Object.prototype);
7417
+ var wi = weekInfoOfLocale(this);
7418
+ var we = wi.weekend;
7419
+ Object.defineProperty(info, "firstDay", {
7420
+ value: wi.firstDay,
7421
+ writable: true,
7422
+ enumerable: true,
7423
+ configurable: true
7424
+ });
7425
+ Object.defineProperty(info, "weekend", {
7426
+ value: we,
7427
+ writable: true,
7428
+ enumerable: true,
7429
+ configurable: true
7430
+ });
7431
+ Object.defineProperty(info, "minimalDays", {
7432
+ value: wi.minimalDays,
7433
+ writable: true,
7434
+ enumerable: true,
7435
+ configurable: true
7436
+ });
7437
+ return info;
7438
+ } catch (e) {
7439
+ throw new TypeError("Error retrieving weekInfo");
7440
+ }
7441
+ },
7442
+ enumerable: false,
7443
+ configurable: true
7444
+ });
7445
+ Locale2.relevantExtensionKeys = RELEVANT_EXTENSION_KEYS;
7446
+ Locale2.polyfilled = true;
7447
+ return Locale2;
7448
+ }()
7449
+ );
5094
7450
  try {
5095
7451
  if (typeof Symbol !== "undefined") {
5096
7452
  Object.defineProperty(Locale.prototype, Symbol.toStringTag, {