@nika-js/onlymap 0.3.0 → 0.3.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/.vscode/onlymap.code-snippets +13 -0
- package/LICENSE.md +4 -0
- package/README.md +4 -3
- package/THIRD-PARTY-LICENSES.md +7874 -0
- package/dist/{Arrow.dom-7AXne1TU.js → Arrow.dom-BNjbQ9jb.js} +23 -23
- package/dist/LercDecode.es-CVmNpXBp.js +303 -0
- package/dist/assets/LercDecode.es-BJb2dZu5.js +305 -0
- package/dist/assets/__vite-browser-external-DDArsqdc.js +29 -0
- package/dist/assets/lerc-wasm.wasm +0 -0
- package/dist/assets/lzw-BY5a_5nb.js +83 -0
- package/dist/assets/worker-DtIrTJB7.js +305 -0
- package/dist/assets/zstd-QGAv3PMm.js +383 -0
- package/dist/{basemap-DrK6zcu8.js → basemap-BSb-g03Z.js} +6228 -6247
- package/dist/{convert-arrow-schema-CvZ3cT5m.js → convert-arrow-schema-DrAihRf9.js} +31 -31
- package/dist/ctx.d.ts +3 -0
- package/dist/index-CIEkseeV.js +3108 -0
- package/dist/index-D67FynN5.js +594 -0
- package/dist/{index-C9tgnPNw.js → index-QSkZjzIL.js} +4 -4
- package/dist/index-WeMwLoaQ.js +1446 -0
- package/dist/{index-CsicbycJ.js → index-lV5eG2Xt.js} +21442 -21860
- package/dist/index.d.ts +2 -0
- package/dist/ir.d.ts +3 -0
- package/dist/layer-registry.d.ts +15 -1
- package/dist/legend-spec.d.ts +66 -0
- package/dist/lerc-DJzRIT6z.js +30 -0
- package/dist/lerc-wasm.wasm +0 -0
- package/dist/lzw-BY5a_5nb.js +83 -0
- package/dist/mgrs-BY9bIvp4.js +799 -0
- package/dist/onlymapjs.css +1 -1
- package/dist/onlymapjs.js +24 -23
- package/dist/raster-BKf1dx54.js +8843 -0
- package/dist/raster.d.ts +61 -0
- package/dist/{recordbatch-HRu0SMKp.js → recordbatch-Bpc0uxFn.js} +200 -200
- package/dist/{table-accessors-DBjWgN0C.js → table-accessors-CYWTzpQI.js} +71 -76
- package/dist/version.d.ts +1 -1
- package/dist/zstd-jXobGRcq.js +14 -0
- package/llms.txt +3 -3
- package/onlymapjs.html-data.json +23 -0
- package/package.json +18 -15
- package/skills/onlymapjs/SKILL.md +3 -1
- package/skills/onlymapjs/references/syntax.md +29 -2
- package/dist/index-CiuGqS0i.js +0 -605
- package/dist/index-DXoRERAy.js +0 -1457
- package/dist/index-Ztkd30f8.js +0 -3907
- package/dist/onlymapjs.umd.cjs +0 -8708
package/dist/raster.d.ts
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Native COG/GeoTIFF raster layer (spec: "Raster / GeoTIFF — native COG
|
|
3
|
+
* layer"). A LAZY chunk — dynamically imported the first time a manifest
|
|
4
|
+
* uses `type="COGLayer"` (see layer-registry's `loadClass` seam), so the
|
|
5
|
+
* eager bundle stays raster-free.
|
|
6
|
+
*
|
|
7
|
+
* Built on `@developmentseed/deck.gl-geotiff` + `deck.gl-raster` (MIT),
|
|
8
|
+
* compiled INSIDE the library so their `@deck.gl/*` imports resolve to the
|
|
9
|
+
* bundled deck — the class-identity requirement that rules out consuming
|
|
10
|
+
* these packages from a consumer's own node_modules.
|
|
11
|
+
*
|
|
12
|
+
* Two render paths, chosen per instance:
|
|
13
|
+
* - UNSTYLED (no min/max/colormap/nodata authored): COGLayer's own inferred
|
|
14
|
+
* default pipeline — correct for plain 8-bit RGB/gray COGs, zero config.
|
|
15
|
+
* - STYLED: a Float32-aware getTileData/renderTile pair (ported from a
|
|
16
|
+
* production consumer): tile pixels upload as r32float / rgba32float
|
|
17
|
+
* textures, then FilterNoDataVal (raw values, BEFORE rescale) →
|
|
18
|
+
* LinearRescale (min/max → [0,1]) → Colormap (single-band only, sampled
|
|
19
|
+
* from the bundled sprite). Restretch/recolor = uniform updates on a new
|
|
20
|
+
* layer instance; the tile cache survives because `getTileData` is a
|
|
21
|
+
* module-level stable reference.
|
|
22
|
+
*/
|
|
23
|
+
import type { Texture } from "@luma.gl/core";
|
|
24
|
+
import { COGLayer } from "@developmentseed/deck.gl-geotiff";
|
|
25
|
+
/** The styled path's per-tile payload (satisfies MinimalTileData + ours). */
|
|
26
|
+
type OmTileData = {
|
|
27
|
+
width: number;
|
|
28
|
+
height: number;
|
|
29
|
+
byteLength: number;
|
|
30
|
+
texture: Texture;
|
|
31
|
+
colormapTexture: Texture;
|
|
32
|
+
bandCount: number;
|
|
33
|
+
nodata: number | null;
|
|
34
|
+
};
|
|
35
|
+
export interface OmCOGLayerExtraProps {
|
|
36
|
+
/** Rescale window; both default to the 8-bit range when absent. */
|
|
37
|
+
rescaleMin?: number | null;
|
|
38
|
+
rescaleMax?: number | null;
|
|
39
|
+
/** Sprite colormap name (single-band sources only). Unknown names warn + fall back to gray. */
|
|
40
|
+
colormap?: string | null;
|
|
41
|
+
/** Overrides the source's own nodata sentinel. */
|
|
42
|
+
nodataOverride?: number | null;
|
|
43
|
+
}
|
|
44
|
+
type AnyProps = Record<string, unknown>;
|
|
45
|
+
declare const OmCOGLayer_base: new (...props: AnyProps[]) => InstanceType<typeof COGLayer>;
|
|
46
|
+
/**
|
|
47
|
+
* The manifest-facing class behind `<om-layer type="COGLayer">`. Styling
|
|
48
|
+
* attributes present → the Float32 pipeline above; none → the upstream
|
|
49
|
+
* inferred default pipeline (plain RGB COGs render correctly untouched).
|
|
50
|
+
*/
|
|
51
|
+
export declare class OmCOGLayer extends OmCOGLayer_base {
|
|
52
|
+
static layerName: string;
|
|
53
|
+
static defaultProps: {
|
|
54
|
+
rescaleMin: null;
|
|
55
|
+
rescaleMax: null;
|
|
56
|
+
colormap: null;
|
|
57
|
+
nodataOverride: null;
|
|
58
|
+
};
|
|
59
|
+
constructor(props: AnyProps);
|
|
60
|
+
}
|
|
61
|
+
export type { OmTileData };
|
|
@@ -180,7 +180,7 @@ function q(e, t) {
|
|
|
180
180
|
yield L(yield* ye(Wt(ve((function* (a) {
|
|
181
181
|
let c = null;
|
|
182
182
|
do
|
|
183
|
-
c = a.next(yield c
|
|
183
|
+
c = a.next(yield c?.value);
|
|
184
184
|
while (!c.done);
|
|
185
185
|
})(o[Symbol.iterator]())))));
|
|
186
186
|
});
|
|
@@ -454,87 +454,87 @@ var Mn, Nn, Un, Cn, Fn, Ln, En, Vn, xn, kn, jn, zn, $n, Pn, Rn, Yn, Wn, Hn, Kn,
|
|
|
454
454
|
class A {
|
|
455
455
|
/** @nocollapse */
|
|
456
456
|
static isNull(t) {
|
|
457
|
-
return
|
|
457
|
+
return t?.typeId === l.Null;
|
|
458
458
|
}
|
|
459
459
|
/** @nocollapse */
|
|
460
460
|
static isInt(t) {
|
|
461
|
-
return
|
|
461
|
+
return t?.typeId === l.Int;
|
|
462
462
|
}
|
|
463
463
|
/** @nocollapse */
|
|
464
464
|
static isFloat(t) {
|
|
465
|
-
return
|
|
465
|
+
return t?.typeId === l.Float;
|
|
466
466
|
}
|
|
467
467
|
/** @nocollapse */
|
|
468
468
|
static isBinary(t) {
|
|
469
|
-
return
|
|
469
|
+
return t?.typeId === l.Binary;
|
|
470
470
|
}
|
|
471
471
|
/** @nocollapse */
|
|
472
472
|
static isLargeBinary(t) {
|
|
473
|
-
return
|
|
473
|
+
return t?.typeId === l.LargeBinary;
|
|
474
474
|
}
|
|
475
475
|
/** @nocollapse */
|
|
476
476
|
static isUtf8(t) {
|
|
477
|
-
return
|
|
477
|
+
return t?.typeId === l.Utf8;
|
|
478
478
|
}
|
|
479
479
|
/** @nocollapse */
|
|
480
480
|
static isLargeUtf8(t) {
|
|
481
|
-
return
|
|
481
|
+
return t?.typeId === l.LargeUtf8;
|
|
482
482
|
}
|
|
483
483
|
/** @nocollapse */
|
|
484
484
|
static isBool(t) {
|
|
485
|
-
return
|
|
485
|
+
return t?.typeId === l.Bool;
|
|
486
486
|
}
|
|
487
487
|
/** @nocollapse */
|
|
488
488
|
static isDecimal(t) {
|
|
489
|
-
return
|
|
489
|
+
return t?.typeId === l.Decimal;
|
|
490
490
|
}
|
|
491
491
|
/** @nocollapse */
|
|
492
492
|
static isDate(t) {
|
|
493
|
-
return
|
|
493
|
+
return t?.typeId === l.Date;
|
|
494
494
|
}
|
|
495
495
|
/** @nocollapse */
|
|
496
496
|
static isTime(t) {
|
|
497
|
-
return
|
|
497
|
+
return t?.typeId === l.Time;
|
|
498
498
|
}
|
|
499
499
|
/** @nocollapse */
|
|
500
500
|
static isTimestamp(t) {
|
|
501
|
-
return
|
|
501
|
+
return t?.typeId === l.Timestamp;
|
|
502
502
|
}
|
|
503
503
|
/** @nocollapse */
|
|
504
504
|
static isInterval(t) {
|
|
505
|
-
return
|
|
505
|
+
return t?.typeId === l.Interval;
|
|
506
506
|
}
|
|
507
507
|
/** @nocollapse */
|
|
508
508
|
static isDuration(t) {
|
|
509
|
-
return
|
|
509
|
+
return t?.typeId === l.Duration;
|
|
510
510
|
}
|
|
511
511
|
/** @nocollapse */
|
|
512
512
|
static isList(t) {
|
|
513
|
-
return
|
|
513
|
+
return t?.typeId === l.List;
|
|
514
514
|
}
|
|
515
515
|
/** @nocollapse */
|
|
516
516
|
static isStruct(t) {
|
|
517
|
-
return
|
|
517
|
+
return t?.typeId === l.Struct;
|
|
518
518
|
}
|
|
519
519
|
/** @nocollapse */
|
|
520
520
|
static isUnion(t) {
|
|
521
|
-
return
|
|
521
|
+
return t?.typeId === l.Union;
|
|
522
522
|
}
|
|
523
523
|
/** @nocollapse */
|
|
524
524
|
static isFixedSizeBinary(t) {
|
|
525
|
-
return
|
|
525
|
+
return t?.typeId === l.FixedSizeBinary;
|
|
526
526
|
}
|
|
527
527
|
/** @nocollapse */
|
|
528
528
|
static isFixedSizeList(t) {
|
|
529
|
-
return
|
|
529
|
+
return t?.typeId === l.FixedSizeList;
|
|
530
530
|
}
|
|
531
531
|
/** @nocollapse */
|
|
532
532
|
static isMap(t) {
|
|
533
|
-
return
|
|
533
|
+
return t?.typeId === l.Map;
|
|
534
534
|
}
|
|
535
535
|
/** @nocollapse */
|
|
536
536
|
static isDictionary(t) {
|
|
537
|
-
return
|
|
537
|
+
return t?.typeId === l.Dictionary;
|
|
538
538
|
}
|
|
539
539
|
/** @nocollapse */
|
|
540
540
|
static isDenseUnion(t) {
|
|
@@ -982,10 +982,10 @@ we[Gn] = ((e) => (e.children = null, e.listSize = null, e[Symbol.toStringTag] =
|
|
|
982
982
|
class Ae extends A {
|
|
983
983
|
constructor(t, n = !1) {
|
|
984
984
|
var i, r, s;
|
|
985
|
-
if (super(l.Map), this.children = [t], this.keysSorted = n, t && (t.name = "entries", !((i = t
|
|
986
|
-
const o = (r = t
|
|
985
|
+
if (super(l.Map), this.children = [t], this.keysSorted = n, t && (t.name = "entries", !((i = t?.type) === null || i === void 0) && i.children)) {
|
|
986
|
+
const o = (r = t?.type) === null || r === void 0 ? void 0 : r.children[0];
|
|
987
987
|
o && (o.name = "key");
|
|
988
|
-
const a = (s = t
|
|
988
|
+
const a = (s = t?.type) === null || s === void 0 ? void 0 : s.children[1];
|
|
989
989
|
a && (a.name = "value");
|
|
990
990
|
}
|
|
991
991
|
}
|
|
@@ -1119,7 +1119,7 @@ class _ {
|
|
|
1119
1119
|
}
|
|
1120
1120
|
}
|
|
1121
1121
|
function bs(e, t, n = !0) {
|
|
1122
|
-
return typeof t == "number" ? ft(e, t, n) : typeof t == "string" && t in l ? ft(e, l[t], n) : t && t instanceof A ? ft(e, gn(t), n) : t
|
|
1122
|
+
return typeof t == "number" ? ft(e, t, n) : typeof t == "string" && t in l ? ft(e, l[t], n) : t && t instanceof A ? ft(e, gn(t), n) : t?.type && t.type instanceof A ? ft(e, gn(t.type), n) : ft(e, l.NONE, n);
|
|
1123
1123
|
}
|
|
1124
1124
|
function ft(e, t, n = !0) {
|
|
1125
1125
|
let i = null;
|
|
@@ -3139,7 +3139,7 @@ class P {
|
|
|
3139
3139
|
flush() {
|
|
3140
3140
|
let t, n, i, r;
|
|
3141
3141
|
const { type: s, length: o, nullCount: a, _typeIds: c, _offsets: u, _values: d, _nulls: h } = this;
|
|
3142
|
-
(n = c
|
|
3142
|
+
(n = c?.flush(o)) ? r = u?.flush(o) : (r = u?.flush(o)) ? t = d?.flush(u.last()) : t = d?.flush(o), a > 0 && (i = h?.flush(o));
|
|
3143
3143
|
const U = this.children.map((B) => B.flush());
|
|
3144
3144
|
return this.clear(), M({
|
|
3145
3145
|
type: s,
|
|
@@ -3621,7 +3621,7 @@ class on extends P {
|
|
|
3621
3621
|
setValue(t, n, i) {
|
|
3622
3622
|
this._typeIds.set(t, i);
|
|
3623
3623
|
const r = this.type.typeIdToChildIndex[i], s = this.children[r];
|
|
3624
|
-
s
|
|
3624
|
+
s?.set(t, n), this.length = Math.max(t + 1, this.length);
|
|
3625
3625
|
}
|
|
3626
3626
|
addChild(t, n = `${this.children.length}`) {
|
|
3627
3627
|
const i = this.children.push(t), { type: { children: r, mode: s, typeIds: o } } = this, a = [...r, new k(n, t.type)];
|
|
@@ -3642,7 +3642,7 @@ class jo extends on {
|
|
|
3642
3642
|
/** @ignore */
|
|
3643
3643
|
setValue(t, n, i) {
|
|
3644
3644
|
const r = this._typeIds.set(t, i).buffer[t], s = this.getChildAt(this.type.typeIdToChildIndex[r]), o = this._offsets.set(t, s.length).buffer[t];
|
|
3645
|
-
s
|
|
3645
|
+
s?.set(o, n), this.length = Math.max(t + 1, this.length);
|
|
3646
3646
|
}
|
|
3647
3647
|
}
|
|
3648
3648
|
class wr extends _t {
|
|
@@ -4088,12 +4088,12 @@ function Xo(e, t, n, i, r) {
|
|
|
4088
4088
|
var s;
|
|
4089
4089
|
const o = (t + 63 & -64) >> 3;
|
|
4090
4090
|
for (let a = -1, c = i.length; ++a < c; ) {
|
|
4091
|
-
const u = n[a], d = u
|
|
4091
|
+
const u = n[a], d = u?.length;
|
|
4092
4092
|
if (d >= t)
|
|
4093
4093
|
d === t ? n[a] = u : (n[a] = u.slice(0, t), r.numBatches = Math.max(r.numBatches, i[a].unshift(u.slice(t, d - t))));
|
|
4094
4094
|
else {
|
|
4095
4095
|
const h = e[a];
|
|
4096
|
-
e[a] = h.clone({ nullable: !0 }), n[a] = (s = u
|
|
4096
|
+
e[a] = h.clone({ nullable: !0 }), n[a] = (s = u?._changeLengthAndBackfillNullBitmap(t)) !== null && s !== void 0 ? s : M({
|
|
4097
4097
|
type: h.type,
|
|
4098
4098
|
length: t,
|
|
4099
4099
|
nullCount: t,
|
|
@@ -4530,7 +4530,7 @@ function wn(e, t, n = t.reduce((i, r) => Math.max(i, r.length), 0)) {
|
|
|
4530
4530
|
const r = [...e.fields], s = [...t], o = (n + 63 & -64) >> 3;
|
|
4531
4531
|
for (const [a, c] of e.fields.entries()) {
|
|
4532
4532
|
const u = t[a];
|
|
4533
|
-
(!u || u.length !== n) && (r[a] = c.clone({ nullable: !0 }), s[a] = (i = u
|
|
4533
|
+
(!u || u.length !== n) && (r[a] = c.clone({ nullable: !0 }), s[a] = (i = u?._changeLengthAndBackfillNullBitmap(n)) !== null && i !== void 0 ? i : M({
|
|
4534
4534
|
type: c.type,
|
|
4535
4535
|
length: n,
|
|
4536
4536
|
nullCount: n,
|
|
@@ -4544,15 +4544,15 @@ function wn(e, t, n = t.reduce((i, r) => Math.max(i, r.length), 0)) {
|
|
|
4544
4544
|
}
|
|
4545
4545
|
function Tr(e, t, n = /* @__PURE__ */ new Map()) {
|
|
4546
4546
|
var i, r;
|
|
4547
|
-
if (((i = e
|
|
4547
|
+
if (((i = e?.length) !== null && i !== void 0 ? i : 0) > 0 && e?.length === t?.length)
|
|
4548
4548
|
for (let s = -1, o = e.length; ++s < o; ) {
|
|
4549
4549
|
const { type: a } = e[s], c = t[s];
|
|
4550
|
-
for (const u of [c, ...((r = c
|
|
4551
|
-
Tr(a.children, u
|
|
4550
|
+
for (const u of [c, ...((r = c?.dictionary) === null || r === void 0 ? void 0 : r.data) || []])
|
|
4551
|
+
Tr(a.children, u?.children, n);
|
|
4552
4552
|
if (A.isDictionary(a)) {
|
|
4553
4553
|
const { id: u } = a;
|
|
4554
4554
|
if (!n.has(u))
|
|
4555
|
-
c
|
|
4555
|
+
c?.dictionary && n.set(u, c.dictionary);
|
|
4556
4556
|
else if (n.get(u) !== c.dictionary)
|
|
4557
4557
|
throw new Error("Cannot create Schema containing two different dictionaries with the same Id");
|
|
4558
4558
|
}
|
|
@@ -4566,177 +4566,177 @@ class Va extends V {
|
|
|
4566
4566
|
}
|
|
4567
4567
|
}
|
|
4568
4568
|
export {
|
|
4569
|
-
|
|
4570
|
-
A,
|
|
4569
|
+
W as $,
|
|
4570
|
+
R as A,
|
|
4571
4571
|
Se as B,
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4572
|
+
M as C,
|
|
4573
|
+
pn as D,
|
|
4574
|
+
sn as E,
|
|
4575
4575
|
k as F,
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4576
|
+
L as G,
|
|
4577
|
+
N as H,
|
|
4578
|
+
Ia as I,
|
|
4579
|
+
jr as J,
|
|
4580
|
+
os as K,
|
|
4581
4581
|
qt as L,
|
|
4582
|
-
|
|
4582
|
+
Ae as M,
|
|
4583
4583
|
Ft as N,
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4584
|
+
Qr as O,
|
|
4585
|
+
ta as P,
|
|
4586
|
+
Z as Q,
|
|
4587
|
+
V as R,
|
|
4588
4588
|
C as S,
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4589
|
+
va as T,
|
|
4590
|
+
Ie as U,
|
|
4591
|
+
y as V,
|
|
4592
|
+
x as W,
|
|
4593
|
+
j as X,
|
|
4594
|
+
K as Y,
|
|
4595
|
+
be as Z,
|
|
4596
4596
|
Nt as _,
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4597
|
+
Y as a,
|
|
4598
|
+
hr as a$,
|
|
4599
|
+
_ as a0,
|
|
4600
|
+
Qt as a1,
|
|
4601
|
+
yn as a2,
|
|
4602
|
+
hn as a3,
|
|
4603
|
+
fn as a4,
|
|
4604
|
+
Vt as a5,
|
|
4605
|
+
Dt as a6,
|
|
4606
|
+
Et as a7,
|
|
4607
|
+
At as a8,
|
|
4608
|
+
wt as a9,
|
|
4609
|
+
tn as aA,
|
|
4610
|
+
re as aB,
|
|
4611
|
+
ra as aC,
|
|
4612
|
+
sa as aD,
|
|
4613
|
+
Go as aE,
|
|
4614
|
+
H as aF,
|
|
4615
|
+
Zo as aG,
|
|
4616
|
+
ca as aH,
|
|
4617
|
+
Na as aI,
|
|
4618
|
+
Oa as aJ,
|
|
4619
|
+
aa as aK,
|
|
4620
|
+
Ma as aL,
|
|
4621
|
+
la as aM,
|
|
4622
|
+
Jo as aN,
|
|
4623
|
+
Ua as aO,
|
|
4624
|
+
P as aP,
|
|
4625
|
+
er as aQ,
|
|
4626
|
+
Io as aR,
|
|
4627
|
+
ce as aS,
|
|
4628
|
+
ir as aT,
|
|
4629
|
+
rr as aU,
|
|
4630
|
+
sr as aV,
|
|
4631
|
+
Ba as aW,
|
|
4632
|
+
jo as aX,
|
|
4633
|
+
So as aY,
|
|
4634
|
+
Bt as aZ,
|
|
4635
|
+
Da as a_,
|
|
4636
|
+
Jt as aa,
|
|
4637
|
+
Lt as ab,
|
|
4638
|
+
tt as ac,
|
|
4639
|
+
A as ad,
|
|
4640
|
+
Nr as ae,
|
|
4641
|
+
oa as af,
|
|
4642
|
+
Vr as ag,
|
|
4643
|
+
ia as ah,
|
|
4644
|
+
Dn as ai,
|
|
4645
|
+
Fr as aj,
|
|
4646
|
+
Lr as ak,
|
|
4647
|
+
Wt as al,
|
|
4648
|
+
Pi as am,
|
|
4649
|
+
O as an,
|
|
4650
|
+
ne as ao,
|
|
4651
|
+
na as ap,
|
|
4652
|
+
ea as aq,
|
|
4653
|
+
Er as ar,
|
|
4654
|
+
Va as as,
|
|
4655
|
+
D as at,
|
|
4656
|
+
ye as au,
|
|
4657
|
+
_e as av,
|
|
4658
|
+
hs as aw,
|
|
4659
|
+
it as ax,
|
|
4660
|
+
le as ay,
|
|
4661
|
+
$i as az,
|
|
4662
|
+
we as b,
|
|
4663
|
+
Aa as b0,
|
|
4664
|
+
dr as b1,
|
|
4665
|
+
_a as b2,
|
|
4666
|
+
yr as b3,
|
|
4667
|
+
wa as b4,
|
|
4668
|
+
ur as b5,
|
|
4669
|
+
or as b6,
|
|
4670
|
+
wo as b7,
|
|
4671
|
+
Ao as b8,
|
|
4672
|
+
Do as b9,
|
|
4673
|
+
vr as bA,
|
|
4674
|
+
Tt as bB,
|
|
4675
|
+
gr as bC,
|
|
4676
|
+
fr as bD,
|
|
4677
|
+
mr as bE,
|
|
4678
|
+
pr as bF,
|
|
4679
|
+
l as bG,
|
|
4680
|
+
Uo as bH,
|
|
4681
|
+
Co as bI,
|
|
4682
|
+
Fo as bJ,
|
|
4683
|
+
No as bK,
|
|
4684
|
+
on as bL,
|
|
4685
|
+
wr as bM,
|
|
4686
|
+
Fa as bN,
|
|
4687
|
+
qo as bO,
|
|
4688
|
+
La as bP,
|
|
4689
4689
|
Ea as bQ,
|
|
4690
4690
|
Ca as bR,
|
|
4691
4691
|
Dr as bS,
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4692
|
+
_o as ba,
|
|
4693
|
+
ue as bb,
|
|
4694
|
+
To as bc,
|
|
4695
|
+
Oo as bd,
|
|
4696
|
+
Mo as be,
|
|
4697
|
+
Bo as bf,
|
|
4698
|
+
ot as bg,
|
|
4699
|
+
zt as bh,
|
|
4700
|
+
ar as bi,
|
|
4701
|
+
Sa as bj,
|
|
4702
|
+
cr as bk,
|
|
4703
|
+
lr as bl,
|
|
4704
|
+
nr as bm,
|
|
4705
|
+
Ar as bn,
|
|
4706
|
+
Lo as bo,
|
|
4707
|
+
Eo as bp,
|
|
4708
|
+
se as bq,
|
|
4709
|
+
Vo as br,
|
|
4710
|
+
Ta as bs,
|
|
4711
|
+
ko as bt,
|
|
4712
|
+
xo as bu,
|
|
4713
|
+
Xe as bv,
|
|
4714
|
+
Ot as bw,
|
|
4715
|
+
Ir as bx,
|
|
4716
|
+
br as by,
|
|
4717
|
+
Sr as bz,
|
|
4718
|
+
ba as c,
|
|
4719
|
+
ma as d,
|
|
4720
|
+
ms as e,
|
|
4721
|
+
ga as f,
|
|
4722
|
+
fa as g,
|
|
4723
|
+
pa as h,
|
|
4724
|
+
ya as i,
|
|
4725
|
+
ha as j,
|
|
4726
|
+
da as k,
|
|
4727
|
+
ua as l,
|
|
4728
|
+
Ue as m,
|
|
4729
|
+
ii as n,
|
|
4730
|
+
gs as o,
|
|
4731
|
+
ni as p,
|
|
4732
|
+
ei as q,
|
|
4733
|
+
ti as r,
|
|
4734
|
+
Zn as s,
|
|
4735
|
+
Ne as t,
|
|
4736
|
+
Me as u,
|
|
4737
|
+
Xn as v,
|
|
4738
|
+
Qn as w,
|
|
4739
|
+
dn as x,
|
|
4740
|
+
xt as y,
|
|
4741
|
+
T as z
|
|
4742
4742
|
};
|