mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 21:31:02 +00:00
1 line
124 KiB
Plaintext
1 line
124 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"],"imports":1}},{"name":"../utils.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":14,"column":19,"index":540},"end":{"line":14,"column":41,"index":562}}],"key":"Yc7DmwhweSDBIC4bv+r2fO8xp6U=","exportNames":["*"],"imports":1}},{"name":"./curve.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":15,"column":19,"index":583},"end":{"line":15,"column":40,"index":604}}],"key":"D2lpvogjUpmMFXMnxIh5QgGQVQM=","exportNames":["*"],"imports":1}},{"name":"./modular.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":16,"column":21,"index":627},"end":{"line":16,"column":44,"index":650}}],"key":"pkHxIsiyj9LvPZma2E+OjOIbg7k=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _classCallCheck = require(_dependencyMap[0], \"@babel/runtime/helpers/classCallCheck\").default;\n var _createClass = require(_dependencyMap[1], \"@babel/runtime/helpers/createClass\").default;\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.PrimeEdwardsPoint = void 0;\n exports.edwards = edwards;\n exports.eddsa = eddsa;\n exports.twistedEdwards = twistedEdwards;\n /**\n * Twisted Edwards curve. The formula is: ax² + y² = 1 + dx²y².\n * For design rationale of types / exports, see weierstrass module documentation.\n * Untwisted Edwards curves exist, but they aren't used in real-world protocols.\n * @module\n */\n /*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */\n var utils_ts_1 = require(_dependencyMap[2], \"../utils.js\");\n var curve_ts_1 = require(_dependencyMap[3], \"./curve.js\");\n var modular_ts_1 = require(_dependencyMap[4], \"./modular.js\");\n // Be friendly to bad ECMAScript parsers by not using bigint literals\n // prettier-ignore\n var _0n = BigInt(0),\n _1n = BigInt(1),\n _2n = BigInt(2),\n _8n = BigInt(8);\n function isEdValidXY(Fp, CURVE, x, y) {\n var x2 = Fp.sqr(x);\n var y2 = Fp.sqr(y);\n var left = Fp.add(Fp.mul(CURVE.a, x2), y2);\n var right = Fp.add(Fp.ONE, Fp.mul(CURVE.d, Fp.mul(x2, y2)));\n return Fp.eql(left, right);\n }\n function edwards(params) {\n var extraOpts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var validated = (0, curve_ts_1._createCurveFields)('edwards', params, extraOpts, extraOpts.FpFnLE);\n var Fp = validated.Fp,\n Fn = validated.Fn;\n var _CURVE = validated.CURVE;\n var cofactor = _CURVE.h;\n (0, utils_ts_1._validateObject)(extraOpts, {}, {\n uvRatio: 'function'\n });\n // Important:\n // There are some places where Fp.BYTES is used instead of nByteLength.\n // So far, everything has been tested with curves of Fp.BYTES == nByteLength.\n // TODO: test and find curves which behave otherwise.\n var MASK = _2n << BigInt(Fn.BYTES * 8) - _1n;\n var modP = function modP(n) {\n return Fp.create(n);\n }; // Function overrides\n // sqrt(u/v)\n var uvRatio = extraOpts.uvRatio || function (u, v) {\n try {\n return {\n isValid: true,\n value: Fp.sqrt(Fp.div(u, v))\n };\n } catch (e) {\n return {\n isValid: false,\n value: _0n\n };\n }\n };\n // Validate whether the passed curve params are valid.\n // equation ax² + y² = 1 + dx²y² should work for generator point.\n if (!isEdValidXY(Fp, _CURVE, _CURVE.Gx, _CURVE.Gy)) throw new Error('bad curve params: generator point');\n /**\n * Asserts coordinate is valid: 0 <= n < MASK.\n * Coordinates >= Fp.ORDER are allowed for zip215.\n */\n function acoord(title, n) {\n var banZero = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var min = banZero ? _1n : _0n;\n (0, utils_ts_1.aInRange)('coordinate ' + title, n, min, MASK);\n return n;\n }\n function aextpoint(other) {\n if (!(other instanceof Point)) throw new Error('ExtendedPoint expected');\n }\n // Converts Extended point to default (x, y) coordinates.\n // Can accept precomputed Z^-1 - for example, from invertBatch.\n var toAffineMemo = (0, utils_ts_1.memoized)(function (p, iz) {\n var X = p.X,\n Y = p.Y,\n Z = p.Z;\n var is0 = p.is0();\n if (iz == null) iz = is0 ? _8n : Fp.inv(Z); // 8 was chosen arbitrarily\n var x = modP(X * iz);\n var y = modP(Y * iz);\n var zz = Fp.mul(Z, iz);\n if (is0) return {\n x: _0n,\n y: _1n\n };\n if (zz !== _1n) throw new Error('invZ was invalid');\n return {\n x: x,\n y: y\n };\n });\n var assertValidMemo = (0, utils_ts_1.memoized)(function (p) {\n var a = _CURVE.a,\n d = _CURVE.d;\n if (p.is0()) throw new Error('bad point: ZERO'); // TODO: optimize, with vars below?\n // Equation in affine coordinates: ax² + y² = 1 + dx²y²\n // Equation in projective coordinates (X/Z, Y/Z, Z): (aX² + Y²)Z² = Z⁴ + dX²Y²\n var X = p.X,\n Y = p.Y,\n Z = p.Z,\n T = p.T;\n var X2 = modP(X * X); // X²\n var Y2 = modP(Y * Y); // Y²\n var Z2 = modP(Z * Z); // Z²\n var Z4 = modP(Z2 * Z2); // Z⁴\n var aX2 = modP(X2 * a); // aX²\n var left = modP(Z2 * modP(aX2 + Y2)); // (aX² + Y²)Z²\n var right = modP(Z4 + modP(d * modP(X2 * Y2))); // Z⁴ + dX²Y²\n if (left !== right) throw new Error('bad point: equation left != right (1)');\n // In Extended coordinates we also have T, which is x*y=T/Z: check X*Y == Z*T\n var XY = modP(X * Y);\n var ZT = modP(Z * T);\n if (XY !== ZT) throw new Error('bad point: equation left != right (2)');\n return true;\n });\n // Extended Point works in extended coordinates: (X, Y, Z, T) ∋ (x=X/Z, y=Y/Z, T=xy).\n // https://en.wikipedia.org/wiki/Twisted_Edwards_curve#Extended_coordinates\n var Point = /*#__PURE__*/function () {\n function Point(X, Y, Z, T) {\n _classCallCheck(this, Point);\n this.X = acoord('x', X);\n this.Y = acoord('y', Y);\n this.Z = acoord('z', Z, true);\n this.T = acoord('t', T);\n Object.freeze(this);\n }\n return _createClass(Point, [{\n key: \"x\",\n get: function get() {\n return this.toAffine().x;\n }\n }, {\n key: \"y\",\n get: function get() {\n return this.toAffine().y;\n }\n }, {\n key: \"precompute\",\n value: function precompute() {\n var windowSize = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 8;\n var isLazy = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;\n wnaf.createCache(this, windowSize);\n if (!isLazy) this.multiply(_2n); // random number\n return this;\n }\n // Useful in fromAffine() - not for fromBytes(), which always created valid points.\n }, {\n key: \"assertValidity\",\n value: function assertValidity() {\n assertValidMemo(this);\n }\n // Compare one point to another.\n }, {\n key: \"equals\",\n value: function equals(other) {\n aextpoint(other);\n var X1 = this.X,\n Y1 = this.Y,\n Z1 = this.Z;\n var X2 = other.X,\n Y2 = other.Y,\n Z2 = other.Z;\n var X1Z2 = modP(X1 * Z2);\n var X2Z1 = modP(X2 * Z1);\n var Y1Z2 = modP(Y1 * Z2);\n var Y2Z1 = modP(Y2 * Z1);\n return X1Z2 === X2Z1 && Y1Z2 === Y2Z1;\n }\n }, {\n key: \"is0\",\n value: function is0() {\n return this.equals(Point.ZERO);\n }\n }, {\n key: \"negate\",\n value: function negate() {\n // Flips point sign to a negative one (-x, y in affine coords)\n return new Point(modP(-this.X), this.Y, this.Z, modP(-this.T));\n }\n // Fast algo for doubling Extended Point.\n // https://hyperelliptic.org/EFD/g1p/auto-twisted-extended.html#doubling-dbl-2008-hwcd\n // Cost: 4M + 4S + 1*a + 6add + 1*2.\n }, {\n key: \"double\",\n value: function double() {\n var a = _CURVE.a;\n var X1 = this.X,\n Y1 = this.Y,\n Z1 = this.Z;\n var A = modP(X1 * X1); // A = X12\n var B = modP(Y1 * Y1); // B = Y12\n var C = modP(_2n * modP(Z1 * Z1)); // C = 2*Z12\n var D = modP(a * A); // D = a*A\n var x1y1 = X1 + Y1;\n var E = modP(modP(x1y1 * x1y1) - A - B); // E = (X1+Y1)2-A-B\n var G = D + B; // G = D+B\n var F = G - C; // F = G-C\n var H = D - B; // H = D-B\n var X3 = modP(E * F); // X3 = E*F\n var Y3 = modP(G * H); // Y3 = G*H\n var T3 = modP(E * H); // T3 = E*H\n var Z3 = modP(F * G); // Z3 = F*G\n return new Point(X3, Y3, Z3, T3);\n }\n // Fast algo for adding 2 Extended Points.\n // https://hyperelliptic.org/EFD/g1p/auto-twisted-extended.html#addition-add-2008-hwcd\n // Cost: 9M + 1*a + 1*d + 7add.\n }, {\n key: \"add\",\n value: function add(other) {\n aextpoint(other);\n var a = _CURVE.a,\n d = _CURVE.d;\n var X1 = this.X,\n Y1 = this.Y,\n Z1 = this.Z,\n T1 = this.T;\n var X2 = other.X,\n Y2 = other.Y,\n Z2 = other.Z,\n T2 = other.T;\n var A = modP(X1 * X2); // A = X1*X2\n var B = modP(Y1 * Y2); // B = Y1*Y2\n var C = modP(T1 * d * T2); // C = T1*d*T2\n var D = modP(Z1 * Z2); // D = Z1*Z2\n var E = modP((X1 + Y1) * (X2 + Y2) - A - B); // E = (X1+Y1)*(X2+Y2)-A-B\n var F = D - C; // F = D-C\n var G = D + C; // G = D+C\n var H = modP(B - a * A); // H = B-a*A\n var X3 = modP(E * F); // X3 = E*F\n var Y3 = modP(G * H); // Y3 = G*H\n var T3 = modP(E * H); // T3 = E*H\n var Z3 = modP(F * G); // Z3 = F*G\n return new Point(X3, Y3, Z3, T3);\n }\n }, {\n key: \"subtract\",\n value: function subtract(other) {\n return this.add(other.negate());\n }\n // Constant-time multiplication.\n }, {\n key: \"multiply\",\n value: function multiply(scalar) {\n // 1 <= scalar < L\n if (!Fn.isValidNot0(scalar)) throw new Error('invalid scalar: expected 1 <= sc < curve.n');\n var _wnaf$cached = wnaf.cached(this, scalar, function (p) {\n return (0, curve_ts_1.normalizeZ)(Point, p);\n }),\n p = _wnaf$cached.p,\n f = _wnaf$cached.f;\n return (0, curve_ts_1.normalizeZ)(Point, [p, f])[0];\n }\n // Non-constant-time multiplication. Uses double-and-add algorithm.\n // It's faster, but should only be used when you don't care about\n // an exposed private key e.g. sig verification.\n // Does NOT allow scalars higher than CURVE.n.\n // Accepts optional accumulator to merge with multiply (important for sparse scalars)\n }, {\n key: \"multiplyUnsafe\",\n value: function multiplyUnsafe(scalar) {\n var acc = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Point.ZERO;\n // 0 <= scalar < L\n if (!Fn.isValid(scalar)) throw new Error('invalid scalar: expected 0 <= sc < curve.n');\n if (scalar === _0n) return Point.ZERO;\n if (this.is0() || scalar === _1n) return this;\n return wnaf.unsafe(this, scalar, function (p) {\n return (0, curve_ts_1.normalizeZ)(Point, p);\n }, acc);\n }\n // Checks if point is of small order.\n // If you add something to small order point, you will have \"dirty\"\n // point with torsion component.\n // Multiplies point by cofactor and checks if the result is 0.\n }, {\n key: \"isSmallOrder\",\n value: function isSmallOrder() {\n return this.multiplyUnsafe(cofactor).is0();\n }\n // Multiplies point by curve order and checks if the result is 0.\n // Returns `false` is the point is dirty.\n }, {\n key: \"isTorsionFree\",\n value: function isTorsionFree() {\n return wnaf.unsafe(this, _CURVE.n).is0();\n }\n // Converts Extended point to default (x, y) coordinates.\n // Can accept precomputed Z^-1 - for example, from invertBatch.\n }, {\n key: \"toAffine\",\n value: function toAffine(invertedZ) {\n return toAffineMemo(this, invertedZ);\n }\n }, {\n key: \"clearCofactor\",\n value: function clearCofactor() {\n if (cofactor === _1n) return this;\n return this.multiplyUnsafe(cofactor);\n }\n }, {\n key: \"toBytes\",\n value: function toBytes() {\n var _this$toAffine = this.toAffine(),\n x = _this$toAffine.x,\n y = _this$toAffine.y;\n // Fp.toBytes() allows non-canonical encoding of y (>= p).\n var bytes = Fp.toBytes(y);\n // Each y has 2 valid points: (x, y), (x,-y).\n // When compressing, it's enough to store y and use the last byte to encode sign of x\n bytes[bytes.length - 1] |= x & _1n ? 0x80 : 0;\n return bytes;\n }\n }, {\n key: \"toHex\",\n value: function toHex() {\n return (0, utils_ts_1.bytesToHex)(this.toBytes());\n }\n }, {\n key: \"toString\",\n value: function toString() {\n return `<Point ${this.is0() ? 'ZERO' : this.toHex()}>`;\n }\n // TODO: remove\n }, {\n key: \"ex\",\n get: function get() {\n return this.X;\n }\n }, {\n key: \"ey\",\n get: function get() {\n return this.Y;\n }\n }, {\n key: \"ez\",\n get: function get() {\n return this.Z;\n }\n }, {\n key: \"et\",\n get: function get() {\n return this.T;\n }\n }, {\n key: \"_setWindowSize\",\n value: function _setWindowSize(windowSize) {\n this.precompute(windowSize);\n }\n }, {\n key: \"toRawBytes\",\n value: function toRawBytes() {\n return this.toBytes();\n }\n }], [{\n key: \"CURVE\",\n value: function CURVE() {\n return _CURVE;\n }\n }, {\n key: \"fromAffine\",\n value: function fromAffine(p) {\n if (p instanceof Point) throw new Error('extended point not allowed');\n var _ref = p || {},\n x = _ref.x,\n y = _ref.y;\n acoord('x', x);\n acoord('y', y);\n return new Point(x, y, _1n, modP(x * y));\n }\n // Uses algo from RFC8032 5.1.3.\n }, {\n key: \"fromBytes\",\n value: function fromBytes(bytes) {\n var zip215 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n var len = Fp.BYTES;\n var a = _CURVE.a,\n d = _CURVE.d;\n bytes = (0, utils_ts_1.copyBytes)((0, utils_ts_1._abytes2)(bytes, len, 'point'));\n (0, utils_ts_1._abool2)(zip215, 'zip215');\n var normed = (0, utils_ts_1.copyBytes)(bytes); // copy again, we'll manipulate it\n var lastByte = bytes[len - 1]; // select last byte\n normed[len - 1] = lastByte & ~0x80; // clear last bit\n var y = (0, utils_ts_1.bytesToNumberLE)(normed);\n // zip215=true is good for consensus-critical apps. =false follows RFC8032 / NIST186-5.\n // RFC8032 prohibits >= p, but ZIP215 doesn't\n // zip215=true: 0 <= y < MASK (2^256 for ed25519)\n // zip215=false: 0 <= y < P (2^255-19 for ed25519)\n var max = zip215 ? MASK : Fp.ORDER;\n (0, utils_ts_1.aInRange)('point.y', y, _0n, max);\n // Ed25519: x² = (y²-1)/(dy²+1) mod p. Ed448: x² = (y²-1)/(dy²-1) mod p. Generic case:\n // ax²+y²=1+dx²y² => y²-1=dx²y²-ax² => y²-1=x²(dy²-a) => x²=(y²-1)/(dy²-a)\n var y2 = modP(y * y); // denominator is always non-0 mod p.\n var u = modP(y2 - _1n); // u = y² - 1\n var v = modP(d * y2 - a); // v = d y² + 1.\n var _uvRatio = uvRatio(u, v),\n isValid = _uvRatio.isValid,\n x = _uvRatio.value; // √(u/v)\n if (!isValid) throw new Error('bad point: invalid y coordinate');\n var isXOdd = (x & _1n) === _1n; // There are 2 square roots. Use x_0 bit to select proper\n var isLastByteOdd = (lastByte & 0x80) !== 0; // x_0, last bit\n if (!zip215 && x === _0n && isLastByteOdd)\n // if x=0 and x_0 = 1, fail\n throw new Error('bad point: x=0 and x_0=1');\n if (isLastByteOdd !== isXOdd) x = modP(-x); // if x_0 != x mod 2, set x = p-x\n return Point.fromAffine({\n x: x,\n y: y\n });\n }\n }, {\n key: \"fromHex\",\n value: function fromHex(bytes) {\n var zip215 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n return Point.fromBytes((0, utils_ts_1.ensureBytes)('point', bytes), zip215);\n }\n }, {\n key: \"normalizeZ\",\n value: function normalizeZ(points) {\n return (0, curve_ts_1.normalizeZ)(Point, points);\n }\n }, {\n key: \"msm\",\n value: function msm(points, scalars) {\n return (0, curve_ts_1.pippenger)(Point, Fn, points, scalars);\n }\n }]);\n }(); // base / generator point\n Point.BASE = new Point(_CURVE.Gx, _CURVE.Gy, _1n, modP(_CURVE.Gx * _CURVE.Gy));\n // zero / infinity / identity point\n Point.ZERO = new Point(_0n, _1n, _1n, _0n); // 0, 1, 1, 0\n // math field\n Point.Fp = Fp;\n // scalar field\n Point.Fn = Fn;\n var wnaf = new curve_ts_1.wNAF(Point, Fn.BITS);\n Point.BASE.precompute(8); // Enable precomputes. Slows down first publicKey computation by 20ms.\n return Point;\n }\n /**\n * Base class for prime-order points like Ristretto255 and Decaf448.\n * These points eliminate cofactor issues by representing equivalence classes\n * of Edwards curve points.\n */\n var PrimeEdwardsPoint = /*#__PURE__*/function () {\n function PrimeEdwardsPoint(ep) {\n _classCallCheck(this, PrimeEdwardsPoint);\n this.ep = ep;\n }\n // Static methods that must be implemented by subclasses\n return _createClass(PrimeEdwardsPoint, [{\n key: \"x\",\n get: function get() {\n return this.toAffine().x;\n }\n }, {\n key: \"y\",\n get: function get() {\n return this.toAffine().y;\n }\n // Common implementations\n }, {\n key: \"clearCofactor\",\n value: function clearCofactor() {\n // no-op for prime-order groups\n return this;\n }\n }, {\n key: \"assertValidity\",\n value: function assertValidity() {\n this.ep.assertValidity();\n }\n }, {\n key: \"toAffine\",\n value: function toAffine(invertedZ) {\n return this.ep.toAffine(invertedZ);\n }\n }, {\n key: \"toHex\",\n value: function toHex() {\n return (0, utils_ts_1.bytesToHex)(this.toBytes());\n }\n }, {\n key: \"toString\",\n value: function toString() {\n return this.toHex();\n }\n }, {\n key: \"isTorsionFree\",\n value: function isTorsionFree() {\n return true;\n }\n }, {\n key: \"isSmallOrder\",\n value: function isSmallOrder() {\n return false;\n }\n }, {\n key: \"add\",\n value: function add(other) {\n this.assertSame(other);\n return this.init(this.ep.add(other.ep));\n }\n }, {\n key: \"subtract\",\n value: function subtract(other) {\n this.assertSame(other);\n return this.init(this.ep.subtract(other.ep));\n }\n }, {\n key: \"multiply\",\n value: function multiply(scalar) {\n return this.init(this.ep.multiply(scalar));\n }\n }, {\n key: \"multiplyUnsafe\",\n value: function multiplyUnsafe(scalar) {\n return this.init(this.ep.multiplyUnsafe(scalar));\n }\n }, {\n key: \"double\",\n value: function double() {\n return this.init(this.ep.double());\n }\n }, {\n key: \"negate\",\n value: function negate() {\n return this.init(this.ep.negate());\n }\n }, {\n key: \"precompute\",\n value: function precompute(windowSize, isLazy) {\n return this.init(this.ep.precompute(windowSize, isLazy));\n }\n /** @deprecated use `toBytes` */\n }, {\n key: \"toRawBytes\",\n value: function toRawBytes() {\n return this.toBytes();\n }\n }], [{\n key: \"fromBytes\",\n value: function fromBytes(_bytes) {\n (0, utils_ts_1.notImplemented)();\n }\n }, {\n key: \"fromHex\",\n value: function fromHex(_hex) {\n (0, utils_ts_1.notImplemented)();\n }\n }]);\n }();\n exports.PrimeEdwardsPoint = PrimeEdwardsPoint;\n /**\n * Initializes EdDSA signatures over given Edwards curve.\n */\n function eddsa(Point, cHash) {\n var eddsaOpts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n if (typeof cHash !== 'function') throw new Error('\"hash\" function param is required');\n (0, utils_ts_1._validateObject)(eddsaOpts, {}, {\n adjustScalarBytes: 'function',\n randomBytes: 'function',\n domain: 'function',\n prehash: 'function',\n mapToCurve: 'function'\n });\n var prehash = eddsaOpts.prehash;\n var BASE = Point.BASE,\n Fp = Point.Fp,\n Fn = Point.Fn;\n var randomBytes = eddsaOpts.randomBytes || utils_ts_1.randomBytes;\n var adjustScalarBytes = eddsaOpts.adjustScalarBytes || function (bytes) {\n return bytes;\n };\n var domain = eddsaOpts.domain || function (data, ctx, phflag) {\n (0, utils_ts_1._abool2)(phflag, 'phflag');\n if (ctx.length || phflag) throw new Error('Contexts/pre-hash are not supported');\n return data;\n }; // NOOP\n // Little-endian SHA512 with modulo n\n function modN_LE(hash) {\n return Fn.create((0, utils_ts_1.bytesToNumberLE)(hash)); // Not Fn.fromBytes: it has length limit\n }\n // Get the hashed private scalar per RFC8032 5.1.5\n function getPrivateScalar(key) {\n var len = lengths.secretKey;\n key = (0, utils_ts_1.ensureBytes)('private key', key, len);\n // Hash private key with curve's hash function to produce uniformingly random input\n // Check byte lengths: ensure(64, h(ensure(32, key)))\n var hashed = (0, utils_ts_1.ensureBytes)('hashed private key', cHash(key), 2 * len);\n var head = adjustScalarBytes(hashed.slice(0, len)); // clear first half bits, produce FE\n var prefix = hashed.slice(len, 2 * len); // second half is called key prefix (5.1.6)\n var scalar = modN_LE(head); // The actual private scalar\n return {\n head: head,\n prefix: prefix,\n scalar: scalar\n };\n }\n /** Convenience method that creates public key from scalar. RFC8032 5.1.5 */\n function getExtendedPublicKey(secretKey) {\n var _getPrivateScalar = getPrivateScalar(secretKey),\n head = _getPrivateScalar.head,\n prefix = _getPrivateScalar.prefix,\n scalar = _getPrivateScalar.scalar;\n var point = BASE.multiply(scalar); // Point on Edwards curve aka public key\n var pointBytes = point.toBytes();\n return {\n head: head,\n prefix: prefix,\n scalar: scalar,\n point: point,\n pointBytes: pointBytes\n };\n }\n /** Calculates EdDSA pub key. RFC8032 5.1.5. */\n function getPublicKey(secretKey) {\n return getExtendedPublicKey(secretKey).pointBytes;\n }\n // int('LE', SHA512(dom2(F, C) || msgs)) mod N\n function hashDomainToScalar() {\n var context = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Uint8Array.of();\n for (var _len = arguments.length, msgs = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n msgs[_key - 1] = arguments[_key];\n }\n var msg = (0, utils_ts_1.concatBytes).apply(void 0, msgs);\n return modN_LE(cHash(domain(msg, (0, utils_ts_1.ensureBytes)('context', context), !!prehash)));\n }\n /** Signs message with privateKey. RFC8032 5.1.6 */\n function sign(msg, secretKey) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n msg = (0, utils_ts_1.ensureBytes)('message', msg);\n if (prehash) msg = prehash(msg); // for ed25519ph etc.\n var _getExtendedPublicKey = getExtendedPublicKey(secretKey),\n prefix = _getExtendedPublicKey.prefix,\n scalar = _getExtendedPublicKey.scalar,\n pointBytes = _getExtendedPublicKey.pointBytes;\n var r = hashDomainToScalar(options.context, prefix, msg); // r = dom2(F, C) || prefix || PH(M)\n var R = BASE.multiply(r).toBytes(); // R = rG\n var k = hashDomainToScalar(options.context, R, pointBytes, msg); // R || A || PH(M)\n var s = Fn.create(r + k * scalar); // S = (r + k * s) mod L\n if (!Fn.isValid(s)) throw new Error('sign failed: invalid s'); // 0 <= s < L\n var rs = (0, utils_ts_1.concatBytes)(R, Fn.toBytes(s));\n return (0, utils_ts_1._abytes2)(rs, lengths.signature, 'result');\n }\n // verification rule is either zip215 or rfc8032 / nist186-5. Consult fromHex:\n var verifyOpts = {\n zip215: true\n };\n /**\n * Verifies EdDSA signature against message and public key. RFC8032 5.1.7.\n * An extended group equation is checked.\n */\n function verify(sig, msg, publicKey) {\n var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : verifyOpts;\n var context = options.context,\n zip215 = options.zip215;\n var len = lengths.signature;\n sig = (0, utils_ts_1.ensureBytes)('signature', sig, len);\n msg = (0, utils_ts_1.ensureBytes)('message', msg);\n publicKey = (0, utils_ts_1.ensureBytes)('publicKey', publicKey, lengths.publicKey);\n if (zip215 !== undefined) (0, utils_ts_1._abool2)(zip215, 'zip215');\n if (prehash) msg = prehash(msg); // for ed25519ph, etc\n var mid = len / 2;\n var r = sig.subarray(0, mid);\n var s = (0, utils_ts_1.bytesToNumberLE)(sig.subarray(mid, len));\n var A, R, SB;\n try {\n // zip215=true is good for consensus-critical apps. =false follows RFC8032 / NIST186-5.\n // zip215=true: 0 <= y < MASK (2^256 for ed25519)\n // zip215=false: 0 <= y < P (2^255-19 for ed25519)\n A = Point.fromBytes(publicKey, zip215);\n R = Point.fromBytes(r, zip215);\n SB = BASE.multiplyUnsafe(s); // 0 <= s < l is done inside\n } catch (error) {\n return false;\n }\n if (!zip215 && A.isSmallOrder()) return false; // zip215 allows public keys of small order\n var k = hashDomainToScalar(context, R.toBytes(), A.toBytes(), msg);\n var RkA = R.add(A.multiplyUnsafe(k));\n // Extended group equation\n // [8][S]B = [8]R + [8][k]A'\n return RkA.subtract(SB).clearCofactor().is0();\n }\n var _size = Fp.BYTES; // 32 for ed25519, 57 for ed448\n var lengths = {\n secretKey: _size,\n publicKey: _size,\n signature: 2 * _size,\n seed: _size\n };\n function randomSecretKey() {\n var seed = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : randomBytes(lengths.seed);\n return (0, utils_ts_1._abytes2)(seed, lengths.seed, 'seed');\n }\n function keygen(seed) {\n var secretKey = utils.randomSecretKey(seed);\n return {\n secretKey: secretKey,\n publicKey: getPublicKey(secretKey)\n };\n }\n function isValidSecretKey(key) {\n return (0, utils_ts_1.isBytes)(key) && key.length === Fn.BYTES;\n }\n function isValidPublicKey(key, zip215) {\n try {\n return !!Point.fromBytes(key, zip215);\n } catch (error) {\n return false;\n }\n }\n var utils = {\n getExtendedPublicKey: getExtendedPublicKey,\n randomSecretKey: randomSecretKey,\n isValidSecretKey: isValidSecretKey,\n isValidPublicKey: isValidPublicKey,\n /**\n * Converts ed public key to x public key. Uses formula:\n * - ed25519:\n * - `(u, v) = ((1+y)/(1-y), sqrt(-486664)*u/x)`\n * - `(x, y) = (sqrt(-486664)*u/v, (u-1)/(u+1))`\n * - ed448:\n * - `(u, v) = ((y-1)/(y+1), sqrt(156324)*u/x)`\n * - `(x, y) = (sqrt(156324)*u/v, (1+u)/(1-u))`\n */\n toMontgomery: function toMontgomery(publicKey) {\n var _Point$fromBytes = Point.fromBytes(publicKey),\n y = _Point$fromBytes.y;\n var size = lengths.publicKey;\n var is25519 = size === 32;\n if (!is25519 && size !== 57) throw new Error('only defined for 25519 and 448');\n var u = is25519 ? Fp.div(_1n + y, _1n - y) : Fp.div(y - _1n, y + _1n);\n return Fp.toBytes(u);\n },\n toMontgomerySecret: function toMontgomerySecret(secretKey) {\n var size = lengths.secretKey;\n (0, utils_ts_1._abytes2)(secretKey, size);\n var hashed = cHash(secretKey.subarray(0, size));\n return adjustScalarBytes(hashed).subarray(0, size);\n },\n /** @deprecated */\n randomPrivateKey: randomSecretKey,\n /** @deprecated */precompute: function precompute() {\n var windowSize = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 8;\n var point = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Point.BASE;\n return point.precompute(windowSize, false);\n }\n };\n return Object.freeze({\n keygen: keygen,\n getPublicKey: getPublicKey,\n sign: sign,\n verify: verify,\n utils: utils,\n Point: Point,\n lengths: lengths\n });\n }\n function _eddsa_legacy_opts_to_new(c) {\n var CURVE = {\n a: c.a,\n d: c.d,\n p: c.Fp.ORDER,\n n: c.n,\n h: c.h,\n Gx: c.Gx,\n Gy: c.Gy\n };\n var Fp = c.Fp;\n var Fn = (0, modular_ts_1.Field)(CURVE.n, c.nBitLength, true);\n var curveOpts = {\n Fp: Fp,\n Fn: Fn,\n uvRatio: c.uvRatio\n };\n var eddsaOpts = {\n randomBytes: c.randomBytes,\n adjustScalarBytes: c.adjustScalarBytes,\n domain: c.domain,\n prehash: c.prehash,\n mapToCurve: c.mapToCurve\n };\n return {\n CURVE: CURVE,\n curveOpts: curveOpts,\n hash: c.hash,\n eddsaOpts: eddsaOpts\n };\n }\n function _eddsa_new_output_to_legacy(c, eddsa) {\n var Point = eddsa.Point;\n var legacy = Object.assign({}, eddsa, {\n ExtendedPoint: Point,\n CURVE: c,\n nBitLength: Point.Fn.BITS,\n nByteLength: Point.Fn.BYTES\n });\n return legacy;\n }\n // TODO: remove. Use eddsa\n function twistedEdwards(c) {\n var _eddsa_legacy_opts_to = _eddsa_legacy_opts_to_new(c),\n CURVE = _eddsa_legacy_opts_to.CURVE,\n curveOpts = _eddsa_legacy_opts_to.curveOpts,\n hash = _eddsa_legacy_opts_to.hash,\n eddsaOpts = _eddsa_legacy_opts_to.eddsaOpts;\n var Point = edwards(CURVE, curveOpts);\n var EDDSA = eddsa(Point, hash, eddsaOpts);\n return _eddsa_new_output_to_legacy(c, EDDSA);\n }\n});","lineCount":824,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_classCallCheck"],[4,21,1,13],[4,24,1,13,"require"],[4,31,1,13],[4,32,1,13,"_dependencyMap"],[4,46,1,13],[4,92,1,13,"default"],[4,99,1,13],[5,2,1,13],[5,6,1,13,"_createClass"],[5,18,1,13],[5,21,1,13,"require"],[5,28,1,13],[5,29,1,13,"_dependencyMap"],[5,43,1,13],[5,86,1,13,"default"],[5,93,1,13],[6,2,2,0,"Object"],[6,8,2,6],[6,9,2,7,"defineProperty"],[6,23,2,21],[6,24,2,22,"exports"],[6,31,2,29],[6,33,2,31],[6,45,2,43],[6,47,2,45],[7,4,2,47,"value"],[7,9,2,52],[7,11,2,54],[8,2,2,59],[8,3,2,60],[8,4,2,61],[9,2,3,0,"exports"],[9,9,3,7],[9,10,3,8,"PrimeEdwardsPoint"],[9,27,3,25],[9,30,3,28],[9,35,3,33],[9,36,3,34],[10,2,4,0,"exports"],[10,9,4,7],[10,10,4,8,"edwards"],[10,17,4,15],[10,20,4,18,"edwards"],[10,27,4,25],[11,2,5,0,"exports"],[11,9,5,7],[11,10,5,8,"eddsa"],[11,15,5,13],[11,18,5,16,"eddsa"],[11,23,5,21],[12,2,6,0,"exports"],[12,9,6,7],[12,10,6,8,"twistedEdwards"],[12,24,6,22],[12,27,6,25,"twistedEdwards"],[12,41,6,39],[13,2,7,0],[14,0,8,0],[15,0,9,0],[16,0,10,0],[17,0,11,0],[18,0,12,0],[19,2,13,0],[20,2,14,0],[20,6,14,6,"utils_ts_1"],[20,16,14,16],[20,19,14,19,"require"],[20,26,14,26],[20,27,14,26,"_dependencyMap"],[20,41,14,26],[20,59,14,40],[20,60,14,41],[21,2,15,0],[21,6,15,6,"curve_ts_1"],[21,16,15,16],[21,19,15,19,"require"],[21,26,15,26],[21,27,15,26,"_dependencyMap"],[21,41,15,26],[21,58,15,39],[21,59,15,40],[22,2,16,0],[22,6,16,6,"modular_ts_1"],[22,18,16,18],[22,21,16,21,"require"],[22,28,16,28],[22,29,16,28,"_dependencyMap"],[22,43,16,28],[22,62,16,43],[22,63,16,44],[23,2,17,0],[24,2,18,0],[25,2,19,0],[25,6,19,6,"_0n"],[25,9,19,9],[25,12,19,12,"BigInt"],[25,18,19,18],[25,19,19,19],[25,20,19,20],[25,21,19,21],[26,4,19,23,"_1n"],[26,7,19,26],[26,10,19,29,"BigInt"],[26,16,19,35],[26,17,19,36],[26,18,19,37],[26,19,19,38],[27,4,19,40,"_2n"],[27,7,19,43],[27,10,19,46,"BigInt"],[27,16,19,52],[27,17,19,53],[27,18,19,54],[27,19,19,55],[28,4,19,57,"_8n"],[28,7,19,60],[28,10,19,63,"BigInt"],[28,16,19,69],[28,17,19,70],[28,18,19,71],[28,19,19,72],[29,2,20,0],[29,11,20,9,"isEdValidXY"],[29,22,20,20,"isEdValidXY"],[29,23,20,21,"Fp"],[29,25,20,23],[29,27,20,25,"CURVE"],[29,32,20,30],[29,34,20,32,"x"],[29,35,20,33],[29,37,20,35,"y"],[29,38,20,36],[29,40,20,38],[30,4,21,4],[30,8,21,10,"x2"],[30,10,21,12],[30,13,21,15,"Fp"],[30,15,21,17],[30,16,21,18,"sqr"],[30,19,21,21],[30,20,21,22,"x"],[30,21,21,23],[30,22,21,24],[31,4,22,4],[31,8,22,10,"y2"],[31,10,22,12],[31,13,22,15,"Fp"],[31,15,22,17],[31,16,22,18,"sqr"],[31,19,22,21],[31,20,22,22,"y"],[31,21,22,23],[31,22,22,24],[32,4,23,4],[32,8,23,10,"left"],[32,12,23,14],[32,15,23,17,"Fp"],[32,17,23,19],[32,18,23,20,"add"],[32,21,23,23],[32,22,23,24,"Fp"],[32,24,23,26],[32,25,23,27,"mul"],[32,28,23,30],[32,29,23,31,"CURVE"],[32,34,23,36],[32,35,23,37,"a"],[32,36,23,38],[32,38,23,40,"x2"],[32,40,23,42],[32,41,23,43],[32,43,23,45,"y2"],[32,45,23,47],[32,46,23,48],[33,4,24,4],[33,8,24,10,"right"],[33,13,24,15],[33,16,24,18,"Fp"],[33,18,24,20],[33,19,24,21,"add"],[33,22,24,24],[33,23,24,25,"Fp"],[33,25,24,27],[33,26,24,28,"ONE"],[33,29,24,31],[33,31,24,33,"Fp"],[33,33,24,35],[33,34,24,36,"mul"],[33,37,24,39],[33,38,24,40,"CURVE"],[33,43,24,45],[33,44,24,46,"d"],[33,45,24,47],[33,47,24,49,"Fp"],[33,49,24,51],[33,50,24,52,"mul"],[33,53,24,55],[33,54,24,56,"x2"],[33,56,24,58],[33,58,24,60,"y2"],[33,60,24,62],[33,61,24,63],[33,62,24,64],[33,63,24,65],[34,4,25,4],[34,11,25,11,"Fp"],[34,13,25,13],[34,14,25,14,"eql"],[34,17,25,17],[34,18,25,18,"left"],[34,22,25,22],[34,24,25,24,"right"],[34,29,25,29],[34,30,25,30],[35,2,26,0],[36,2,27,0],[36,11,27,9,"edwards"],[36,18,27,16,"edwards"],[36,19,27,17,"params"],[36,25,27,23],[36,27,27,41],[37,4,27,41],[37,8,27,25,"extraOpts"],[37,17,27,34],[37,20,27,34,"arguments"],[37,29,27,34],[37,30,27,34,"length"],[37,36,27,34],[37,44,27,34,"arguments"],[37,53,27,34],[37,61,27,34,"undefined"],[37,70,27,34],[37,73,27,34,"arguments"],[37,82,27,34],[37,88,27,37],[37,89,27,38],[37,90,27,39],[38,4,28,4],[38,8,28,10,"validated"],[38,17,28,19],[38,20,28,22],[38,21,28,23],[38,22,28,24],[38,24,28,26,"curve_ts_1"],[38,34,28,36],[38,35,28,37,"_createCurveFields"],[38,53,28,55],[38,55,28,57],[38,64,28,66],[38,66,28,68,"params"],[38,72,28,74],[38,74,28,76,"extraOpts"],[38,83,28,85],[38,85,28,87,"extraOpts"],[38,94,28,96],[38,95,28,97,"FpFnLE"],[38,101,28,103],[38,102,28,104],[39,4,29,4],[39,8,29,12,"Fp"],[39,10,29,14],[39,13,29,23,"validated"],[39,22,29,32],[39,23,29,12,"Fp"],[39,25,29,14],[40,6,29,16,"Fn"],[40,8,29,18],[40,11,29,23,"validated"],[40,20,29,32],[40,21,29,16,"Fn"],[40,23,29,18],[41,4,30,4],[41,8,30,8,"CURVE"],[41,14,30,13],[41,17,30,16,"validated"],[41,26,30,25],[41,27,30,26,"CURVE"],[41,32,30,31],[42,4,31,4],[42,8,31,15,"cofactor"],[42,16,31,23],[42,19,31,28,"CURVE"],[42,25,31,33],[42,26,31,12,"h"],[42,27,31,13],[43,4,32,4],[43,5,32,5],[43,6,32,6],[43,8,32,8,"utils_ts_1"],[43,18,32,18],[43,19,32,19,"_validateObject"],[43,34,32,34],[43,36,32,36,"extraOpts"],[43,45,32,45],[43,47,32,47],[43,48,32,48],[43,49,32,49],[43,51,32,51],[44,6,32,53,"uvRatio"],[44,13,32,60],[44,15,32,62],[45,4,32,73],[45,5,32,74],[45,6,32,75],[46,4,33,4],[47,4,34,4],[48,4,35,4],[49,4,36,4],[50,4,37,4],[50,8,37,10,"MASK"],[50,12,37,14],[50,15,37,17,"_2n"],[50,18,37,20],[50,22,37,25,"BigInt"],[50,28,37,31],[50,29,37,32,"Fn"],[50,31,37,34],[50,32,37,35,"BYTES"],[50,37,37,40],[50,40,37,43],[50,41,37,44],[50,42,37,45],[50,45,37,48,"_1n"],[50,48,37,52],[51,4,38,4],[51,8,38,10,"modP"],[51,12,38,14],[51,15,38,17],[51,24,38,10,"modP"],[51,28,38,14,"modP"],[51,29,38,18,"n"],[51,30,38,19],[52,6,38,19],[52,13,38,24,"Fp"],[52,15,38,26],[52,16,38,27,"create"],[52,22,38,33],[52,23,38,34,"n"],[52,24,38,35],[52,25,38,36],[53,4,38,36],[53,6,38,37],[53,7,38,38],[54,4,39,4],[55,4,40,4],[55,8,40,10,"uvRatio"],[55,15,40,17],[55,18,40,20,"extraOpts"],[55,27,40,29],[55,28,40,30,"uvRatio"],[55,35,40,37],[55,39,41,9],[55,49,41,10,"u"],[55,50,41,11],[55,52,41,13,"v"],[55,53,41,14],[55,55,41,19],[56,6,42,12],[56,10,42,16],[57,8,43,16],[57,15,43,23],[58,10,43,25,"isValid"],[58,17,43,32],[58,19,43,34],[58,23,43,38],[59,10,43,40,"value"],[59,15,43,45],[59,17,43,47,"Fp"],[59,19,43,49],[59,20,43,50,"sqrt"],[59,24,43,54],[59,25,43,55,"Fp"],[59,27,43,57],[59,28,43,58,"div"],[59,31,43,61],[59,32,43,62,"u"],[59,33,43,63],[59,35,43,65,"v"],[59,36,43,66],[59,37,43,67],[60,8,43,69],[60,9,43,70],[61,6,44,12],[61,7,44,13],[61,8,45,12],[61,15,45,19,"e"],[61,16,45,20],[61,18,45,22],[62,8,46,16],[62,15,46,23],[63,10,46,25,"isValid"],[63,17,46,32],[63,19,46,34],[63,24,46,39],[64,10,46,41,"value"],[64,15,46,46],[64,17,46,48,"_0n"],[65,8,46,52],[65,9,46,53],[66,6,47,12],[67,4,48,8],[67,5,48,10],[68,4,49,4],[69,4,50,4],[70,4,51,4],[70,8,51,8],[70,9,51,9,"isEdValidXY"],[70,20,51,20],[70,21,51,21,"Fp"],[70,23,51,23],[70,25,51,25,"CURVE"],[70,31,51,30],[70,33,51,32,"CURVE"],[70,39,51,37],[70,40,51,38,"Gx"],[70,42,51,40],[70,44,51,42,"CURVE"],[70,50,51,47],[70,51,51,48,"Gy"],[70,53,51,50],[70,54,51,51],[70,56,52,8],[70,62,52,14],[70,66,52,18,"Error"],[70,71,52,23],[70,72,52,24],[70,107,52,59],[70,108,52,60],[71,4,53,4],[72,0,54,0],[73,0,55,0],[74,0,56,0],[75,4,57,4],[75,13,57,13,"acoord"],[75,19,57,19,"acoord"],[75,20,57,20,"title"],[75,25,57,25],[75,27,57,27,"n"],[75,28,57,28],[75,30,57,47],[76,6,57,47],[76,10,57,30,"banZero"],[76,17,57,37],[76,20,57,37,"arguments"],[76,29,57,37],[76,30,57,37,"length"],[76,36,57,37],[76,44,57,37,"arguments"],[76,53,57,37],[76,61,57,37,"undefined"],[76,70,57,37],[76,73,57,37,"arguments"],[76,82,57,37],[76,88,57,40],[76,93,57,45],[77,6,58,8],[77,10,58,14,"min"],[77,13,58,17],[77,16,58,20,"banZero"],[77,23,58,27],[77,26,58,30,"_1n"],[77,29,58,33],[77,32,58,36,"_0n"],[77,35,58,39],[78,6,59,8],[78,7,59,9],[78,8,59,10],[78,10,59,12,"utils_ts_1"],[78,20,59,22],[78,21,59,23,"aInRange"],[78,29,59,31],[78,31,59,33],[78,44,59,46],[78,47,59,49,"title"],[78,52,59,54],[78,54,59,56,"n"],[78,55,59,57],[78,57,59,59,"min"],[78,60,59,62],[78,62,59,64,"MASK"],[78,66,59,68],[78,67,59,69],[79,6,60,8],[79,13,60,15,"n"],[79,14,60,16],[80,4,61,4],[81,4,62,4],[81,13,62,13,"aextpoint"],[81,22,62,22,"aextpoint"],[81,23,62,23,"other"],[81,28,62,28],[81,30,62,30],[82,6,63,8],[82,10,63,12],[82,12,63,14,"other"],[82,17,63,19],[82,29,63,31,"Point"],[82,34,63,36],[82,35,63,37],[82,37,64,12],[82,43,64,18],[82,47,64,22,"Error"],[82,52,64,27],[82,53,64,28],[82,77,64,52],[82,78,64,53],[83,4,65,4],[84,4,66,4],[85,4,67,4],[86,4,68,4],[86,8,68,10,"toAffineMemo"],[86,20,68,22],[86,23,68,25],[86,24,68,26],[86,25,68,27],[86,27,68,29,"utils_ts_1"],[86,37,68,39],[86,38,68,40,"memoized"],[86,46,68,48],[86,48,68,50],[86,58,68,51,"p"],[86,59,68,52],[86,61,68,54,"iz"],[86,63,68,56],[86,65,68,61],[87,6,69,8],[87,10,69,16,"X"],[87,11,69,17],[87,14,69,28,"p"],[87,15,69,29],[87,16,69,16,"X"],[87,17,69,17],[88,8,69,19,"Y"],[88,9,69,20],[88,12,69,28,"p"],[88,13,69,29],[88,14,69,19,"Y"],[88,15,69,20],[89,8,69,22,"Z"],[89,9,69,23],[89,12,69,28,"p"],[89,13,69,29],[89,14,69,22,"Z"],[89,15,69,23],[90,6,70,8],[90,10,70,14,"is0"],[90,13,70,17],[90,16,70,20,"p"],[90,17,70,21],[90,18,70,22,"is0"],[90,21,70,25],[90,22,70,26],[90,23,70,27],[91,6,71,8],[91,10,71,12,"iz"],[91,12,71,14],[91,16,71,18],[91,20,71,22],[91,22,72,12,"iz"],[91,24,72,14],[91,27,72,17,"is0"],[91,30,72,20],[91,33,72,23,"_8n"],[91,36,72,26],[91,39,72,29,"Fp"],[91,41,72,31],[91,42,72,32,"inv"],[91,45,72,35],[91,46,72,36,"Z"],[91,47,72,37],[91,48,72,38],[91,49,72,39],[91,50,72,40],[92,6,73,8],[92,10,73,14,"x"],[92,11,73,15],[92,14,73,18,"modP"],[92,18,73,22],[92,19,73,23,"X"],[92,20,73,24],[92,23,73,27,"iz"],[92,25,73,29],[92,26,73,30],[93,6,74,8],[93,10,74,14,"y"],[93,11,74,15],[93,14,74,18,"modP"],[93,18,74,22],[93,19,74,23,"Y"],[93,20,74,24],[93,23,74,27,"iz"],[93,25,74,29],[93,26,74,30],[94,6,75,8],[94,10,75,14,"zz"],[94,12,75,16],[94,15,75,19,"Fp"],[94,17,75,21],[94,18,75,22,"mul"],[94,21,75,25],[94,22,75,26,"Z"],[94,23,75,27],[94,25,75,29,"iz"],[94,27,75,31],[94,28,75,32],[95,6,76,8],[95,10,76,12,"is0"],[95,13,76,15],[95,15,77,12],[95,22,77,19],[96,8,77,21,"x"],[96,9,77,22],[96,11,77,24,"_0n"],[96,14,77,27],[97,8,77,29,"y"],[97,9,77,30],[97,11,77,32,"_1n"],[98,6,77,36],[98,7,77,37],[99,6,78,8],[99,10,78,12,"zz"],[99,12,78,14],[99,17,78,19,"_1n"],[99,20,78,22],[99,22,79,12],[99,28,79,18],[99,32,79,22,"Error"],[99,37,79,27],[99,38,79,28],[99,56,79,46],[99,57,79,47],[100,6,80,8],[100,13,80,15],[101,8,80,17,"x"],[101,9,80,18],[101,11,80,17,"x"],[101,12,80,18],[102,8,80,20,"y"],[102,9,80,21],[102,11,80,20,"y"],[103,6,80,22],[103,7,80,23],[104,4,81,4],[104,5,81,5],[104,6,81,6],[105,4,82,4],[105,8,82,10,"assertValidMemo"],[105,23,82,25],[105,26,82,28],[105,27,82,29],[105,28,82,30],[105,30,82,32,"utils_ts_1"],[105,40,82,42],[105,41,82,43,"memoized"],[105,49,82,51],[105,51,82,53],[105,61,82,54,"p"],[105,62,82,55],[105,64,82,60],[106,6,83,8],[106,10,83,16,"a"],[106,11,83,17],[106,14,83,25,"CURVE"],[106,20,83,30],[106,21,83,16,"a"],[106,22,83,17],[107,8,83,19,"d"],[107,9,83,20],[107,12,83,25,"CURVE"],[107,18,83,30],[107,19,83,19,"d"],[107,20,83,20],[108,6,84,8],[108,10,84,12,"p"],[108,11,84,13],[108,12,84,14,"is0"],[108,15,84,17],[108,16,84,18],[108,17,84,19],[108,19,85,12],[108,25,85,18],[108,29,85,22,"Error"],[108,34,85,27],[108,35,85,28],[108,52,85,45],[108,53,85,46],[108,54,85,47],[108,55,85,48],[109,6,86,8],[110,6,87,8],[111,6,88,8],[111,10,88,16,"X"],[111,11,88,17],[111,14,88,31,"p"],[111,15,88,32],[111,16,88,16,"X"],[111,17,88,17],[112,8,88,19,"Y"],[112,9,88,20],[112,12,88,31,"p"],[112,13,88,32],[112,14,88,19,"Y"],[112,15,88,20],[113,8,88,22,"Z"],[113,9,88,23],[113,12,88,31,"p"],[113,13,88,32],[113,14,88,22,"Z"],[113,15,88,23],[114,8,88,25,"T"],[114,9,88,26],[114,12,88,31,"p"],[114,13,88,32],[114,14,88,25,"T"],[114,15,88,26],[115,6,89,8],[115,10,89,14,"X2"],[115,12,89,16],[115,15,89,19,"modP"],[115,19,89,23],[115,20,89,24,"X"],[115,21,89,25],[115,24,89,28,"X"],[115,25,89,29],[115,26,89,30],[115,27,89,31],[115,28,89,32],[116,6,90,8],[116,10,90,14,"Y2"],[116,12,90,16],[116,15,90,19,"modP"],[116,19,90,23],[116,20,90,24,"Y"],[116,21,90,25],[116,24,90,28,"Y"],[116,25,90,29],[116,26,90,30],[116,27,90,31],[116,28,90,32],[117,6,91,8],[117,10,91,14,"Z2"],[117,12,91,16],[117,15,91,19,"modP"],[117,19,91,23],[117,20,91,24,"Z"],[117,21,91,25],[117,24,91,28,"Z"],[117,25,91,29],[117,26,91,30],[117,27,91,31],[117,28,91,32],[118,6,92,8],[118,10,92,14,"Z4"],[118,12,92,16],[118,15,92,19,"modP"],[118,19,92,23],[118,20,92,24,"Z2"],[118,22,92,26],[118,25,92,29,"Z2"],[118,27,92,31],[118,28,92,32],[118,29,92,33],[118,30,92,34],[119,6,93,8],[119,10,93,14,"aX2"],[119,13,93,17],[119,16,93,20,"modP"],[119,20,93,24],[119,21,93,25,"X2"],[119,23,93,27],[119,26,93,30,"a"],[119,27,93,31],[119,28,93,32],[119,29,93,33],[119,30,93,34],[120,6,94,8],[120,10,94,14,"left"],[120,14,94,18],[120,17,94,21,"modP"],[120,21,94,25],[120,22,94,26,"Z2"],[120,24,94,28],[120,27,94,31,"modP"],[120,31,94,35],[120,32,94,36,"aX2"],[120,35,94,39],[120,38,94,42,"Y2"],[120,40,94,44],[120,41,94,45],[120,42,94,46],[120,43,94,47],[120,44,94,48],[121,6,95,8],[121,10,95,14,"right"],[121,15,95,19],[121,18,95,22,"modP"],[121,22,95,26],[121,23,95,27,"Z4"],[121,25,95,29],[121,28,95,32,"modP"],[121,32,95,36],[121,33,95,37,"d"],[121,34,95,38],[121,37,95,41,"modP"],[121,41,95,45],[121,42,95,46,"X2"],[121,44,95,48],[121,47,95,51,"Y2"],[121,49,95,53],[121,50,95,54],[121,51,95,55],[121,52,95,56],[121,53,95,57],[121,54,95,58],[122,6,96,8],[122,10,96,12,"left"],[122,14,96,16],[122,19,96,21,"right"],[122,24,96,26],[122,26,97,12],[122,32,97,18],[122,36,97,22,"Error"],[122,41,97,27],[122,42,97,28],[122,81,97,67],[122,82,97,68],[123,6,98,8],[124,6,99,8],[124,10,99,14,"XY"],[124,12,99,16],[124,15,99,19,"modP"],[124,19,99,23],[124,20,99,24,"X"],[124,21,99,25],[124,24,99,28,"Y"],[124,25,99,29],[124,26,99,30],[125,6,100,8],[125,10,100,14,"ZT"],[125,12,100,16],[125,15,100,19,"modP"],[125,19,100,23],[125,20,100,24,"Z"],[125,21,100,25],[125,24,100,28,"T"],[125,25,100,29],[125,26,100,30],[126,6,101,8],[126,10,101,12,"XY"],[126,12,101,14],[126,17,101,19,"ZT"],[126,19,101,21],[126,21,102,12],[126,27,102,18],[126,31,102,22,"Error"],[126,36,102,27],[126,37,102,28],[126,76,102,67],[126,77,102,68],[127,6,103,8],[127,13,103,15],[127,17,103,19],[128,4,104,4],[128,5,104,5],[128,6,104,6],[129,4,105,4],[130,4,106,4],[131,4,106,4],[131,8,107,10,"Point"],[131,13,107,15],[132,6,108,8],[132,15,108,8,"Point"],[132,21,108,20,"X"],[132,22,108,21],[132,24,108,23,"Y"],[132,25,108,24],[132,27,108,26,"Z"],[132,28,108,27],[132,30,108,29,"T"],[132,31,108,30],[132,33,108,32],[133,8,108,32,"_classCallCheck"],[133,23,108,32],[133,30,108,32,"Point"],[133,35,108,32],[134,8,109,12],[134,12,109,16],[134,13,109,17,"X"],[134,14,109,18],[134,17,109,21,"acoord"],[134,23,109,27],[134,24,109,28],[134,27,109,31],[134,29,109,33,"X"],[134,30,109,34],[134,31,109,35],[135,8,110,12],[135,12,110,16],[135,13,110,17,"Y"],[135,14,110,18],[135,17,110,21,"acoord"],[135,23,110,27],[135,24,110,28],[135,27,110,31],[135,29,110,33,"Y"],[135,30,110,34],[135,31,110,35],[136,8,111,12],[136,12,111,16],[136,13,111,17,"Z"],[136,14,111,18],[136,17,111,21,"acoord"],[136,23,111,27],[136,24,111,28],[136,27,111,31],[136,29,111,33,"Z"],[136,30,111,34],[136,32,111,36],[136,36,111,40],[136,37,111,41],[137,8,112,12],[137,12,112,16],[137,13,112,17,"T"],[137,14,112,18],[137,17,112,21,"acoord"],[137,23,112,27],[137,24,112,28],[137,27,112,31],[137,29,112,33,"T"],[137,30,112,34],[137,31,112,35],[138,8,113,12,"Object"],[138,14,113,18],[138,15,113,19,"freeze"],[138,21,113,25],[138,22,113,26],[138,26,113,30],[138,27,113,31],[139,6,114,8],[140,6,114,9],[140,13,114,9,"_createClass"],[140,25,114,9],[140,26,114,9,"Point"],[140,31,114,9],[141,8,114,9,"key"],[141,11,114,9],[142,8,114,9,"get"],[142,11,114,9],[142,13,162,8],[142,22,162,8,"get"],[142,26,162,8],[142,28,162,16],[143,10,163,12],[143,17,163,19],[143,21,163,23],[143,22,163,24,"toAffine"],[143,30,163,32],[143,31,163,33],[143,32,163,34],[143,33,163,35,"x"],[143,34,163,36],[144,8,164,8],[145,6,164,9],[146,8,164,9,"key"],[146,11,164,9],[147,8,164,9,"get"],[147,11,164,9],[147,13,165,8],[147,22,165,8,"get"],[147,26,165,8],[147,28,165,16],[148,10,166,12],[148,17,166,19],[148,21,166,23],[148,22,166,24,"toAffine"],[148,30,166,32],[148,31,166,33],[148,32,166,34],[148,33,166,35,"y"],[148,34,166,36],[149,8,167,8],[150,6,167,9],[151,8,167,9,"key"],[151,11,167,9],[152,8,167,9,"value"],[152,13,167,9],[152,15,168,8],[152,24,168,8,"precompute"],[152,34,168,18,"precompute"],[152,35,168,18],[152,37,168,50],[153,10,168,50],[153,14,168,19,"windowSize"],[153,24,168,29],[153,27,168,29,"arguments"],[153,36,168,29],[153,37,168,29,"length"],[153,43,168,29],[153,51,168,29,"arguments"],[153,60,168,29],[153,68,168,29,"undefined"],[153,77,168,29],[153,80,168,29,"arguments"],[153,89,168,29],[153,95,168,32],[153,96,168,33],[154,10,168,33],[154,14,168,35,"isLazy"],[154,20,168,41],[154,23,168,41,"arguments"],[154,32,168,41],[154,33,168,41,"length"],[154,39,168,41],[154,47,168,41,"arguments"],[154,56,168,41],[154,64,168,41,"undefined"],[154,73,168,41],[154,76,168,41,"arguments"],[154,85,168,41],[154,91,168,44],[154,95,168,48],[155,10,169,12,"wnaf"],[155,14,169,16],[155,15,169,17,"createCache"],[155,26,169,28],[155,27,169,29],[155,31,169,33],[155,33,169,35,"windowSize"],[155,43,169,45],[155,44,169,46],[156,10,170,12],[156,14,170,16],[156,15,170,17,"isLazy"],[156,21,170,23],[156,23,171,16],[156,27,171,20],[156,28,171,21,"multiply"],[156,36,171,29],[156,37,171,30,"_2n"],[156,40,171,33],[156,41,171,34],[156,42,171,35],[156,43,171,36],[157,10,172,12],[157,17,172,19],[157,21,172,23],[158,8,173,8],[159,8,174,8],[160,6,174,8],[161,8,174,8,"key"],[161,11,174,8],[162,8,174,8,"value"],[162,13,174,8],[162,15,175,8],[162,24,175,8,"assertValidity"],[162,38,175,22,"assertValidity"],[162,39,175,22],[162,41,175,25],[163,10,176,12,"assertValidMemo"],[163,25,176,27],[163,26,176,28],[163,30,176,32],[163,31,176,33],[164,8,177,8],[165,8,178,8],[166,6,178,8],[167,8,178,8,"key"],[167,11,178,8],[168,8,178,8,"value"],[168,13,178,8],[168,15,179,8],[168,24,179,8,"equals"],[168,30,179,14,"equals"],[168,31,179,15,"other"],[168,36,179,20],[168,38,179,22],[169,10,180,12,"aextpoint"],[169,19,180,21],[169,20,180,22,"other"],[169,25,180,27],[169,26,180,28],[170,10,181,12],[170,14,181,23,"X1"],[170,16,181,25],[170,19,181,44],[170,23,181,48],[170,24,181,20,"X"],[170,25,181,21],[171,12,181,30,"Y1"],[171,14,181,32],[171,17,181,44],[171,21,181,48],[171,22,181,27,"Y"],[171,23,181,28],[172,12,181,37,"Z1"],[172,14,181,39],[172,17,181,44],[172,21,181,48],[172,22,181,34,"Z"],[172,23,181,35],[173,10,182,12],[173,14,182,23,"X2"],[173,16,182,25],[173,19,182,44,"other"],[173,24,182,49],[173,25,182,20,"X"],[173,26,182,21],[174,12,182,30,"Y2"],[174,14,182,32],[174,17,182,44,"other"],[174,22,182,49],[174,23,182,27,"Y"],[174,24,182,28],[175,12,182,37,"Z2"],[175,14,182,39],[175,17,182,44,"other"],[175,22,182,49],[175,23,182,34,"Z"],[175,24,182,35],[176,10,183,12],[176,14,183,18,"X1Z2"],[176,18,183,22],[176,21,183,25,"modP"],[176,25,183,29],[176,26,183,30,"X1"],[176,28,183,32],[176,31,183,35,"Z2"],[176,33,183,37],[176,34,183,38],[177,10,184,12],[177,14,184,18,"X2Z1"],[177,18,184,22],[177,21,184,25,"modP"],[177,25,184,29],[177,26,184,30,"X2"],[177,28,184,32],[177,31,184,35,"Z1"],[177,33,184,37],[177,34,184,38],[178,10,185,12],[178,14,185,18,"Y1Z2"],[178,18,185,22],[178,21,185,25,"modP"],[178,25,185,29],[178,26,185,30,"Y1"],[178,28,185,32],[178,31,185,35,"Z2"],[178,33,185,37],[178,34,185,38],[179,10,186,12],[179,14,186,18,"Y2Z1"],[179,18,186,22],[179,21,186,25,"modP"],[179,25,186,29],[179,26,186,30,"Y2"],[179,28,186,32],[179,31,186,35,"Z1"],[179,33,186,37],[179,34,186,38],[180,10,187,12],[180,17,187,19,"X1Z2"],[180,21,187,23],[180,26,187,28,"X2Z1"],[180,30,187,32],[180,34,187,36,"Y1Z2"],[180,38,187,40],[180,43,187,45,"Y2Z1"],[180,47,187,49],[181,8,188,8],[182,6,188,9],[183,8,188,9,"key"],[183,11,188,9],[184,8,188,9,"value"],[184,13,188,9],[184,15,189,8],[184,24,189,8,"is0"],[184,27,189,11,"is0"],[184,28,189,11],[184,30,189,14],[185,10,190,12],[185,17,190,19],[185,21,190,23],[185,22,190,24,"equals"],[185,28,190,30],[185,29,190,31,"Point"],[185,34,190,36],[185,35,190,37,"ZERO"],[185,39,190,41],[185,40,190,42],[186,8,191,8],[187,6,191,9],[188,8,191,9,"key"],[188,11,191,9],[189,8,191,9,"value"],[189,13,191,9],[189,15,192,8],[189,24,192,8,"negate"],[189,30,192,14,"negate"],[189,31,192,14],[189,33,192,17],[190,10,193,12],[191,10,194,12],[191,17,194,19],[191,21,194,23,"Point"],[191,26,194,28],[191,27,194,29,"modP"],[191,31,194,33],[191,32,194,34],[191,33,194,35],[191,37,194,39],[191,38,194,40,"X"],[191,39,194,41],[191,40,194,42],[191,42,194,44],[191,46,194,48],[191,47,194,49,"Y"],[191,48,194,50],[191,50,194,52],[191,54,194,56],[191,55,194,57,"Z"],[191,56,194,58],[191,58,194,60,"modP"],[191,62,194,64],[191,63,194,65],[191,64,194,66],[191,68,194,70],[191,69,194,71,"T"],[191,70,194,72],[191,71,194,73],[191,72,194,74],[192,8,195,8],[193,8,196,8],[194,8,197,8],[195,8,198,8],[196,6,198,8],[197,8,198,8,"key"],[197,11,198,8],[198,8,198,8,"value"],[198,13,198,8],[198,15,199,8],[198,24,199,8,"double"],[198,30,199,14,"double"],[198,31,199,14],[198,33,199,17],[199,10,200,12],[199,14,200,20,"a"],[199,15,200,21],[199,18,200,26,"CURVE"],[199,24,200,31],[199,25,200,20,"a"],[199,26,200,21],[200,10,201,12],[200,14,201,23,"X1"],[200,16,201,25],[200,19,201,44],[200,23,201,48],[200,24,201,20,"X"],[200,25,201,21],[201,12,201,30,"Y1"],[201,14,201,32],[201,17,201,44],[201,21,201,48],[201,22,201,27,"Y"],[201,23,201,28],[202,12,201,37,"Z1"],[202,14,201,39],[202,17,201,44],[202,21,201,48],[202,22,201,34,"Z"],[202,23,201,35],[203,10,202,12],[203,14,202,18,"A"],[203,15,202,19],[203,18,202,22,"modP"],[203,22,202,26],[203,23,202,27,"X1"],[203,25,202,29],[203,28,202,32,"X1"],[203,30,202,34],[203,31,202,35],[203,32,202,36],[203,33,202,37],[204,10,203,12],[204,14,203,18,"B"],[204,15,203,19],[204,18,203,22,"modP"],[204,22,203,26],[204,23,203,27,"Y1"],[204,25,203,29],[204,28,203,32,"Y1"],[204,30,203,34],[204,31,203,35],[204,32,203,36],[204,33,203,37],[205,10,204,12],[205,14,204,18,"C"],[205,15,204,19],[205,18,204,22,"modP"],[205,22,204,26],[205,23,204,27,"_2n"],[205,26,204,30],[205,29,204,33,"modP"],[205,33,204,37],[205,34,204,38,"Z1"],[205,36,204,40],[205,39,204,43,"Z1"],[205,41,204,45],[205,42,204,46],[205,43,204,47],[205,44,204,48],[205,45,204,49],[206,10,205,12],[206,14,205,18,"D"],[206,15,205,19],[206,18,205,22,"modP"],[206,22,205,26],[206,23,205,27,"a"],[206,24,205,28],[206,27,205,31,"A"],[206,28,205,32],[206,29,205,33],[206,30,205,34],[206,31,205,35],[207,10,206,12],[207,14,206,18,"x1y1"],[207,18,206,22],[207,21,206,25,"X1"],[207,23,206,27],[207,26,206,30,"Y1"],[207,28,206,32],[208,10,207,12],[208,14,207,18,"E"],[208,15,207,19],[208,18,207,22,"modP"],[208,22,207,26],[208,23,207,27,"modP"],[208,27,207,31],[208,28,207,32,"x1y1"],[208,32,207,36],[208,35,207,39,"x1y1"],[208,39,207,43],[208,40,207,44],[208,43,207,47,"A"],[208,44,207,48],[208,47,207,51,"B"],[208,48,207,52],[208,49,207,53],[208,50,207,54],[208,51,207,55],[209,10,208,12],[209,14,208,18,"G"],[209,15,208,19],[209,18,208,22,"D"],[209,19,208,23],[209,22,208,26,"B"],[209,23,208,27],[209,24,208,28],[209,25,208,29],[210,10,209,12],[210,14,209,18,"F"],[210,15,209,19],[210,18,209,22,"G"],[210,19,209,23],[210,22,209,26,"C"],[210,23,209,27],[210,24,209,28],[210,25,209,29],[211,10,210,12],[211,14,210,18,"H"],[211,15,210,19],[211,18,210,22,"D"],[211,19,210,23],[211,22,210,26,"B"],[211,23,210,27],[211,24,210,28],[211,25,210,29],[212,10,211,12],[212,14,211,18,"X3"],[212,16,211,20],[212,19,211,23,"modP"],[212,23,211,27],[212,24,211,28,"E"],[212,25,211,29],[212,28,211,32,"F"],[212,29,211,33],[212,30,211,34],[212,31,211,35],[212,32,211,36],[213,10,212,12],[213,14,212,18,"Y3"],[213,16,212,20],[213,19,212,23,"modP"],[213,23,212,27],[213,24,212,28,"G"],[213,25,212,29],[213,28,212,32,"H"],[213,29,212,33],[213,30,212,34],[213,31,212,35],[213,32,212,36],[214,10,213,12],[214,14,213,18,"T3"],[214,16,213,20],[214,19,213,23,"modP"],[214,23,213,27],[214,24,213,28,"E"],[214,25,213,29],[214,28,213,32,"H"],[214,29,213,33],[214,30,213,34],[214,31,213,35],[214,32,213,36],[215,10,214,12],[215,14,214,18,"Z3"],[215,16,214,20],[215,19,214,23,"modP"],[215,23,214,27],[215,24,214,28,"F"],[215,25,214,29],[215,28,214,32,"G"],[215,29,214,33],[215,30,214,34],[215,31,214,35],[215,32,214,36],[216,10,215,12],[216,17,215,19],[216,21,215,23,"Point"],[216,26,215,28],[216,27,215,29,"X3"],[216,29,215,31],[216,31,215,33,"Y3"],[216,33,215,35],[216,35,215,37,"Z3"],[216,37,215,39],[216,39,215,41,"T3"],[216,41,215,43],[216,42,215,44],[217,8,216,8],[218,8,217,8],[219,8,218,8],[220,8,219,8],[221,6,219,8],[222,8,219,8,"key"],[222,11,219,8],[223,8,219,8,"value"],[223,13,219,8],[223,15,220,8],[223,24,220,8,"add"],[223,27,220,11,"add"],[223,28,220,12,"other"],[223,33,220,17],[223,35,220,19],[224,10,221,12,"aextpoint"],[224,19,221,21],[224,20,221,22,"other"],[224,25,221,27],[224,26,221,28],[225,10,222,12],[225,14,222,20,"a"],[225,15,222,21],[225,18,222,29,"CURVE"],[225,24,222,34],[225,25,222,20,"a"],[225,26,222,21],[226,12,222,23,"d"],[226,13,222,24],[226,16,222,29,"CURVE"],[226,22,222,34],[226,23,222,23,"d"],[226,24,222,24],[227,10,223,12],[227,14,223,23,"X1"],[227,16,223,25],[227,19,223,51],[227,23,223,55],[227,24,223,20,"X"],[227,25,223,21],[228,12,223,30,"Y1"],[228,14,223,32],[228,17,223,51],[228,21,223,55],[228,22,223,27,"Y"],[228,23,223,28],[229,12,223,37,"Z1"],[229,14,223,39],[229,17,223,51],[229,21,223,55],[229,22,223,34,"Z"],[229,23,223,35],[230,12,223,44,"T1"],[230,14,223,46],[230,17,223,51],[230,21,223,55],[230,22,223,41,"T"],[230,23,223,42],[231,10,224,12],[231,14,224,23,"X2"],[231,16,224,25],[231,19,224,51,"other"],[231,24,224,56],[231,25,224,20,"X"],[231,26,224,21],[232,12,224,30,"Y2"],[232,14,224,32],[232,17,224,51,"other"],[232,22,224,56],[232,23,224,27,"Y"],[232,24,224,28],[233,12,224,37,"Z2"],[233,14,224,39],[233,17,224,51,"other"],[233,22,224,56],[233,23,224,34,"Z"],[233,24,224,35],[234,12,224,44,"T2"],[234,14,224,46],[234,17,224,51,"other"],[234,22,224,56],[234,23,224,41,"T"],[234,24,224,42],[235,10,225,12],[235,14,225,18,"A"],[235,15,225,19],[235,18,225,22,"modP"],[235,22,225,26],[235,23,225,27,"X1"],[235,25,225,29],[235,28,225,32,"X2"],[235,30,225,34],[235,31,225,35],[235,32,225,36],[235,33,225,37],[236,10,226,12],[236,14,226,18,"B"],[236,15,226,19],[236,18,226,22,"modP"],[236,22,226,26],[236,23,226,27,"Y1"],[236,25,226,29],[236,28,226,32,"Y2"],[236,30,226,34],[236,31,226,35],[236,32,226,36],[236,33,226,37],[237,10,227,12],[237,14,227,18,"C"],[237,15,227,19],[237,18,227,22,"modP"],[237,22,227,26],[237,23,227,27,"T1"],[237,25,227,29],[237,28,227,32,"d"],[237,29,227,33],[237,32,227,36,"T2"],[237,34,227,38],[237,35,227,39],[237,36,227,40],[237,37,227,41],[238,10,228,12],[238,14,228,18,"D"],[238,15,228,19],[238,18,228,22,"modP"],[238,22,228,26],[238,23,228,27,"Z1"],[238,25,228,29],[238,28,228,32,"Z2"],[238,30,228,34],[238,31,228,35],[238,32,228,36],[238,33,228,37],[239,10,229,12],[239,14,229,18,"E"],[239,15,229,19],[239,18,229,22,"modP"],[239,22,229,26],[239,23,229,27],[239,24,229,28,"X1"],[239,26,229,30],[239,29,229,33,"Y1"],[239,31,229,35],[239,36,229,40,"X2"],[239,38,229,42],[239,41,229,45,"Y2"],[239,43,229,47],[239,44,229,48],[239,47,229,51,"A"],[239,48,229,52],[239,51,229,55,"B"],[239,52,229,56],[239,53,229,57],[239,54,229,58],[239,55,229,59],[240,10,230,12],[240,14,230,18,"F"],[240,15,230,19],[240,18,230,22,"D"],[240,19,230,23],[240,22,230,26,"C"],[240,23,230,27],[240,24,230,28],[240,25,230,29],[241,10,231,12],[241,14,231,18,"G"],[241,15,231,19],[241,18,231,22,"D"],[241,19,231,23],[241,22,231,26,"C"],[241,23,231,27],[241,24,231,28],[241,25,231,29],[242,10,232,12],[242,14,232,18,"H"],[242,15,232,19],[242,18,232,22,"modP"],[242,22,232,26],[242,23,232,27,"B"],[242,24,232,28],[242,27,232,31,"a"],[242,28,232,32],[242,31,232,35,"A"],[242,32,232,36],[242,33,232,37],[242,34,232,38],[242,35,232,39],[243,10,233,12],[243,14,233,18,"X3"],[243,16,233,20],[243,19,233,23,"modP"],[243,23,233,27],[243,24,233,28,"E"],[243,25,233,29],[243,28,233,32,"F"],[243,29,233,33],[243,30,233,34],[243,31,233,35],[243,32,233,36],[244,10,234,12],[244,14,234,18,"Y3"],[244,16,234,20],[244,19,234,23,"modP"],[244,23,234,27],[244,24,234,28,"G"],[244,25,234,29],[244,28,234,32,"H"],[244,29,234,33],[244,30,234,34],[244,31,234,35],[244,32,234,36],[245,10,235,12],[245,14,235,18,"T3"],[245,16,235,20],[245,19,235,23,"modP"],[245,23,235,27],[245,24,235,28,"E"],[245,25,235,29],[245,28,235,32,"H"],[245,29,235,33],[245,30,235,34],[245,31,235,35],[245,32,235,36],[246,10,236,12],[246,14,236,18,"Z3"],[246,16,236,20],[246,19,236,23,"modP"],[246,23,236,27],[246,24,236,28,"F"],[246,25,236,29],[246,28,236,32,"G"],[246,29,236,33],[246,30,236,34],[246,31,236,35],[246,32,236,36],[247,10,237,12],[247,17,237,19],[247,21,237,23,"Point"],[247,26,237,28],[247,27,237,29,"X3"],[247,29,237,31],[247,31,237,33,"Y3"],[247,33,237,35],[247,35,237,37,"Z3"],[247,37,237,39],[247,39,237,41,"T3"],[247,41,237,43],[247,42,237,44],[248,8,238,8],[249,6,238,9],[250,8,238,9,"key"],[250,11,238,9],[251,8,238,9,"value"],[251,13,238,9],[251,15,239,8],[251,24,239,8,"subtract"],[251,32,239,16,"subtract"],[251,33,239,17,"other"],[251,38,239,22],[251,40,239,24],[252,10,240,12],[252,17,240,19],[252,21,240,23],[252,22,240,24,"add"],[252,25,240,27],[252,26,240,28,"other"],[252,31,240,33],[252,32,240,34,"negate"],[252,38,240,40],[252,39,240,41],[252,40,240,42],[252,41,240,43],[253,8,241,8],[254,8,242,8],[255,6,242,8],[256,8,242,8,"key"],[256,11,242,8],[257,8,242,8,"value"],[257,13,242,8],[257,15,243,8],[257,24,243,8,"multiply"],[257,32,243,16,"multiply"],[257,33,243,17,"scalar"],[257,39,243,23],[257,41,243,25],[258,10,244,12],[259,10,245,12],[259,14,245,16],[259,15,245,17,"Fn"],[259,17,245,19],[259,18,245,20,"isValidNot0"],[259,29,245,31],[259,30,245,32,"scalar"],[259,36,245,38],[259,37,245,39],[259,39,246,16],[259,45,246,22],[259,49,246,26,"Error"],[259,54,246,31],[259,55,246,32],[259,99,246,76],[259,100,246,77],[260,10,247,12],[260,14,247,12,"_wnaf$cached"],[260,26,247,12],[260,29,247,29,"wnaf"],[260,33,247,33],[260,34,247,34,"cached"],[260,40,247,40],[260,41,247,41],[260,45,247,45],[260,47,247,47,"scalar"],[260,53,247,53],[260,55,247,55],[260,65,247,56,"p"],[260,66,247,57],[261,14,247,57],[261,21,247,62],[261,22,247,63],[261,23,247,64],[261,25,247,66,"curve_ts_1"],[261,35,247,76],[261,36,247,77,"normalizeZ"],[261,46,247,87],[261,48,247,89,"Point"],[261,53,247,94],[261,55,247,96,"p"],[261,56,247,97],[261,57,247,98],[262,12,247,98],[262,14,247,99],[263,12,247,20,"p"],[263,13,247,21],[263,16,247,21,"_wnaf$cached"],[263,28,247,21],[263,29,247,20,"p"],[263,30,247,21],[264,12,247,23,"f"],[264,13,247,24],[264,16,247,24,"_wnaf$cached"],[264,28,247,24],[264,29,247,23,"f"],[264,30,247,24],[265,10,248,12],[265,17,248,19],[265,18,248,20],[265,19,248,21],[265,21,248,23,"curve_ts_1"],[265,31,248,33],[265,32,248,34,"normalizeZ"],[265,42,248,44],[265,44,248,46,"Point"],[265,49,248,51],[265,51,248,53],[265,52,248,54,"p"],[265,53,248,55],[265,55,248,57,"f"],[265,56,248,58],[265,57,248,59],[265,58,248,60],[265,59,248,61],[265,60,248,62],[265,61,248,63],[266,8,249,8],[267,8,250,8],[268,8,251,8],[269,8,252,8],[270,8,253,8],[271,8,254,8],[272,6,254,8],[273,8,254,8,"key"],[273,11,254,8],[274,8,254,8,"value"],[274,13,254,8],[274,15,255,8],[274,24,255,8,"multiplyUnsafe"],[274,38,255,22,"multiplyUnsafe"],[274,39,255,23,"scalar"],[274,45,255,29],[274,47,255,49],[275,10,255,49],[275,14,255,31,"acc"],[275,17,255,34],[275,20,255,34,"arguments"],[275,29,255,34],[275,30,255,34,"length"],[275,36,255,34],[275,44,255,34,"arguments"],[275,53,255,34],[275,61,255,34,"undefined"],[275,70,255,34],[275,73,255,34,"arguments"],[275,82,255,34],[275,88,255,37,"Point"],[275,93,255,42],[275,94,255,43,"ZERO"],[275,98,255,47],[276,10,256,12],[277,10,257,12],[277,14,257,16],[277,15,257,17,"Fn"],[277,17,257,19],[277,18,257,20,"isValid"],[277,25,257,27],[277,26,257,28,"scalar"],[277,32,257,34],[277,33,257,35],[277,35,258,16],[277,41,258,22],[277,45,258,26,"Error"],[277,50,258,31],[277,51,258,32],[277,95,258,76],[277,96,258,77],[278,10,259,12],[278,14,259,16,"scalar"],[278,20,259,22],[278,25,259,27,"_0n"],[278,28,259,30],[278,30,260,16],[278,37,260,23,"Point"],[278,42,260,28],[278,43,260,29,"ZERO"],[278,47,260,33],[279,10,261,12],[279,14,261,16],[279,18,261,20],[279,19,261,21,"is0"],[279,22,261,24],[279,23,261,25],[279,24,261,26],[279,28,261,30,"scalar"],[279,34,261,36],[279,39,261,41,"_1n"],[279,42,261,44],[279,44,262,16],[279,51,262,23],[279,55,262,27],[280,10,263,12],[280,17,263,19,"wnaf"],[280,21,263,23],[280,22,263,24,"unsafe"],[280,28,263,30],[280,29,263,31],[280,33,263,35],[280,35,263,37,"scalar"],[280,41,263,43],[280,43,263,45],[280,53,263,46,"p"],[280,54,263,47],[281,12,263,47],[281,19,263,52],[281,20,263,53],[281,21,263,54],[281,23,263,56,"curve_ts_1"],[281,33,263,66],[281,34,263,67,"normalizeZ"],[281,44,263,77],[281,46,263,79,"Point"],[281,51,263,84],[281,53,263,86,"p"],[281,54,263,87],[281,55,263,88],[282,10,263,88],[282,13,263,90,"acc"],[282,16,263,93],[282,17,263,94],[283,8,264,8],[284,8,265,8],[285,8,266,8],[286,8,267,8],[287,8,268,8],[288,6,268,8],[289,8,268,8,"key"],[289,11,268,8],[290,8,268,8,"value"],[290,13,268,8],[290,15,269,8],[290,24,269,8,"isSmallOrder"],[290,36,269,20,"isSmallOrder"],[290,37,269,20],[290,39,269,23],[291,10,270,12],[291,17,270,19],[291,21,270,23],[291,22,270,24,"multiplyUnsafe"],[291,36,270,38],[291,37,270,39,"cofactor"],[291,45,270,47],[291,46,270,48],[291,47,270,49,"is0"],[291,50,270,52],[291,51,270,53],[291,52,270,54],[292,8,271,8],[293,8,272,8],[294,8,273,8],[295,6,273,8],[296,8,273,8,"key"],[296,11,273,8],[297,8,273,8,"value"],[297,13,273,8],[297,15,274,8],[297,24,274,8,"isTorsionFree"],[297,37,274,21,"isTorsionFree"],[297,38,274,21],[297,40,274,24],[298,10,275,12],[298,17,275,19,"wnaf"],[298,21,275,23],[298,22,275,24,"unsafe"],[298,28,275,30],[298,29,275,31],[298,33,275,35],[298,35,275,37,"CURVE"],[298,41,275,42],[298,42,275,43,"n"],[298,43,275,44],[298,44,275,45],[298,45,275,46,"is0"],[298,48,275,49],[298,49,275,50],[298,50,275,51],[299,8,276,8],[300,8,277,8],[301,8,278,8],[302,6,278,8],[303,8,278,8,"key"],[303,11,278,8],[304,8,278,8,"value"],[304,13,278,8],[304,15,279,8],[304,24,279,8,"toAffine"],[304,32,279,16,"toAffine"],[304,33,279,17,"invertedZ"],[304,42,279,26],[304,44,279,28],[305,10,280,12],[305,17,280,19,"toAffineMemo"],[305,29,280,31],[305,30,280,32],[305,34,280,36],[305,36,280,38,"invertedZ"],[305,45,280,47],[305,46,280,48],[306,8,281,8],[307,6,281,9],[308,8,281,9,"key"],[308,11,281,9],[309,8,281,9,"value"],[309,13,281,9],[309,15,282,8],[309,24,282,8,"clearCofactor"],[309,37,282,21,"clearCofactor"],[309,38,282,21],[309,40,282,24],[310,10,283,12],[310,14,283,16,"cofactor"],[310,22,283,24],[310,27,283,29,"_1n"],[310,30,283,32],[310,32,284,16],[310,39,284,23],[310,43,284,27],[311,10,285,12],[311,17,285,19],[311,21,285,23],[311,22,285,24,"multiplyUnsafe"],[311,36,285,38],[311,37,285,39,"cofactor"],[311,45,285,47],[311,46,285,48],[312,8,286,8],[313,6,286,9],[314,8,286,9,"key"],[314,11,286,9],[315,8,286,9,"value"],[315,13,286,9],[315,15,287,8],[315,24,287,8,"toBytes"],[315,31,287,15,"toBytes"],[315,32,287,15],[315,34,287,18],[316,10,288,12],[316,14,288,12,"_this$toAffine"],[316,28,288,12],[316,31,288,29],[316,35,288,33],[316,36,288,34,"toAffine"],[316,44,288,42],[316,45,288,43],[316,46,288,44],[317,12,288,20,"x"],[317,13,288,21],[317,16,288,21,"_this$toAffine"],[317,30,288,21],[317,31,288,20,"x"],[317,32,288,21],[318,12,288,23,"y"],[318,13,288,24],[318,16,288,24,"_this$toAffine"],[318,30,288,24],[318,31,288,23,"y"],[318,32,288,24],[319,10,289,12],[320,10,290,12],[320,14,290,18,"bytes"],[320,19,290,23],[320,22,290,26,"Fp"],[320,24,290,28],[320,25,290,29,"toBytes"],[320,32,290,36],[320,33,290,37,"y"],[320,34,290,38],[320,35,290,39],[321,10,291,12],[322,10,292,12],[323,10,293,12,"bytes"],[323,15,293,17],[323,16,293,18,"bytes"],[323,21,293,23],[323,22,293,24,"length"],[323,28,293,30],[323,31,293,33],[323,32,293,34],[323,33,293,35],[323,37,293,39,"x"],[323,38,293,40],[323,41,293,43,"_1n"],[323,44,293,46],[323,47,293,49],[323,51,293,53],[323,54,293,56],[323,55,293,57],[324,10,294,12],[324,17,294,19,"bytes"],[324,22,294,24],[325,8,295,8],[326,6,295,9],[327,8,295,9,"key"],[327,11,295,9],[328,8,295,9,"value"],[328,13,295,9],[328,15,296,8],[328,24,296,8,"toHex"],[328,29,296,13,"toHex"],[328,30,296,13],[328,32,296,16],[329,10,297,12],[329,17,297,19],[329,18,297,20],[329,19,297,21],[329,21,297,23,"utils_ts_1"],[329,31,297,33],[329,32,297,34,"bytesToHex"],[329,42,297,44],[329,44,297,46],[329,48,297,50],[329,49,297,51,"toBytes"],[329,56,297,58],[329,57,297,59],[329,58,297,60],[329,59,297,61],[330,8,298,8],[331,6,298,9],[332,8,298,9,"key"],[332,11,298,9],[333,8,298,9,"value"],[333,13,298,9],[333,15,299,8],[333,24,299,8,"toString"],[333,32,299,16,"toString"],[333,33,299,16],[333,35,299,19],[334,10,300,12],[334,17,300,19],[334,27,300,29],[334,31,300,33],[334,32,300,34,"is0"],[334,35,300,37],[334,36,300,38],[334,37,300,39],[334,40,300,42],[334,46,300,48],[334,49,300,51],[334,53,300,55],[334,54,300,56,"toHex"],[334,59,300,61],[334,60,300,62],[334,61,300,63],[334,64,300,66],[335,8,301,8],[336,8,302,8],[337,6,302,8],[338,8,302,8,"key"],[338,11,302,8],[339,8,302,8,"get"],[339,11,302,8],[339,13,303,8],[339,22,303,8,"get"],[339,26,303,8],[339,28,303,17],[340,10,304,12],[340,17,304,19],[340,21,304,23],[340,22,304,24,"X"],[340,23,304,25],[341,8,305,8],[342,6,305,9],[343,8,305,9,"key"],[343,11,305,9],[344,8,305,9,"get"],[344,11,305,9],[344,13,306,8],[344,22,306,8,"get"],[344,26,306,8],[344,28,306,17],[345,10,307,12],[345,17,307,19],[345,21,307,23],[345,22,307,24,"Y"],[345,23,307,25],[346,8,308,8],[347,6,308,9],[348,8,308,9,"key"],[348,11,308,9],[349,8,308,9,"get"],[349,11,308,9],[349,13,309,8],[349,22,309,8,"get"],[349,26,309,8],[349,28,309,17],[350,10,310,12],[350,17,310,19],[350,21,310,23],[350,22,310,24,"Z"],[350,23,310,25],[351,8,311,8],[352,6,311,9],[353,8,311,9,"key"],[353,11,311,9],[354,8,311,9,"get"],[354,11,311,9],[354,13,312,8],[354,22,312,8,"get"],[354,26,312,8],[354,28,312,17],[355,10,313,12],[355,17,313,19],[355,21,313,23],[355,22,313,24,"T"],[355,23,313,25],[356,8,314,8],[357,6,314,9],[358,8,314,9,"key"],[358,11,314,9],[359,8,314,9,"value"],[359,13,314,9],[359,15,321,8],[359,24,321,8,"_setWindowSize"],[359,38,321,22,"_setWindowSize"],[359,39,321,23,"windowSize"],[359,49,321,33],[359,51,321,35],[360,10,322,12],[360,14,322,16],[360,15,322,17,"precompute"],[360,25,322,27],[360,26,322,28,"windowSize"],[360,36,322,38],[360,37,322,39],[361,8,323,8],[362,6,323,9],[363,8,323,9,"key"],[363,11,323,9],[364,8,323,9,"value"],[364,13,323,9],[364,15,324,8],[364,24,324,8,"toRawBytes"],[364,34,324,18,"toRawBytes"],[364,35,324,18],[364,37,324,21],[365,10,325,12],[365,17,325,19],[365,21,325,23],[365,22,325,24,"toBytes"],[365,29,325,31],[365,30,325,32],[365,31,325,33],[366,8,326,8],[367,6,326,9],[368,8,326,9,"key"],[368,11,326,9],[369,8,326,9,"value"],[369,13,326,9],[369,15,115,8],[369,24,115,15,"CURVE"],[369,29,115,20,"CURVE"],[369,30,115,20],[369,32,115,23],[370,10,116,12],[370,17,116,19,"CURVE"],[370,23,116,24],[371,8,117,8],[372,6,117,9],[373,8,117,9,"key"],[373,11,117,9],[374,8,117,9,"value"],[374,13,117,9],[374,15,118,8],[374,24,118,15,"fromAffine"],[374,34,118,25,"fromAffine"],[374,35,118,26,"p"],[374,36,118,27],[374,38,118,29],[375,10,119,12],[375,14,119,16,"p"],[375,15,119,17],[375,27,119,29,"Point"],[375,32,119,34],[375,34,120,16],[375,40,120,22],[375,44,120,26,"Error"],[375,49,120,31],[375,50,120,32],[375,78,120,60],[375,79,120,61],[376,10,121,12],[376,14,121,12,"_ref"],[376,18,121,12],[376,21,121,29,"p"],[376,22,121,30],[376,26,121,34],[376,27,121,35],[376,28,121,36],[377,12,121,20,"x"],[377,13,121,21],[377,16,121,21,"_ref"],[377,20,121,21],[377,21,121,20,"x"],[377,22,121,21],[378,12,121,23,"y"],[378,13,121,24],[378,16,121,24,"_ref"],[378,20,121,24],[378,21,121,23,"y"],[378,22,121,24],[379,10,122,12,"acoord"],[379,16,122,18],[379,17,122,19],[379,20,122,22],[379,22,122,24,"x"],[379,23,122,25],[379,24,122,26],[380,10,123,12,"acoord"],[380,16,123,18],[380,17,123,19],[380,20,123,22],[380,22,123,24,"y"],[380,23,123,25],[380,24,123,26],[381,10,124,12],[381,17,124,19],[381,21,124,23,"Point"],[381,26,124,28],[381,27,124,29,"x"],[381,28,124,30],[381,30,124,32,"y"],[381,31,124,33],[381,33,124,35,"_1n"],[381,36,124,38],[381,38,124,40,"modP"],[381,42,124,44],[381,43,124,45,"x"],[381,44,124,46],[381,47,124,49,"y"],[381,48,124,50],[381,49,124,51],[381,50,124,52],[382,8,125,8],[383,8,126,8],[384,6,126,8],[385,8,126,8,"key"],[385,11,126,8],[386,8,126,8,"value"],[386,13,126,8],[386,15,127,8],[386,24,127,15,"fromBytes"],[386,33,127,24,"fromBytes"],[386,34,127,25,"bytes"],[386,39,127,30],[386,41,127,48],[387,10,127,48],[387,14,127,32,"zip215"],[387,20,127,38],[387,23,127,38,"arguments"],[387,32,127,38],[387,33,127,38,"length"],[387,39,127,38],[387,47,127,38,"arguments"],[387,56,127,38],[387,64,127,38,"undefined"],[387,73,127,38],[387,76,127,38,"arguments"],[387,85,127,38],[387,91,127,41],[387,96,127,46],[388,10,128,12],[388,14,128,18,"len"],[388,17,128,21],[388,20,128,24,"Fp"],[388,22,128,26],[388,23,128,27,"BYTES"],[388,28,128,32],[389,10,129,12],[389,14,129,20,"a"],[389,15,129,21],[389,18,129,29,"CURVE"],[389,24,129,34],[389,25,129,20,"a"],[389,26,129,21],[390,12,129,23,"d"],[390,13,129,24],[390,16,129,29,"CURVE"],[390,22,129,34],[390,23,129,23,"d"],[390,24,129,24],[391,10,130,12,"bytes"],[391,15,130,17],[391,18,130,20],[391,19,130,21],[391,20,130,22],[391,22,130,24,"utils_ts_1"],[391,32,130,34],[391,33,130,35,"copyBytes"],[391,42,130,44],[391,44,130,46],[391,45,130,47],[391,46,130,48],[391,48,130,50,"utils_ts_1"],[391,58,130,60],[391,59,130,61,"_abytes2"],[391,67,130,69],[391,69,130,71,"bytes"],[391,74,130,76],[391,76,130,78,"len"],[391,79,130,81],[391,81,130,83],[391,88,130,90],[391,89,130,91],[391,90,130,92],[392,10,131,12],[392,11,131,13],[392,12,131,14],[392,14,131,16,"utils_ts_1"],[392,24,131,26],[392,25,131,27,"_abool2"],[392,32,131,34],[392,34,131,36,"zip215"],[392,40,131,42],[392,42,131,44],[392,50,131,52],[392,51,131,53],[393,10,132,12],[393,14,132,18,"normed"],[393,20,132,24],[393,23,132,27],[393,24,132,28],[393,25,132,29],[393,27,132,31,"utils_ts_1"],[393,37,132,41],[393,38,132,42,"copyBytes"],[393,47,132,51],[393,49,132,53,"bytes"],[393,54,132,58],[393,55,132,59],[393,56,132,60],[393,57,132,61],[394,10,133,12],[394,14,133,18,"lastByte"],[394,22,133,26],[394,25,133,29,"bytes"],[394,30,133,34],[394,31,133,35,"len"],[394,34,133,38],[394,37,133,41],[394,38,133,42],[394,39,133,43],[394,40,133,44],[394,41,133,45],[395,10,134,12,"normed"],[395,16,134,18],[395,17,134,19,"len"],[395,20,134,22],[395,23,134,25],[395,24,134,26],[395,25,134,27],[395,28,134,30,"lastByte"],[395,36,134,38],[395,39,134,41],[395,40,134,42],[395,44,134,46],[395,45,134,47],[395,46,134,48],[396,10,135,12],[396,14,135,18,"y"],[396,15,135,19],[396,18,135,22],[396,19,135,23],[396,20,135,24],[396,22,135,26,"utils_ts_1"],[396,32,135,36],[396,33,135,37,"bytesToNumberLE"],[396,48,135,52],[396,50,135,54,"normed"],[396,56,135,60],[396,57,135,61],[397,10,136,12],[398,10,137,12],[399,10,138,12],[400,10,139,12],[401,10,140,12],[401,14,140,18,"max"],[401,17,140,21],[401,20,140,24,"zip215"],[401,26,140,30],[401,29,140,33,"MASK"],[401,33,140,37],[401,36,140,40,"Fp"],[401,38,140,42],[401,39,140,43,"ORDER"],[401,44,140,48],[402,10,141,12],[402,11,141,13],[402,12,141,14],[402,14,141,16,"utils_ts_1"],[402,24,141,26],[402,25,141,27,"aInRange"],[402,33,141,35],[402,35,141,37],[402,44,141,46],[402,46,141,48,"y"],[402,47,141,49],[402,49,141,51,"_0n"],[402,52,141,54],[402,54,141,56,"max"],[402,57,141,59],[402,58,141,60],[403,10,142,12],[404,10,143,12],[405,10,144,12],[405,14,144,18,"y2"],[405,16,144,20],[405,19,144,23,"modP"],[405,23,144,27],[405,24,144,28,"y"],[405,25,144,29],[405,28,144,32,"y"],[405,29,144,33],[405,30,144,34],[405,31,144,35],[405,32,144,36],[406,10,145,12],[406,14,145,18,"u"],[406,15,145,19],[406,18,145,22,"modP"],[406,22,145,26],[406,23,145,27,"y2"],[406,25,145,29],[406,28,145,32,"_1n"],[406,31,145,35],[406,32,145,36],[406,33,145,37],[406,34,145,38],[407,10,146,12],[407,14,146,18,"v"],[407,15,146,19],[407,18,146,22,"modP"],[407,22,146,26],[407,23,146,27,"d"],[407,24,146,28],[407,27,146,31,"y2"],[407,29,146,33],[407,32,146,36,"a"],[407,33,146,37],[407,34,146,38],[407,35,146,39],[407,36,146,40],[408,10,147,12],[408,14,147,12,"_uvRatio"],[408,22,147,12],[408,25,147,40,"uvRatio"],[408,32,147,47],[408,33,147,48,"u"],[408,34,147,49],[408,36,147,51,"v"],[408,37,147,52],[408,38,147,53],[409,12,147,18,"isValid"],[409,19,147,25],[409,22,147,25,"_uvRatio"],[409,30,147,25],[409,31,147,18,"isValid"],[409,38,147,25],[410,12,147,34,"x"],[410,13,147,35],[410,16,147,35,"_uvRatio"],[410,24,147,35],[410,25,147,27,"value"],[410,30,147,32],[410,31,147,54],[410,32,147,55],[411,10,148,12],[411,14,148,16],[411,15,148,17,"isValid"],[411,22,148,24],[411,24,149,16],[411,30,149,22],[411,34,149,26,"Error"],[411,39,149,31],[411,40,149,32],[411,73,149,65],[411,74,149,66],[412,10,150,12],[412,14,150,18,"isXOdd"],[412,20,150,24],[412,23,150,27],[412,24,150,28,"x"],[412,25,150,29],[412,28,150,32,"_1n"],[412,31,150,35],[412,37,150,41,"_1n"],[412,40,150,44],[412,41,150,45],[412,42,150,46],[413,10,151,12],[413,14,151,18,"isLastByteOdd"],[413,27,151,31],[413,30,151,34],[413,31,151,35,"lastByte"],[413,39,151,43],[413,42,151,46],[413,46,151,50],[413,52,151,56],[413,53,151,57],[413,54,151,58],[413,55,151,59],[414,10,152,12],[414,14,152,16],[414,15,152,17,"zip215"],[414,21,152,23],[414,25,152,27,"x"],[414,26,152,28],[414,31,152,33,"_0n"],[414,34,152,36],[414,38,152,40,"isLastByteOdd"],[414,51,152,53],[415,12,153,16],[416,12,154,16],[416,18,154,22],[416,22,154,26,"Error"],[416,27,154,31],[416,28,154,32],[416,54,154,58],[416,55,154,59],[417,10,155,12],[417,14,155,16,"isLastByteOdd"],[417,27,155,29],[417,32,155,34,"isXOdd"],[417,38,155,40],[417,40,156,16,"x"],[417,41,156,17],[417,44,156,20,"modP"],[417,48,156,24],[417,49,156,25],[417,50,156,26,"x"],[417,51,156,27],[417,52,156,28],[417,53,156,29],[417,54,156,30],[418,10,157,12],[418,17,157,19,"Point"],[418,22,157,24],[418,23,157,25,"fromAffine"],[418,33,157,35],[418,34,157,36],[419,12,157,38,"x"],[419,13,157,39],[419,15,157,38,"x"],[419,16,157,39],[420,12,157,41,"y"],[420,13,157,42],[420,15,157,41,"y"],[421,10,157,43],[421,11,157,44],[421,12,157,45],[422,8,158,8],[423,6,158,9],[424,8,158,9,"key"],[424,11,158,9],[425,8,158,9,"value"],[425,13,158,9],[425,15,159,8],[425,24,159,15,"fromHex"],[425,31,159,22,"fromHex"],[425,32,159,23,"bytes"],[425,37,159,28],[425,39,159,46],[426,10,159,46],[426,14,159,30,"zip215"],[426,20,159,36],[426,23,159,36,"arguments"],[426,32,159,36],[426,33,159,36,"length"],[426,39,159,36],[426,47,159,36,"arguments"],[426,56,159,36],[426,64,159,36,"undefined"],[426,73,159,36],[426,76,159,36,"arguments"],[426,85,159,36],[426,91,159,39],[426,96,159,44],[427,10,160,12],[427,17,160,19,"Point"],[427,22,160,24],[427,23,160,25,"fromBytes"],[427,32,160,34],[427,33,160,35],[427,34,160,36],[427,35,160,37],[427,37,160,39,"utils_ts_1"],[427,47,160,49],[427,48,160,50,"ensureBytes"],[427,59,160,61],[427,61,160,63],[427,68,160,70],[427,70,160,72,"bytes"],[427,75,160,77],[427,76,160,78],[427,78,160,80,"zip215"],[427,84,160,86],[427,85,160,87],[428,8,161,8],[429,6,161,9],[430,8,161,9,"key"],[430,11,161,9],[431,8,161,9,"value"],[431,13,161,9],[431,15,315,8],[431,24,315,15,"normalizeZ"],[431,34,315,25,"normalizeZ"],[431,35,315,26,"points"],[431,41,315,32],[431,43,315,34],[432,10,316,12],[432,17,316,19],[432,18,316,20],[432,19,316,21],[432,21,316,23,"curve_ts_1"],[432,31,316,33],[432,32,316,34,"normalizeZ"],[432,42,316,44],[432,44,316,46,"Point"],[432,49,316,51],[432,51,316,53,"points"],[432,57,316,59],[432,58,316,60],[433,8,317,8],[434,6,317,9],[435,8,317,9,"key"],[435,11,317,9],[436,8,317,9,"value"],[436,13,317,9],[436,15,318,8],[436,24,318,15,"msm"],[436,27,318,18,"msm"],[436,28,318,19,"points"],[436,34,318,25],[436,36,318,27,"scalars"],[436,43,318,34],[436,45,318,36],[437,10,319,12],[437,17,319,19],[437,18,319,20],[437,19,319,21],[437,21,319,23,"curve_ts_1"],[437,31,319,33],[437,32,319,34,"pippenger"],[437,41,319,43],[437,43,319,45,"Point"],[437,48,319,50],[437,50,319,52,"Fn"],[437,52,319,54],[437,54,319,56,"points"],[437,60,319,62],[437,62,319,64,"scalars"],[437,69,319,71],[437,70,319,72],[438,8,320,8],[439,6,320,9],[440,4,320,9],[440,9,328,4],[441,4,329,4,"Point"],[441,9,329,9],[441,10,329,10,"BASE"],[441,14,329,14],[441,17,329,17],[441,21,329,21,"Point"],[441,26,329,26],[441,27,329,27,"CURVE"],[441,33,329,32],[441,34,329,33,"Gx"],[441,36,329,35],[441,38,329,37,"CURVE"],[441,44,329,42],[441,45,329,43,"Gy"],[441,47,329,45],[441,49,329,47,"_1n"],[441,52,329,50],[441,54,329,52,"modP"],[441,58,329,56],[441,59,329,57,"CURVE"],[441,65,329,62],[441,66,329,63,"Gx"],[441,68,329,65],[441,71,329,68,"CURVE"],[441,77,329,73],[441,78,329,74,"Gy"],[441,80,329,76],[441,81,329,77],[441,82,329,78],[442,4,330,4],[443,4,331,4,"Point"],[443,9,331,9],[443,10,331,10,"ZERO"],[443,14,331,14],[443,17,331,17],[443,21,331,21,"Point"],[443,26,331,26],[443,27,331,27,"_0n"],[443,30,331,30],[443,32,331,32,"_1n"],[443,35,331,35],[443,37,331,37,"_1n"],[443,40,331,40],[443,42,331,42,"_0n"],[443,45,331,45],[443,46,331,46],[443,47,331,47],[443,48,331,48],[444,4,332,4],[445,4,333,4,"Point"],[445,9,333,9],[445,10,333,10,"Fp"],[445,12,333,12],[445,15,333,15,"Fp"],[445,17,333,17],[446,4,334,4],[447,4,335,4,"Point"],[447,9,335,9],[447,10,335,10,"Fn"],[447,12,335,12],[447,15,335,15,"Fn"],[447,17,335,17],[448,4,336,4],[448,8,336,10,"wnaf"],[448,12,336,14],[448,15,336,17],[448,19,336,21,"curve_ts_1"],[448,29,336,31],[448,30,336,32,"wNAF"],[448,34,336,36],[448,35,336,37,"Point"],[448,40,336,42],[448,42,336,44,"Fn"],[448,44,336,46],[448,45,336,47,"BITS"],[448,49,336,51],[448,50,336,52],[449,4,337,4,"Point"],[449,9,337,9],[449,10,337,10,"BASE"],[449,14,337,14],[449,15,337,15,"precompute"],[449,25,337,25],[449,26,337,26],[449,27,337,27],[449,28,337,28],[449,29,337,29],[449,30,337,30],[450,4,338,4],[450,11,338,11,"Point"],[450,16,338,16],[451,2,339,0],[452,2,340,0],[453,0,341,0],[454,0,342,0],[455,0,343,0],[456,0,344,0],[457,2,340,0],[457,6,345,6,"PrimeEdwardsPoint"],[457,23,345,23],[458,4,346,4],[458,13,346,4,"PrimeEdwardsPoint"],[458,31,346,16,"ep"],[458,33,346,18],[458,35,346,20],[459,6,346,20,"_classCallCheck"],[459,21,346,20],[459,28,346,20,"PrimeEdwardsPoint"],[459,45,346,20],[460,6,347,8],[460,10,347,12],[460,11,347,13,"ep"],[460,13,347,15],[460,16,347,18,"ep"],[460,18,347,20],[461,4,348,4],[462,4,349,4],[463,4,349,4],[463,11,349,4,"_createClass"],[463,23,349,4],[463,24,349,4,"PrimeEdwardsPoint"],[463,41,349,4],[464,6,349,4,"key"],[464,9,349,4],[465,6,349,4,"get"],[465,9,349,4],[465,11,356,4],[465,20,356,4,"get"],[465,24,356,4],[465,26,356,12],[466,8,357,8],[466,15,357,15],[466,19,357,19],[466,20,357,20,"toAffine"],[466,28,357,28],[466,29,357,29],[466,30,357,30],[466,31,357,31,"x"],[466,32,357,32],[467,6,358,4],[468,4,358,5],[469,6,358,5,"key"],[469,9,358,5],[470,6,358,5,"get"],[470,9,358,5],[470,11,359,4],[470,20,359,4,"get"],[470,24,359,4],[470,26,359,12],[471,8,360,8],[471,15,360,15],[471,19,360,19],[471,20,360,20,"toAffine"],[471,28,360,28],[471,29,360,29],[471,30,360,30],[471,31,360,31,"y"],[471,32,360,32],[472,6,361,4],[473,6,362,4],[474,4,362,4],[475,6,362,4,"key"],[475,9,362,4],[476,6,362,4,"value"],[476,11,362,4],[476,13,363,4],[476,22,363,4,"clearCofactor"],[476,35,363,17,"clearCofactor"],[476,36,363,17],[476,38,363,20],[477,8,364,8],[478,8,365,8],[478,15,365,15],[478,19,365,19],[479,6,366,4],[480,4,366,5],[481,6,366,5,"key"],[481,9,366,5],[482,6,366,5,"value"],[482,11,366,5],[482,13,367,4],[482,22,367,4,"assertValidity"],[482,36,367,18,"assertValidity"],[482,37,367,18],[482,39,367,21],[483,8,368,8],[483,12,368,12],[483,13,368,13,"ep"],[483,15,368,15],[483,16,368,16,"assertValidity"],[483,30,368,30],[483,31,368,31],[483,32,368,32],[484,6,369,4],[485,4,369,5],[486,6,369,5,"key"],[486,9,369,5],[487,6,369,5,"value"],[487,11,369,5],[487,13,370,4],[487,22,370,4,"toAffine"],[487,30,370,12,"toAffine"],[487,31,370,13,"invertedZ"],[487,40,370,22],[487,42,370,24],[488,8,371,8],[488,15,371,15],[488,19,371,19],[488,20,371,20,"ep"],[488,22,371,22],[488,23,371,23,"toAffine"],[488,31,371,31],[488,32,371,32,"invertedZ"],[488,41,371,41],[488,42,371,42],[489,6,372,4],[490,4,372,5],[491,6,372,5,"key"],[491,9,372,5],[492,6,372,5,"value"],[492,11,372,5],[492,13,373,4],[492,22,373,4,"toHex"],[492,27,373,9,"toHex"],[492,28,373,9],[492,30,373,12],[493,8,374,8],[493,15,374,15],[493,16,374,16],[493,17,374,17],[493,19,374,19,"utils_ts_1"],[493,29,374,29],[493,30,374,30,"bytesToHex"],[493,40,374,40],[493,42,374,42],[493,46,374,46],[493,47,374,47,"toBytes"],[493,54,374,54],[493,55,374,55],[493,56,374,56],[493,57,374,57],[494,6,375,4],[495,4,375,5],[496,6,375,5,"key"],[496,9,375,5],[497,6,375,5,"value"],[497,11,375,5],[497,13,376,4],[497,22,376,4,"toString"],[497,30,376,12,"toString"],[497,31,376,12],[497,33,376,15],[498,8,377,8],[498,15,377,15],[498,19,377,19],[498,20,377,20,"toHex"],[498,25,377,25],[498,26,377,26],[498,27,377,27],[499,6,378,4],[500,4,378,5],[501,6,378,5,"key"],[501,9,378,5],[502,6,378,5,"value"],[502,11,378,5],[502,13,379,4],[502,22,379,4,"isTorsionFree"],[502,35,379,17,"isTorsionFree"],[502,36,379,17],[502,38,379,20],[503,8,380,8],[503,15,380,15],[503,19,380,19],[504,6,381,4],[505,4,381,5],[506,6,381,5,"key"],[506,9,381,5],[507,6,381,5,"value"],[507,11,381,5],[507,13,382,4],[507,22,382,4,"isSmallOrder"],[507,34,382,16,"isSmallOrder"],[507,35,382,16],[507,37,382,19],[508,8,383,8],[508,15,383,15],[508,20,383,20],[509,6,384,4],[510,4,384,5],[511,6,384,5,"key"],[511,9,384,5],[512,6,384,5,"value"],[512,11,384,5],[512,13,385,4],[512,22,385,4,"add"],[512,25,385,7,"add"],[512,26,385,8,"other"],[512,31,385,13],[512,33,385,15],[513,8,386,8],[513,12,386,12],[513,13,386,13,"assertSame"],[513,23,386,23],[513,24,386,24,"other"],[513,29,386,29],[513,30,386,30],[514,8,387,8],[514,15,387,15],[514,19,387,19],[514,20,387,20,"init"],[514,24,387,24],[514,25,387,25],[514,29,387,29],[514,30,387,30,"ep"],[514,32,387,32],[514,33,387,33,"add"],[514,36,387,36],[514,37,387,37,"other"],[514,42,387,42],[514,43,387,43,"ep"],[514,45,387,45],[514,46,387,46],[514,47,387,47],[515,6,388,4],[516,4,388,5],[517,6,388,5,"key"],[517,9,388,5],[518,6,388,5,"value"],[518,11,388,5],[518,13,389,4],[518,22,389,4,"subtract"],[518,30,389,12,"subtract"],[518,31,389,13,"other"],[518,36,389,18],[518,38,389,20],[519,8,390,8],[519,12,390,12],[519,13,390,13,"assertSame"],[519,23,390,23],[519,24,390,24,"other"],[519,29,390,29],[519,30,390,30],[520,8,391,8],[520,15,391,15],[520,19,391,19],[520,20,391,20,"init"],[520,24,391,24],[520,25,391,25],[520,29,391,29],[520,30,391,30,"ep"],[520,32,391,32],[520,33,391,33,"subtract"],[520,41,391,41],[520,42,391,42,"other"],[520,47,391,47],[520,48,391,48,"ep"],[520,50,391,50],[520,51,391,51],[520,52,391,52],[521,6,392,4],[522,4,392,5],[523,6,392,5,"key"],[523,9,392,5],[524,6,392,5,"value"],[524,11,392,5],[524,13,393,4],[524,22,393,4,"multiply"],[524,30,393,12,"multiply"],[524,31,393,13,"scalar"],[524,37,393,19],[524,39,393,21],[525,8,394,8],[525,15,394,15],[525,19,394,19],[525,20,394,20,"init"],[525,24,394,24],[525,25,394,25],[525,29,394,29],[525,30,394,30,"ep"],[525,32,394,32],[525,33,394,33,"multiply"],[525,41,394,41],[525,42,394,42,"scalar"],[525,48,394,48],[525,49,394,49],[525,50,394,50],[526,6,395,4],[527,4,395,5],[528,6,395,5,"key"],[528,9,395,5],[529,6,395,5,"value"],[529,11,395,5],[529,13,396,4],[529,22,396,4,"multiplyUnsafe"],[529,36,396,18,"multiplyUnsafe"],[529,37,396,19,"scalar"],[529,43,396,25],[529,45,396,27],[530,8,397,8],[530,15,397,15],[530,19,397,19],[530,20,397,20,"init"],[530,24,397,24],[530,25,397,25],[530,29,397,29],[530,30,397,30,"ep"],[530,32,397,32],[530,33,397,33,"multiplyUnsafe"],[530,47,397,47],[530,48,397,48,"scalar"],[530,54,397,54],[530,55,397,55],[530,56,397,56],[531,6,398,4],[532,4,398,5],[533,6,398,5,"key"],[533,9,398,5],[534,6,398,5,"value"],[534,11,398,5],[534,13,399,4],[534,22,399,4,"double"],[534,28,399,10,"double"],[534,29,399,10],[534,31,399,13],[535,8,400,8],[535,15,400,15],[535,19,400,19],[535,20,400,20,"init"],[535,24,400,24],[535,25,400,25],[535,29,400,29],[535,30,400,30,"ep"],[535,32,400,32],[535,33,400,33,"double"],[535,39,400,39],[535,40,400,40],[535,41,400,41],[535,42,400,42],[536,6,401,4],[537,4,401,5],[538,6,401,5,"key"],[538,9,401,5],[539,6,401,5,"value"],[539,11,401,5],[539,13,402,4],[539,22,402,4,"negate"],[539,28,402,10,"negate"],[539,29,402,10],[539,31,402,13],[540,8,403,8],[540,15,403,15],[540,19,403,19],[540,20,403,20,"init"],[540,24,403,24],[540,25,403,25],[540,29,403,29],[540,30,403,30,"ep"],[540,32,403,32],[540,33,403,33,"negate"],[540,39,403,39],[540,40,403,40],[540,41,403,41],[540,42,403,42],[541,6,404,4],[542,4,404,5],[543,6,404,5,"key"],[543,9,404,5],[544,6,404,5,"value"],[544,11,404,5],[544,13,405,4],[544,22,405,4,"precompute"],[544,32,405,14,"precompute"],[544,33,405,15,"windowSize"],[544,43,405,25],[544,45,405,27,"isLazy"],[544,51,405,33],[544,53,405,35],[545,8,406,8],[545,15,406,15],[545,19,406,19],[545,20,406,20,"init"],[545,24,406,24],[545,25,406,25],[545,29,406,29],[545,30,406,30,"ep"],[545,32,406,32],[545,33,406,33,"precompute"],[545,43,406,43],[545,44,406,44,"windowSize"],[545,54,406,54],[545,56,406,56,"isLazy"],[545,62,406,62],[545,63,406,63],[545,64,406,64],[546,6,407,4],[547,6,408,4],[548,4,408,4],[549,6,408,4,"key"],[549,9,408,4],[550,6,408,4,"value"],[550,11,408,4],[550,13,409,4],[550,22,409,4,"toRawBytes"],[550,32,409,14,"toRawBytes"],[550,33,409,14],[550,35,409,17],[551,8,410,8],[551,15,410,15],[551,19,410,19],[551,20,410,20,"toBytes"],[551,27,410,27],[551,28,410,28],[551,29,410,29],[552,6,411,4],[553,4,411,5],[554,6,411,5,"key"],[554,9,411,5],[555,6,411,5,"value"],[555,11,411,5],[555,13,350,4],[555,22,350,11,"fromBytes"],[555,31,350,20,"fromBytes"],[555,32,350,21,"_bytes"],[555,38,350,27],[555,40,350,29],[556,8,351,8],[556,9,351,9],[556,10,351,10],[556,12,351,12,"utils_ts_1"],[556,22,351,22],[556,23,351,23,"notImplemented"],[556,37,351,37],[556,39,351,39],[556,40,351,40],[557,6,352,4],[558,4,352,5],[559,6,352,5,"key"],[559,9,352,5],[560,6,352,5,"value"],[560,11,352,5],[560,13,353,4],[560,22,353,11,"fromHex"],[560,29,353,18,"fromHex"],[560,30,353,19,"_hex"],[560,34,353,23],[560,36,353,25],[561,8,354,8],[561,9,354,9],[561,10,354,10],[561,12,354,12,"utils_ts_1"],[561,22,354,22],[561,23,354,23,"notImplemented"],[561,37,354,37],[561,39,354,39],[561,40,354,40],[562,6,355,4],[563,4,355,5],[564,2,355,5],[565,2,413,0,"exports"],[565,9,413,7],[565,10,413,8,"PrimeEdwardsPoint"],[565,27,413,25],[565,30,413,28,"PrimeEdwardsPoint"],[565,47,413,45],[566,2,414,0],[567,0,415,0],[568,0,416,0],[569,2,417,0],[569,11,417,9,"eddsa"],[569,16,417,14,"eddsa"],[569,17,417,15,"Point"],[569,22,417,20],[569,24,417,22,"cHash"],[569,29,417,27],[569,31,417,45],[570,4,417,45],[570,8,417,29,"eddsaOpts"],[570,17,417,38],[570,20,417,38,"arguments"],[570,29,417,38],[570,30,417,38,"length"],[570,36,417,38],[570,44,417,38,"arguments"],[570,53,417,38],[570,61,417,38,"undefined"],[570,70,417,38],[570,73,417,38,"arguments"],[570,82,417,38],[570,88,417,41],[570,89,417,42],[570,90,417,43],[571,4,418,4],[571,8,418,8],[571,15,418,15,"cHash"],[571,20,418,20],[571,25,418,25],[571,35,418,35],[571,37,419,8],[571,43,419,14],[571,47,419,18,"Error"],[571,52,419,23],[571,53,419,24],[571,88,419,59],[571,89,419,60],[572,4,420,4],[572,5,420,5],[572,6,420,6],[572,8,420,8,"utils_ts_1"],[572,18,420,18],[572,19,420,19,"_validateObject"],[572,34,420,34],[572,36,420,36,"eddsaOpts"],[572,45,420,45],[572,47,420,47],[572,48,420,48],[572,49,420,49],[572,51,420,51],[573,6,421,8,"adjustScalarBytes"],[573,23,421,25],[573,25,421,27],[573,35,421,37],[574,6,422,8,"randomBytes"],[574,17,422,19],[574,19,422,21],[574,29,422,31],[575,6,423,8,"domain"],[575,12,423,14],[575,14,423,16],[575,24,423,26],[576,6,424,8,"prehash"],[576,13,424,15],[576,15,424,17],[576,25,424,27],[577,6,425,8,"mapToCurve"],[577,16,425,18],[577,18,425,20],[578,4,426,4],[578,5,426,5],[578,6,426,6],[579,4,427,4],[579,8,427,12,"prehash"],[579,15,427,19],[579,18,427,24,"eddsaOpts"],[579,27,427,33],[579,28,427,12,"prehash"],[579,35,427,19],[580,4,428,4],[580,8,428,12,"BASE"],[580,12,428,16],[580,15,428,29,"Point"],[580,20,428,34],[580,21,428,12,"BASE"],[580,25,428,16],[581,6,428,18,"Fp"],[581,8,428,20],[581,11,428,29,"Point"],[581,16,428,34],[581,17,428,18,"Fp"],[581,19,428,20],[582,6,428,22,"Fn"],[582,8,428,24],[582,11,428,29,"Point"],[582,16,428,34],[582,17,428,22,"Fn"],[582,19,428,24],[583,4,429,4],[583,8,429,10,"randomBytes"],[583,19,429,21],[583,22,429,24,"eddsaOpts"],[583,31,429,33],[583,32,429,34,"randomBytes"],[583,43,429,45],[583,47,429,49,"utils_ts_1"],[583,57,429,59],[583,58,429,60,"randomBytes"],[583,69,429,71],[584,4,430,4],[584,8,430,10,"adjustScalarBytes"],[584,25,430,27],[584,28,430,30,"eddsaOpts"],[584,37,430,39],[584,38,430,40,"adjustScalarBytes"],[584,55,430,57],[584,59,430,62],[584,69,430,63,"bytes"],[584,74,430,68],[585,6,430,68],[585,13,430,73,"bytes"],[585,18,430,78],[586,4,430,78],[586,5,430,79],[587,4,431,4],[587,8,431,10,"domain"],[587,14,431,16],[587,17,431,19,"eddsaOpts"],[587,26,431,28],[587,27,431,29,"domain"],[587,33,431,35],[587,37,432,9],[587,47,432,10,"data"],[587,51,432,14],[587,53,432,16,"ctx"],[587,56,432,19],[587,58,432,21,"phflag"],[587,64,432,27],[587,66,432,32],[588,6,433,12],[588,7,433,13],[588,8,433,14],[588,10,433,16,"utils_ts_1"],[588,20,433,26],[588,21,433,27,"_abool2"],[588,28,433,34],[588,30,433,36,"phflag"],[588,36,433,42],[588,38,433,44],[588,46,433,52],[588,47,433,53],[589,6,434,12],[589,10,434,16,"ctx"],[589,13,434,19],[589,14,434,20,"length"],[589,20,434,26],[589,24,434,30,"phflag"],[589,30,434,36],[589,32,435,16],[589,38,435,22],[589,42,435,26,"Error"],[589,47,435,31],[589,48,435,32],[589,85,435,69],[589,86,435,70],[590,6,436,12],[590,13,436,19,"data"],[590,17,436,23],[591,4,437,8],[591,5,437,10],[591,6,437,11],[591,7,437,12],[592,4,438,4],[593,4,439,4],[593,13,439,13,"modN_LE"],[593,20,439,20,"modN_LE"],[593,21,439,21,"hash"],[593,25,439,25],[593,27,439,27],[594,6,440,8],[594,13,440,15,"Fn"],[594,15,440,17],[594,16,440,18,"create"],[594,22,440,24],[594,23,440,25],[594,24,440,26],[594,25,440,27],[594,27,440,29,"utils_ts_1"],[594,37,440,39],[594,38,440,40,"bytesToNumberLE"],[594,53,440,55],[594,55,440,57,"hash"],[594,59,440,61],[594,60,440,62],[594,61,440,63],[594,62,440,64],[594,63,440,65],[595,4,441,4],[596,4,442,4],[597,4,443,4],[597,13,443,13,"getPrivateScalar"],[597,29,443,29,"getPrivateScalar"],[597,30,443,30,"key"],[597,33,443,33],[597,35,443,35],[598,6,444,8],[598,10,444,14,"len"],[598,13,444,17],[598,16,444,20,"lengths"],[598,23,444,27],[598,24,444,28,"secretKey"],[598,33,444,37],[599,6,445,8,"key"],[599,9,445,11],[599,12,445,14],[599,13,445,15],[599,14,445,16],[599,16,445,18,"utils_ts_1"],[599,26,445,28],[599,27,445,29,"ensureBytes"],[599,38,445,40],[599,40,445,42],[599,53,445,55],[599,55,445,57,"key"],[599,58,445,60],[599,60,445,62,"len"],[599,63,445,65],[599,64,445,66],[600,6,446,8],[601,6,447,8],[602,6,448,8],[602,10,448,14,"hashed"],[602,16,448,20],[602,19,448,23],[602,20,448,24],[602,21,448,25],[602,23,448,27,"utils_ts_1"],[602,33,448,37],[602,34,448,38,"ensureBytes"],[602,45,448,49],[602,47,448,51],[602,67,448,71],[602,69,448,73,"cHash"],[602,74,448,78],[602,75,448,79,"key"],[602,78,448,82],[602,79,448,83],[602,81,448,85],[602,82,448,86],[602,85,448,89,"len"],[602,88,448,92],[602,89,448,93],[603,6,449,8],[603,10,449,14,"head"],[603,14,449,18],[603,17,449,21,"adjustScalarBytes"],[603,34,449,38],[603,35,449,39,"hashed"],[603,41,449,45],[603,42,449,46,"slice"],[603,47,449,51],[603,48,449,52],[603,49,449,53],[603,51,449,55,"len"],[603,54,449,58],[603,55,449,59],[603,56,449,60],[603,57,449,61],[603,58,449,62],[604,6,450,8],[604,10,450,14,"prefix"],[604,16,450,20],[604,19,450,23,"hashed"],[604,25,450,29],[604,26,450,30,"slice"],[604,31,450,35],[604,32,450,36,"len"],[604,35,450,39],[604,37,450,41],[604,38,450,42],[604,41,450,45,"len"],[604,44,450,48],[604,45,450,49],[604,46,450,50],[604,47,450,51],[605,6,451,8],[605,10,451,14,"scalar"],[605,16,451,20],[605,19,451,23,"modN_LE"],[605,26,451,30],[605,27,451,31,"head"],[605,31,451,35],[605,32,451,36],[605,33,451,37],[605,34,451,38],[606,6,452,8],[606,13,452,15],[607,8,452,17,"head"],[607,12,452,21],[607,14,452,17,"head"],[607,18,452,21],[608,8,452,23,"prefix"],[608,14,452,29],[608,16,452,23,"prefix"],[608,22,452,29],[609,8,452,31,"scalar"],[609,14,452,37],[609,16,452,31,"scalar"],[610,6,452,38],[610,7,452,39],[611,4,453,4],[612,4,454,4],[613,4,455,4],[613,13,455,13,"getExtendedPublicKey"],[613,33,455,33,"getExtendedPublicKey"],[613,34,455,34,"secretKey"],[613,43,455,43],[613,45,455,45],[614,6,456,8],[614,10,456,8,"_getPrivateScalar"],[614,27,456,8],[614,30,456,41,"getPrivateScalar"],[614,46,456,57],[614,47,456,58,"secretKey"],[614,56,456,67],[614,57,456,68],[615,8,456,16,"head"],[615,12,456,20],[615,15,456,20,"_getPrivateScalar"],[615,32,456,20],[615,33,456,16,"head"],[615,37,456,20],[616,8,456,22,"prefix"],[616,14,456,28],[616,17,456,28,"_getPrivateScalar"],[616,34,456,28],[616,35,456,22,"prefix"],[616,41,456,28],[617,8,456,30,"scalar"],[617,14,456,36],[617,17,456,36,"_getPrivateScalar"],[617,34,456,36],[617,35,456,30,"scalar"],[617,41,456,36],[618,6,457,8],[618,10,457,14,"point"],[618,15,457,19],[618,18,457,22,"BASE"],[618,22,457,26],[618,23,457,27,"multiply"],[618,31,457,35],[618,32,457,36,"scalar"],[618,38,457,42],[618,39,457,43],[618,40,457,44],[618,41,457,45],[619,6,458,8],[619,10,458,14,"pointBytes"],[619,20,458,24],[619,23,458,27,"point"],[619,28,458,32],[619,29,458,33,"toBytes"],[619,36,458,40],[619,37,458,41],[619,38,458,42],[620,6,459,8],[620,13,459,15],[621,8,459,17,"head"],[621,12,459,21],[621,14,459,17,"head"],[621,18,459,21],[622,8,459,23,"prefix"],[622,14,459,29],[622,16,459,23,"prefix"],[622,22,459,29],[623,8,459,31,"scalar"],[623,14,459,37],[623,16,459,31,"scalar"],[623,22,459,37],[624,8,459,39,"point"],[624,13,459,44],[624,15,459,39,"point"],[624,20,459,44],[625,8,459,46,"pointBytes"],[625,18,459,56],[625,20,459,46,"pointBytes"],[626,6,459,57],[626,7,459,58],[627,4,460,4],[628,4,461,4],[629,4,462,4],[629,13,462,13,"getPublicKey"],[629,25,462,25,"getPublicKey"],[629,26,462,26,"secretKey"],[629,35,462,35],[629,37,462,37],[630,6,463,8],[630,13,463,15,"getExtendedPublicKey"],[630,33,463,35],[630,34,463,36,"secretKey"],[630,43,463,45],[630,44,463,46],[630,45,463,47,"pointBytes"],[630,55,463,57],[631,4,464,4],[632,4,465,4],[633,4,466,4],[633,13,466,13,"hashDomainToScalar"],[633,31,466,31,"hashDomainToScalar"],[633,32,466,31],[633,34,466,68],[634,6,466,68],[634,10,466,32,"context"],[634,17,466,39],[634,20,466,39,"arguments"],[634,29,466,39],[634,30,466,39,"length"],[634,36,466,39],[634,44,466,39,"arguments"],[634,53,466,39],[634,61,466,39,"undefined"],[634,70,466,39],[634,73,466,39,"arguments"],[634,82,466,39],[634,88,466,42,"Uint8Array"],[634,98,466,52],[634,99,466,53,"of"],[634,101,466,55],[634,102,466,56],[634,103,466,57],[635,6,466,57],[635,15,466,57,"_len"],[635,19,466,57],[635,22,466,57,"arguments"],[635,31,466,57],[635,32,466,57,"length"],[635,38,466,57],[635,40,466,62,"msgs"],[635,44,466,66],[635,51,466,66,"Array"],[635,56,466,66],[635,57,466,66,"_len"],[635,61,466,66],[635,68,466,66,"_len"],[635,72,466,66],[635,83,466,66,"_key"],[635,87,466,66],[635,93,466,66,"_key"],[635,97,466,66],[635,100,466,66,"_len"],[635,104,466,66],[635,106,466,66,"_key"],[635,110,466,66],[636,8,466,62,"msgs"],[636,12,466,66],[636,13,466,66,"_key"],[636,17,466,66],[636,25,466,66,"arguments"],[636,34,466,66],[636,35,466,66,"_key"],[636,39,466,66],[637,6,466,66],[638,6,467,8],[638,10,467,14,"msg"],[638,13,467,17],[638,16,467,20],[638,17,467,21],[638,18,467,22],[638,20,467,24,"utils_ts_1"],[638,30,467,34],[638,31,467,35,"concatBytes"],[638,42,467,46],[638,44,467,46,"apply"],[638,49,467,46],[638,58,467,51,"msgs"],[638,62,467,55],[638,63,467,56],[639,6,468,8],[639,13,468,15,"modN_LE"],[639,20,468,22],[639,21,468,23,"cHash"],[639,26,468,28],[639,27,468,29,"domain"],[639,33,468,35],[639,34,468,36,"msg"],[639,37,468,39],[639,39,468,41],[639,40,468,42],[639,41,468,43],[639,43,468,45,"utils_ts_1"],[639,53,468,55],[639,54,468,56,"ensureBytes"],[639,65,468,67],[639,67,468,69],[639,76,468,78],[639,78,468,80,"context"],[639,85,468,87],[639,86,468,88],[639,88,468,90],[639,89,468,91],[639,90,468,92,"prehash"],[639,97,468,99],[639,98,468,100],[639,99,468,101],[639,100,468,102],[640,4,469,4],[641,4,470,4],[642,4,471,4],[642,13,471,13,"sign"],[642,17,471,17,"sign"],[642,18,471,18,"msg"],[642,21,471,21],[642,23,471,23,"secretKey"],[642,32,471,32],[642,34,471,48],[643,6,471,48],[643,10,471,34,"options"],[643,17,471,41],[643,20,471,41,"arguments"],[643,29,471,41],[643,30,471,41,"length"],[643,36,471,41],[643,44,471,41,"arguments"],[643,53,471,41],[643,61,471,41,"undefined"],[643,70,471,41],[643,73,471,41,"arguments"],[643,82,471,41],[643,88,471,44],[643,89,471,45],[643,90,471,46],[644,6,472,8,"msg"],[644,9,472,11],[644,12,472,14],[644,13,472,15],[644,14,472,16],[644,16,472,18,"utils_ts_1"],[644,26,472,28],[644,27,472,29,"ensureBytes"],[644,38,472,40],[644,40,472,42],[644,49,472,51],[644,51,472,53,"msg"],[644,54,472,56],[644,55,472,57],[645,6,473,8],[645,10,473,12,"prehash"],[645,17,473,19],[645,19,474,12,"msg"],[645,22,474,15],[645,25,474,18,"prehash"],[645,32,474,25],[645,33,474,26,"msg"],[645,36,474,29],[645,37,474,30],[645,38,474,31],[645,39,474,32],[646,6,475,8],[646,10,475,8,"_getExtendedPublicKey"],[646,31,475,8],[646,34,475,47,"getExtendedPublicKey"],[646,54,475,67],[646,55,475,68,"secretKey"],[646,64,475,77],[646,65,475,78],[647,8,475,16,"prefix"],[647,14,475,22],[647,17,475,22,"_getExtendedPublicKey"],[647,38,475,22],[647,39,475,16,"prefix"],[647,45,475,22],[648,8,475,24,"scalar"],[648,14,475,30],[648,17,475,30,"_getExtendedPublicKey"],[648,38,475,30],[648,39,475,24,"scalar"],[648,45,475,30],[649,8,475,32,"pointBytes"],[649,18,475,42],[649,21,475,42,"_getExtendedPublicKey"],[649,42,475,42],[649,43,475,32,"pointBytes"],[649,53,475,42],[650,6,476,8],[650,10,476,14,"r"],[650,11,476,15],[650,14,476,18,"hashDomainToScalar"],[650,32,476,36],[650,33,476,37,"options"],[650,40,476,44],[650,41,476,45,"context"],[650,48,476,52],[650,50,476,54,"prefix"],[650,56,476,60],[650,58,476,62,"msg"],[650,61,476,65],[650,62,476,66],[650,63,476,67],[650,64,476,68],[651,6,477,8],[651,10,477,14,"R"],[651,11,477,15],[651,14,477,18,"BASE"],[651,18,477,22],[651,19,477,23,"multiply"],[651,27,477,31],[651,28,477,32,"r"],[651,29,477,33],[651,30,477,34],[651,31,477,35,"toBytes"],[651,38,477,42],[651,39,477,43],[651,40,477,44],[651,41,477,45],[651,42,477,46],[652,6,478,8],[652,10,478,14,"k"],[652,11,478,15],[652,14,478,18,"hashDomainToScalar"],[652,32,478,36],[652,33,478,37,"options"],[652,40,478,44],[652,41,478,45,"context"],[652,48,478,52],[652,50,478,54,"R"],[652,51,478,55],[652,53,478,57,"pointBytes"],[652,63,478,67],[652,65,478,69,"msg"],[652,68,478,72],[652,69,478,73],[652,70,478,74],[652,71,478,75],[653,6,479,8],[653,10,479,14,"s"],[653,11,479,15],[653,14,479,18,"Fn"],[653,16,479,20],[653,17,479,21,"create"],[653,23,479,27],[653,24,479,28,"r"],[653,25,479,29],[653,28,479,32,"k"],[653,29,479,33],[653,32,479,36,"scalar"],[653,38,479,42],[653,39,479,43],[653,40,479,44],[653,41,479,45],[654,6,480,8],[654,10,480,12],[654,11,480,13,"Fn"],[654,13,480,15],[654,14,480,16,"isValid"],[654,21,480,23],[654,22,480,24,"s"],[654,23,480,25],[654,24,480,26],[654,26,481,12],[654,32,481,18],[654,36,481,22,"Error"],[654,41,481,27],[654,42,481,28],[654,66,481,52],[654,67,481,53],[654,68,481,54],[654,69,481,55],[655,6,482,8],[655,10,482,14,"rs"],[655,12,482,16],[655,15,482,19],[655,16,482,20],[655,17,482,21],[655,19,482,23,"utils_ts_1"],[655,29,482,33],[655,30,482,34,"concatBytes"],[655,41,482,45],[655,43,482,47,"R"],[655,44,482,48],[655,46,482,50,"Fn"],[655,48,482,52],[655,49,482,53,"toBytes"],[655,56,482,60],[655,57,482,61,"s"],[655,58,482,62],[655,59,482,63],[655,60,482,64],[656,6,483,8],[656,13,483,15],[656,14,483,16],[656,15,483,17],[656,17,483,19,"utils_ts_1"],[656,27,483,29],[656,28,483,30,"_abytes2"],[656,36,483,38],[656,38,483,40,"rs"],[656,40,483,42],[656,42,483,44,"lengths"],[656,49,483,51],[656,50,483,52,"signature"],[656,59,483,61],[656,61,483,63],[656,69,483,71],[656,70,483,72],[657,4,484,4],[658,4,485,4],[659,4,486,4],[659,8,486,10,"verifyOpts"],[659,18,486,20],[659,21,486,23],[660,6,486,25,"zip215"],[660,12,486,31],[660,14,486,33],[661,4,486,38],[661,5,486,39],[662,4,487,4],[663,0,488,0],[664,0,489,0],[665,0,490,0],[666,4,491,4],[666,13,491,13,"verify"],[666,19,491,19,"verify"],[666,20,491,20,"sig"],[666,23,491,23],[666,25,491,25,"msg"],[666,28,491,28],[666,30,491,30,"publicKey"],[666,39,491,39],[666,41,491,63],[667,6,491,63],[667,10,491,41,"options"],[667,17,491,48],[667,20,491,48,"arguments"],[667,29,491,48],[667,30,491,48,"length"],[667,36,491,48],[667,44,491,48,"arguments"],[667,53,491,48],[667,61,491,48,"undefined"],[667,70,491,48],[667,73,491,48,"arguments"],[667,82,491,48],[667,88,491,51,"verifyOpts"],[667,98,491,61],[668,6,492,8],[668,10,492,16,"context"],[668,17,492,23],[668,20,492,36,"options"],[668,27,492,43],[668,28,492,16,"context"],[668,35,492,23],[669,8,492,25,"zip215"],[669,14,492,31],[669,17,492,36,"options"],[669,24,492,43],[669,25,492,25,"zip215"],[669,31,492,31],[670,6,493,8],[670,10,493,14,"len"],[670,13,493,17],[670,16,493,20,"lengths"],[670,23,493,27],[670,24,493,28,"signature"],[670,33,493,37],[671,6,494,8,"sig"],[671,9,494,11],[671,12,494,14],[671,13,494,15],[671,14,494,16],[671,16,494,18,"utils_ts_1"],[671,26,494,28],[671,27,494,29,"ensureBytes"],[671,38,494,40],[671,40,494,42],[671,51,494,53],[671,53,494,55,"sig"],[671,56,494,58],[671,58,494,60,"len"],[671,61,494,63],[671,62,494,64],[672,6,495,8,"msg"],[672,9,495,11],[672,12,495,14],[672,13,495,15],[672,14,495,16],[672,16,495,18,"utils_ts_1"],[672,26,495,28],[672,27,495,29,"ensureBytes"],[672,38,495,40],[672,40,495,42],[672,49,495,51],[672,51,495,53,"msg"],[672,54,495,56],[672,55,495,57],[673,6,496,8,"publicKey"],[673,15,496,17],[673,18,496,20],[673,19,496,21],[673,20,496,22],[673,22,496,24,"utils_ts_1"],[673,32,496,34],[673,33,496,35,"ensureBytes"],[673,44,496,46],[673,46,496,48],[673,57,496,59],[673,59,496,61,"publicKey"],[673,68,496,70],[673,70,496,72,"lengths"],[673,77,496,79],[673,78,496,80,"publicKey"],[673,87,496,89],[673,88,496,90],[674,6,497,8],[674,10,497,12,"zip215"],[674,16,497,18],[674,21,497,23,"undefined"],[674,30,497,32],[674,32,498,12],[674,33,498,13],[674,34,498,14],[674,36,498,16,"utils_ts_1"],[674,46,498,26],[674,47,498,27,"_abool2"],[674,54,498,34],[674,56,498,36,"zip215"],[674,62,498,42],[674,64,498,44],[674,72,498,52],[674,73,498,53],[675,6,499,8],[675,10,499,12,"prehash"],[675,17,499,19],[675,19,500,12,"msg"],[675,22,500,15],[675,25,500,18,"prehash"],[675,32,500,25],[675,33,500,26,"msg"],[675,36,500,29],[675,37,500,30],[675,38,500,31],[675,39,500,32],[676,6,501,8],[676,10,501,14,"mid"],[676,13,501,17],[676,16,501,20,"len"],[676,19,501,23],[676,22,501,26],[676,23,501,27],[677,6,502,8],[677,10,502,14,"r"],[677,11,502,15],[677,14,502,18,"sig"],[677,17,502,21],[677,18,502,22,"subarray"],[677,26,502,30],[677,27,502,31],[677,28,502,32],[677,30,502,34,"mid"],[677,33,502,37],[677,34,502,38],[678,6,503,8],[678,10,503,14,"s"],[678,11,503,15],[678,14,503,18],[678,15,503,19],[678,16,503,20],[678,18,503,22,"utils_ts_1"],[678,28,503,32],[678,29,503,33,"bytesToNumberLE"],[678,44,503,48],[678,46,503,50,"sig"],[678,49,503,53],[678,50,503,54,"subarray"],[678,58,503,62],[678,59,503,63,"mid"],[678,62,503,66],[678,64,503,68,"len"],[678,67,503,71],[678,68,503,72],[678,69,503,73],[679,6,504,8],[679,10,504,12,"A"],[679,11,504,13],[679,13,504,15,"R"],[679,14,504,16],[679,16,504,18,"SB"],[679,18,504,20],[680,6,505,8],[680,10,505,12],[681,8,506,12],[682,8,507,12],[683,8,508,12],[684,8,509,12,"A"],[684,9,509,13],[684,12,509,16,"Point"],[684,17,509,21],[684,18,509,22,"fromBytes"],[684,27,509,31],[684,28,509,32,"publicKey"],[684,37,509,41],[684,39,509,43,"zip215"],[684,45,509,49],[684,46,509,50],[685,8,510,12,"R"],[685,9,510,13],[685,12,510,16,"Point"],[685,17,510,21],[685,18,510,22,"fromBytes"],[685,27,510,31],[685,28,510,32,"r"],[685,29,510,33],[685,31,510,35,"zip215"],[685,37,510,41],[685,38,510,42],[686,8,511,12,"SB"],[686,10,511,14],[686,13,511,17,"BASE"],[686,17,511,21],[686,18,511,22,"multiplyUnsafe"],[686,32,511,36],[686,33,511,37,"s"],[686,34,511,38],[686,35,511,39],[686,36,511,40],[686,37,511,41],[687,6,512,8],[687,7,512,9],[687,8,513,8],[687,15,513,15,"error"],[687,20,513,20],[687,22,513,22],[688,8,514,12],[688,15,514,19],[688,20,514,24],[689,6,515,8],[690,6,516,8],[690,10,516,12],[690,11,516,13,"zip215"],[690,17,516,19],[690,21,516,23,"A"],[690,22,516,24],[690,23,516,25,"isSmallOrder"],[690,35,516,37],[690,36,516,38],[690,37,516,39],[690,39,517,12],[690,46,517,19],[690,51,517,24],[690,52,517,25],[690,53,517,26],[691,6,518,8],[691,10,518,14,"k"],[691,11,518,15],[691,14,518,18,"hashDomainToScalar"],[691,32,518,36],[691,33,518,37,"context"],[691,40,518,44],[691,42,518,46,"R"],[691,43,518,47],[691,44,518,48,"toBytes"],[691,51,518,55],[691,52,518,56],[691,53,518,57],[691,55,518,59,"A"],[691,56,518,60],[691,57,518,61,"toBytes"],[691,64,518,68],[691,65,518,69],[691,66,518,70],[691,68,518,72,"msg"],[691,71,518,75],[691,72,518,76],[692,6,519,8],[692,10,519,14,"RkA"],[692,13,519,17],[692,16,519,20,"R"],[692,17,519,21],[692,18,519,22,"add"],[692,21,519,25],[692,22,519,26,"A"],[692,23,519,27],[692,24,519,28,"multiplyUnsafe"],[692,38,519,42],[692,39,519,43,"k"],[692,40,519,44],[692,41,519,45],[692,42,519,46],[693,6,520,8],[694,6,521,8],[695,6,522,8],[695,13,522,15,"RkA"],[695,16,522,18],[695,17,522,19,"subtract"],[695,25,522,27],[695,26,522,28,"SB"],[695,28,522,30],[695,29,522,31],[695,30,522,32,"clearCofactor"],[695,43,522,45],[695,44,522,46],[695,45,522,47],[695,46,522,48,"is0"],[695,49,522,51],[695,50,522,52],[695,51,522,53],[696,4,523,4],[697,4,524,4],[697,8,524,10,"_size"],[697,13,524,15],[697,16,524,18,"Fp"],[697,18,524,20],[697,19,524,21,"BYTES"],[697,24,524,26],[697,25,524,27],[697,26,524,28],[698,4,525,4],[698,8,525,10,"lengths"],[698,15,525,17],[698,18,525,20],[699,6,526,8,"secretKey"],[699,15,526,17],[699,17,526,19,"_size"],[699,22,526,24],[700,6,527,8,"publicKey"],[700,15,527,17],[700,17,527,19,"_size"],[700,22,527,24],[701,6,528,8,"signature"],[701,15,528,17],[701,17,528,19],[701,18,528,20],[701,21,528,23,"_size"],[701,26,528,28],[702,6,529,8,"seed"],[702,10,529,12],[702,12,529,14,"_size"],[703,4,530,4],[703,5,530,5],[704,4,531,4],[704,13,531,13,"randomSecretKey"],[704,28,531,28,"randomSecretKey"],[704,29,531,28],[704,31,531,63],[705,6,531,63],[705,10,531,29,"seed"],[705,14,531,33],[705,17,531,33,"arguments"],[705,26,531,33],[705,27,531,33,"length"],[705,33,531,33],[705,41,531,33,"arguments"],[705,50,531,33],[705,58,531,33,"undefined"],[705,67,531,33],[705,70,531,33,"arguments"],[705,79,531,33],[705,85,531,36,"randomBytes"],[705,96,531,47],[705,97,531,48,"lengths"],[705,104,531,55],[705,105,531,56,"seed"],[705,109,531,60],[705,110,531,61],[706,6,532,8],[706,13,532,15],[706,14,532,16],[706,15,532,17],[706,17,532,19,"utils_ts_1"],[706,27,532,29],[706,28,532,30,"_abytes2"],[706,36,532,38],[706,38,532,40,"seed"],[706,42,532,44],[706,44,532,46,"lengths"],[706,51,532,53],[706,52,532,54,"seed"],[706,56,532,58],[706,58,532,60],[706,64,532,66],[706,65,532,67],[707,4,533,4],[708,4,534,4],[708,13,534,13,"keygen"],[708,19,534,19,"keygen"],[708,20,534,20,"seed"],[708,24,534,24],[708,26,534,26],[709,6,535,8],[709,10,535,14,"secretKey"],[709,19,535,23],[709,22,535,26,"utils"],[709,27,535,31],[709,28,535,32,"randomSecretKey"],[709,43,535,47],[709,44,535,48,"seed"],[709,48,535,52],[709,49,535,53],[710,6,536,8],[710,13,536,15],[711,8,536,17,"secretKey"],[711,17,536,26],[711,19,536,17,"secretKey"],[711,28,536,26],[712,8,536,28,"publicKey"],[712,17,536,37],[712,19,536,39,"getPublicKey"],[712,31,536,51],[712,32,536,52,"secretKey"],[712,41,536,61],[713,6,536,63],[713,7,536,64],[714,4,537,4],[715,4,538,4],[715,13,538,13,"isValidSecretKey"],[715,29,538,29,"isValidSecretKey"],[715,30,538,30,"key"],[715,33,538,33],[715,35,538,35],[716,6,539,8],[716,13,539,15],[716,14,539,16],[716,15,539,17],[716,17,539,19,"utils_ts_1"],[716,27,539,29],[716,28,539,30,"isBytes"],[716,35,539,37],[716,37,539,39,"key"],[716,40,539,42],[716,41,539,43],[716,45,539,47,"key"],[716,48,539,50],[716,49,539,51,"length"],[716,55,539,57],[716,60,539,62,"Fn"],[716,62,539,64],[716,63,539,65,"BYTES"],[716,68,539,70],[717,4,540,4],[718,4,541,4],[718,13,541,13,"isValidPublicKey"],[718,29,541,29,"isValidPublicKey"],[718,30,541,30,"key"],[718,33,541,33],[718,35,541,35,"zip215"],[718,41,541,41],[718,43,541,43],[719,6,542,8],[719,10,542,12],[720,8,543,12],[720,15,543,19],[720,16,543,20],[720,17,543,21,"Point"],[720,22,543,26],[720,23,543,27,"fromBytes"],[720,32,543,36],[720,33,543,37,"key"],[720,36,543,40],[720,38,543,42,"zip215"],[720,44,543,48],[720,45,543,49],[721,6,544,8],[721,7,544,9],[721,8,545,8],[721,15,545,15,"error"],[721,20,545,20],[721,22,545,22],[722,8,546,12],[722,15,546,19],[722,20,546,24],[723,6,547,8],[724,4,548,4],[725,4,549,4],[725,8,549,10,"utils"],[725,13,549,15],[725,16,549,18],[726,6,550,8,"getExtendedPublicKey"],[726,26,550,28],[726,28,550,8,"getExtendedPublicKey"],[726,48,550,28],[727,6,551,8,"randomSecretKey"],[727,21,551,23],[727,23,551,8,"randomSecretKey"],[727,38,551,23],[728,6,552,8,"isValidSecretKey"],[728,22,552,24],[728,24,552,8,"isValidSecretKey"],[728,40,552,24],[729,6,553,8,"isValidPublicKey"],[729,22,553,24],[729,24,553,8,"isValidPublicKey"],[729,40,553,24],[730,6,554,8],[731,0,555,0],[732,0,556,0],[733,0,557,0],[734,0,558,0],[735,0,559,0],[736,0,560,0],[737,0,561,0],[738,0,562,0],[739,6,563,8,"toMontgomery"],[739,18,563,20],[739,29,563,8,"toMontgomery"],[739,41,563,20,"toMontgomery"],[739,42,563,21,"publicKey"],[739,51,563,30],[739,53,563,32],[740,8,564,12],[740,12,564,12,"_Point$fromBytes"],[740,28,564,12],[740,31,564,26,"Point"],[740,36,564,31],[740,37,564,32,"fromBytes"],[740,46,564,41],[740,47,564,42,"publicKey"],[740,56,564,51],[740,57,564,52],[741,10,564,20,"y"],[741,11,564,21],[741,14,564,21,"_Point$fromBytes"],[741,30,564,21],[741,31,564,20,"y"],[741,32,564,21],[742,8,565,12],[742,12,565,18,"size"],[742,16,565,22],[742,19,565,25,"lengths"],[742,26,565,32],[742,27,565,33,"publicKey"],[742,36,565,42],[743,8,566,12],[743,12,566,18,"is25519"],[743,19,566,25],[743,22,566,28,"size"],[743,26,566,32],[743,31,566,37],[743,33,566,39],[744,8,567,12],[744,12,567,16],[744,13,567,17,"is25519"],[744,20,567,24],[744,24,567,28,"size"],[744,28,567,32],[744,33,567,37],[744,35,567,39],[744,37,568,16],[744,43,568,22],[744,47,568,26,"Error"],[744,52,568,31],[744,53,568,32],[744,85,568,64],[744,86,568,65],[745,8,569,12],[745,12,569,18,"u"],[745,13,569,19],[745,16,569,22,"is25519"],[745,23,569,29],[745,26,569,32,"Fp"],[745,28,569,34],[745,29,569,35,"div"],[745,32,569,38],[745,33,569,39,"_1n"],[745,36,569,42],[745,39,569,45,"y"],[745,40,569,46],[745,42,569,48,"_1n"],[745,45,569,51],[745,48,569,54,"y"],[745,49,569,55],[745,50,569,56],[745,53,569,59,"Fp"],[745,55,569,61],[745,56,569,62,"div"],[745,59,569,65],[745,60,569,66,"y"],[745,61,569,67],[745,64,569,70,"_1n"],[745,67,569,73],[745,69,569,75,"y"],[745,70,569,76],[745,73,569,79,"_1n"],[745,76,569,82],[745,77,569,83],[746,8,570,12],[746,15,570,19,"Fp"],[746,17,570,21],[746,18,570,22,"toBytes"],[746,25,570,29],[746,26,570,30,"u"],[746,27,570,31],[746,28,570,32],[747,6,571,8],[747,7,571,9],[748,6,572,8,"toMontgomerySecret"],[748,24,572,26],[748,35,572,8,"toMontgomerySecret"],[748,53,572,26,"toMontgomerySecret"],[748,54,572,27,"secretKey"],[748,63,572,36],[748,65,572,38],[749,8,573,12],[749,12,573,18,"size"],[749,16,573,22],[749,19,573,25,"lengths"],[749,26,573,32],[749,27,573,33,"secretKey"],[749,36,573,42],[750,8,574,12],[750,9,574,13],[750,10,574,14],[750,12,574,16,"utils_ts_1"],[750,22,574,26],[750,23,574,27,"_abytes2"],[750,31,574,35],[750,33,574,37,"secretKey"],[750,42,574,46],[750,44,574,48,"size"],[750,48,574,52],[750,49,574,53],[751,8,575,12],[751,12,575,18,"hashed"],[751,18,575,24],[751,21,575,27,"cHash"],[751,26,575,32],[751,27,575,33,"secretKey"],[751,36,575,42],[751,37,575,43,"subarray"],[751,45,575,51],[751,46,575,52],[751,47,575,53],[751,49,575,55,"size"],[751,53,575,59],[751,54,575,60],[751,55,575,61],[752,8,576,12],[752,15,576,19,"adjustScalarBytes"],[752,32,576,36],[752,33,576,37,"hashed"],[752,39,576,43],[752,40,576,44],[752,41,576,45,"subarray"],[752,49,576,53],[752,50,576,54],[752,51,576,55],[752,53,576,57,"size"],[752,57,576,61],[752,58,576,62],[753,6,577,8],[753,7,577,9],[754,6,578,8],[755,6,579,8,"randomPrivateKey"],[755,22,579,24],[755,24,579,26,"randomSecretKey"],[755,39,579,41],[756,6,580,8],[756,24,581,8,"precompute"],[756,34,581,18],[756,45,581,8,"precompute"],[756,55,581,18,"precompute"],[756,56,581,18],[756,58,581,55],[757,8,581,55],[757,12,581,19,"windowSize"],[757,22,581,29],[757,25,581,29,"arguments"],[757,34,581,29],[757,35,581,29,"length"],[757,41,581,29],[757,49,581,29,"arguments"],[757,58,581,29],[757,66,581,29,"undefined"],[757,75,581,29],[757,78,581,29,"arguments"],[757,87,581,29],[757,93,581,32],[757,94,581,33],[758,8,581,33],[758,12,581,35,"point"],[758,17,581,40],[758,20,581,40,"arguments"],[758,29,581,40],[758,30,581,40,"length"],[758,36,581,40],[758,44,581,40,"arguments"],[758,53,581,40],[758,61,581,40,"undefined"],[758,70,581,40],[758,73,581,40,"arguments"],[758,82,581,40],[758,88,581,43,"Point"],[758,93,581,48],[758,94,581,49,"BASE"],[758,98,581,53],[759,8,582,12],[759,15,582,19,"point"],[759,20,582,24],[759,21,582,25,"precompute"],[759,31,582,35],[759,32,582,36,"windowSize"],[759,42,582,46],[759,44,582,48],[759,49,582,53],[759,50,582,54],[760,6,583,8],[761,4,584,4],[761,5,584,5],[762,4,585,4],[762,11,585,11,"Object"],[762,17,585,17],[762,18,585,18,"freeze"],[762,24,585,24],[762,25,585,25],[763,6,586,8,"keygen"],[763,12,586,14],[763,14,586,8,"keygen"],[763,20,586,14],[764,6,587,8,"getPublicKey"],[764,18,587,20],[764,20,587,8,"getPublicKey"],[764,32,587,20],[765,6,588,8,"sign"],[765,10,588,12],[765,12,588,8,"sign"],[765,16,588,12],[766,6,589,8,"verify"],[766,12,589,14],[766,14,589,8,"verify"],[766,20,589,14],[767,6,590,8,"utils"],[767,11,590,13],[767,13,590,8,"utils"],[767,18,590,13],[768,6,591,8,"Point"],[768,11,591,13],[768,13,591,8,"Point"],[768,18,591,13],[769,6,592,8,"lengths"],[769,13,592,15],[769,15,592,8,"lengths"],[770,4,593,4],[770,5,593,5],[770,6,593,6],[771,2,594,0],[772,2,595,0],[772,11,595,9,"_eddsa_legacy_opts_to_new"],[772,36,595,34,"_eddsa_legacy_opts_to_new"],[772,37,595,35,"c"],[772,38,595,36],[772,40,595,38],[773,4,596,4],[773,8,596,10,"CURVE"],[773,13,596,15],[773,16,596,18],[774,6,597,8,"a"],[774,7,597,9],[774,9,597,11,"c"],[774,10,597,12],[774,11,597,13,"a"],[774,12,597,14],[775,6,598,8,"d"],[775,7,598,9],[775,9,598,11,"c"],[775,10,598,12],[775,11,598,13,"d"],[775,12,598,14],[776,6,599,8,"p"],[776,7,599,9],[776,9,599,11,"c"],[776,10,599,12],[776,11,599,13,"Fp"],[776,13,599,15],[776,14,599,16,"ORDER"],[776,19,599,21],[777,6,600,8,"n"],[777,7,600,9],[777,9,600,11,"c"],[777,10,600,12],[777,11,600,13,"n"],[777,12,600,14],[778,6,601,8,"h"],[778,7,601,9],[778,9,601,11,"c"],[778,10,601,12],[778,11,601,13,"h"],[778,12,601,14],[779,6,602,8,"Gx"],[779,8,602,10],[779,10,602,12,"c"],[779,11,602,13],[779,12,602,14,"Gx"],[779,14,602,16],[780,6,603,8,"Gy"],[780,8,603,10],[780,10,603,12,"c"],[780,11,603,13],[780,12,603,14,"Gy"],[781,4,604,4],[781,5,604,5],[782,4,605,4],[782,8,605,10,"Fp"],[782,10,605,12],[782,13,605,15,"c"],[782,14,605,16],[782,15,605,17,"Fp"],[782,17,605,19],[783,4,606,4],[783,8,606,10,"Fn"],[783,10,606,12],[783,13,606,15],[783,14,606,16],[783,15,606,17],[783,17,606,19,"modular_ts_1"],[783,29,606,31],[783,30,606,32,"Field"],[783,35,606,37],[783,37,606,39,"CURVE"],[783,42,606,44],[783,43,606,45,"n"],[783,44,606,46],[783,46,606,48,"c"],[783,47,606,49],[783,48,606,50,"nBitLength"],[783,58,606,60],[783,60,606,62],[783,64,606,66],[783,65,606,67],[784,4,607,4],[784,8,607,10,"curveOpts"],[784,17,607,19],[784,20,607,22],[785,6,607,24,"Fp"],[785,8,607,26],[785,10,607,24,"Fp"],[785,12,607,26],[786,6,607,28,"Fn"],[786,8,607,30],[786,10,607,28,"Fn"],[786,12,607,30],[787,6,607,32,"uvRatio"],[787,13,607,39],[787,15,607,41,"c"],[787,16,607,42],[787,17,607,43,"uvRatio"],[788,4,607,51],[788,5,607,52],[789,4,608,4],[789,8,608,10,"eddsaOpts"],[789,17,608,19],[789,20,608,22],[790,6,609,8,"randomBytes"],[790,17,609,19],[790,19,609,21,"c"],[790,20,609,22],[790,21,609,23,"randomBytes"],[790,32,609,34],[791,6,610,8,"adjustScalarBytes"],[791,23,610,25],[791,25,610,27,"c"],[791,26,610,28],[791,27,610,29,"adjustScalarBytes"],[791,44,610,46],[792,6,611,8,"domain"],[792,12,611,14],[792,14,611,16,"c"],[792,15,611,17],[792,16,611,18,"domain"],[792,22,611,24],[793,6,612,8,"prehash"],[793,13,612,15],[793,15,612,17,"c"],[793,16,612,18],[793,17,612,19,"prehash"],[793,24,612,26],[794,6,613,8,"mapToCurve"],[794,16,613,18],[794,18,613,20,"c"],[794,19,613,21],[794,20,613,22,"mapToCurve"],[795,4,614,4],[795,5,614,5],[796,4,615,4],[796,11,615,11],[797,6,615,13,"CURVE"],[797,11,615,18],[797,13,615,13,"CURVE"],[797,18,615,18],[798,6,615,20,"curveOpts"],[798,15,615,29],[798,17,615,20,"curveOpts"],[798,26,615,29],[799,6,615,31,"hash"],[799,10,615,35],[799,12,615,37,"c"],[799,13,615,38],[799,14,615,39,"hash"],[799,18,615,43],[800,6,615,45,"eddsaOpts"],[800,15,615,54],[800,17,615,45,"eddsaOpts"],[801,4,615,55],[801,5,615,56],[802,2,616,0],[803,2,617,0],[803,11,617,9,"_eddsa_new_output_to_legacy"],[803,38,617,36,"_eddsa_new_output_to_legacy"],[803,39,617,37,"c"],[803,40,617,38],[803,42,617,40,"eddsa"],[803,47,617,45],[803,49,617,47],[804,4,618,4],[804,8,618,10,"Point"],[804,13,618,15],[804,16,618,18,"eddsa"],[804,21,618,23],[804,22,618,24,"Point"],[804,27,618,29],[805,4,619,4],[805,8,619,10,"legacy"],[805,14,619,16],[805,17,619,19,"Object"],[805,23,619,25],[805,24,619,26,"assign"],[805,30,619,32],[805,31,619,33],[805,32,619,34],[805,33,619,35],[805,35,619,37,"eddsa"],[805,40,619,42],[805,42,619,44],[806,6,620,8,"ExtendedPoint"],[806,19,620,21],[806,21,620,23,"Point"],[806,26,620,28],[807,6,621,8,"CURVE"],[807,11,621,13],[807,13,621,15,"c"],[807,14,621,16],[808,6,622,8,"nBitLength"],[808,16,622,18],[808,18,622,20,"Point"],[808,23,622,25],[808,24,622,26,"Fn"],[808,26,622,28],[808,27,622,29,"BITS"],[808,31,622,33],[809,6,623,8,"nByteLength"],[809,17,623,19],[809,19,623,21,"Point"],[809,24,623,26],[809,25,623,27,"Fn"],[809,27,623,29],[809,28,623,30,"BYTES"],[810,4,624,4],[810,5,624,5],[810,6,624,6],[811,4,625,4],[811,11,625,11,"legacy"],[811,17,625,17],[812,2,626,0],[813,2,627,0],[814,2,628,0],[814,11,628,9,"twistedEdwards"],[814,25,628,23,"twistedEdwards"],[814,26,628,24,"c"],[814,27,628,25],[814,29,628,27],[815,4,629,4],[815,8,629,4,"_eddsa_legacy_opts_to"],[815,29,629,4],[815,32,629,50,"_eddsa_legacy_opts_to_new"],[815,57,629,75],[815,58,629,76,"c"],[815,59,629,77],[815,60,629,78],[816,6,629,12,"CURVE"],[816,11,629,17],[816,14,629,17,"_eddsa_legacy_opts_to"],[816,35,629,17],[816,36,629,12,"CURVE"],[816,41,629,17],[817,6,629,19,"curveOpts"],[817,15,629,28],[817,18,629,28,"_eddsa_legacy_opts_to"],[817,39,629,28],[817,40,629,19,"curveOpts"],[817,49,629,28],[818,6,629,30,"hash"],[818,10,629,34],[818,13,629,34,"_eddsa_legacy_opts_to"],[818,34,629,34],[818,35,629,30,"hash"],[818,39,629,34],[819,6,629,36,"eddsaOpts"],[819,15,629,45],[819,18,629,45,"_eddsa_legacy_opts_to"],[819,39,629,45],[819,40,629,36,"eddsaOpts"],[819,49,629,45],[820,4,630,4],[820,8,630,10,"Point"],[820,13,630,15],[820,16,630,18,"edwards"],[820,23,630,25],[820,24,630,26,"CURVE"],[820,29,630,31],[820,31,630,33,"curveOpts"],[820,40,630,42],[820,41,630,43],[821,4,631,4],[821,8,631,10,"EDDSA"],[821,13,631,15],[821,16,631,18,"eddsa"],[821,21,631,23],[821,22,631,24,"Point"],[821,27,631,29],[821,29,631,31,"hash"],[821,33,631,35],[821,35,631,37,"eddsaOpts"],[821,44,631,46],[821,45,631,47],[822,4,632,4],[822,11,632,11,"_eddsa_new_output_to_legacy"],[822,38,632,38],[822,39,632,39,"c"],[822,40,632,40],[822,42,632,42,"EDDSA"],[822,47,632,47],[822,48,632,48],[823,2,633,0],[824,0,633,1],[824,3]],"functionMap":{"names":["<global>","isEdValidXY","edwards","modP","<anonymous>","acoord","aextpoint","Point","Point#constructor","Point.CURVE","Point.fromAffine","Point.fromBytes","Point.fromHex","Point#get__x","Point#get__y","Point#precompute","Point#assertValidity","Point#equals","Point#is0","Point#negate","Point#double","Point#add","Point#subtract","Point#multiply","wnaf.cached$argument_2","Point#multiplyUnsafe","wnaf.unsafe$argument_2","Point#isSmallOrder","Point#isTorsionFree","Point#toAffine","Point#clearCofactor","Point#toBytes","Point#toHex","Point#toString","Point#get__ex","Point#get__ey","Point#get__ez","Point#get__et","Point.normalizeZ","Point.msm","Point#_setWindowSize","Point#toRawBytes","PrimeEdwardsPoint","PrimeEdwardsPoint#constructor","PrimeEdwardsPoint.fromBytes","PrimeEdwardsPoint.fromHex","PrimeEdwardsPoint#get__x","PrimeEdwardsPoint#get__y","PrimeEdwardsPoint#clearCofactor","PrimeEdwardsPoint#assertValidity","PrimeEdwardsPoint#toAffine","PrimeEdwardsPoint#toHex","PrimeEdwardsPoint#toString","PrimeEdwardsPoint#isTorsionFree","PrimeEdwardsPoint#isSmallOrder","PrimeEdwardsPoint#add","PrimeEdwardsPoint#subtract","PrimeEdwardsPoint#multiply","PrimeEdwardsPoint#multiplyUnsafe","PrimeEdwardsPoint#double","PrimeEdwardsPoint#negate","PrimeEdwardsPoint#precompute","PrimeEdwardsPoint#toRawBytes","eddsa","modN_LE","getPrivateScalar","getExtendedPublicKey","getPublicKey","hashDomainToScalar","sign","verify","randomSecretKey","keygen","isValidSecretKey","isValidPublicKey","utils.toMontgomery","utils.toMontgomerySecret","utils.precompute","_eddsa_legacy_opts_to_new","_eddsa_new_output_to_legacy","twistedEdwards"],"mappings":"AAA;ACmB;CDM;AEC;iBCW,mBD;SEG;SFO;IGS;KHI;IIC;KJG;kDEG;KFa;qDEC;KFsB;IKG;QCC;SDM;QEC;SFE;QGC;SHO;QIE;SJ+B;QKC;SLE;QMC;SNE;QOC;SPE;QQC;SRK;QSE;STE;QUE;SVS;QWC;SXE;QYC;SZG;QaI;SbiB;QcI;SdkB;QeC;SfE;QgBE;uDCI,2CD;ShBE;QkBM;6CCQ,2CD;SlBC;QoBK;SpBE;QqBG;SrBE;QsBG;StBE;QuBC;SvBI;QwBC;SxBQ;QyBC;SzBE;Q0BC;S1BE;Q2BE;S3BE;Q4BC;S5BE;Q6BC;S7BE;Q8BC;S9BE;Q+BC;S/BE;QgCC;ShCE;QiCC;SjCE;QkCC;SlCE;KLC;CFY;A0CM;ICC;KDE;IEE;KFE;IGC;KHE;IIC;KJE;IKC;KLE;IME;KNG;IOC;KPE;IQC;KRE;ISC;KTE;IUC;KVE;IWC;KXE;IYC;KZE;IaC;KbG;IcC;KdG;IeC;KfE;IgBC;KhBE;IiBC;KjBE;IkBC;KlBE;ImBC;KnBE;IoBE;KpBE;C1CC;A+DK;8D3Da,gB2D;S3DE;S2DK;ICE;KDE;IEE;KFU;IGE;KHK;IIE;KJE;IKE;KLG;IME;KNa;IOO;KPgC;IQQ;KRE;ISC;KTG;IUC;KVE;IWC;KXO;QYe;SZQ;QaC;SbK;QcI;SdE;C/DW;A8EC;C9EqB;A+EC;C/ES;AgFE;ChFK"},"hasCjsExports":true},"type":"js/module"}]} |