@leofcoin/chain 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/block-worker.js +1 -1
- package/demo/chain.browser.js +9 -9
- package/demo/node.browser.js +33 -7
- package/demo/peernet-swarm.browser.js +22 -10
- package/demo/workers/block-worker.js +155 -179
- package/demo/workers/machine-worker.js +184 -208
- package/dist/browser/workers/block-worker.js +155 -179
- package/dist/browser/workers/machine-worker.js +184 -208
- package/dist/chain.browser.js +9 -9
- package/dist/chain.js +9 -9
- package/dist/contracts/factory.js +1 -1
- package/dist/contracts/nameService.js +1 -1
- package/dist/contracts/nativeToken.js +1 -1
- package/dist/module/chain.js +9 -9
- package/dist/module/node.js +20 -5
- package/dist/module/workers/block-worker.js +287 -2
- package/dist/module/workers/machine-worker.js +291 -6
- package/dist/node.browser.js +33 -7
- package/dist/node.js +20 -5
- package/dist/peernet-swarm.browser.js +22 -10
- package/dist/standards/token.js +1 -1
- package/dist/workers/machine-worker.js +1 -1
- package/package.json +3 -4
- package/rollup.config.js +22 -13
- package/src/chain.js +1 -1
- package/src/node.js +4 -2
- package/test/chain.js +23 -20
|
@@ -12860,12 +12860,12 @@ function addSlice(array) {
|
|
|
12860
12860
|
return array;
|
|
12861
12861
|
}
|
|
12862
12862
|
function isBytesLike(value) {
|
|
12863
|
-
return ((
|
|
12863
|
+
return ((isHexString(value) && !(value.length % 2)) || isBytes(value));
|
|
12864
12864
|
}
|
|
12865
12865
|
function isInteger(value) {
|
|
12866
12866
|
return (typeof (value) === "number" && value == value && (value % 1) === 0);
|
|
12867
12867
|
}
|
|
12868
|
-
function
|
|
12868
|
+
function isBytes(value) {
|
|
12869
12869
|
if (value == null) {
|
|
12870
12870
|
return false;
|
|
12871
12871
|
}
|
|
@@ -12908,7 +12908,7 @@ function arrayify(value, options) {
|
|
|
12908
12908
|
if (isHexable(value)) {
|
|
12909
12909
|
value = value.toHexString();
|
|
12910
12910
|
}
|
|
12911
|
-
if (
|
|
12911
|
+
if (isHexString(value)) {
|
|
12912
12912
|
let hex = value.substring(2);
|
|
12913
12913
|
if (hex.length % 2) {
|
|
12914
12914
|
if (options.hexPad === "left") {
|
|
@@ -12927,7 +12927,7 @@ function arrayify(value, options) {
|
|
|
12927
12927
|
}
|
|
12928
12928
|
return addSlice(new Uint8Array(result));
|
|
12929
12929
|
}
|
|
12930
|
-
if (
|
|
12930
|
+
if (isBytes(value)) {
|
|
12931
12931
|
return addSlice(new Uint8Array(value));
|
|
12932
12932
|
}
|
|
12933
12933
|
return logger.throwArgumentError("invalid arrayify value", "value", value);
|
|
@@ -12967,7 +12967,7 @@ function zeroPad(value, length) {
|
|
|
12967
12967
|
result.set(value, length - value.length);
|
|
12968
12968
|
return addSlice(result);
|
|
12969
12969
|
}
|
|
12970
|
-
function
|
|
12970
|
+
function isHexString(value, length) {
|
|
12971
12971
|
if (typeof (value) !== "string" || !value.match(/^0x[0-9A-Fa-f]*$/)) {
|
|
12972
12972
|
return false;
|
|
12973
12973
|
}
|
|
@@ -13009,7 +13009,7 @@ function hexlify(value, options) {
|
|
|
13009
13009
|
if (isHexable(value)) {
|
|
13010
13010
|
return value.toHexString();
|
|
13011
13011
|
}
|
|
13012
|
-
if (
|
|
13012
|
+
if (isHexString(value)) {
|
|
13013
13013
|
if (value.length % 2) {
|
|
13014
13014
|
if (options.hexPad === "left") {
|
|
13015
13015
|
value = "0x0" + value.substring(2);
|
|
@@ -13023,7 +13023,7 @@ function hexlify(value, options) {
|
|
|
13023
13023
|
}
|
|
13024
13024
|
return value.toLowerCase();
|
|
13025
13025
|
}
|
|
13026
|
-
if (
|
|
13026
|
+
if (isBytes(value)) {
|
|
13027
13027
|
let result = "0x";
|
|
13028
13028
|
for (let i = 0; i < value.length; i++) {
|
|
13029
13029
|
let v = value[i];
|
|
@@ -13045,7 +13045,7 @@ function hexDataLength(data) {
|
|
|
13045
13045
|
if (typeof (data) !== "string") {
|
|
13046
13046
|
data = hexlify(data);
|
|
13047
13047
|
}
|
|
13048
|
-
else if (!
|
|
13048
|
+
else if (!isHexString(data) || (data.length % 2)) {
|
|
13049
13049
|
return null;
|
|
13050
13050
|
}
|
|
13051
13051
|
return (data.length - 2) / 2;
|
|
@@ -13054,7 +13054,7 @@ function hexDataSlice(data, offset, endOffset) {
|
|
|
13054
13054
|
if (typeof (data) !== "string") {
|
|
13055
13055
|
data = hexlify(data);
|
|
13056
13056
|
}
|
|
13057
|
-
else if (!
|
|
13057
|
+
else if (!isHexString(data) || (data.length % 2)) {
|
|
13058
13058
|
logger.throwArgumentError("invalid hexData", "value", data);
|
|
13059
13059
|
}
|
|
13060
13060
|
offset = 2 + 2 * offset;
|
|
@@ -13081,7 +13081,7 @@ function hexStripZeros(value) {
|
|
|
13081
13081
|
if (typeof (value) !== "string") {
|
|
13082
13082
|
value = hexlify(value);
|
|
13083
13083
|
}
|
|
13084
|
-
if (!
|
|
13084
|
+
if (!isHexString(value)) {
|
|
13085
13085
|
logger.throwArgumentError("invalid hex string", "value", value);
|
|
13086
13086
|
}
|
|
13087
13087
|
value = value.substring(2);
|
|
@@ -13095,7 +13095,7 @@ function hexZeroPad(value, length) {
|
|
|
13095
13095
|
if (typeof (value) !== "string") {
|
|
13096
13096
|
value = hexlify(value);
|
|
13097
13097
|
}
|
|
13098
|
-
else if (!
|
|
13098
|
+
else if (!isHexString(value)) {
|
|
13099
13099
|
logger.throwArgumentError("invalid hex string", "value", value);
|
|
13100
13100
|
}
|
|
13101
13101
|
if (value.length > 2 * length + 2) {
|
|
@@ -13203,13 +13203,13 @@ function splitSignature(signature) {
|
|
|
13203
13203
|
}
|
|
13204
13204
|
}
|
|
13205
13205
|
}
|
|
13206
|
-
if (result.r == null || !
|
|
13206
|
+
if (result.r == null || !isHexString(result.r)) {
|
|
13207
13207
|
logger.throwArgumentError("signature missing or invalid r", "signature", signature);
|
|
13208
13208
|
}
|
|
13209
13209
|
else {
|
|
13210
13210
|
result.r = hexZeroPad(result.r, 32);
|
|
13211
13211
|
}
|
|
13212
|
-
if (result.s == null || !
|
|
13212
|
+
if (result.s == null || !isHexString(result.s)) {
|
|
13213
13213
|
logger.throwArgumentError("signature missing or invalid s", "signature", signature);
|
|
13214
13214
|
}
|
|
13215
13215
|
else {
|
|
@@ -13224,7 +13224,7 @@ function splitSignature(signature) {
|
|
|
13224
13224
|
}
|
|
13225
13225
|
const _vs = hexlify(vs);
|
|
13226
13226
|
if (result._vs) {
|
|
13227
|
-
if (!
|
|
13227
|
+
if (!isHexString(result._vs)) {
|
|
13228
13228
|
logger.throwArgumentError("signature invalid _vs", "signature", signature);
|
|
13229
13229
|
}
|
|
13230
13230
|
result._vs = hexZeroPad(result._vs, 32);
|
|
@@ -13250,40 +13250,172 @@ function joinSignature(signature) {
|
|
|
13250
13250
|
]));
|
|
13251
13251
|
}
|
|
13252
13252
|
//# sourceMappingURL=index.js.map
|
|
13253
|
-
|
|
13254
|
-
|
|
13255
|
-
|
|
13256
|
-
|
|
13253
|
+
// EXTERNAL MODULE: ./node_modules/path-browserify/index.js
|
|
13254
|
+
var path_browserify = __webpack_require__(470);
|
|
13255
|
+
;// CONCATENATED MODULE: ./node_modules/@vandeurenglenn/easy-worker/src/worker.js
|
|
13256
|
+
/* provided dependency */ var process = __webpack_require__(155);
|
|
13257
|
+
class EasyWorker {
|
|
13258
|
+
#messageEvent = 'message'
|
|
13259
|
+
#errorEvent = 'error'
|
|
13260
|
+
#isBrowser = false
|
|
13261
|
+
#isWorker = false
|
|
13262
|
+
|
|
13263
|
+
get isWorker() {
|
|
13264
|
+
return this.#isWorker
|
|
13265
|
+
}
|
|
13266
|
+
constructor(url, options) {
|
|
13267
|
+
return this.#init(url, options)
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13270
|
+
#init(url, options = {}) {
|
|
13271
|
+
if (url) {
|
|
13272
|
+
if (globalThis.Worker) {
|
|
13273
|
+
this.#isBrowser = true
|
|
13274
|
+
this.worker = new Worker(url, {...options})
|
|
13275
|
+
} else {
|
|
13276
|
+
return new Promise(async (resolve, reject) => {
|
|
13277
|
+
const {fork} = await __webpack_require__.e(/* import() */ 865).then(__webpack_require__.t.bind(__webpack_require__, 865, 23))
|
|
13278
|
+
this.worker = fork(url, ['easy-worker-child'], options)
|
|
13279
|
+
resolve(this)
|
|
13280
|
+
})
|
|
13281
|
+
}
|
|
13282
|
+
} else {
|
|
13283
|
+
this.#isWorker = true
|
|
13284
|
+
if (globalThis.process?.argv[2] === 'easy-worker-child') {
|
|
13285
|
+
this.worker = process
|
|
13286
|
+
} else {
|
|
13287
|
+
this.#isBrowser = true
|
|
13288
|
+
this.worker = globalThis
|
|
13289
|
+
}
|
|
13290
|
+
}
|
|
13291
|
+
|
|
13292
|
+
return this
|
|
13293
|
+
}
|
|
13294
|
+
|
|
13295
|
+
onmessage(fn) {
|
|
13296
|
+
if (this.#isBrowser) this.worker.onmessage = ({data}) => fn(data)
|
|
13297
|
+
else this.worker.on(this.#messageEvent, fn)
|
|
13298
|
+
}
|
|
13299
|
+
|
|
13300
|
+
postMessage(message) {
|
|
13301
|
+
if (this.#isBrowser) this.worker.postMessage(message);
|
|
13302
|
+
else this.worker.send(message)
|
|
13303
|
+
}
|
|
13304
|
+
|
|
13305
|
+
terminate() {
|
|
13306
|
+
if (this.#isBrowser) this.worker.terminate()
|
|
13307
|
+
else this.worker.kill()
|
|
13308
|
+
}
|
|
13309
|
+
|
|
13310
|
+
onerror(fn) {
|
|
13311
|
+
if (this.#isBrowser) this.worker.onerror = fn
|
|
13312
|
+
else this.worker.on(this.#errorEvent, fn)
|
|
13313
|
+
}
|
|
13314
|
+
|
|
13315
|
+
/**
|
|
13316
|
+
*
|
|
13317
|
+
* @param {*} data
|
|
13318
|
+
* @returns {Promise} resolves result onmessage & rejects on error
|
|
13319
|
+
*/
|
|
13320
|
+
once(data) {
|
|
13321
|
+
return new Promise((resolve, reject) => {
|
|
13322
|
+
this.onmessage(message => {
|
|
13323
|
+
resolve(message)
|
|
13324
|
+
this.terminate()
|
|
13325
|
+
})
|
|
13326
|
+
this.onerror(error => {
|
|
13327
|
+
reject(error)
|
|
13328
|
+
this.terminate()
|
|
13329
|
+
})
|
|
13330
|
+
this.postMessage(data)
|
|
13331
|
+
})
|
|
13332
|
+
}
|
|
13333
|
+
}
|
|
13334
|
+
;// CONCATENATED MODULE: ./dist/module/workers/machine-worker.js
|
|
13257
13335
|
|
|
13258
|
-
/**
|
|
13259
|
-
* BigNumber
|
|
13260
|
-
*
|
|
13261
|
-
* A wrapper around the BN.js object. We use the BN.js library
|
|
13262
|
-
* because it is used by elliptic, so it is required regardless.
|
|
13263
|
-
*
|
|
13264
|
-
*/
|
|
13265
13336
|
|
|
13266
|
-
var BN = (bn_default()).BN;
|
|
13267
13337
|
|
|
13268
13338
|
|
|
13269
13339
|
|
|
13270
|
-
|
|
13340
|
+
|
|
13341
|
+
|
|
13342
|
+
|
|
13343
|
+
var proto$1 = `
|
|
13344
|
+
message ContractMessage {
|
|
13345
|
+
required string creator = 1;
|
|
13346
|
+
required bytes contract = 2;
|
|
13347
|
+
repeated string constructorParameters = 3;
|
|
13348
|
+
}
|
|
13349
|
+
`;
|
|
13350
|
+
|
|
13351
|
+
class ContractMessage extends src_FormatInterface {
|
|
13352
|
+
get keys() {
|
|
13353
|
+
return ['creator', 'contract', 'constructorParameters']
|
|
13354
|
+
}
|
|
13355
|
+
|
|
13356
|
+
get messageName() {
|
|
13357
|
+
return 'ContractMessage'
|
|
13358
|
+
}
|
|
13359
|
+
|
|
13360
|
+
constructor(buffer) {
|
|
13361
|
+
super(buffer, proto$1, {name: 'contract-message'});
|
|
13362
|
+
}
|
|
13363
|
+
}
|
|
13364
|
+
|
|
13365
|
+
var proto = `
|
|
13366
|
+
message ValidatorMessage {
|
|
13367
|
+
required string address = 1;
|
|
13368
|
+
required string reward = 2;
|
|
13369
|
+
}
|
|
13370
|
+
|
|
13371
|
+
message Transaction {
|
|
13372
|
+
required string hash = 1;
|
|
13373
|
+
required uint64 timestamp = 2;
|
|
13374
|
+
required string from = 3;
|
|
13375
|
+
required string to = 4;
|
|
13376
|
+
required uint64 nonce = 5;
|
|
13377
|
+
required string method = 6;
|
|
13378
|
+
repeated string params = 7;
|
|
13379
|
+
}
|
|
13380
|
+
|
|
13381
|
+
message BlockMessage {
|
|
13382
|
+
required uint64 index = 1;
|
|
13383
|
+
required string previousHash = 3;
|
|
13384
|
+
required uint64 timestamp = 4;
|
|
13385
|
+
required uint64 reward = 5;
|
|
13386
|
+
required string fees = 6;
|
|
13387
|
+
repeated Transaction transactions = 7;
|
|
13388
|
+
repeated ValidatorMessage validators = 8;
|
|
13389
|
+
}
|
|
13390
|
+
`;
|
|
13391
|
+
|
|
13392
|
+
class BlockMessage extends src_FormatInterface {
|
|
13393
|
+
get keys() {
|
|
13394
|
+
return ['index', 'previousHash', 'timestamp', 'reward', 'fees', 'transactions', 'validators']
|
|
13395
|
+
}
|
|
13396
|
+
|
|
13397
|
+
get messageName() {
|
|
13398
|
+
return 'BlockMessage'
|
|
13399
|
+
}
|
|
13400
|
+
|
|
13401
|
+
constructor(buffer) {
|
|
13402
|
+
const name = 'block-message';
|
|
13403
|
+
super(buffer, proto, {name});
|
|
13404
|
+
}
|
|
13405
|
+
}
|
|
13406
|
+
|
|
13407
|
+
const version$1 = "bignumber/5.6.2";
|
|
13408
|
+
|
|
13409
|
+
var BN = (bn_default()).BN;
|
|
13410
|
+
const machine_worker_logger = new Logger(version$1);
|
|
13271
13411
|
const _constructorGuard = {};
|
|
13272
13412
|
const MAX_SAFE = 0x1fffffffffffff;
|
|
13273
|
-
function isBigNumberish(value) {
|
|
13274
|
-
return (value != null) && (BigNumber.isBigNumber(value) ||
|
|
13275
|
-
(typeof (value) === "number" && (value % 1) === 0) ||
|
|
13276
|
-
(typeof (value) === "string" && !!value.match(/^-?[0-9]+$/)) ||
|
|
13277
|
-
isHexString(value) ||
|
|
13278
|
-
(typeof (value) === "bigint") ||
|
|
13279
|
-
isBytes(value));
|
|
13280
|
-
}
|
|
13281
13413
|
// Only warn about passing 10 into radix once
|
|
13282
13414
|
let _warnedToStringRadix = false;
|
|
13283
13415
|
class BigNumber {
|
|
13284
13416
|
constructor(constructorGuard, hex) {
|
|
13285
13417
|
if (constructorGuard !== _constructorGuard) {
|
|
13286
|
-
|
|
13418
|
+
machine_worker_logger.throwError("cannot call constructor directly; use BigNumber.from", Logger.errors.UNSUPPORTED_OPERATION, {
|
|
13287
13419
|
operation: "new (BigNumber)"
|
|
13288
13420
|
});
|
|
13289
13421
|
}
|
|
@@ -13407,7 +13539,7 @@ class BigNumber {
|
|
|
13407
13539
|
return BigInt(this.toString());
|
|
13408
13540
|
}
|
|
13409
13541
|
catch (e) { }
|
|
13410
|
-
return
|
|
13542
|
+
return machine_worker_logger.throwError("this platform does not support BigInt", Logger.errors.UNSUPPORTED_OPERATION, {
|
|
13411
13543
|
value: this.toString()
|
|
13412
13544
|
});
|
|
13413
13545
|
}
|
|
@@ -13417,14 +13549,14 @@ class BigNumber {
|
|
|
13417
13549
|
if (arguments[0] === 10) {
|
|
13418
13550
|
if (!_warnedToStringRadix) {
|
|
13419
13551
|
_warnedToStringRadix = true;
|
|
13420
|
-
|
|
13552
|
+
machine_worker_logger.warn("BigNumber.toString does not accept any parameters; base-10 is assumed");
|
|
13421
13553
|
}
|
|
13422
13554
|
}
|
|
13423
13555
|
else if (arguments[0] === 16) {
|
|
13424
|
-
|
|
13556
|
+
machine_worker_logger.throwError("BigNumber.toString does not accept any parameters; use bigNumber.toHexString()", Logger.errors.UNEXPECTED_ARGUMENT, {});
|
|
13425
13557
|
}
|
|
13426
13558
|
else {
|
|
13427
|
-
|
|
13559
|
+
machine_worker_logger.throwError("BigNumber.toString does not accept parameters", Logger.errors.UNEXPECTED_ARGUMENT, {});
|
|
13428
13560
|
}
|
|
13429
13561
|
}
|
|
13430
13562
|
return toBN(this).toString(10);
|
|
@@ -13446,7 +13578,7 @@ class BigNumber {
|
|
|
13446
13578
|
if (value.match(/^-?[0-9]+$/)) {
|
|
13447
13579
|
return new BigNumber(_constructorGuard, toHex(new BN(value)));
|
|
13448
13580
|
}
|
|
13449
|
-
return
|
|
13581
|
+
return machine_worker_logger.throwArgumentError("invalid BigNumber string", "value", value);
|
|
13450
13582
|
}
|
|
13451
13583
|
if (typeof (value) === "number") {
|
|
13452
13584
|
if (value % 1) {
|
|
@@ -13461,7 +13593,7 @@ class BigNumber {
|
|
|
13461
13593
|
if (typeof (anyValue) === "bigint") {
|
|
13462
13594
|
return BigNumber.from(anyValue.toString());
|
|
13463
13595
|
}
|
|
13464
|
-
if (
|
|
13596
|
+
if (isBytes(anyValue)) {
|
|
13465
13597
|
return BigNumber.from(hexlify(anyValue));
|
|
13466
13598
|
}
|
|
13467
13599
|
if (anyValue) {
|
|
@@ -13480,13 +13612,13 @@ class BigNumber {
|
|
|
13480
13612
|
hex = anyValue.hex;
|
|
13481
13613
|
}
|
|
13482
13614
|
if (typeof (hex) === "string") {
|
|
13483
|
-
if (
|
|
13615
|
+
if (isHexString(hex) || (hex[0] === "-" && isHexString(hex.substring(1)))) {
|
|
13484
13616
|
return BigNumber.from(hex);
|
|
13485
13617
|
}
|
|
13486
13618
|
}
|
|
13487
13619
|
}
|
|
13488
13620
|
}
|
|
13489
|
-
return
|
|
13621
|
+
return machine_worker_logger.throwArgumentError("invalid BigNumber value", "value", value);
|
|
13490
13622
|
}
|
|
13491
13623
|
static isBigNumber(value) {
|
|
13492
13624
|
return !!(value && value._isBigNumber);
|
|
@@ -13504,7 +13636,7 @@ function toHex(value) {
|
|
|
13504
13636
|
value = value.substring(1);
|
|
13505
13637
|
// Cannot have multiple negative signs (e.g. "--0x04")
|
|
13506
13638
|
if (value[0] === "-") {
|
|
13507
|
-
|
|
13639
|
+
machine_worker_logger.throwArgumentError("invalid hex", "value", value);
|
|
13508
13640
|
}
|
|
13509
13641
|
// Call toHex on the positive component
|
|
13510
13642
|
value = toHex(value);
|
|
@@ -13548,168 +13680,12 @@ function throwFault(fault, operation, value) {
|
|
|
13548
13680
|
if (value != null) {
|
|
13549
13681
|
params.value = value;
|
|
13550
13682
|
}
|
|
13551
|
-
return
|
|
13552
|
-
}
|
|
13553
|
-
// value should have no prefix
|
|
13554
|
-
function _base36To16(value) {
|
|
13555
|
-
return (new BN(value, 36)).toString(16);
|
|
13556
|
-
}
|
|
13557
|
-
// value should have no prefix
|
|
13558
|
-
function _base16To36(value) {
|
|
13559
|
-
return (new BN(value, 16)).toString(36);
|
|
13560
|
-
}
|
|
13561
|
-
//# sourceMappingURL=bignumber.js.map
|
|
13562
|
-
// EXTERNAL MODULE: ./node_modules/path-browserify/index.js
|
|
13563
|
-
var path_browserify = __webpack_require__(470);
|
|
13564
|
-
;// CONCATENATED MODULE: ./node_modules/@vandeurenglenn/easy-worker/src/worker.js
|
|
13565
|
-
/* provided dependency */ var process = __webpack_require__(155);
|
|
13566
|
-
class EasyWorker {
|
|
13567
|
-
#messageEvent = 'message'
|
|
13568
|
-
#errorEvent = 'error'
|
|
13569
|
-
#isBrowser = false
|
|
13570
|
-
#isWorker = false
|
|
13571
|
-
|
|
13572
|
-
get isWorker() {
|
|
13573
|
-
return this.#isWorker
|
|
13574
|
-
}
|
|
13575
|
-
constructor(url, options) {
|
|
13576
|
-
return this.#init(url, options)
|
|
13577
|
-
}
|
|
13578
|
-
|
|
13579
|
-
#init(url, options = {}) {
|
|
13580
|
-
if (url) {
|
|
13581
|
-
if (globalThis.Worker) {
|
|
13582
|
-
this.#isBrowser = true
|
|
13583
|
-
this.worker = new Worker(url, {...options})
|
|
13584
|
-
} else {
|
|
13585
|
-
return new Promise(async (resolve, reject) => {
|
|
13586
|
-
const {fork} = await __webpack_require__.e(/* import() */ 865).then(__webpack_require__.t.bind(__webpack_require__, 865, 23))
|
|
13587
|
-
this.worker = fork(url, ['easy-worker-child'], options)
|
|
13588
|
-
resolve(this)
|
|
13589
|
-
})
|
|
13590
|
-
}
|
|
13591
|
-
} else {
|
|
13592
|
-
this.#isWorker = true
|
|
13593
|
-
if (globalThis.process?.argv[2] === 'easy-worker-child') {
|
|
13594
|
-
this.worker = process
|
|
13595
|
-
} else {
|
|
13596
|
-
this.#isBrowser = true
|
|
13597
|
-
this.worker = globalThis
|
|
13598
|
-
}
|
|
13599
|
-
}
|
|
13600
|
-
|
|
13601
|
-
return this
|
|
13602
|
-
}
|
|
13603
|
-
|
|
13604
|
-
onmessage(fn) {
|
|
13605
|
-
if (this.#isBrowser) this.worker.onmessage = ({data}) => fn(data)
|
|
13606
|
-
else this.worker.on(this.#messageEvent, fn)
|
|
13607
|
-
}
|
|
13608
|
-
|
|
13609
|
-
postMessage(message) {
|
|
13610
|
-
if (this.#isBrowser) this.worker.postMessage(message);
|
|
13611
|
-
else this.worker.send(message)
|
|
13612
|
-
}
|
|
13613
|
-
|
|
13614
|
-
terminate() {
|
|
13615
|
-
if (this.#isBrowser) this.worker.terminate()
|
|
13616
|
-
else this.worker.kill()
|
|
13617
|
-
}
|
|
13618
|
-
|
|
13619
|
-
onerror(fn) {
|
|
13620
|
-
if (this.#isBrowser) this.worker.onerror = fn
|
|
13621
|
-
else this.worker.on(this.#errorEvent, fn)
|
|
13622
|
-
}
|
|
13623
|
-
|
|
13624
|
-
/**
|
|
13625
|
-
*
|
|
13626
|
-
* @param {*} data
|
|
13627
|
-
* @returns {Promise} resolves result onmessage & rejects on error
|
|
13628
|
-
*/
|
|
13629
|
-
once(data) {
|
|
13630
|
-
return new Promise((resolve, reject) => {
|
|
13631
|
-
this.onmessage(message => {
|
|
13632
|
-
resolve(message)
|
|
13633
|
-
this.terminate()
|
|
13634
|
-
})
|
|
13635
|
-
this.onerror(error => {
|
|
13636
|
-
reject(error)
|
|
13637
|
-
this.terminate()
|
|
13638
|
-
})
|
|
13639
|
-
this.postMessage(data)
|
|
13640
|
-
})
|
|
13641
|
-
}
|
|
13683
|
+
return machine_worker_logger.throwError(fault, Logger.errors.NUMERIC_FAULT, params);
|
|
13642
13684
|
}
|
|
13643
|
-
;// CONCATENATED MODULE: ./dist/module/workers/machine-worker.js
|
|
13644
13685
|
|
|
13686
|
+
const machine_worker_version = "units/5.6.1";
|
|
13645
13687
|
|
|
13646
|
-
|
|
13647
|
-
|
|
13648
|
-
|
|
13649
|
-
|
|
13650
|
-
var proto$1 = `
|
|
13651
|
-
message ContractMessage {
|
|
13652
|
-
required string creator = 1;
|
|
13653
|
-
required bytes contract = 2;
|
|
13654
|
-
repeated string constructorParameters = 3;
|
|
13655
|
-
}
|
|
13656
|
-
`;
|
|
13657
|
-
|
|
13658
|
-
class ContractMessage extends src_FormatInterface {
|
|
13659
|
-
get keys() {
|
|
13660
|
-
return ['creator', 'contract', 'constructorParameters']
|
|
13661
|
-
}
|
|
13662
|
-
|
|
13663
|
-
get messageName() {
|
|
13664
|
-
return 'ContractMessage'
|
|
13665
|
-
}
|
|
13666
|
-
|
|
13667
|
-
constructor(buffer) {
|
|
13668
|
-
super(buffer, proto$1, {name: 'contract-message'});
|
|
13669
|
-
}
|
|
13670
|
-
}
|
|
13671
|
-
|
|
13672
|
-
var proto = `
|
|
13673
|
-
message ValidatorMessage {
|
|
13674
|
-
required string address = 1;
|
|
13675
|
-
required string reward = 2;
|
|
13676
|
-
}
|
|
13677
|
-
|
|
13678
|
-
message Transaction {
|
|
13679
|
-
required string hash = 1;
|
|
13680
|
-
required uint64 timestamp = 2;
|
|
13681
|
-
required string from = 3;
|
|
13682
|
-
required string to = 4;
|
|
13683
|
-
required uint64 nonce = 5;
|
|
13684
|
-
required string method = 6;
|
|
13685
|
-
repeated string params = 7;
|
|
13686
|
-
}
|
|
13687
|
-
|
|
13688
|
-
message BlockMessage {
|
|
13689
|
-
required uint64 index = 1;
|
|
13690
|
-
required string previousHash = 3;
|
|
13691
|
-
required uint64 timestamp = 4;
|
|
13692
|
-
required uint64 reward = 5;
|
|
13693
|
-
required string fees = 6;
|
|
13694
|
-
repeated Transaction transactions = 7;
|
|
13695
|
-
repeated ValidatorMessage validators = 8;
|
|
13696
|
-
}
|
|
13697
|
-
`;
|
|
13698
|
-
|
|
13699
|
-
class BlockMessage extends src_FormatInterface {
|
|
13700
|
-
get keys() {
|
|
13701
|
-
return ['index', 'previousHash', 'timestamp', 'reward', 'fees', 'transactions', 'validators']
|
|
13702
|
-
}
|
|
13703
|
-
|
|
13704
|
-
get messageName() {
|
|
13705
|
-
return 'BlockMessage'
|
|
13706
|
-
}
|
|
13707
|
-
|
|
13708
|
-
constructor(buffer) {
|
|
13709
|
-
const name = 'block-message';
|
|
13710
|
-
super(buffer, proto, {name});
|
|
13711
|
-
}
|
|
13712
|
-
}
|
|
13688
|
+
new Logger(machine_worker_version);
|
|
13713
13689
|
|
|
13714
13690
|
const byteFormats = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
13715
13691
|
|
|
@@ -13723,10 +13699,10 @@ const formatBytes = (bytes, decimals = 2) => {
|
|
|
13723
13699
|
return `${parseFloat((bytes / Math.pow(k, i)).toFixed(decimals))} ${byteFormats[i]}`
|
|
13724
13700
|
};
|
|
13725
13701
|
|
|
13726
|
-
var contractFactory = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,
|
|
13727
|
-
var nativeToken = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,51,67,122,86,51,66,98,76,103,117,57,105,55,119,70,115,83,101,82,101,90,113,110,80,111,53,82,114,121,49,118,81,98,82,115,89,114,116,67,67,97,81,103,98,113,80,72,112,116,117,85,111,72,52,34,44,34,99,111,110,116,114,97,99,116,34,58,34,114,101,116,117,114,110,32,99,108,97,115,115,32,65,114,116,79,110,108,105,110,101,32,101,120,116,101,110,100,115,32,99,108,97,115,115,32,84,111,107,101,110,32,101,120,116,101,110,100,115,32,99,108,97,115,115,32,82,111,108,101,115,123,35,114,111,108,101,115,61,123,79,87,78,69,82,58,91,93,44,77,73,78,84,58,91,93,44,66,85,82,78,58,91,93,125,59,99,111,110,115,116,114,117,99,116,111,114,40,114,111,108,101,115,41,123,105,102,40,114,111,108,101,115,41,123,105,102,40,33,40,114,111,108,101,115,32,105,110,115,116,97,110,99,101,111,102,32,79,98,106,101,99,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,101,120,112,101,99,116,101,100,32,114,111,108,101,115,32,116,111,32,98,101,32,97,110,32,111,98,106,101,99,116,92,34,41,59,116,104,105,115,46,35,114,111,108,101,115,61,123,46,46,46,114,111,108,101,115,44,46,46,46,116,104,105,115,46,35,114,111,108,101,115,125,125,101,108,115,101,32,116,104,105,115,46,35,103,114,97,110,116,82,111,108,101,40,109,115,103,46,115,101,110,100,101,114,44,92,34,79,87,78,69,82,92,34,41,125,103,101,116,32,115,116,97,116,101,40,41,123,114,101,116,117,114,110,123,114,111,108,101,115,58,116,104,105,115,46,114,111,108,101,115,125,125,103,101,116,32,114,111,108,101,115,40,41,123,114,101,116,117,114,110,123,46,46,46,116,104,105,115,46,35,114,111,108,101,115,125,125,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,38,38,45,49,33,61,61,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,105,110,100,101,120,79,102,40,97,100,100,114,101,115,115,41,125,35,103,114,97,110,116,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,36,123,114,111,108,101,125,32,114,111,108,101,32,97,108,114,101,97,100,121,32,103,114,97,110,116,101,100,32,102,111,114,32,36,123,97,100,100,114,101,115,115,125,96,41,59,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,112,117,115,104,40,97,100,100,114,101,115,115,41,125,35,114,101,118,111,107,101,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,36,123,114,111,108,101,125,32,114,111,108,101,32,97,108,114,101,97,100,121,32,114,101,118,111,107,101,100,32,102,111,114,32,36,123,97,100,100,114,101,115,115,125,96,41,59,105,102,40,92,34,79,87,78,69,82,92,34,61,61,61,114,111,108,101,38,38,49,61,61,61,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,97,116,108,101,97,115,116,32,111,110,101,32,111,119,110,101,114,32,105,115,32,110,101,101,100,101,100,33,92,34,41,59,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,115,112,108,105,99,101,40,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,105,110,100,101,120,79,102,40,97,100,100,114,101,115,115,41,41,125,103,114,97,110,116,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,92,34,79,87,78,69,82,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,78,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,103,114,97,110,116,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,125,114,101,118,111,107,101,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,92,34,79,87,78,69,82,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,78,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,114,101,118,111,107,101,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,125,125,123,35,110,97,109,101,59,35,115,121,109,98,111,108,59,35,104,111,108,100,101,114,115,61,48,59,35,98,97,108,97,110,99,101,115,61,123,125,59,35,97,112,112,114,111,118,97,108,115,61,123,125,59,35,100,101,99,105,109,97,108,115,61,49,56,59,35,116,111,116,97,108,83,117,112,112,108,121,61,66,105,103,78,117,109,98,101,114,46,102,114,111,109,40,48,41,59,99,111,110,115,116,114,117,99,116,111,114,40,110,97,109,101,44,115,121,109,98,111,108,44,100,101,99,105,109,97,108,115,61,49,56,44,115,116,97,116,101,41,123,105,102,40,33,110,97,109,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,97,109,101,32,117,110,100,101,102,105,110,101,100,92,34,41,59,105,102,40,33,115,121,109,98,111,108,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,115,121,109,98,111,108,32,117,110,100,101,102,105,110,101,100,92,34,41,59,115,117,112,101,114,40,115,116,97,116,101,63,46,114,111,108,101,115,41,44,116,104,105,115,46,35,110,97,109,101,61,110,97,109,101,44,116,104,105,115,46,35,115,121,109,98,111,108,61,115,121,109,98,111,108,44,116,104,105,115,46,35,100,101,99,105,109,97,108,115,61,100,101,99,105,109,97,108,115,125,103,101,116,32,115,116,97,116,101,40,41,123,114,101,116,117,114,110,123,46,46,46,115,117,112,101,114,46,115,116,97,116,101,44,104,111,108,100,101,114,115,58,116,104,105,115,46,104,111,108,100,101,114,115,44,98,97,108,97,110,99,101,115,58,116,104,105,115,46,98,97,108,97,110,99,101,115,44,97,112,112,114,111,118,97,108,115,58,123,46,46,46,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,125,44,116,111,116,97,108,83,117,112,112,108,121,58,116,104,105,115,46,116,111,116,97,108,83,117,112,112,108,121,125,125,103,101,116,32,116,111,116,97,108,83,117,112,112,108,121,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,125,103,101,116,32,110,97,109,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,110,97,109,101,125,103,101,116,32,115,121,109,98,111,108,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,115,121,109,98,111,108,125,103,101,116,32,104,111,108,100,101,114,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,104,111,108,100,101,114,115,125,103,101,116,32,98,97,108,97,110,99,101,115,40,41,123,114,101,116,117,114,110,123,46,46,46,116,104,105,115,46,35,98,97,108,97,110,99,101,115,125,125,109,105,110,116,40,116,111,44,97,109,111,117,110,116,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,109,115,103,46,115,101,110,100,101,114,44,92,34,77,73,78,84,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,61,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,46,97,100,100,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,105,110,99,114,101,97,115,101,66,97,108,97,110,99,101,40,116,111,44,97,109,111,117,110,116,41,125,98,117,114,110,40,116,111,44,97,109,111,117,110,116,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,109,115,103,46,115,101,110,100,101,114,44,92,34,66,85,82,78,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,61,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,46,115,117,98,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,100,101,99,114,101,97,115,101,66,97,108,97,110,99,101,40,116,111,44,97,109,111,117,110,116,41,125,35,98,101,102,111,114,101,84,114,97,110,115,102,101,114,40,102,114,111,109,44,116,111,44,97,109,111,117,110,116,41,123,105,102,40,33,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,102,114,111,109,93,124,124,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,102,114,111,109,93,60,97,109,111,117,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,97,109,111,117,110,116,32,101,120,99,101,101,100,115,32,98,97,108,97,110,99,101,92,34,41,125,35,117,112,100,97,116,101,72,111,108,100,101,114,115,40,97,100,100,114,101,115,115,44,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,41,123,92,34,48,120,48,48,92,34,61,61,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,116,111,72,101,120,83,116,114,105,110,103,40,41,63,116,104,105,115,46,35,104,111,108,100,101,114,115,45,61,49,58,92,34,48,120,48,48,92,34,33,61,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,116,111,72,101,120,83,116,114,105,110,103,40,41,38,38,92,34,48,120,48,48,92,34,61,61,61,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,46,116,111,72,101,120,83,116,114,105,110,103,40,41,38,38,40,116,104,105,115,46,35,104,111,108,100,101,114,115,43,61,49,41,125,35,105,110,99,114,101,97,115,101,66,97,108,97,110,99,101,40,97,100,100,114,101,115,115,44,97,109,111,117,110,116,41,123,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,124,124,40,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,61,66,105,103,78,117,109,98,101,114,46,102,114,111,109,40,48,41,41,59,99,111,110,115,116,32,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,59,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,97,100,100,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,117,112,100,97,116,101,72,111,108,100,101,114,115,40,97,100,100,114,101,115,115,44,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,41,125,35,100,101,99,114,101,97,115,101,66,97,108,97,110,99,101,40,97,100,100,114,101,115,115,44,97,109,111,117,110,116,41,123,99,111,110,115,116,32,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,59,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,115,117,98,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,117,112,100,97,116,101,72,111,108,100,101,114,115,40,97,100,100,114,101,115,115,44,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,41,125,98,97,108,97,110,99,101,79,102,40,97,100,100,114,101,115,115,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,125,115,101,116,65,112,112,114,111,118,97,108,40,111,112,101,114,97,116,111,114,44,97,109,111,117,110,116,41,123,99,111,110,115,116,32,111,119,110,101,114,61,103,108,111,98,97,108,84,104,105,115,46,109,115,103,46,115,101,110,100,101,114,59,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,124,124,40,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,61,123,125,41,44,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,91,111,112,101,114,97,116,111,114,93,61,97,109,111,117,110,116,125,97,112,112,114,111,118,101,100,40,111,119,110,101,114,44,111,112,101,114,97,116,111,114,44,97,109,111,117,110,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,91,111,112,101,114,97,116,111,114,93,61,61,61,97,109,111,117,110,116,125,116,114,97,110,115,102,101,114,40,102,114,111,109,44,116,111,44,97,109,111,117,110,116,41,123,97,109,111,117,110,116,61,66,105,103,78,117,109,98,101,114,46,102,114,111,109,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,98,101,102,111,114,101,84,114,97,110,115,102,101,114,40,102,114,111,109,44,116,111,44,97,109,111,117,110,116,41,44,116,104,105,115,46,35,100,101,99,114,101,97,115,101,66,97,108,97,110,99,101,40,102,114,111,109,44,97,109,111,117,110,116,41,44,116,104,105,115,46,35,105,110,99,114,101,97,115,101,66,97,108,97,110,99,101,40,116,111,44,97,109,111,117,110,116,41,125,125,123,99,111,110,115,116,114,117,99,116,111,114,40,115,116,97,116,101,41,123,115,117,112,101,114,40,92,34,65,114,116,79,110,108,105,110,101,92,34,44,92,34,65,82,84,92,34,44,49,56,44,115,116,97,116,101,41,125,125,59,92,110,34,44,34,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,34,58,91,93,125";
|
|
13728
|
-
var nameService = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,
|
|
13729
|
-
var validators = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,
|
|
13702
|
+
var contractFactory = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,56,71,85,107,103,52,120,87,113,109,110,83,56,75,101,122,56,107,54,68,115,82,120,90,66,68,97,54,114,71,74,109,104,107,122,67,75,113,78,75,102,85,110,103,90,122,109,54,97,81,34,44,34,99,111,110,116,114,97,99,116,34,58,34,114,101,116,117,114,110,32,99,108,97,115,115,32,70,97,99,116,111,114,121,123,35,110,97,109,101,61,92,34,65,114,116,79,110,108,105,110,101,67,111,110,116,114,97,99,116,70,97,99,116,111,114,121,92,34,59,35,116,111,116,97,108,67,111,110,116,114,97,99,116,115,61,48,59,35,99,111,110,116,114,97,99,116,115,61,91,93,59,99,111,110,115,116,114,117,99,116,111,114,40,115,116,97,116,101,41,123,115,116,97,116,101,38,38,40,116,104,105,115,46,35,99,111,110,116,114,97,99,116,115,61,115,116,97,116,101,46,99,111,110,116,114,97,99,116,115,44,116,104,105,115,46,35,116,111,116,97,108,67,111,110,116,114,97,99,116,115,61,115,116,97,116,101,46,116,111,116,97,108,67,111,110,116,114,97,99,116,115,41,125,103,101,116,32,115,116,97,116,101,40,41,123,114,101,116,117,114,110,123,116,111,116,97,108,67,111,110,116,114,97,99,116,115,58,116,104,105,115,46,35,116,111,116,97,108,67,111,110,116,114,97,99,116,115,44,99,111,110,116,114,97,99,116,115,58,116,104,105,115,46,35,99,111,110,116,114,97,99,116,115,125,125,103,101,116,32,110,97,109,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,110,97,109,101,125,103,101,116,32,99,111,110,116,114,97,99,116,115,40,41,123,114,101,116,117,114,110,91,46,46,46,116,104,105,115,46,35,99,111,110,116,114,97,99,116,115,93,125,103,101,116,32,116,111,116,97,108,67,111,110,116,114,97,99,116,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,116,111,116,97,108,67,111,110,116,114,97,99,116,115,125,105,115,118,97,108,105,100,40,104,97,115,104,44,99,114,101,97,116,111,114,44,99,111,110,116,114,97,99,116,44,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,61,91,93,41,123,99,111,110,115,116,32,109,101,115,115,97,103,101,61,110,101,119,32,67,111,110,116,114,97,99,116,77,101,115,115,97,103,101,40,123,99,114,101,97,116,111,114,44,99,111,110,116,114,97,99,116,44,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,125,41,59,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,109,101,115,115,97,103,101,46,104,97,115,104,61,61,61,104,97,115,104,41,125,97,115,121,110,99,32,100,101,112,108,111,121,67,111,110,116,114,97,99,116,40,99,111,110,116,114,97,99,116,72,97,115,104,44,99,114,101,97,116,111,114,44,99,111,110,116,114,97,99,116,44,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,61,91,93,41,123,105,102,40,99,111,110,116,114,97,99,116,46,99,114,101,97,116,111,114,33,61,61,109,115,103,46,115,101,110,100,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,111,110,108,121,32,97,32,99,111,110,116,114,97,99,116,32,99,114,101,97,116,111,114,32,99,97,110,32,100,101,112,108,111,121,32,97,32,99,111,110,116,114,97,99,116,92,34,41,59,105,102,40,97,119,97,105,116,32,99,111,110,116,114,97,99,116,83,116,111,114,101,46,104,97,115,40,104,97,115,104,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,100,117,112,108,105,99,97,116,101,32,99,111,110,116,114,97,99,116,92,34,41,59,105,102,40,33,116,104,105,115,46,105,115,86,97,108,105,100,40,99,111,110,116,114,97,99,116,72,97,115,104,44,99,114,101,97,116,111,114,44,99,111,110,116,114,97,99,116,44,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,99,111,110,116,114,97,99,116,92,34,41,59,97,119,97,105,116,32,99,111,110,116,114,97,99,116,83,116,111,114,101,46,112,117,116,40,104,97,115,104,44,101,110,99,111,100,101,100,41,44,116,104,105,115,46,35,116,111,116,97,108,67,111,110,116,114,97,99,116,115,43,61,49,44,116,104,105,115,46,35,99,111,110,116,114,97,99,116,115,46,112,117,115,104,40,104,97,115,104,41,125,125,59,34,44,34,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,34,58,91,93,125";
|
|
13703
|
+
var nativeToken = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,56,71,85,107,103,52,120,87,113,109,110,83,56,75,101,122,56,107,54,68,115,82,120,90,66,68,97,54,114,71,74,109,104,107,122,67,75,113,78,75,102,85,110,103,90,122,109,54,97,81,34,44,34,99,111,110,116,114,97,99,116,34,58,34,114,101,116,117,114,110,32,99,108,97,115,115,32,65,114,116,79,110,108,105,110,101,32,101,120,116,101,110,100,115,32,99,108,97,115,115,32,84,111,107,101,110,32,101,120,116,101,110,100,115,32,99,108,97,115,115,32,82,111,108,101,115,123,35,114,111,108,101,115,61,123,79,87,78,69,82,58,91,93,44,77,73,78,84,58,91,93,44,66,85,82,78,58,91,93,125,59,99,111,110,115,116,114,117,99,116,111,114,40,114,111,108,101,115,41,123,105,102,40,114,111,108,101,115,41,123,105,102,40,33,40,114,111,108,101,115,32,105,110,115,116,97,110,99,101,111,102,32,79,98,106,101,99,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,101,120,112,101,99,116,101,100,32,114,111,108,101,115,32,116,111,32,98,101,32,97,110,32,111,98,106,101,99,116,92,34,41,59,116,104,105,115,46,35,114,111,108,101,115,61,123,46,46,46,114,111,108,101,115,44,46,46,46,116,104,105,115,46,35,114,111,108,101,115,125,125,101,108,115,101,32,116,104,105,115,46,35,103,114,97,110,116,82,111,108,101,40,109,115,103,46,115,101,110,100,101,114,44,92,34,79,87,78,69,82,92,34,41,125,103,101,116,32,115,116,97,116,101,40,41,123,114,101,116,117,114,110,123,114,111,108,101,115,58,116,104,105,115,46,114,111,108,101,115,125,125,103,101,116,32,114,111,108,101,115,40,41,123,114,101,116,117,114,110,123,46,46,46,116,104,105,115,46,35,114,111,108,101,115,125,125,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,38,38,45,49,33,61,61,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,105,110,100,101,120,79,102,40,97,100,100,114,101,115,115,41,125,35,103,114,97,110,116,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,36,123,114,111,108,101,125,32,114,111,108,101,32,97,108,114,101,97,100,121,32,103,114,97,110,116,101,100,32,102,111,114,32,36,123,97,100,100,114,101,115,115,125,96,41,59,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,112,117,115,104,40,97,100,100,114,101,115,115,41,125,35,114,101,118,111,107,101,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,36,123,114,111,108,101,125,32,114,111,108,101,32,97,108,114,101,97,100,121,32,114,101,118,111,107,101,100,32,102,111,114,32,36,123,97,100,100,114,101,115,115,125,96,41,59,105,102,40,92,34,79,87,78,69,82,92,34,61,61,61,114,111,108,101,38,38,49,61,61,61,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,97,116,108,101,97,115,116,32,111,110,101,32,111,119,110,101,114,32,105,115,32,110,101,101,100,101,100,33,92,34,41,59,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,115,112,108,105,99,101,40,116,104,105,115,46,35,114,111,108,101,115,91,114,111,108,101,93,46,105,110,100,101,120,79,102,40,97,100,100,114,101,115,115,41,41,125,103,114,97,110,116,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,92,34,79,87,78,69,82,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,78,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,103,114,97,110,116,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,125,114,101,118,111,107,101,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,97,100,100,114,101,115,115,44,92,34,79,87,78,69,82,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,78,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,114,101,118,111,107,101,82,111,108,101,40,97,100,100,114,101,115,115,44,114,111,108,101,41,125,125,123,35,110,97,109,101,59,35,115,121,109,98,111,108,59,35,104,111,108,100,101,114,115,61,48,59,35,98,97,108,97,110,99,101,115,61,123,125,59,35,97,112,112,114,111,118,97,108,115,61,123,125,59,35,100,101,99,105,109,97,108,115,61,49,56,59,35,116,111,116,97,108,83,117,112,112,108,121,61,66,105,103,78,117,109,98,101,114,46,102,114,111,109,40,48,41,59,99,111,110,115,116,114,117,99,116,111,114,40,110,97,109,101,44,115,121,109,98,111,108,44,100,101,99,105,109,97,108,115,61,49,56,44,115,116,97,116,101,41,123,105,102,40,33,110,97,109,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,97,109,101,32,117,110,100,101,102,105,110,101,100,92,34,41,59,105,102,40,33,115,121,109,98,111,108,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,115,121,109,98,111,108,32,117,110,100,101,102,105,110,101,100,92,34,41,59,115,117,112,101,114,40,115,116,97,116,101,63,46,114,111,108,101,115,41,44,116,104,105,115,46,35,110,97,109,101,61,110,97,109,101,44,116,104,105,115,46,35,115,121,109,98,111,108,61,115,121,109,98,111,108,44,116,104,105,115,46,35,100,101,99,105,109,97,108,115,61,100,101,99,105,109,97,108,115,125,103,101,116,32,115,116,97,116,101,40,41,123,114,101,116,117,114,110,123,46,46,46,115,117,112,101,114,46,115,116,97,116,101,44,104,111,108,100,101,114,115,58,116,104,105,115,46,104,111,108,100,101,114,115,44,98,97,108,97,110,99,101,115,58,116,104,105,115,46,98,97,108,97,110,99,101,115,44,97,112,112,114,111,118,97,108,115,58,123,46,46,46,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,125,44,116,111,116,97,108,83,117,112,112,108,121,58,116,104,105,115,46,116,111,116,97,108,83,117,112,112,108,121,125,125,103,101,116,32,116,111,116,97,108,83,117,112,112,108,121,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,125,103,101,116,32,110,97,109,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,110,97,109,101,125,103,101,116,32,115,121,109,98,111,108,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,115,121,109,98,111,108,125,103,101,116,32,104,111,108,100,101,114,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,104,111,108,100,101,114,115,125,103,101,116,32,98,97,108,97,110,99,101,115,40,41,123,114,101,116,117,114,110,123,46,46,46,116,104,105,115,46,35,98,97,108,97,110,99,101,115,125,125,109,105,110,116,40,116,111,44,97,109,111,117,110,116,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,109,115,103,46,115,101,110,100,101,114,44,92,34,77,73,78,84,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,61,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,46,97,100,100,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,105,110,99,114,101,97,115,101,66,97,108,97,110,99,101,40,116,111,44,97,109,111,117,110,116,41,125,98,117,114,110,40,116,111,44,97,109,111,117,110,116,41,123,105,102,40,33,116,104,105,115,46,104,97,115,82,111,108,101,40,109,115,103,46,115,101,110,100,101,114,44,92,34,66,85,82,78,92,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,108,108,111,119,101,100,92,34,41,59,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,61,116,104,105,115,46,35,116,111,116,97,108,83,117,112,112,108,121,46,115,117,98,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,100,101,99,114,101,97,115,101,66,97,108,97,110,99,101,40,116,111,44,97,109,111,117,110,116,41,125,35,98,101,102,111,114,101,84,114,97,110,115,102,101,114,40,102,114,111,109,44,116,111,44,97,109,111,117,110,116,41,123,105,102,40,33,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,102,114,111,109,93,124,124,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,102,114,111,109,93,60,97,109,111,117,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,97,109,111,117,110,116,32,101,120,99,101,101,100,115,32,98,97,108,97,110,99,101,92,34,41,125,35,117,112,100,97,116,101,72,111,108,100,101,114,115,40,97,100,100,114,101,115,115,44,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,41,123,92,34,48,120,48,48,92,34,61,61,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,116,111,72,101,120,83,116,114,105,110,103,40,41,63,116,104,105,115,46,35,104,111,108,100,101,114,115,45,61,49,58,92,34,48,120,48,48,92,34,33,61,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,116,111,72,101,120,83,116,114,105,110,103,40,41,38,38,92,34,48,120,48,48,92,34,61,61,61,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,46,116,111,72,101,120,83,116,114,105,110,103,40,41,38,38,40,116,104,105,115,46,35,104,111,108,100,101,114,115,43,61,49,41,125,35,105,110,99,114,101,97,115,101,66,97,108,97,110,99,101,40,97,100,100,114,101,115,115,44,97,109,111,117,110,116,41,123,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,124,124,40,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,61,66,105,103,78,117,109,98,101,114,46,102,114,111,109,40,48,41,41,59,99,111,110,115,116,32,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,59,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,97,100,100,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,117,112,100,97,116,101,72,111,108,100,101,114,115,40,97,100,100,114,101,115,115,44,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,41,125,35,100,101,99,114,101,97,115,101,66,97,108,97,110,99,101,40,97,100,100,114,101,115,115,44,97,109,111,117,110,116,41,123,99,111,110,115,116,32,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,59,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,61,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,46,115,117,98,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,117,112,100,97,116,101,72,111,108,100,101,114,115,40,97,100,100,114,101,115,115,44,112,114,101,118,105,111,117,115,66,97,108,97,110,99,101,41,125,98,97,108,97,110,99,101,79,102,40,97,100,100,114,101,115,115,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,98,97,108,97,110,99,101,115,91,97,100,100,114,101,115,115,93,125,115,101,116,65,112,112,114,111,118,97,108,40,111,112,101,114,97,116,111,114,44,97,109,111,117,110,116,41,123,99,111,110,115,116,32,111,119,110,101,114,61,103,108,111,98,97,108,84,104,105,115,46,109,115,103,46,115,101,110,100,101,114,59,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,124,124,40,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,61,123,125,41,44,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,91,111,112,101,114,97,116,111,114,93,61,97,109,111,117,110,116,125,97,112,112,114,111,118,101,100,40,111,119,110,101,114,44,111,112,101,114,97,116,111,114,44,97,109,111,117,110,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,97,112,112,114,111,118,97,108,115,91,111,119,110,101,114,93,91,111,112,101,114,97,116,111,114,93,61,61,61,97,109,111,117,110,116,125,116,114,97,110,115,102,101,114,40,102,114,111,109,44,116,111,44,97,109,111,117,110,116,41,123,97,109,111,117,110,116,61,66,105,103,78,117,109,98,101,114,46,102,114,111,109,40,97,109,111,117,110,116,41,44,116,104,105,115,46,35,98,101,102,111,114,101,84,114,97,110,115,102,101,114,40,102,114,111,109,44,116,111,44,97,109,111,117,110,116,41,44,116,104,105,115,46,35,100,101,99,114,101,97,115,101,66,97,108,97,110,99,101,40,102,114,111,109,44,97,109,111,117,110,116,41,44,116,104,105,115,46,35,105,110,99,114,101,97,115,101,66,97,108,97,110,99,101,40,116,111,44,97,109,111,117,110,116,41,125,125,123,99,111,110,115,116,114,117,99,116,111,114,40,115,116,97,116,101,41,123,115,117,112,101,114,40,92,34,65,114,116,79,110,108,105,110,101,92,34,44,92,34,65,82,84,92,34,44,49,56,44,115,116,97,116,101,41,125,125,59,34,44,34,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,34,58,91,93,125";
|
|
13704
|
+
var nameService = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,56,71,85,107,103,52,120,87,113,109,110,83,56,75,101,122,56,107,54,68,115,82,120,90,66,68,97,54,114,71,74,109,104,107,122,67,75,113,78,75,102,85,110,103,90,122,109,54,97,81,34,44,34,99,111,110,116,114,97,99,116,34,58,34,114,101,116,117,114,110,32,99,108,97,115,115,32,78,97,109,101,83,101,114,118,105,99,101,123,35,110,97,109,101,61,92,34,65,114,116,79,110,108,105,110,101,78,97,109,101,83,101,114,118,105,99,101,92,34,59,35,111,119,110,101,114,59,35,112,114,105,99,101,61,48,59,35,114,101,103,105,115,116,114,121,61,123,125,59,35,99,117,114,114,101,110,99,121,59,103,101,116,32,110,97,109,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,110,97,109,101,125,103,101,116,32,114,101,103,105,115,116,114,121,40,41,123,114,101,116,117,114,110,123,46,46,46,116,104,105,115,46,35,114,101,103,105,115,116,114,121,125,125,103,101,116,32,115,116,97,116,101,40,41,123,125,99,111,110,115,116,114,117,99,116,111,114,40,102,97,99,116,111,114,121,65,100,100,114,101,115,115,44,99,117,114,114,101,110,99,121,44,118,97,108,105,100,97,116,111,114,65,100,100,114,101,115,115,44,112,114,105,99,101,44,115,116,97,116,101,41,123,115,116,97,116,101,63,40,116,104,105,115,46,35,111,119,110,101,114,61,115,116,97,116,101,46,111,119,110,101,114,44,116,104,105,115,46,35,114,101,103,105,115,116,114,121,61,115,116,97,116,101,46,114,101,103,105,115,116,114,121,44,116,104,105,115,46,35,99,117,114,114,101,110,99,121,61,115,116,97,116,101,46,99,117,114,114,101,110,99,121,44,116,104,105,115,46,35,112,114,105,99,101,61,115,116,97,116,101,46,112,114,105,99,101,41,58,40,116,104,105,115,46,35,111,119,110,101,114,61,109,115,103,46,115,101,110,100,101,114,44,116,104,105,115,46,35,112,114,105,99,101,61,112,114,105,99,101,44,116,104,105,115,46,35,114,101,103,105,115,116,114,121,46,65,114,116,79,110,108,105,110,101,67,111,110,116,114,97,99,116,70,97,99,116,111,114,121,61,123,111,119,110,101,114,58,109,115,103,46,115,101,110,100,101,114,44,97,100,100,114,101,115,115,58,102,97,99,116,111,114,121,65,100,100,114,101,115,115,125,44,116,104,105,115,46,35,114,101,103,105,115,116,114,121,46,65,114,116,79,110,108,105,110,101,84,111,107,101,110,61,123,111,119,110,101,114,58,109,115,103,46,115,101,110,100,101,114,44,97,100,100,114,101,115,115,58,99,117,114,114,101,110,99,121,125,44,116,104,105,115,46,35,114,101,103,105,115,116,114,121,46,65,114,116,79,110,108,105,110,101,86,97,108,105,100,97,116,111,114,115,61,123,111,119,110,101,114,58,109,115,103,46,115,101,110,100,101,114,44,97,100,100,114,101,115,115,58,118,97,108,105,100,97,116,111,114,65,100,100,114,101,115,115,125,44,116,104,105,115,46,35,99,117,114,114,101,110,99,121,61,99,117,114,114,101,110,99,121,41,125,99,104,97,110,103,101,79,119,110,101,114,40,111,119,110,101,114,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,32,111,119,110,101,114,92,34,41,59,116,104,105,115,46,35,111,119,110,101,114,61,111,119,110,101,114,125,99,104,97,110,103,101,80,114,105,99,101,40,112,114,105,99,101,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,32,111,119,110,101,114,92,34,41,59,116,104,105,115,46,35,112,114,105,99,101,61,112,114,105,99,101,125,99,104,97,110,103,101,67,117,114,114,101,110,99,121,40,99,117,114,114,101,110,99,121,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,32,111,119,110,101,114,92,34,41,59,116,104,105,115,46,35,99,117,114,114,101,110,99,121,61,99,117,114,114,101,110,99,121,125,97,115,121,110,99,32,112,117,114,99,104,97,115,101,78,97,109,101,40,110,97,109,101,44,97,100,100,114,101,115,115,41,123,105,102,40,97,119,97,105,116,32,109,115,103,46,99,97,108,108,40,116,104,105,115,46,35,99,117,114,114,101,110,99,121,44,92,34,98,97,108,97,110,99,101,79,102,92,34,44,91,109,115,103,46,115,101,110,100,101,114,93,41,60,116,104,105,115,46,35,112,114,105,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,112,114,105,99,101,32,101,120,99,101,101,100,115,32,98,97,108,97,110,99,101,92,34,41,59,116,114,121,123,97,119,97,105,116,32,109,115,103,46,99,97,108,108,40,116,104,105,115,46,35,99,117,114,114,101,110,99,121,44,92,34,116,114,97,110,115,102,101,114,92,34,44,91,109,115,103,46,115,101,110,100,101,114,44,116,104,105,115,46,35,111,119,110,101,114,44,116,104,105,115,46,35,112,114,105,99,101,93,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,32,101,125,116,104,105,115,46,35,114,101,103,105,115,116,114,121,91,110,97,109,101,93,61,123,111,119,110,101,114,58,109,115,103,46,115,101,110,100,101,114,44,97,100,100,114,101,115,115,125,125,108,111,111,107,117,112,40,110,97,109,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,114,101,103,105,115,116,114,121,91,110,97,109,101,93,125,116,114,97,110,115,102,101,114,79,119,110,101,114,115,104,105,112,40,110,97,109,101,44,116,111,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,114,101,103,105,115,116,114,121,46,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,32,111,119,110,101,114,92,34,41,59,116,104,105,115,46,35,114,101,103,105,115,116,114,121,91,110,97,109,101,93,46,111,119,110,101,114,61,116,111,125,99,104,97,110,103,101,65,100,100,114,101,115,115,40,110,97,109,101,44,97,100,100,114,101,115,115,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,114,101,103,105,115,116,114,121,46,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,32,111,119,110,101,114,92,34,41,59,116,104,105,115,46,35,114,101,103,105,115,116,114,121,91,110,97,109,101,93,46,97,100,100,114,101,115,115,61,97,100,100,114,101,115,115,125,125,59,34,44,34,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,34,58,91,34,105,104,110,121,50,103,113,103,99,50,104,120,98,105,99,115,120,101,112,53,100,111,107,116,114,115,121,109,118,100,99,114,117,52,120,99,116,117,103,122,107,116,103,120,103,113,106,97,113,122,118,105,102,50,54,109,112,101,114,34,44,34,105,104,110,121,50,103,113,103,104,111,55,112,102,50,99,103,98,107,109,113,106,121,103,120,108,120,101,114,114,120,122,109,122,51,102,101,51,120,119,53,51,110,110,107,110,117,51,119,107,102,100,115,52,98,100,122,118,50,114,34,44,34,105,104,110,121,50,103,113,103,51,113,99,98,100,114,114,107,52,98,100,119,104,109,105,101,122,51,113,97,99,102,53,55,102,98,104,101,112,97,54,105,114,104,113,117,54,110,106,110,113,102,115,50,53,108,54,122,102,103,111,34,44,34,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,34,93,125";
|
|
13705
|
+
var validators = "237,198,141,3,123,34,99,114,101,97,116,111,114,34,58,34,56,71,85,107,103,52,120,87,113,109,110,83,56,75,101,122,56,107,54,68,115,82,120,90,66,68,97,54,114,71,74,109,104,107,122,67,75,113,78,75,102,85,110,103,90,122,109,54,97,81,34,44,34,99,111,110,116,114,97,99,116,34,58,34,114,101,116,117,114,110,32,99,108,97,115,115,32,86,97,108,105,100,97,116,111,114,115,123,35,110,97,109,101,61,92,34,65,114,116,79,110,108,105,110,101,86,97,108,105,100,97,116,111,114,115,92,34,59,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,61,48,59,35,118,97,108,105,100,97,116,111,114,115,61,123,125,59,35,111,119,110,101,114,59,35,99,117,114,114,101,110,99,121,59,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,59,103,101,116,32,115,116,97,116,101,40,41,123,114,101,116,117,114,110,123,111,119,110,101,114,58,116,104,105,115,46,35,111,119,110,101,114,44,109,105,110,105,109,117,109,66,97,108,97,110,99,101,58,116,104,105,115,46,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,44,99,117,114,114,101,110,99,121,58,116,104,105,115,46,35,99,117,114,114,101,110,99,121,44,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,58,116,104,105,115,46,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,44,118,97,108,105,100,97,116,111,114,115,58,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,125,125,99,111,110,115,116,114,117,99,116,111,114,40,116,111,107,101,110,65,100,100,114,101,115,115,44,115,116,97,116,101,41,123,115,116,97,116,101,63,40,116,104,105,115,46,35,111,119,110,101,114,61,115,116,97,116,101,46,111,119,110,101,114,44,116,104,105,115,46,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,61,115,116,97,116,101,46,109,105,110,105,109,117,109,66,97,108,97,110,99,101,44,116,104,105,115,46,35,99,117,114,114,101,110,99,121,61,115,116,97,116,101,46,99,117,114,114,101,110,99,121,44,116,104,105,115,46,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,61,115,116,97,116,101,46,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,44,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,61,115,116,97,116,101,46,118,97,108,105,100,97,116,111,114,115,41,58,40,116,104,105,115,46,35,111,119,110,101,114,61,109,115,103,46,115,101,110,100,101,114,44,116,104,105,115,46,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,61,53,101,52,44,116,104,105,115,46,35,99,117,114,114,101,110,99,121,61,116,111,107,101,110,65,100,100,114,101,115,115,44,116,104,105,115,46,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,43,61,49,44,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,109,115,103,46,115,101,110,100,101,114,93,61,123,102,105,114,115,116,83,101,101,110,58,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,97,99,116,105,118,101,58,33,48,125,41,125,103,101,116,32,110,97,109,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,110,97,109,101,125,103,101,116,32,111,119,110,101,114,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,111,119,110,101,114,125,103,101,116,32,99,117,114,114,101,110,99,121,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,99,117,114,114,101,110,99,121,125,103,101,116,32,118,97,108,105,100,97,116,111,114,115,40,41,123,114,101,116,117,114,110,123,46,46,46,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,125,125,103,101,116,32,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,125,103,101,116,32,109,105,110,105,109,117,109,66,97,108,97,110,99,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,125,99,104,97,110,103,101,79,119,110,101,114,40,111,119,110,101,114,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,110,32,111,119,110,101,114,92,34,41,125,99,104,97,110,103,101,67,117,114,114,101,110,99,121,40,99,117,114,114,101,110,99,121,41,123,105,102,40,109,115,103,46,115,101,110,100,101,114,33,61,61,116,104,105,115,46,35,111,119,110,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,116,32,97,110,32,111,119,110,101,114,92,34,41,59,116,104,105,115,46,35,99,117,114,114,101,110,99,121,61,99,117,114,114,101,110,99,121,125,104,97,115,40,118,97,108,105,100,97,116,111,114,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,118,111,105,100,32,48,33,61,61,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,118,97,108,105,100,97,116,111,114,93,41,125,97,115,121,110,99,32,97,100,100,86,97,108,105,100,97,116,111,114,40,118,97,108,105,100,97,116,111,114,41,123,105,102,40,116,104,105,115,46,104,97,115,40,118,97,108,105,100,97,116,111,114,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,97,108,114,101,97,100,121,32,97,32,118,97,108,105,100,97,116,111,114,92,34,41,59,99,111,110,115,116,32,98,97,108,97,110,99,101,61,97,119,97,105,116,32,109,115,103,46,115,116,97,116,105,99,67,97,108,108,40,116,104,105,115,46,99,117,114,114,101,110,99,121,44,92,34,98,97,108,97,110,99,101,79,102,92,34,44,91,109,115,103,46,115,101,110,100,101,114,93,41,59,105,102,40,98,97,108,97,110,99,101,60,116,104,105,115,46,109,105,110,105,109,117,109,66,97,108,97,110,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,98,97,108,97,110,99,101,32,116,111,32,108,111,119,33,32,103,111,116,58,32,36,123,98,97,108,97,110,99,101,125,32,110,101,101,100,58,32,36,123,116,104,105,115,46,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,125,96,41,59,116,104,105,115,46,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,43,61,49,44,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,118,97,108,105,100,97,116,111,114,93,61,123,102,105,114,115,116,83,101,101,110,58,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,97,99,116,105,118,101,58,33,48,125,125,114,101,109,111,118,101,86,97,108,105,100,97,116,111,114,40,118,97,108,105,100,97,116,111,114,41,123,105,102,40,33,116,104,105,115,46,104,97,115,40,118,97,108,105,100,97,116,111,114,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,118,97,108,105,100,97,116,111,114,32,110,111,116,32,102,111,117,110,100,92,34,41,59,116,104,105,115,46,35,116,111,116,97,108,86,97,108,105,100,97,116,111,114,115,45,61,49,44,100,101,108,101,116,101,32,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,118,97,108,105,100,97,116,111,114,93,125,97,115,121,110,99,32,117,112,100,97,116,101,86,97,108,105,100,97,116,111,114,40,118,97,108,105,100,97,116,111,114,44,97,99,116,105,118,101,41,123,105,102,40,33,116,104,105,115,46,104,97,115,40,118,97,108,105,100,97,116,111,114,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,118,97,108,105,100,97,116,111,114,32,110,111,116,32,102,111,117,110,100,92,34,41,59,99,111,110,115,116,32,98,97,108,97,110,99,101,61,97,119,97,105,116,32,109,115,103,46,115,116,97,116,105,99,67,97,108,108,40,116,104,105,115,46,99,117,114,114,101,110,99,121,44,92,34,98,97,108,97,110,99,101,79,102,92,34,44,91,109,115,103,46,115,101,110,100,101,114,93,41,59,105,102,40,98,97,108,97,110,99,101,60,116,104,105,115,46,109,105,110,105,109,117,109,66,97,108,97,110,99,101,38,38,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,118,97,108,105,100,97,116,111,114,93,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,118,97,108,105,100,97,116,111,114,93,46,97,99,116,105,118,101,61,33,49,41,44,98,97,108,97,110,99,101,60,116,104,105,115,46,109,105,110,105,109,117,109,66,97,108,97,110,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,98,97,108,97,110,99,101,32,116,111,32,108,111,119,33,32,103,111,116,58,32,36,123,98,97,108,97,110,99,101,125,32,110,101,101,100,58,32,36,123,116,104,105,115,46,35,109,105,110,105,109,117,109,66,97,108,97,110,99,101,125,96,41,59,116,104,105,115,46,35,118,97,108,105,100,97,116,111,114,115,91,118,97,108,105,100,97,116,111,114,93,46,97,99,116,105,118,101,61,97,99,116,105,118,101,125,125,59,34,44,34,99,111,110,115,116,114,117,99,116,111,114,80,97,114,97,109,101,116,101,114,115,34,58,91,34,105,104,110,121,50,103,113,103,104,111,55,112,102,50,99,103,98,107,109,113,106,121,103,120,108,120,101,114,114,120,122,109,122,51,102,101,51,120,119,53,51,110,110,107,110,117,51,119,107,102,100,115,52,98,100,122,118,50,114,34,93,125";
|
|
13730
13706
|
var bytecodes = {
|
|
13731
13707
|
contractFactory: contractFactory,
|
|
13732
13708
|
nativeToken: nativeToken,
|