@leofcoin/peernet 0.10.1 → 0.10.4
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/dist/browser/peernet.js +667 -627
- package/dist/commonjs/codec-format-interface.js +20 -4
- package/dist/commonjs/peernet.js +38 -143
- package/dist/module/peernet.js +56 -146
- package/package.json +3 -4
- package/rollup.config.js +7 -4
- package/src/codec/codec-format-interface.js +20 -4
- package/src/messages/data.js +7 -3
- package/src/peernet.js +30 -17
package/dist/browser/peernet.js
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
var PubSub = require('@vandeurenglenn/little-pubsub');
|
|
6
6
|
var sha256 = require('crypto-js/sha256');
|
|
7
7
|
var P2P = require('p2pt');
|
|
8
|
+
var LeofcoinStorage$1 = require('@leofcoin/storage');
|
|
8
9
|
var websocket = require('websocket');
|
|
9
10
|
var http$1 = require('http');
|
|
10
11
|
var Koa = require('koa');
|
|
@@ -21,6 +22,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
21
22
|
var PubSub__default = /*#__PURE__*/_interopDefaultLegacy(PubSub);
|
|
22
23
|
var sha256__default = /*#__PURE__*/_interopDefaultLegacy(sha256);
|
|
23
24
|
var P2P__default = /*#__PURE__*/_interopDefaultLegacy(P2P);
|
|
25
|
+
var LeofcoinStorage__default = /*#__PURE__*/_interopDefaultLegacy(LeofcoinStorage$1);
|
|
24
26
|
var Koa__default = /*#__PURE__*/_interopDefaultLegacy(Koa);
|
|
25
27
|
var protons__default = /*#__PURE__*/_interopDefaultLegacy(protons);
|
|
26
28
|
var bs32__default = /*#__PURE__*/_interopDefaultLegacy(bs32);
|
|
@@ -167,129 +169,7 @@ class PeernetClient {
|
|
|
167
169
|
}
|
|
168
170
|
}
|
|
169
171
|
|
|
170
|
-
|
|
171
|
-
const LevelStore = require('datastore-level');
|
|
172
|
-
const { homedir } = require('os');
|
|
173
|
-
const { join } = require('path');
|
|
174
|
-
const Key = require('interface-datastore').Key;
|
|
175
|
-
const {readdirSync, mkdirSync} = require('fs');
|
|
176
|
-
|
|
177
|
-
class LeofcoinStorage$1 {
|
|
178
|
-
|
|
179
|
-
constructor(path, root = '.leofcoin', home = true) {
|
|
180
|
-
if (!home) this.root = root;
|
|
181
|
-
else this.root = join(homedir(), root);
|
|
182
|
-
if (readdirSync) try {
|
|
183
|
-
readdirSync(this.root);
|
|
184
|
-
} catch (e) {
|
|
185
|
-
let _path = home ? homedir() : root;
|
|
186
|
-
const parts = root.split('/');
|
|
187
|
-
if (e.code === 'ENOENT') {
|
|
188
|
-
|
|
189
|
-
if (parts.length > 0) {
|
|
190
|
-
for (const path of parts) {
|
|
191
|
-
_path = join(_path, path);
|
|
192
|
-
try {
|
|
193
|
-
readdirSync(_path);
|
|
194
|
-
} catch (e) {
|
|
195
|
-
if (e.code === 'ENOENT') mkdirSync(_path);
|
|
196
|
-
else throw e
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
} else {
|
|
200
|
-
mkdirSync(this.root);
|
|
201
|
-
}
|
|
202
|
-
} else throw e
|
|
203
|
-
}
|
|
204
|
-
this.db = new LevelStore(join(this.root, path));
|
|
205
|
-
// this.db = level(path, { prefix: 'lfc-'})
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
toBuffer(value) {
|
|
209
|
-
if (Buffer.isBuffer(value)) return value;
|
|
210
|
-
if (typeof value === 'object' ||
|
|
211
|
-
typeof value === 'boolean' ||
|
|
212
|
-
!isNaN(value)) value = JSON.stringify(value);
|
|
213
|
-
|
|
214
|
-
return Buffer.from(value)
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
async many(type, _value) {
|
|
218
|
-
const jobs = [];
|
|
219
|
-
|
|
220
|
-
for (const key of Object.keys(_value)) {
|
|
221
|
-
const value = this.toBuffer(_value[key]);
|
|
222
|
-
|
|
223
|
-
jobs.push(this[type](key, value));
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
return Promise.all(jobs)
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
async put(key, value) {
|
|
230
|
-
if (typeof key === 'object') return this.many('put', key);
|
|
231
|
-
value = this.toBuffer(value);
|
|
232
|
-
|
|
233
|
-
return this.db.put(new Key(String(key)), value);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
async query() {
|
|
237
|
-
const object = {};
|
|
238
|
-
|
|
239
|
-
for await (let query of this.db.query({})) {
|
|
240
|
-
const key = query.key.baseNamespace();
|
|
241
|
-
object[key] = this.possibleJSON(query.value);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
return object
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
async get(key) {
|
|
248
|
-
if (!key) return this.query()
|
|
249
|
-
if (typeof key === 'object') return this.many('get', key);
|
|
250
|
-
let data = await this.db.get(new Key(String(key)));
|
|
251
|
-
if (!data) return undefined
|
|
252
|
-
return this.possibleJSON(data)
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
async has(key) {
|
|
256
|
-
if (typeof key === 'object') return this.many('has', key);
|
|
257
|
-
|
|
258
|
-
try {
|
|
259
|
-
await this.db.get(new Key(String(key)));
|
|
260
|
-
return true;
|
|
261
|
-
} catch (e) {
|
|
262
|
-
return false
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
async delete(key) {
|
|
267
|
-
return this.db.delete(new Key(String(key)))
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
async size() {
|
|
271
|
-
const object = await this.query();
|
|
272
|
-
return Object.keys(object).length
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
// TODO: deprecate usage possibleJSON
|
|
276
|
-
// make possibleJSON optional
|
|
277
|
-
// or release as its own package
|
|
278
|
-
possibleJSON(data) {
|
|
279
|
-
let string = data.toString();
|
|
280
|
-
if (string.charAt(0) === '{' && string.charAt(string.length - 1) === '}' ||
|
|
281
|
-
string.charAt(0) === '[' && string.charAt(string.length - 1) === ']' ||
|
|
282
|
-
string === 'true' ||
|
|
283
|
-
string === 'false' ||
|
|
284
|
-
!isNaN(string))
|
|
285
|
-
return JSON.parse(string);
|
|
286
|
-
|
|
287
|
-
return data
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
var version = "0.10.0";
|
|
172
|
+
var version = "0.10.3";
|
|
293
173
|
|
|
294
174
|
var api$1 = {
|
|
295
175
|
version: ({send}) => send({client: '@peernet/api/http', version}),
|
|
@@ -1284,7 +1164,7 @@ class PeernetHash {
|
|
|
1284
1164
|
|
|
1285
1165
|
class FormatInterface {
|
|
1286
1166
|
/**
|
|
1287
|
-
* @param {Buffer|String|Object} buffer -
|
|
1167
|
+
* @param {Buffer|String|Object} buffer - data - The data needed to create the desired message
|
|
1288
1168
|
* @param {Object} proto - {encode, decode}
|
|
1289
1169
|
* @param {Object} options - {hashFormat, name}
|
|
1290
1170
|
*/
|
|
@@ -1293,7 +1173,9 @@ class FormatInterface {
|
|
|
1293
1173
|
this.protoDecode = proto.decode;
|
|
1294
1174
|
if (options.name) this.name = options.name;
|
|
1295
1175
|
this.hashFormat = options.hashFormat || 'bs32';
|
|
1296
|
-
if (
|
|
1176
|
+
if (buffer.name === options.name) {
|
|
1177
|
+
return buffer
|
|
1178
|
+
} else if (Buffer.isBuffer(buffer)) {
|
|
1297
1179
|
const codec = new PeernetCodec(buffer);
|
|
1298
1180
|
if (codec.name) {
|
|
1299
1181
|
this.fromEncoded(buffer);
|
|
@@ -1411,8 +1293,22 @@ class FormatInterface {
|
|
|
1411
1293
|
* @param {Object} data
|
|
1412
1294
|
*/
|
|
1413
1295
|
create(data) {
|
|
1414
|
-
|
|
1415
|
-
this.
|
|
1296
|
+
const decoded = {};
|
|
1297
|
+
if (this.keys?.length > 0) {
|
|
1298
|
+
for (const key of this.keys) {
|
|
1299
|
+
Object.defineProperties(decoded, {
|
|
1300
|
+
[key]: {
|
|
1301
|
+
enumerable: true,
|
|
1302
|
+
configurable: true,
|
|
1303
|
+
set: (val) => value = data[key],
|
|
1304
|
+
get: () => data[key]
|
|
1305
|
+
}
|
|
1306
|
+
});
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
this.decoded = decoded;
|
|
1310
|
+
this.encode();
|
|
1311
|
+
}
|
|
1416
1312
|
}
|
|
1417
1313
|
}
|
|
1418
1314
|
|
|
@@ -1484,14 +1380,18 @@ message PeernetDataMessage {
|
|
|
1484
1380
|
}
|
|
1485
1381
|
`;
|
|
1486
1382
|
|
|
1383
|
+
/**
|
|
1384
|
+
* @extends {CodecFormat}
|
|
1385
|
+
*/
|
|
1487
1386
|
class DataMessage extends FormatInterface {
|
|
1488
1387
|
get keys() {
|
|
1489
1388
|
return ['hash', 'store']
|
|
1490
1389
|
}
|
|
1491
|
-
|
|
1390
|
+
/**
|
|
1391
|
+
* @param {Buffer|String|Object|DataMessage} data - The data needed to create the DataMessage
|
|
1392
|
+
*/
|
|
1492
1393
|
constructor(data) {
|
|
1493
|
-
|
|
1494
|
-
super(data, protons__default['default'](proto$7).PeernetDataMessage, {name});
|
|
1394
|
+
super(data, protons__default['default'](proto$7).PeernetDataMessage, {name: 'peernet-data'});
|
|
1495
1395
|
}
|
|
1496
1396
|
}
|
|
1497
1397
|
|
|
@@ -2016,6 +1916,10 @@ class Peernet {
|
|
|
2016
1916
|
else options.root = `.${this.network}/peernet`;
|
|
2017
1917
|
}
|
|
2018
1918
|
globalThis.peernet = this;
|
|
1919
|
+
this.bw = {
|
|
1920
|
+
up: 0,
|
|
1921
|
+
down: 0,
|
|
1922
|
+
};
|
|
2019
1923
|
return this._init(options)
|
|
2020
1924
|
}
|
|
2021
1925
|
|
|
@@ -2039,7 +1943,7 @@ class Peernet {
|
|
|
2039
1943
|
if (this.hasDaemon) {
|
|
2040
1944
|
Storage = LeofcoinStorageClient;
|
|
2041
1945
|
} else {
|
|
2042
|
-
Storage =
|
|
1946
|
+
Storage = LeofcoinStorage__default['default'];
|
|
2043
1947
|
}
|
|
2044
1948
|
globalThis[`${name}Store`] = globalThis[`${name}Store`] ||
|
|
2045
1949
|
await new Storage(`${prefix}-${name}`, root);
|
|
@@ -2228,6 +2132,7 @@ class Peernet {
|
|
|
2228
2132
|
*/
|
|
2229
2133
|
async _protoHandler(message, peer) {
|
|
2230
2134
|
const {id, proto} = message;
|
|
2135
|
+
this.bw.down += proto.encoded.length;
|
|
2231
2136
|
if (proto.name === 'peernet-peer') {
|
|
2232
2137
|
const from = proto.decoded.id;
|
|
2233
2138
|
if (!this.peerMap.has(from)) this.peerMap.set(from, [peer.id]);
|
|
@@ -2242,6 +2147,7 @@ class Peernet {
|
|
|
2242
2147
|
const node = await this.prepareMessage(from, data.encoded);
|
|
2243
2148
|
|
|
2244
2149
|
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2150
|
+
this.bw.up += node.encoded.length;
|
|
2245
2151
|
} else if (proto.name === 'peernet-peer-response') {
|
|
2246
2152
|
const from = proto.decoded.id;
|
|
2247
2153
|
if (!this.peerMap.has(from)) this.peerMap.set(from, [peer.id]);
|
|
@@ -2257,9 +2163,10 @@ class Peernet {
|
|
|
2257
2163
|
if (!from) {
|
|
2258
2164
|
const data = new PeerMessage({id: this.id});
|
|
2259
2165
|
const node = await this.prepareMessage(peer.id, data.encoded);
|
|
2260
|
-
|
|
2166
|
+
this.bw.up += node.encoded.length;
|
|
2261
2167
|
let response = await peer.request(node.encoded);
|
|
2262
2168
|
response = protoFor(response);
|
|
2169
|
+
|
|
2263
2170
|
response = new PeerMessageResponse(response.decoded.data);
|
|
2264
2171
|
|
|
2265
2172
|
from = response.decoded.id;
|
|
@@ -2287,26 +2194,26 @@ class Peernet {
|
|
|
2287
2194
|
const node = await this.prepareMessage(from, data.encoded);
|
|
2288
2195
|
|
|
2289
2196
|
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2197
|
+
this.bw.up += node.encoded.length;
|
|
2290
2198
|
} else if (proto.name === 'peernet-data') {
|
|
2291
2199
|
let { hash, store } = proto.decoded;
|
|
2292
2200
|
let data;
|
|
2293
2201
|
|
|
2294
2202
|
if (!store) {
|
|
2295
|
-
|
|
2296
|
-
} else {
|
|
2297
|
-
store = globalThis[`${store}Store`];
|
|
2298
|
-
if (store.private) {
|
|
2299
|
-
// TODO: ban
|
|
2300
|
-
return
|
|
2301
|
-
} else data = await store.get(hash);
|
|
2203
|
+
store = await this.whichStore([...this.stores], hash);
|
|
2302
2204
|
}
|
|
2205
|
+
if (store && !store.private) {
|
|
2206
|
+
data = await store.get(hash);
|
|
2303
2207
|
|
|
2304
|
-
|
|
2305
|
-
|
|
2208
|
+
if (data) {
|
|
2209
|
+
data = new DataMessageResponse({hash, data: data.decoded ? Buffer.from(JSON.stringify(data)) : Buffer.from(data)});
|
|
2306
2210
|
|
|
2307
|
-
|
|
2308
|
-
|
|
2211
|
+
const node = await this.prepareMessage(from, data.encoded);
|
|
2212
|
+
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2213
|
+
this.bw.up += node.encoded.length;
|
|
2214
|
+
}
|
|
2309
2215
|
}
|
|
2216
|
+
|
|
2310
2217
|
} else if (proto.name === 'peernet-peer') {
|
|
2311
2218
|
const from = proto.decoded.id;
|
|
2312
2219
|
if (!this.peerMap.has(from)) this.peerMap.set(from, [peer.id]);
|
|
@@ -2319,6 +2226,7 @@ class Peernet {
|
|
|
2319
2226
|
const node = await this.prepareMessage(from, data.encoded);
|
|
2320
2227
|
|
|
2321
2228
|
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2229
|
+
this.bw.up += node.encoded.length;
|
|
2322
2230
|
} else if (proto.name === 'peernet-request') {
|
|
2323
2231
|
// TODO: make dynamic
|
|
2324
2232
|
// exposeddevapi[proto.decoded.request](proto.decoded.params)
|
|
@@ -2327,6 +2235,7 @@ class Peernet {
|
|
|
2327
2235
|
const data = await method();
|
|
2328
2236
|
const node = await this.prepareMessage(from, data.encoded);
|
|
2329
2237
|
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2238
|
+
this.bw.up += node.encoded.length;
|
|
2330
2239
|
}
|
|
2331
2240
|
} else if (proto.name === 'peernet-ps' &&
|
|
2332
2241
|
this._getPeerId(peer.id) !== this.id.toString()) {
|
|
@@ -2407,7 +2316,7 @@ class Peernet {
|
|
|
2407
2316
|
get: async (hash) => {
|
|
2408
2317
|
const data = await blockStore.has(hash);
|
|
2409
2318
|
if (data) return await blockStore.get(hash)
|
|
2410
|
-
return this.requestData(hash)
|
|
2319
|
+
return this.requestData(hash, 'block')
|
|
2411
2320
|
},
|
|
2412
2321
|
put: async (hash, data) => {
|
|
2413
2322
|
if (await blockStore.has(hash)) return
|
|
@@ -2543,7 +2452,8 @@ class Peernet {
|
|
|
2543
2452
|
/**
|
|
2544
2453
|
* Get content for given hash
|
|
2545
2454
|
*
|
|
2546
|
-
* @param {String} hash
|
|
2455
|
+
* @param {String} hash - the hash of the wanted data
|
|
2456
|
+
* @param {String} store - storeName to access
|
|
2547
2457
|
*/
|
|
2548
2458
|
async get(hash, store) {
|
|
2549
2459
|
debug(`get ${hash}`);
|
|
@@ -2553,7 +2463,7 @@ class Peernet {
|
|
|
2553
2463
|
if (store && await store.has(hash)) data = await store.get(hash);
|
|
2554
2464
|
if (data) return data
|
|
2555
2465
|
|
|
2556
|
-
return this.requestData(hash,
|
|
2466
|
+
return this.requestData(hash, store)
|
|
2557
2467
|
}
|
|
2558
2468
|
|
|
2559
2469
|
/**
|
|
@@ -2561,10 +2471,11 @@ class Peernet {
|
|
|
2561
2471
|
*
|
|
2562
2472
|
* @param {String} hash
|
|
2563
2473
|
* @param {Buffer} data
|
|
2474
|
+
* @param {String} store - storeName to access
|
|
2564
2475
|
*/
|
|
2565
2476
|
async put(hash, data, store = 'data') {
|
|
2566
2477
|
store = globalThis[`${store}Store`];
|
|
2567
|
-
return
|
|
2478
|
+
return store.put(hash, data)
|
|
2568
2479
|
}
|
|
2569
2480
|
|
|
2570
2481
|
/**
|
|
@@ -2638,7 +2549,7 @@ class Peernet {
|
|
|
2638
2549
|
module.exports = Peernet;
|
|
2639
2550
|
|
|
2640
2551
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
2641
|
-
},{"@leofcoin/multi-wallet":2,"@vandeurenglenn/little-pubsub":
|
|
2552
|
+
},{"@leofcoin/multi-wallet":2,"@leofcoin/storage":3,"@vandeurenglenn/little-pubsub":4,"_process":322,"bs32":85,"bs58":86,"buffer":91,"crypto-js/sha256":118,"http":423,"https":202,"is-hex":220,"keccak":224,"koa":234,"p2pt":307,"protons":350,"varint":451,"websocket":454}],2:[function(require,module,exports){
|
|
2642
2553
|
(function (Buffer){(function (){
|
|
2643
2554
|
'use strict';
|
|
2644
2555
|
|
|
@@ -3074,11 +2985,140 @@ class MultiWallet extends HDWallet {
|
|
|
3074
2985
|
module.exports = MultiWallet;
|
|
3075
2986
|
|
|
3076
2987
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
3077
|
-
},{"bip32":
|
|
3078
|
-
|
|
2988
|
+
},{"bip32":36,"bip39":38,"bs58check":88,"buffer":91,"crypto-js/aes.js":109,"crypto-js/enc-utf8.js":113,"crypto-js/sha512.js":119,"keccak":224,"multi-signature":268,"secp256k1":385,"tiny-secp256k1":429,"varint":451}],3:[function(require,module,exports){
|
|
2989
|
+
(function (Buffer){(function (){
|
|
2990
|
+
'use strict';
|
|
2991
|
+
|
|
2992
|
+
// const level = require('level');
|
|
2993
|
+
const LevelStore = require('datastore-level');
|
|
2994
|
+
const { homedir } = require('os');
|
|
2995
|
+
const { join } = require('path');
|
|
2996
|
+
const Key = require('interface-datastore').Key;
|
|
2997
|
+
const {readdirSync, mkdirSync} = require('fs');
|
|
2998
|
+
|
|
2999
|
+
class LeofcoinStorage {
|
|
3000
|
+
|
|
3001
|
+
constructor(path, root = '.leofcoin', home = true) {
|
|
3002
|
+
if (!home) this.root = root;
|
|
3003
|
+
else this.root = join(homedir(), root);
|
|
3004
|
+
if (readdirSync) try {
|
|
3005
|
+
readdirSync(this.root);
|
|
3006
|
+
} catch (e) {
|
|
3007
|
+
let _path = home ? homedir() : root;
|
|
3008
|
+
const parts = root.split('/');
|
|
3009
|
+
if (e.code === 'ENOENT') {
|
|
3010
|
+
|
|
3011
|
+
if (parts.length > 0) {
|
|
3012
|
+
for (const path of parts) {
|
|
3013
|
+
_path = join(_path, path);
|
|
3014
|
+
try {
|
|
3015
|
+
readdirSync(_path);
|
|
3016
|
+
} catch (e) {
|
|
3017
|
+
if (e.code === 'ENOENT') mkdirSync(_path);
|
|
3018
|
+
else throw e
|
|
3019
|
+
}
|
|
3020
|
+
}
|
|
3021
|
+
} else {
|
|
3022
|
+
mkdirSync(this.root);
|
|
3023
|
+
}
|
|
3024
|
+
} else throw e
|
|
3025
|
+
}
|
|
3026
|
+
this.db = new LevelStore(join(this.root, path));
|
|
3027
|
+
// this.db = level(path, { prefix: 'lfc-'})
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
toBuffer(value) {
|
|
3031
|
+
if (Buffer.isBuffer(value)) return value;
|
|
3032
|
+
if (typeof value === 'object' ||
|
|
3033
|
+
typeof value === 'boolean' ||
|
|
3034
|
+
!isNaN(value)) value = JSON.stringify(value);
|
|
3035
|
+
|
|
3036
|
+
return Buffer.from(value)
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
async many(type, _value) {
|
|
3040
|
+
const jobs = [];
|
|
3041
|
+
|
|
3042
|
+
for (const key of Object.keys(_value)) {
|
|
3043
|
+
const value = this.toBuffer(_value[key]);
|
|
3044
|
+
|
|
3045
|
+
jobs.push(this[type](key, value));
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
return Promise.all(jobs)
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
async put(key, value) {
|
|
3052
|
+
if (typeof key === 'object') return this.many('put', key);
|
|
3053
|
+
value = this.toBuffer(value);
|
|
3054
|
+
|
|
3055
|
+
return this.db.put(new Key(String(key)), value);
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
async query() {
|
|
3059
|
+
const object = {};
|
|
3060
|
+
|
|
3061
|
+
for await (let query of this.db.query({})) {
|
|
3062
|
+
const key = query.key.baseNamespace();
|
|
3063
|
+
object[key] = this.possibleJSON(query.value);
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
return object
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3069
|
+
async get(key) {
|
|
3070
|
+
if (!key) return this.query()
|
|
3071
|
+
if (typeof key === 'object') return this.many('get', key);
|
|
3072
|
+
let data = await this.db.get(new Key(String(key)));
|
|
3073
|
+
if (!data) return undefined
|
|
3074
|
+
return this.possibleJSON(data)
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
async has(key) {
|
|
3078
|
+
if (typeof key === 'object') return this.many('has', key);
|
|
3079
|
+
|
|
3080
|
+
try {
|
|
3081
|
+
await this.db.get(new Key(String(key)));
|
|
3082
|
+
return true;
|
|
3083
|
+
} catch (e) {
|
|
3084
|
+
return false
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
async delete(key) {
|
|
3089
|
+
return this.db.delete(new Key(String(key)))
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
async size() {
|
|
3093
|
+
const object = await this.query();
|
|
3094
|
+
return Object.keys(object).length
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
// TODO: deprecate usage possibleJSON
|
|
3098
|
+
// make possibleJSON optional
|
|
3099
|
+
// or release as its own package
|
|
3100
|
+
possibleJSON(data) {
|
|
3101
|
+
let string = data.toString();
|
|
3102
|
+
if (string.charAt(0) === '{' && string.charAt(string.length - 1) === '}' ||
|
|
3103
|
+
string.charAt(0) === '[' && string.charAt(string.length - 1) === ']' ||
|
|
3104
|
+
string === 'true' ||
|
|
3105
|
+
string === 'false' ||
|
|
3106
|
+
!isNaN(string))
|
|
3107
|
+
return JSON.parse(string);
|
|
3108
|
+
|
|
3109
|
+
return data
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
module.exports = LeofcoinStorage;
|
|
3115
|
+
|
|
3116
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
3117
|
+
},{"buffer":91,"datastore-level":121,"fs":83,"interface-datastore":213,"os":306,"path":314}],4:[function(require,module,exports){
|
|
3118
|
+
/* @vandeurenglenn/little-pubsub version 1.3.0 */
|
|
3079
3119
|
'use strict';
|
|
3080
3120
|
|
|
3081
|
-
const ENVIRONMENT = {version: '1.
|
|
3121
|
+
const ENVIRONMENT = {version: '1.3.0', production: true};
|
|
3082
3122
|
|
|
3083
3123
|
class LittlePubSub {
|
|
3084
3124
|
|
|
@@ -3115,9 +3155,9 @@ class LittlePubSub {
|
|
|
3115
3155
|
if (this.subscribers[event]) {
|
|
3116
3156
|
const index = this.subscribers[event].handlers.indexOf(handler.bind(context));
|
|
3117
3157
|
this.subscribers[event].handlers.splice(index);
|
|
3118
|
-
if (this.subscribers[event].handlers.length === 0) delete this.subscribers[event];
|
|
3158
|
+
if (this.subscribers[event].handlers.length === 0) delete this.subscribers[event];
|
|
3119
3159
|
}
|
|
3120
|
-
|
|
3160
|
+
|
|
3121
3161
|
}
|
|
3122
3162
|
|
|
3123
3163
|
/**
|
|
@@ -3127,10 +3167,10 @@ class LittlePubSub {
|
|
|
3127
3167
|
publish(event, change) {
|
|
3128
3168
|
if (this.subscribers[event]) {
|
|
3129
3169
|
if (this.verbose || this.subscribers[event].value !== change) {
|
|
3170
|
+
this.subscribers[event].value = change;
|
|
3130
3171
|
this.subscribers[event].handlers.forEach(handler => {
|
|
3131
3172
|
handler(change, this.subscribers[event].value);
|
|
3132
3173
|
});
|
|
3133
|
-
this.subscribers[event].value = change;
|
|
3134
3174
|
}
|
|
3135
3175
|
}
|
|
3136
3176
|
}
|
|
@@ -3138,7 +3178,7 @@ class LittlePubSub {
|
|
|
3138
3178
|
|
|
3139
3179
|
module.exports = LittlePubSub;
|
|
3140
3180
|
|
|
3141
|
-
},{}],
|
|
3181
|
+
},{}],5:[function(require,module,exports){
|
|
3142
3182
|
function AbstractChainedBatch (db) {
|
|
3143
3183
|
if (typeof db !== 'object' || db === null) {
|
|
3144
3184
|
throw new TypeError('First argument must be an abstract-leveldown compliant store')
|
|
@@ -3221,7 +3261,7 @@ AbstractChainedBatch.prototype._write = function (options, callback) {
|
|
|
3221
3261
|
|
|
3222
3262
|
module.exports = AbstractChainedBatch
|
|
3223
3263
|
|
|
3224
|
-
},{}],
|
|
3264
|
+
},{}],6:[function(require,module,exports){
|
|
3225
3265
|
(function (process){(function (){
|
|
3226
3266
|
function AbstractIterator (db) {
|
|
3227
3267
|
if (typeof db !== 'object' || db === null) {
|
|
@@ -3297,7 +3337,7 @@ AbstractIterator.prototype._end = function (callback) {
|
|
|
3297
3337
|
module.exports = AbstractIterator
|
|
3298
3338
|
|
|
3299
3339
|
}).call(this)}).call(this,require('_process'))
|
|
3300
|
-
},{"_process":
|
|
3340
|
+
},{"_process":322}],7:[function(require,module,exports){
|
|
3301
3341
|
(function (Buffer,process){(function (){
|
|
3302
3342
|
var xtend = require('xtend')
|
|
3303
3343
|
var AbstractIterator = require('./abstract-iterator')
|
|
@@ -3564,12 +3604,12 @@ AbstractLevelDOWN.prototype._checkValue = function (value) {
|
|
|
3564
3604
|
module.exports = AbstractLevelDOWN
|
|
3565
3605
|
|
|
3566
3606
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")},require('_process'))
|
|
3567
|
-
},{"../is-buffer/index.js":
|
|
3607
|
+
},{"../is-buffer/index.js":218,"./abstract-chained-batch":5,"./abstract-iterator":6,"_process":322,"xtend":458}],8:[function(require,module,exports){
|
|
3568
3608
|
exports.AbstractLevelDOWN = require('./abstract-leveldown')
|
|
3569
3609
|
exports.AbstractIterator = require('./abstract-iterator')
|
|
3570
3610
|
exports.AbstractChainedBatch = require('./abstract-chained-batch')
|
|
3571
3611
|
|
|
3572
|
-
},{"./abstract-chained-batch":
|
|
3612
|
+
},{"./abstract-chained-batch":5,"./abstract-iterator":6,"./abstract-leveldown":7}],9:[function(require,module,exports){
|
|
3573
3613
|
/*!
|
|
3574
3614
|
* accepts
|
|
3575
3615
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -3809,10 +3849,10 @@ function validMime (type) {
|
|
|
3809
3849
|
return typeof type === 'string'
|
|
3810
3850
|
}
|
|
3811
3851
|
|
|
3812
|
-
},{"mime-types":
|
|
3852
|
+
},{"mime-types":264,"negotiator":298}],10:[function(require,module,exports){
|
|
3813
3853
|
module.exports = require('./register')().Promise
|
|
3814
3854
|
|
|
3815
|
-
},{"./register":
|
|
3855
|
+
},{"./register":12}],11:[function(require,module,exports){
|
|
3816
3856
|
"use strict"
|
|
3817
3857
|
// global key for user preferred registration
|
|
3818
3858
|
var REGISTRATION_KEY = '@@any-promise/REGISTRATION',
|
|
@@ -3892,7 +3932,7 @@ module.exports = function(root, loadImplementation){
|
|
|
3892
3932
|
}
|
|
3893
3933
|
}
|
|
3894
3934
|
|
|
3895
|
-
},{}],
|
|
3935
|
+
},{}],12:[function(require,module,exports){
|
|
3896
3936
|
"use strict";
|
|
3897
3937
|
module.exports = require('./loader')(window, loadImplementation)
|
|
3898
3938
|
|
|
@@ -3912,7 +3952,7 @@ function loadImplementation(){
|
|
|
3912
3952
|
}
|
|
3913
3953
|
}
|
|
3914
3954
|
|
|
3915
|
-
},{"./loader":
|
|
3955
|
+
},{"./loader":11}],13:[function(require,module,exports){
|
|
3916
3956
|
'use strict';
|
|
3917
3957
|
|
|
3918
3958
|
const asn1 = exports;
|
|
@@ -3925,7 +3965,7 @@ asn1.constants = require('./asn1/constants');
|
|
|
3925
3965
|
asn1.decoders = require('./asn1/decoders');
|
|
3926
3966
|
asn1.encoders = require('./asn1/encoders');
|
|
3927
3967
|
|
|
3928
|
-
},{"./asn1/api":
|
|
3968
|
+
},{"./asn1/api":14,"./asn1/base":16,"./asn1/constants":20,"./asn1/decoders":22,"./asn1/encoders":25,"bn.js":27}],14:[function(require,module,exports){
|
|
3929
3969
|
'use strict';
|
|
3930
3970
|
|
|
3931
3971
|
const encoders = require('./encoders');
|
|
@@ -3984,7 +4024,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) {
|
|
|
3984
4024
|
return this._getEncoder(enc).encode(data, reporter);
|
|
3985
4025
|
};
|
|
3986
4026
|
|
|
3987
|
-
},{"./decoders":
|
|
4027
|
+
},{"./decoders":22,"./encoders":25,"inherits":210}],15:[function(require,module,exports){
|
|
3988
4028
|
'use strict';
|
|
3989
4029
|
|
|
3990
4030
|
const inherits = require('inherits');
|
|
@@ -4139,7 +4179,7 @@ EncoderBuffer.prototype.join = function join(out, offset) {
|
|
|
4139
4179
|
return out;
|
|
4140
4180
|
};
|
|
4141
4181
|
|
|
4142
|
-
},{"../base/reporter":
|
|
4182
|
+
},{"../base/reporter":18,"inherits":210,"safer-buffer":384}],16:[function(require,module,exports){
|
|
4143
4183
|
'use strict';
|
|
4144
4184
|
|
|
4145
4185
|
const base = exports;
|
|
@@ -4149,7 +4189,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer;
|
|
|
4149
4189
|
base.EncoderBuffer = require('./buffer').EncoderBuffer;
|
|
4150
4190
|
base.Node = require('./node');
|
|
4151
4191
|
|
|
4152
|
-
},{"./buffer":
|
|
4192
|
+
},{"./buffer":15,"./node":17,"./reporter":18}],17:[function(require,module,exports){
|
|
4153
4193
|
'use strict';
|
|
4154
4194
|
|
|
4155
4195
|
const Reporter = require('../base/reporter').Reporter;
|
|
@@ -4789,7 +4829,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) {
|
|
|
4789
4829
|
return /^[A-Za-z0-9 '()+,-./:=?]*$/.test(str);
|
|
4790
4830
|
};
|
|
4791
4831
|
|
|
4792
|
-
},{"../base/buffer":
|
|
4832
|
+
},{"../base/buffer":15,"../base/reporter":18,"minimalistic-assert":265}],18:[function(require,module,exports){
|
|
4793
4833
|
'use strict';
|
|
4794
4834
|
|
|
4795
4835
|
const inherits = require('inherits');
|
|
@@ -4914,7 +4954,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) {
|
|
|
4914
4954
|
return this;
|
|
4915
4955
|
};
|
|
4916
4956
|
|
|
4917
|
-
},{"inherits":
|
|
4957
|
+
},{"inherits":210}],19:[function(require,module,exports){
|
|
4918
4958
|
'use strict';
|
|
4919
4959
|
|
|
4920
4960
|
// Helper
|
|
@@ -4974,7 +5014,7 @@ exports.tag = {
|
|
|
4974
5014
|
};
|
|
4975
5015
|
exports.tagByName = reverse(exports.tag);
|
|
4976
5016
|
|
|
4977
|
-
},{}],
|
|
5017
|
+
},{}],20:[function(require,module,exports){
|
|
4978
5018
|
'use strict';
|
|
4979
5019
|
|
|
4980
5020
|
const constants = exports;
|
|
@@ -4997,7 +5037,7 @@ constants._reverse = function reverse(map) {
|
|
|
4997
5037
|
|
|
4998
5038
|
constants.der = require('./der');
|
|
4999
5039
|
|
|
5000
|
-
},{"./der":
|
|
5040
|
+
},{"./der":19}],21:[function(require,module,exports){
|
|
5001
5041
|
'use strict';
|
|
5002
5042
|
|
|
5003
5043
|
const inherits = require('inherits');
|
|
@@ -5334,7 +5374,7 @@ function derDecodeLen(buf, primitive, fail) {
|
|
|
5334
5374
|
return len;
|
|
5335
5375
|
}
|
|
5336
5376
|
|
|
5337
|
-
},{"../base/buffer":
|
|
5377
|
+
},{"../base/buffer":15,"../base/node":17,"../constants/der":19,"bn.js":27,"inherits":210}],22:[function(require,module,exports){
|
|
5338
5378
|
'use strict';
|
|
5339
5379
|
|
|
5340
5380
|
const decoders = exports;
|
|
@@ -5342,7 +5382,7 @@ const decoders = exports;
|
|
|
5342
5382
|
decoders.der = require('./der');
|
|
5343
5383
|
decoders.pem = require('./pem');
|
|
5344
5384
|
|
|
5345
|
-
},{"./der":
|
|
5385
|
+
},{"./der":21,"./pem":23}],23:[function(require,module,exports){
|
|
5346
5386
|
'use strict';
|
|
5347
5387
|
|
|
5348
5388
|
const inherits = require('inherits');
|
|
@@ -5395,7 +5435,7 @@ PEMDecoder.prototype.decode = function decode(data, options) {
|
|
|
5395
5435
|
return DERDecoder.prototype.decode.call(this, input, options);
|
|
5396
5436
|
};
|
|
5397
5437
|
|
|
5398
|
-
},{"./der":
|
|
5438
|
+
},{"./der":21,"inherits":210,"safer-buffer":384}],24:[function(require,module,exports){
|
|
5399
5439
|
'use strict';
|
|
5400
5440
|
|
|
5401
5441
|
const inherits = require('inherits');
|
|
@@ -5692,7 +5732,7 @@ function encodeTag(tag, primitive, cls, reporter) {
|
|
|
5692
5732
|
return res;
|
|
5693
5733
|
}
|
|
5694
5734
|
|
|
5695
|
-
},{"../base/node":
|
|
5735
|
+
},{"../base/node":17,"../constants/der":19,"inherits":210,"safer-buffer":384}],25:[function(require,module,exports){
|
|
5696
5736
|
'use strict';
|
|
5697
5737
|
|
|
5698
5738
|
const encoders = exports;
|
|
@@ -5700,7 +5740,7 @@ const encoders = exports;
|
|
|
5700
5740
|
encoders.der = require('./der');
|
|
5701
5741
|
encoders.pem = require('./pem');
|
|
5702
5742
|
|
|
5703
|
-
},{"./der":
|
|
5743
|
+
},{"./der":24,"./pem":26}],26:[function(require,module,exports){
|
|
5704
5744
|
'use strict';
|
|
5705
5745
|
|
|
5706
5746
|
const inherits = require('inherits');
|
|
@@ -5725,7 +5765,7 @@ PEMEncoder.prototype.encode = function encode(data, options) {
|
|
|
5725
5765
|
return out.join('\n');
|
|
5726
5766
|
};
|
|
5727
5767
|
|
|
5728
|
-
},{"./der":
|
|
5768
|
+
},{"./der":24,"inherits":210}],27:[function(require,module,exports){
|
|
5729
5769
|
(function (module, exports) {
|
|
5730
5770
|
'use strict';
|
|
5731
5771
|
|
|
@@ -9173,7 +9213,7 @@ PEMEncoder.prototype.encode = function encode(data, options) {
|
|
|
9173
9213
|
};
|
|
9174
9214
|
})(typeof module === 'undefined' || module, this);
|
|
9175
9215
|
|
|
9176
|
-
},{"buffer":
|
|
9216
|
+
},{"buffer":55}],28:[function(require,module,exports){
|
|
9177
9217
|
(function (global){(function (){
|
|
9178
9218
|
'use strict';
|
|
9179
9219
|
|
|
@@ -9683,7 +9723,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
9683
9723
|
};
|
|
9684
9724
|
|
|
9685
9725
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
9686
|
-
},{"object-assign":
|
|
9726
|
+
},{"object-assign":303,"util/":31}],29:[function(require,module,exports){
|
|
9687
9727
|
if (typeof Object.create === 'function') {
|
|
9688
9728
|
// implementation from standard node.js 'util' module
|
|
9689
9729
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -9708,14 +9748,14 @@ if (typeof Object.create === 'function') {
|
|
|
9708
9748
|
}
|
|
9709
9749
|
}
|
|
9710
9750
|
|
|
9711
|
-
},{}],
|
|
9751
|
+
},{}],30:[function(require,module,exports){
|
|
9712
9752
|
module.exports = function isBuffer(arg) {
|
|
9713
9753
|
return arg && typeof arg === 'object'
|
|
9714
9754
|
&& typeof arg.copy === 'function'
|
|
9715
9755
|
&& typeof arg.fill === 'function'
|
|
9716
9756
|
&& typeof arg.readUInt8 === 'function';
|
|
9717
9757
|
}
|
|
9718
|
-
},{}],
|
|
9758
|
+
},{}],31:[function(require,module,exports){
|
|
9719
9759
|
(function (process,global){(function (){
|
|
9720
9760
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
9721
9761
|
//
|
|
@@ -10305,7 +10345,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
10305
10345
|
}
|
|
10306
10346
|
|
|
10307
10347
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
10308
|
-
},{"./support/isBuffer":
|
|
10348
|
+
},{"./support/isBuffer":30,"_process":322,"inherits":29}],32:[function(require,module,exports){
|
|
10309
10349
|
'use strict'
|
|
10310
10350
|
// base-x encoding / decoding
|
|
10311
10351
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -10430,7 +10470,7 @@ function base (ALPHABET) {
|
|
|
10430
10470
|
}
|
|
10431
10471
|
module.exports = base
|
|
10432
10472
|
|
|
10433
|
-
},{"safe-buffer":
|
|
10473
|
+
},{"safe-buffer":383}],33:[function(require,module,exports){
|
|
10434
10474
|
'use strict'
|
|
10435
10475
|
|
|
10436
10476
|
exports.byteLength = byteLength
|
|
@@ -10584,7 +10624,7 @@ function fromByteArray (uint8) {
|
|
|
10584
10624
|
return parts.join('')
|
|
10585
10625
|
}
|
|
10586
10626
|
|
|
10587
|
-
},{}],
|
|
10627
|
+
},{}],34:[function(require,module,exports){
|
|
10588
10628
|
(function (Buffer){(function (){
|
|
10589
10629
|
"use strict";
|
|
10590
10630
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10885,7 +10925,7 @@ function fromSeed(seed, network) {
|
|
|
10885
10925
|
exports.fromSeed = fromSeed;
|
|
10886
10926
|
|
|
10887
10927
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
10888
|
-
},{"./crypto":
|
|
10928
|
+
},{"./crypto":35,"bs58check":88,"buffer":91,"tiny-secp256k1":429,"typeforce":438,"wif":457}],35:[function(require,module,exports){
|
|
10889
10929
|
"use strict";
|
|
10890
10930
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10891
10931
|
const createHash = require('create-hash');
|
|
@@ -10913,7 +10953,7 @@ function hmacSHA512(key, data) {
|
|
|
10913
10953
|
}
|
|
10914
10954
|
exports.hmacSHA512 = hmacSHA512;
|
|
10915
10955
|
|
|
10916
|
-
},{"create-hash":
|
|
10956
|
+
},{"create-hash":104,"create-hmac":106}],36:[function(require,module,exports){
|
|
10917
10957
|
"use strict";
|
|
10918
10958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10919
10959
|
var bip32_1 = require("./bip32");
|
|
@@ -10922,7 +10962,7 @@ exports.fromBase58 = bip32_1.fromBase58;
|
|
|
10922
10962
|
exports.fromPublicKey = bip32_1.fromPublicKey;
|
|
10923
10963
|
exports.fromPrivateKey = bip32_1.fromPrivateKey;
|
|
10924
10964
|
|
|
10925
|
-
},{"./bip32":
|
|
10965
|
+
},{"./bip32":34}],37:[function(require,module,exports){
|
|
10926
10966
|
"use strict";
|
|
10927
10967
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10928
10968
|
// browserify by default only pulls in files that are hard coded in requires
|
|
@@ -10985,7 +11025,7 @@ try {
|
|
|
10985
11025
|
}
|
|
10986
11026
|
catch (err) { }
|
|
10987
11027
|
|
|
10988
|
-
},{"./wordlists/chinese_simplified.json":
|
|
11028
|
+
},{"./wordlists/chinese_simplified.json":39,"./wordlists/chinese_traditional.json":40,"./wordlists/czech.json":41,"./wordlists/english.json":42,"./wordlists/french.json":43,"./wordlists/italian.json":44,"./wordlists/japanese.json":45,"./wordlists/korean.json":46,"./wordlists/portuguese.json":47,"./wordlists/spanish.json":48}],38:[function(require,module,exports){
|
|
10989
11029
|
(function (Buffer){(function (){
|
|
10990
11030
|
"use strict";
|
|
10991
11031
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -11170,7 +11210,7 @@ var _wordlists_2 = require("./_wordlists");
|
|
|
11170
11210
|
exports.wordlists = _wordlists_2.wordlists;
|
|
11171
11211
|
|
|
11172
11212
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
11173
|
-
},{"./_wordlists":
|
|
11213
|
+
},{"./_wordlists":37,"buffer":91,"create-hash":104,"pbkdf2":315,"randombytes":364}],39:[function(require,module,exports){
|
|
11174
11214
|
module.exports=[
|
|
11175
11215
|
"的",
|
|
11176
11216
|
"一",
|
|
@@ -13222,7 +13262,7 @@ module.exports=[
|
|
|
13222
13262
|
"歇"
|
|
13223
13263
|
]
|
|
13224
13264
|
|
|
13225
|
-
},{}],
|
|
13265
|
+
},{}],40:[function(require,module,exports){
|
|
13226
13266
|
module.exports=[
|
|
13227
13267
|
"的",
|
|
13228
13268
|
"一",
|
|
@@ -15274,7 +15314,7 @@ module.exports=[
|
|
|
15274
15314
|
"歇"
|
|
15275
15315
|
]
|
|
15276
15316
|
|
|
15277
|
-
},{}],
|
|
15317
|
+
},{}],41:[function(require,module,exports){
|
|
15278
15318
|
module.exports=[
|
|
15279
15319
|
"abdikace",
|
|
15280
15320
|
"abeceda",
|
|
@@ -17326,7 +17366,7 @@ module.exports=[
|
|
|
17326
17366
|
"zvyk"
|
|
17327
17367
|
]
|
|
17328
17368
|
|
|
17329
|
-
},{}],
|
|
17369
|
+
},{}],42:[function(require,module,exports){
|
|
17330
17370
|
module.exports=[
|
|
17331
17371
|
"abandon",
|
|
17332
17372
|
"ability",
|
|
@@ -19378,7 +19418,7 @@ module.exports=[
|
|
|
19378
19418
|
"zoo"
|
|
19379
19419
|
]
|
|
19380
19420
|
|
|
19381
|
-
},{}],
|
|
19421
|
+
},{}],43:[function(require,module,exports){
|
|
19382
19422
|
module.exports=[
|
|
19383
19423
|
"abaisser",
|
|
19384
19424
|
"abandon",
|
|
@@ -21430,7 +21470,7 @@ module.exports=[
|
|
|
21430
21470
|
"zoologie"
|
|
21431
21471
|
]
|
|
21432
21472
|
|
|
21433
|
-
},{}],
|
|
21473
|
+
},{}],44:[function(require,module,exports){
|
|
21434
21474
|
module.exports=[
|
|
21435
21475
|
"abaco",
|
|
21436
21476
|
"abbaglio",
|
|
@@ -23482,7 +23522,7 @@ module.exports=[
|
|
|
23482
23522
|
"zuppa"
|
|
23483
23523
|
]
|
|
23484
23524
|
|
|
23485
|
-
},{}],
|
|
23525
|
+
},{}],45:[function(require,module,exports){
|
|
23486
23526
|
module.exports=[
|
|
23487
23527
|
"あいこくしん",
|
|
23488
23528
|
"あいさつ",
|
|
@@ -25534,7 +25574,7 @@ module.exports=[
|
|
|
25534
25574
|
"われる"
|
|
25535
25575
|
]
|
|
25536
25576
|
|
|
25537
|
-
},{}],
|
|
25577
|
+
},{}],46:[function(require,module,exports){
|
|
25538
25578
|
module.exports=[
|
|
25539
25579
|
"가격",
|
|
25540
25580
|
"가끔",
|
|
@@ -27586,7 +27626,7 @@ module.exports=[
|
|
|
27586
27626
|
"힘껏"
|
|
27587
27627
|
]
|
|
27588
27628
|
|
|
27589
|
-
},{}],
|
|
27629
|
+
},{}],47:[function(require,module,exports){
|
|
27590
27630
|
module.exports=[
|
|
27591
27631
|
"abacate",
|
|
27592
27632
|
"abaixo",
|
|
@@ -29638,7 +29678,7 @@ module.exports=[
|
|
|
29638
29678
|
"zumbido"
|
|
29639
29679
|
]
|
|
29640
29680
|
|
|
29641
|
-
},{}],
|
|
29681
|
+
},{}],48:[function(require,module,exports){
|
|
29642
29682
|
module.exports=[
|
|
29643
29683
|
"ábaco",
|
|
29644
29684
|
"abdomen",
|
|
@@ -31690,7 +31730,7 @@ module.exports=[
|
|
|
31690
31730
|
"zurdo"
|
|
31691
31731
|
]
|
|
31692
31732
|
|
|
31693
|
-
},{}],
|
|
31733
|
+
},{}],49:[function(require,module,exports){
|
|
31694
31734
|
const EventEmitter = require('events')
|
|
31695
31735
|
|
|
31696
31736
|
class Tracker extends EventEmitter {
|
|
@@ -31720,7 +31760,7 @@ class Tracker extends EventEmitter {
|
|
|
31720
31760
|
|
|
31721
31761
|
module.exports = Tracker
|
|
31722
31762
|
|
|
31723
|
-
},{"events":
|
|
31763
|
+
},{"events":178}],50:[function(require,module,exports){
|
|
31724
31764
|
const debug = require('debug')('bittorrent-tracker:websocket-tracker')
|
|
31725
31765
|
const Peer = require('simple-peer')
|
|
31726
31766
|
const randombytes = require('randombytes')
|
|
@@ -32154,7 +32194,7 @@ function noop () {}
|
|
|
32154
32194
|
|
|
32155
32195
|
module.exports = WebSocketTracker
|
|
32156
32196
|
|
|
32157
|
-
},{"../common":
|
|
32197
|
+
},{"../common":51,"./tracker":49,"debug":122,"randombytes":364,"simple-peer":402,"simple-websocket":52}],51:[function(require,module,exports){
|
|
32158
32198
|
(function (Buffer){(function (){
|
|
32159
32199
|
/**
|
|
32160
32200
|
* Functions/constants needed by both the client and server.
|
|
@@ -32181,7 +32221,7 @@ var config = require('./common-node')
|
|
|
32181
32221
|
Object.assign(exports, config)
|
|
32182
32222
|
|
|
32183
32223
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32184
|
-
},{"./common-node":
|
|
32224
|
+
},{"./common-node":55,"buffer":91}],52:[function(require,module,exports){
|
|
32185
32225
|
(function (Buffer){(function (){
|
|
32186
32226
|
/* global WebSocket, DOMException */
|
|
32187
32227
|
|
|
@@ -32446,7 +32486,7 @@ Socket.WEBSOCKET_SUPPORT = !!_WebSocket
|
|
|
32446
32486
|
module.exports = Socket
|
|
32447
32487
|
|
|
32448
32488
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32449
|
-
},{"buffer":
|
|
32489
|
+
},{"buffer":91,"debug":122,"queue-microtask":363,"randombytes":364,"readable-stream":380,"ws":55}],53:[function(require,module,exports){
|
|
32450
32490
|
(function (module, exports) {
|
|
32451
32491
|
'use strict';
|
|
32452
32492
|
|
|
@@ -35988,7 +36028,7 @@ module.exports = Socket
|
|
|
35988
36028
|
};
|
|
35989
36029
|
})(typeof module === 'undefined' || module, this);
|
|
35990
36030
|
|
|
35991
|
-
},{"buffer":
|
|
36031
|
+
},{"buffer":55}],54:[function(require,module,exports){
|
|
35992
36032
|
var r;
|
|
35993
36033
|
|
|
35994
36034
|
module.exports = function rand(len) {
|
|
@@ -36055,9 +36095,9 @@ if (typeof self === 'object') {
|
|
|
36055
36095
|
}
|
|
36056
36096
|
}
|
|
36057
36097
|
|
|
36058
|
-
},{"crypto":
|
|
36098
|
+
},{"crypto":55}],55:[function(require,module,exports){
|
|
36059
36099
|
|
|
36060
|
-
},{}],
|
|
36100
|
+
},{}],56:[function(require,module,exports){
|
|
36061
36101
|
// based on the aes implimentation in triple sec
|
|
36062
36102
|
// https://github.com/keybase/triplesec
|
|
36063
36103
|
// which is in turn based on the one from crypto-js
|
|
@@ -36287,7 +36327,7 @@ AES.prototype.scrub = function () {
|
|
|
36287
36327
|
|
|
36288
36328
|
module.exports.AES = AES
|
|
36289
36329
|
|
|
36290
|
-
},{"safe-buffer":
|
|
36330
|
+
},{"safe-buffer":383}],57:[function(require,module,exports){
|
|
36291
36331
|
var aes = require('./aes')
|
|
36292
36332
|
var Buffer = require('safe-buffer').Buffer
|
|
36293
36333
|
var Transform = require('cipher-base')
|
|
@@ -36406,7 +36446,7 @@ StreamCipher.prototype.setAAD = function setAAD (buf) {
|
|
|
36406
36446
|
|
|
36407
36447
|
module.exports = StreamCipher
|
|
36408
36448
|
|
|
36409
|
-
},{"./aes":
|
|
36449
|
+
},{"./aes":56,"./ghash":61,"./incr32":62,"buffer-xor":90,"cipher-base":94,"inherits":210,"safe-buffer":383}],58:[function(require,module,exports){
|
|
36410
36450
|
var ciphers = require('./encrypter')
|
|
36411
36451
|
var deciphers = require('./decrypter')
|
|
36412
36452
|
var modes = require('./modes/list.json')
|
|
@@ -36421,7 +36461,7 @@ exports.createDecipher = exports.Decipher = deciphers.createDecipher
|
|
|
36421
36461
|
exports.createDecipheriv = exports.Decipheriv = deciphers.createDecipheriv
|
|
36422
36462
|
exports.listCiphers = exports.getCiphers = getCiphers
|
|
36423
36463
|
|
|
36424
|
-
},{"./decrypter":
|
|
36464
|
+
},{"./decrypter":59,"./encrypter":60,"./modes/list.json":70}],59:[function(require,module,exports){
|
|
36425
36465
|
var AuthCipher = require('./authCipher')
|
|
36426
36466
|
var Buffer = require('safe-buffer').Buffer
|
|
36427
36467
|
var MODES = require('./modes')
|
|
@@ -36547,7 +36587,7 @@ function createDecipher (suite, password) {
|
|
|
36547
36587
|
exports.createDecipher = createDecipher
|
|
36548
36588
|
exports.createDecipheriv = createDecipheriv
|
|
36549
36589
|
|
|
36550
|
-
},{"./aes":
|
|
36590
|
+
},{"./aes":56,"./authCipher":57,"./modes":69,"./streamCipher":72,"cipher-base":94,"evp_bytestokey":179,"inherits":210,"safe-buffer":383}],60:[function(require,module,exports){
|
|
36551
36591
|
var MODES = require('./modes')
|
|
36552
36592
|
var AuthCipher = require('./authCipher')
|
|
36553
36593
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -36663,7 +36703,7 @@ function createCipher (suite, password) {
|
|
|
36663
36703
|
exports.createCipheriv = createCipheriv
|
|
36664
36704
|
exports.createCipher = createCipher
|
|
36665
36705
|
|
|
36666
|
-
},{"./aes":
|
|
36706
|
+
},{"./aes":56,"./authCipher":57,"./modes":69,"./streamCipher":72,"cipher-base":94,"evp_bytestokey":179,"inherits":210,"safe-buffer":383}],61:[function(require,module,exports){
|
|
36667
36707
|
var Buffer = require('safe-buffer').Buffer
|
|
36668
36708
|
var ZEROES = Buffer.alloc(16, 0)
|
|
36669
36709
|
|
|
@@ -36754,7 +36794,7 @@ GHASH.prototype.final = function (abl, bl) {
|
|
|
36754
36794
|
|
|
36755
36795
|
module.exports = GHASH
|
|
36756
36796
|
|
|
36757
|
-
},{"safe-buffer":
|
|
36797
|
+
},{"safe-buffer":383}],62:[function(require,module,exports){
|
|
36758
36798
|
function incr32 (iv) {
|
|
36759
36799
|
var len = iv.length
|
|
36760
36800
|
var item
|
|
@@ -36771,7 +36811,7 @@ function incr32 (iv) {
|
|
|
36771
36811
|
}
|
|
36772
36812
|
module.exports = incr32
|
|
36773
36813
|
|
|
36774
|
-
},{}],
|
|
36814
|
+
},{}],63:[function(require,module,exports){
|
|
36775
36815
|
var xor = require('buffer-xor')
|
|
36776
36816
|
|
|
36777
36817
|
exports.encrypt = function (self, block) {
|
|
@@ -36790,7 +36830,7 @@ exports.decrypt = function (self, block) {
|
|
|
36790
36830
|
return xor(out, pad)
|
|
36791
36831
|
}
|
|
36792
36832
|
|
|
36793
|
-
},{"buffer-xor":
|
|
36833
|
+
},{"buffer-xor":90}],64:[function(require,module,exports){
|
|
36794
36834
|
var Buffer = require('safe-buffer').Buffer
|
|
36795
36835
|
var xor = require('buffer-xor')
|
|
36796
36836
|
|
|
@@ -36825,7 +36865,7 @@ exports.encrypt = function (self, data, decrypt) {
|
|
|
36825
36865
|
return out
|
|
36826
36866
|
}
|
|
36827
36867
|
|
|
36828
|
-
},{"buffer-xor":
|
|
36868
|
+
},{"buffer-xor":90,"safe-buffer":383}],65:[function(require,module,exports){
|
|
36829
36869
|
var Buffer = require('safe-buffer').Buffer
|
|
36830
36870
|
|
|
36831
36871
|
function encryptByte (self, byteParam, decrypt) {
|
|
@@ -36869,7 +36909,7 @@ exports.encrypt = function (self, chunk, decrypt) {
|
|
|
36869
36909
|
return out
|
|
36870
36910
|
}
|
|
36871
36911
|
|
|
36872
|
-
},{"safe-buffer":
|
|
36912
|
+
},{"safe-buffer":383}],66:[function(require,module,exports){
|
|
36873
36913
|
var Buffer = require('safe-buffer').Buffer
|
|
36874
36914
|
|
|
36875
36915
|
function encryptByte (self, byteParam, decrypt) {
|
|
@@ -36896,7 +36936,7 @@ exports.encrypt = function (self, chunk, decrypt) {
|
|
|
36896
36936
|
return out
|
|
36897
36937
|
}
|
|
36898
36938
|
|
|
36899
|
-
},{"safe-buffer":
|
|
36939
|
+
},{"safe-buffer":383}],67:[function(require,module,exports){
|
|
36900
36940
|
var xor = require('buffer-xor')
|
|
36901
36941
|
var Buffer = require('safe-buffer').Buffer
|
|
36902
36942
|
var incr32 = require('../incr32')
|
|
@@ -36928,7 +36968,7 @@ exports.encrypt = function (self, chunk) {
|
|
|
36928
36968
|
return xor(chunk, pad)
|
|
36929
36969
|
}
|
|
36930
36970
|
|
|
36931
|
-
},{"../incr32":
|
|
36971
|
+
},{"../incr32":62,"buffer-xor":90,"safe-buffer":383}],68:[function(require,module,exports){
|
|
36932
36972
|
exports.encrypt = function (self, block) {
|
|
36933
36973
|
return self._cipher.encryptBlock(block)
|
|
36934
36974
|
}
|
|
@@ -36937,7 +36977,7 @@ exports.decrypt = function (self, block) {
|
|
|
36937
36977
|
return self._cipher.decryptBlock(block)
|
|
36938
36978
|
}
|
|
36939
36979
|
|
|
36940
|
-
},{}],
|
|
36980
|
+
},{}],69:[function(require,module,exports){
|
|
36941
36981
|
var modeModules = {
|
|
36942
36982
|
ECB: require('./ecb'),
|
|
36943
36983
|
CBC: require('./cbc'),
|
|
@@ -36957,7 +36997,7 @@ for (var key in modes) {
|
|
|
36957
36997
|
|
|
36958
36998
|
module.exports = modes
|
|
36959
36999
|
|
|
36960
|
-
},{"./cbc":
|
|
37000
|
+
},{"./cbc":63,"./cfb":64,"./cfb1":65,"./cfb8":66,"./ctr":67,"./ecb":68,"./list.json":70,"./ofb":71}],70:[function(require,module,exports){
|
|
36961
37001
|
module.exports={
|
|
36962
37002
|
"aes-128-ecb": {
|
|
36963
37003
|
"cipher": "AES",
|
|
@@ -37150,7 +37190,7 @@ module.exports={
|
|
|
37150
37190
|
}
|
|
37151
37191
|
}
|
|
37152
37192
|
|
|
37153
|
-
},{}],
|
|
37193
|
+
},{}],71:[function(require,module,exports){
|
|
37154
37194
|
(function (Buffer){(function (){
|
|
37155
37195
|
var xor = require('buffer-xor')
|
|
37156
37196
|
|
|
@@ -37170,7 +37210,7 @@ exports.encrypt = function (self, chunk) {
|
|
|
37170
37210
|
}
|
|
37171
37211
|
|
|
37172
37212
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
37173
|
-
},{"buffer":
|
|
37213
|
+
},{"buffer":91,"buffer-xor":90}],72:[function(require,module,exports){
|
|
37174
37214
|
var aes = require('./aes')
|
|
37175
37215
|
var Buffer = require('safe-buffer').Buffer
|
|
37176
37216
|
var Transform = require('cipher-base')
|
|
@@ -37199,7 +37239,7 @@ StreamCipher.prototype._final = function () {
|
|
|
37199
37239
|
|
|
37200
37240
|
module.exports = StreamCipher
|
|
37201
37241
|
|
|
37202
|
-
},{"./aes":
|
|
37242
|
+
},{"./aes":56,"cipher-base":94,"inherits":210,"safe-buffer":383}],73:[function(require,module,exports){
|
|
37203
37243
|
var DES = require('browserify-des')
|
|
37204
37244
|
var aes = require('browserify-aes/browser')
|
|
37205
37245
|
var aesModes = require('browserify-aes/modes')
|
|
@@ -37268,7 +37308,7 @@ exports.createDecipher = exports.Decipher = createDecipher
|
|
|
37268
37308
|
exports.createDecipheriv = exports.Decipheriv = createDecipheriv
|
|
37269
37309
|
exports.listCiphers = exports.getCiphers = getCiphers
|
|
37270
37310
|
|
|
37271
|
-
},{"browserify-aes/browser":
|
|
37311
|
+
},{"browserify-aes/browser":58,"browserify-aes/modes":69,"browserify-des":74,"browserify-des/modes":75,"evp_bytestokey":179}],74:[function(require,module,exports){
|
|
37272
37312
|
var CipherBase = require('cipher-base')
|
|
37273
37313
|
var des = require('des.js')
|
|
37274
37314
|
var inherits = require('inherits')
|
|
@@ -37320,7 +37360,7 @@ DES.prototype._final = function () {
|
|
|
37320
37360
|
return Buffer.from(this._des.final())
|
|
37321
37361
|
}
|
|
37322
37362
|
|
|
37323
|
-
},{"cipher-base":
|
|
37363
|
+
},{"cipher-base":94,"des.js":136,"inherits":210,"safe-buffer":383}],75:[function(require,module,exports){
|
|
37324
37364
|
exports['des-ecb'] = {
|
|
37325
37365
|
key: 8,
|
|
37326
37366
|
iv: 0
|
|
@@ -37346,7 +37386,7 @@ exports['des-ede'] = {
|
|
|
37346
37386
|
iv: 0
|
|
37347
37387
|
}
|
|
37348
37388
|
|
|
37349
|
-
},{}],
|
|
37389
|
+
},{}],76:[function(require,module,exports){
|
|
37350
37390
|
(function (Buffer){(function (){
|
|
37351
37391
|
var BN = require('bn.js')
|
|
37352
37392
|
var randomBytes = require('randombytes')
|
|
@@ -37385,10 +37425,10 @@ crt.getr = getr
|
|
|
37385
37425
|
module.exports = crt
|
|
37386
37426
|
|
|
37387
37427
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
37388
|
-
},{"bn.js":
|
|
37428
|
+
},{"bn.js":53,"buffer":91,"randombytes":364}],77:[function(require,module,exports){
|
|
37389
37429
|
module.exports = require('./browser/algorithms.json')
|
|
37390
37430
|
|
|
37391
|
-
},{"./browser/algorithms.json":
|
|
37431
|
+
},{"./browser/algorithms.json":78}],78:[function(require,module,exports){
|
|
37392
37432
|
module.exports={
|
|
37393
37433
|
"sha224WithRSAEncryption": {
|
|
37394
37434
|
"sign": "rsa",
|
|
@@ -37542,7 +37582,7 @@ module.exports={
|
|
|
37542
37582
|
}
|
|
37543
37583
|
}
|
|
37544
37584
|
|
|
37545
|
-
},{}],
|
|
37585
|
+
},{}],79:[function(require,module,exports){
|
|
37546
37586
|
module.exports={
|
|
37547
37587
|
"1.3.132.0.10": "secp256k1",
|
|
37548
37588
|
"1.3.132.0.33": "p224",
|
|
@@ -37552,7 +37592,7 @@ module.exports={
|
|
|
37552
37592
|
"1.3.132.0.35": "p521"
|
|
37553
37593
|
}
|
|
37554
37594
|
|
|
37555
|
-
},{}],
|
|
37595
|
+
},{}],80:[function(require,module,exports){
|
|
37556
37596
|
var Buffer = require('safe-buffer').Buffer
|
|
37557
37597
|
var createHash = require('create-hash')
|
|
37558
37598
|
var stream = require('readable-stream')
|
|
@@ -37646,7 +37686,7 @@ module.exports = {
|
|
|
37646
37686
|
createVerify: createVerify
|
|
37647
37687
|
}
|
|
37648
37688
|
|
|
37649
|
-
},{"./algorithms.json":
|
|
37689
|
+
},{"./algorithms.json":78,"./sign":81,"./verify":82,"create-hash":104,"inherits":210,"readable-stream":380,"safe-buffer":383}],81:[function(require,module,exports){
|
|
37650
37690
|
// much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js
|
|
37651
37691
|
var Buffer = require('safe-buffer').Buffer
|
|
37652
37692
|
var createHmac = require('create-hmac')
|
|
@@ -37791,7 +37831,7 @@ module.exports = sign
|
|
|
37791
37831
|
module.exports.getKey = getKey
|
|
37792
37832
|
module.exports.makeKey = makeKey
|
|
37793
37833
|
|
|
37794
|
-
},{"./curves.json":
|
|
37834
|
+
},{"./curves.json":79,"bn.js":53,"browserify-rsa":76,"create-hmac":106,"elliptic":149,"parse-asn1":312,"safe-buffer":383}],82:[function(require,module,exports){
|
|
37795
37835
|
// much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js
|
|
37796
37836
|
var Buffer = require('safe-buffer').Buffer
|
|
37797
37837
|
var BN = require('bn.js')
|
|
@@ -37877,9 +37917,9 @@ function checkValue (b, q) {
|
|
|
37877
37917
|
|
|
37878
37918
|
module.exports = verify
|
|
37879
37919
|
|
|
37880
|
-
},{"./curves.json":
|
|
37881
|
-
arguments[4][
|
|
37882
|
-
},{"dup":
|
|
37920
|
+
},{"./curves.json":79,"bn.js":53,"elliptic":149,"parse-asn1":312,"safe-buffer":383}],83:[function(require,module,exports){
|
|
37921
|
+
arguments[4][55][0].apply(exports,arguments)
|
|
37922
|
+
},{"dup":55}],84:[function(require,module,exports){
|
|
37883
37923
|
(function (Buffer){(function (){
|
|
37884
37924
|
/*!
|
|
37885
37925
|
* base32.js - base32 for bcrypto
|
|
@@ -38167,18 +38207,18 @@ exports.test = test;
|
|
|
38167
38207
|
exports.testHex = testHex;
|
|
38168
38208
|
|
|
38169
38209
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38170
|
-
},{"bsert":
|
|
38210
|
+
},{"bsert":89,"buffer":91}],85:[function(require,module,exports){
|
|
38171
38211
|
'use strict';
|
|
38172
38212
|
|
|
38173
38213
|
module.exports = require('./base32');
|
|
38174
38214
|
|
|
38175
|
-
},{"./base32":
|
|
38215
|
+
},{"./base32":84}],86:[function(require,module,exports){
|
|
38176
38216
|
var basex = require('base-x')
|
|
38177
38217
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
38178
38218
|
|
|
38179
38219
|
module.exports = basex(ALPHABET)
|
|
38180
38220
|
|
|
38181
|
-
},{"base-x":
|
|
38221
|
+
},{"base-x":32}],87:[function(require,module,exports){
|
|
38182
38222
|
'use strict'
|
|
38183
38223
|
|
|
38184
38224
|
var base58 = require('bs58')
|
|
@@ -38230,7 +38270,7 @@ module.exports = function (checksumFn) {
|
|
|
38230
38270
|
}
|
|
38231
38271
|
}
|
|
38232
38272
|
|
|
38233
|
-
},{"bs58":
|
|
38273
|
+
},{"bs58":86,"safe-buffer":383}],88:[function(require,module,exports){
|
|
38234
38274
|
'use strict'
|
|
38235
38275
|
|
|
38236
38276
|
var createHash = require('create-hash')
|
|
@@ -38244,7 +38284,7 @@ function sha256x2 (buffer) {
|
|
|
38244
38284
|
|
|
38245
38285
|
module.exports = bs58checkBase(sha256x2)
|
|
38246
38286
|
|
|
38247
|
-
},{"./base":
|
|
38287
|
+
},{"./base":87,"create-hash":104}],89:[function(require,module,exports){
|
|
38248
38288
|
/*!
|
|
38249
38289
|
* assert.js - assertions for javascript
|
|
38250
38290
|
* Copyright (c) 2018, Christopher Jeffrey (MIT License).
|
|
@@ -39210,7 +39250,7 @@ assert.range = range;
|
|
|
39210
39250
|
|
|
39211
39251
|
module.exports = assert;
|
|
39212
39252
|
|
|
39213
|
-
},{}],
|
|
39253
|
+
},{}],90:[function(require,module,exports){
|
|
39214
39254
|
(function (Buffer){(function (){
|
|
39215
39255
|
module.exports = function xor (a, b) {
|
|
39216
39256
|
var length = Math.min(a.length, b.length)
|
|
@@ -39224,7 +39264,7 @@ module.exports = function xor (a, b) {
|
|
|
39224
39264
|
}
|
|
39225
39265
|
|
|
39226
39266
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
39227
|
-
},{"buffer":
|
|
39267
|
+
},{"buffer":91}],91:[function(require,module,exports){
|
|
39228
39268
|
(function (Buffer){(function (){
|
|
39229
39269
|
/*!
|
|
39230
39270
|
* The buffer module from node.js, for the browser.
|
|
@@ -41005,7 +41045,7 @@ function numberIsNaN (obj) {
|
|
|
41005
41045
|
}
|
|
41006
41046
|
|
|
41007
41047
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
41008
|
-
},{"base64-js":
|
|
41048
|
+
},{"base64-js":33,"buffer":91,"ieee754":203}],92:[function(require,module,exports){
|
|
41009
41049
|
module.exports = {
|
|
41010
41050
|
"100": "Continue",
|
|
41011
41051
|
"101": "Switching Protocols",
|
|
@@ -41071,7 +41111,7 @@ module.exports = {
|
|
|
41071
41111
|
"511": "Network Authentication Required"
|
|
41072
41112
|
}
|
|
41073
41113
|
|
|
41074
|
-
},{}],
|
|
41114
|
+
},{}],93:[function(require,module,exports){
|
|
41075
41115
|
'use strict';
|
|
41076
41116
|
|
|
41077
41117
|
const mimeTypes = require('mime-types');
|
|
@@ -41088,7 +41128,7 @@ module.exports = type => {
|
|
|
41088
41128
|
return mimeType;
|
|
41089
41129
|
};
|
|
41090
41130
|
|
|
41091
|
-
},{"mime-types":
|
|
41131
|
+
},{"mime-types":264,"ylru":460}],94:[function(require,module,exports){
|
|
41092
41132
|
var Buffer = require('safe-buffer').Buffer
|
|
41093
41133
|
var Transform = require('stream').Transform
|
|
41094
41134
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -41189,7 +41229,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
41189
41229
|
|
|
41190
41230
|
module.exports = CipherBase
|
|
41191
41231
|
|
|
41192
|
-
},{"inherits":
|
|
41232
|
+
},{"inherits":210,"safe-buffer":383,"stream":407,"string_decoder":427}],95:[function(require,module,exports){
|
|
41193
41233
|
'use strict';
|
|
41194
41234
|
|
|
41195
41235
|
function withIs(Class, { className, symbolName }) {
|
|
@@ -41257,7 +41297,7 @@ function withIsProto(Class, { className, symbolName, withoutNew }) {
|
|
|
41257
41297
|
module.exports = withIs;
|
|
41258
41298
|
module.exports.proto = withIsProto;
|
|
41259
41299
|
|
|
41260
|
-
},{}],
|
|
41300
|
+
},{}],96:[function(require,module,exports){
|
|
41261
41301
|
|
|
41262
41302
|
/**
|
|
41263
41303
|
* slice() reference.
|
|
@@ -41496,7 +41536,7 @@ function isObject(val) {
|
|
|
41496
41536
|
return Object == val.constructor;
|
|
41497
41537
|
}
|
|
41498
41538
|
|
|
41499
|
-
},{}],
|
|
41539
|
+
},{}],97:[function(require,module,exports){
|
|
41500
41540
|
/*!
|
|
41501
41541
|
* content-disposition
|
|
41502
41542
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -41956,7 +41996,7 @@ function ContentDisposition (type, parameters) {
|
|
|
41956
41996
|
this.parameters = parameters
|
|
41957
41997
|
}
|
|
41958
41998
|
|
|
41959
|
-
},{"path":
|
|
41999
|
+
},{"path":314,"safe-buffer":98}],98:[function(require,module,exports){
|
|
41960
42000
|
/* eslint-disable node/no-deprecated-api */
|
|
41961
42001
|
var buffer = require('buffer')
|
|
41962
42002
|
var Buffer = buffer.Buffer
|
|
@@ -42020,7 +42060,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
42020
42060
|
return buffer.SlowBuffer(size)
|
|
42021
42061
|
}
|
|
42022
42062
|
|
|
42023
|
-
},{"buffer":
|
|
42063
|
+
},{"buffer":91}],99:[function(require,module,exports){
|
|
42024
42064
|
/*!
|
|
42025
42065
|
* content-type
|
|
42026
42066
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
@@ -42244,7 +42284,7 @@ function ContentType (type) {
|
|
|
42244
42284
|
this.type = type
|
|
42245
42285
|
}
|
|
42246
42286
|
|
|
42247
|
-
},{}],
|
|
42287
|
+
},{}],100:[function(require,module,exports){
|
|
42248
42288
|
/*!
|
|
42249
42289
|
* cookies
|
|
42250
42290
|
* Copyright(c) 2014 Jed Schmidt, http://jed.is/
|
|
@@ -42470,7 +42510,7 @@ Cookies.Cookie = Cookie
|
|
|
42470
42510
|
|
|
42471
42511
|
module.exports = Cookies
|
|
42472
42512
|
|
|
42473
|
-
},{"depd":
|
|
42513
|
+
},{"depd":135,"http":423,"keygrip":230}],101:[function(require,module,exports){
|
|
42474
42514
|
(function (Buffer){(function (){
|
|
42475
42515
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
42476
42516
|
//
|
|
@@ -42581,7 +42621,7 @@ function objectToString(o) {
|
|
|
42581
42621
|
}
|
|
42582
42622
|
|
|
42583
42623
|
}).call(this)}).call(this,{"isBuffer":require("../../is-buffer/index.js")})
|
|
42584
|
-
},{"../../is-buffer/index.js":
|
|
42624
|
+
},{"../../is-buffer/index.js":218}],102:[function(require,module,exports){
|
|
42585
42625
|
(function (Buffer){(function (){
|
|
42586
42626
|
var elliptic = require('elliptic')
|
|
42587
42627
|
var BN = require('bn.js')
|
|
@@ -42709,9 +42749,9 @@ function formatReturnValue (bn, enc, len) {
|
|
|
42709
42749
|
}
|
|
42710
42750
|
|
|
42711
42751
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
42712
|
-
},{"bn.js":
|
|
42713
|
-
arguments[4][
|
|
42714
|
-
},{"buffer":
|
|
42752
|
+
},{"bn.js":103,"buffer":91,"elliptic":149}],103:[function(require,module,exports){
|
|
42753
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
42754
|
+
},{"buffer":55,"dup":27}],104:[function(require,module,exports){
|
|
42715
42755
|
'use strict'
|
|
42716
42756
|
var inherits = require('inherits')
|
|
42717
42757
|
var MD5 = require('md5.js')
|
|
@@ -42743,14 +42783,14 @@ module.exports = function createHash (alg) {
|
|
|
42743
42783
|
return new Hash(sha(alg))
|
|
42744
42784
|
}
|
|
42745
42785
|
|
|
42746
|
-
},{"cipher-base":
|
|
42786
|
+
},{"cipher-base":94,"inherits":210,"md5.js":258,"ripemd160":381,"sha.js":390}],105:[function(require,module,exports){
|
|
42747
42787
|
var MD5 = require('md5.js')
|
|
42748
42788
|
|
|
42749
42789
|
module.exports = function (buffer) {
|
|
42750
42790
|
return new MD5().update(buffer).digest()
|
|
42751
42791
|
}
|
|
42752
42792
|
|
|
42753
|
-
},{"md5.js":
|
|
42793
|
+
},{"md5.js":258}],106:[function(require,module,exports){
|
|
42754
42794
|
'use strict'
|
|
42755
42795
|
var inherits = require('inherits')
|
|
42756
42796
|
var Legacy = require('./legacy')
|
|
@@ -42814,7 +42854,7 @@ module.exports = function createHmac (alg, key) {
|
|
|
42814
42854
|
return new Hmac(alg, key)
|
|
42815
42855
|
}
|
|
42816
42856
|
|
|
42817
|
-
},{"./legacy":
|
|
42857
|
+
},{"./legacy":107,"cipher-base":94,"create-hash/md5":105,"inherits":210,"ripemd160":381,"safe-buffer":383,"sha.js":390}],107:[function(require,module,exports){
|
|
42818
42858
|
'use strict'
|
|
42819
42859
|
var inherits = require('inherits')
|
|
42820
42860
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -42862,7 +42902,7 @@ Hmac.prototype._final = function () {
|
|
|
42862
42902
|
}
|
|
42863
42903
|
module.exports = Hmac
|
|
42864
42904
|
|
|
42865
|
-
},{"cipher-base":
|
|
42905
|
+
},{"cipher-base":94,"inherits":210,"safe-buffer":383}],108:[function(require,module,exports){
|
|
42866
42906
|
'use strict'
|
|
42867
42907
|
|
|
42868
42908
|
exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes')
|
|
@@ -42961,7 +43001,7 @@ exports.constants = {
|
|
|
42961
43001
|
'POINT_CONVERSION_HYBRID': 6
|
|
42962
43002
|
}
|
|
42963
43003
|
|
|
42964
|
-
},{"browserify-cipher":
|
|
43004
|
+
},{"browserify-cipher":73,"browserify-sign":80,"browserify-sign/algos":77,"create-ecdh":102,"create-hash":104,"create-hmac":106,"diffie-hellman":143,"pbkdf2":315,"public-encrypt":352,"randombytes":364,"randomfill":365}],109:[function(require,module,exports){
|
|
42965
43005
|
;(function (root, factory, undef) {
|
|
42966
43006
|
if (typeof exports === "object") {
|
|
42967
43007
|
// CommonJS
|
|
@@ -43196,7 +43236,7 @@ exports.constants = {
|
|
|
43196
43236
|
return CryptoJS.AES;
|
|
43197
43237
|
|
|
43198
43238
|
}));
|
|
43199
|
-
},{"./cipher-core":
|
|
43239
|
+
},{"./cipher-core":110,"./core":111,"./enc-base64":112,"./evpkdf":114,"./md5":116}],110:[function(require,module,exports){
|
|
43200
43240
|
;(function (root, factory, undef) {
|
|
43201
43241
|
if (typeof exports === "object") {
|
|
43202
43242
|
// CommonJS
|
|
@@ -44087,7 +44127,7 @@ exports.constants = {
|
|
|
44087
44127
|
|
|
44088
44128
|
|
|
44089
44129
|
}));
|
|
44090
|
-
},{"./core":
|
|
44130
|
+
},{"./core":111,"./evpkdf":114}],111:[function(require,module,exports){
|
|
44091
44131
|
(function (global){(function (){
|
|
44092
44132
|
;(function (root, factory) {
|
|
44093
44133
|
if (typeof exports === "object") {
|
|
@@ -44897,7 +44937,7 @@ exports.constants = {
|
|
|
44897
44937
|
|
|
44898
44938
|
}));
|
|
44899
44939
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
44900
|
-
},{"crypto":
|
|
44940
|
+
},{"crypto":55}],112:[function(require,module,exports){
|
|
44901
44941
|
;(function (root, factory) {
|
|
44902
44942
|
if (typeof exports === "object") {
|
|
44903
44943
|
// CommonJS
|
|
@@ -45034,7 +45074,7 @@ exports.constants = {
|
|
|
45034
45074
|
return CryptoJS.enc.Base64;
|
|
45035
45075
|
|
|
45036
45076
|
}));
|
|
45037
|
-
},{"./core":
|
|
45077
|
+
},{"./core":111}],113:[function(require,module,exports){
|
|
45038
45078
|
;(function (root, factory) {
|
|
45039
45079
|
if (typeof exports === "object") {
|
|
45040
45080
|
// CommonJS
|
|
@@ -45053,7 +45093,7 @@ exports.constants = {
|
|
|
45053
45093
|
return CryptoJS.enc.Utf8;
|
|
45054
45094
|
|
|
45055
45095
|
}));
|
|
45056
|
-
},{"./core":
|
|
45096
|
+
},{"./core":111}],114:[function(require,module,exports){
|
|
45057
45097
|
;(function (root, factory, undef) {
|
|
45058
45098
|
if (typeof exports === "object") {
|
|
45059
45099
|
// CommonJS
|
|
@@ -45188,7 +45228,7 @@ exports.constants = {
|
|
|
45188
45228
|
return CryptoJS.EvpKDF;
|
|
45189
45229
|
|
|
45190
45230
|
}));
|
|
45191
|
-
},{"./core":
|
|
45231
|
+
},{"./core":111,"./hmac":115,"./sha1":117}],115:[function(require,module,exports){
|
|
45192
45232
|
;(function (root, factory) {
|
|
45193
45233
|
if (typeof exports === "object") {
|
|
45194
45234
|
// CommonJS
|
|
@@ -45332,7 +45372,7 @@ exports.constants = {
|
|
|
45332
45372
|
|
|
45333
45373
|
|
|
45334
45374
|
}));
|
|
45335
|
-
},{"./core":
|
|
45375
|
+
},{"./core":111}],116:[function(require,module,exports){
|
|
45336
45376
|
;(function (root, factory) {
|
|
45337
45377
|
if (typeof exports === "object") {
|
|
45338
45378
|
// CommonJS
|
|
@@ -45601,7 +45641,7 @@ exports.constants = {
|
|
|
45601
45641
|
return CryptoJS.MD5;
|
|
45602
45642
|
|
|
45603
45643
|
}));
|
|
45604
|
-
},{"./core":
|
|
45644
|
+
},{"./core":111}],117:[function(require,module,exports){
|
|
45605
45645
|
;(function (root, factory) {
|
|
45606
45646
|
if (typeof exports === "object") {
|
|
45607
45647
|
// CommonJS
|
|
@@ -45752,7 +45792,7 @@ exports.constants = {
|
|
|
45752
45792
|
return CryptoJS.SHA1;
|
|
45753
45793
|
|
|
45754
45794
|
}));
|
|
45755
|
-
},{"./core":
|
|
45795
|
+
},{"./core":111}],118:[function(require,module,exports){
|
|
45756
45796
|
;(function (root, factory) {
|
|
45757
45797
|
if (typeof exports === "object") {
|
|
45758
45798
|
// CommonJS
|
|
@@ -45952,7 +45992,7 @@ exports.constants = {
|
|
|
45952
45992
|
return CryptoJS.SHA256;
|
|
45953
45993
|
|
|
45954
45994
|
}));
|
|
45955
|
-
},{"./core":
|
|
45995
|
+
},{"./core":111}],119:[function(require,module,exports){
|
|
45956
45996
|
;(function (root, factory, undef) {
|
|
45957
45997
|
if (typeof exports === "object") {
|
|
45958
45998
|
// CommonJS
|
|
@@ -46279,7 +46319,7 @@ exports.constants = {
|
|
|
46279
46319
|
return CryptoJS.SHA512;
|
|
46280
46320
|
|
|
46281
46321
|
}));
|
|
46282
|
-
},{"./core":
|
|
46322
|
+
},{"./core":111,"./x64-core":120}],120:[function(require,module,exports){
|
|
46283
46323
|
;(function (root, factory) {
|
|
46284
46324
|
if (typeof exports === "object") {
|
|
46285
46325
|
// CommonJS
|
|
@@ -46584,7 +46624,7 @@ exports.constants = {
|
|
|
46584
46624
|
return CryptoJS;
|
|
46585
46625
|
|
|
46586
46626
|
}));
|
|
46587
|
-
},{"./core":
|
|
46627
|
+
},{"./core":111}],121:[function(require,module,exports){
|
|
46588
46628
|
(function (Buffer){(function (){
|
|
46589
46629
|
'use strict'
|
|
46590
46630
|
|
|
@@ -46776,7 +46816,7 @@ function levelIteratorToIterator (li) {
|
|
|
46776
46816
|
module.exports = LevelDatastore
|
|
46777
46817
|
|
|
46778
46818
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
46779
|
-
},{"buffer":
|
|
46819
|
+
},{"buffer":91,"interface-datastore":213,"level":252}],122:[function(require,module,exports){
|
|
46780
46820
|
(function (process){(function (){
|
|
46781
46821
|
/* eslint-env browser */
|
|
46782
46822
|
|
|
@@ -47039,7 +47079,7 @@ formatters.j = function (v) {
|
|
|
47039
47079
|
};
|
|
47040
47080
|
|
|
47041
47081
|
}).call(this)}).call(this,require('_process'))
|
|
47042
|
-
},{"./common":
|
|
47082
|
+
},{"./common":123,"_process":322}],123:[function(require,module,exports){
|
|
47043
47083
|
|
|
47044
47084
|
/**
|
|
47045
47085
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -47305,7 +47345,7 @@ function setup(env) {
|
|
|
47305
47345
|
|
|
47306
47346
|
module.exports = setup;
|
|
47307
47347
|
|
|
47308
|
-
},{"ms":
|
|
47348
|
+
},{"ms":267}],124:[function(require,module,exports){
|
|
47309
47349
|
var pSlice = Array.prototype.slice;
|
|
47310
47350
|
var objectKeys = require('./lib/keys.js');
|
|
47311
47351
|
var isArguments = require('./lib/is_arguments.js');
|
|
@@ -47401,7 +47441,7 @@ function objEquiv(a, b, opts) {
|
|
|
47401
47441
|
return typeof a === typeof b;
|
|
47402
47442
|
}
|
|
47403
47443
|
|
|
47404
|
-
},{"./lib/is_arguments.js":
|
|
47444
|
+
},{"./lib/is_arguments.js":125,"./lib/keys.js":126}],125:[function(require,module,exports){
|
|
47405
47445
|
var supportsArgumentsClass = (function(){
|
|
47406
47446
|
return Object.prototype.toString.call(arguments)
|
|
47407
47447
|
})() == '[object Arguments]';
|
|
@@ -47423,7 +47463,7 @@ function unsupported(object){
|
|
|
47423
47463
|
false;
|
|
47424
47464
|
};
|
|
47425
47465
|
|
|
47426
|
-
},{}],
|
|
47466
|
+
},{}],126:[function(require,module,exports){
|
|
47427
47467
|
exports = module.exports = typeof Object.keys === 'function'
|
|
47428
47468
|
? Object.keys : shim;
|
|
47429
47469
|
|
|
@@ -47434,7 +47474,7 @@ function shim (obj) {
|
|
|
47434
47474
|
return keys;
|
|
47435
47475
|
}
|
|
47436
47476
|
|
|
47437
|
-
},{}],
|
|
47477
|
+
},{}],127:[function(require,module,exports){
|
|
47438
47478
|
var AbstractIterator = require('abstract-leveldown').AbstractIterator
|
|
47439
47479
|
var inherits = require('inherits')
|
|
47440
47480
|
|
|
@@ -47473,7 +47513,7 @@ DeferredIterator.prototype.seek = function () {
|
|
|
47473
47513
|
|
|
47474
47514
|
module.exports = DeferredIterator
|
|
47475
47515
|
|
|
47476
|
-
},{"abstract-leveldown":
|
|
47516
|
+
},{"abstract-leveldown":132,"inherits":210}],128:[function(require,module,exports){
|
|
47477
47517
|
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN
|
|
47478
47518
|
var inherits = require('inherits')
|
|
47479
47519
|
var DeferredIterator = require('./deferred-iterator')
|
|
@@ -47572,7 +47612,7 @@ DeferredLevelDOWN.prototype._serializeValue = function (value) {
|
|
|
47572
47612
|
module.exports = DeferredLevelDOWN
|
|
47573
47613
|
module.exports.DeferredIterator = DeferredIterator
|
|
47574
47614
|
|
|
47575
|
-
},{"./deferred-iterator":
|
|
47615
|
+
},{"./deferred-iterator":127,"abstract-leveldown":132,"inherits":210}],129:[function(require,module,exports){
|
|
47576
47616
|
var nextTick = require('./next-tick')
|
|
47577
47617
|
|
|
47578
47618
|
function AbstractChainedBatch (db) {
|
|
@@ -47660,7 +47700,7 @@ AbstractChainedBatch.prototype._nextTick = nextTick
|
|
|
47660
47700
|
|
|
47661
47701
|
module.exports = AbstractChainedBatch
|
|
47662
47702
|
|
|
47663
|
-
},{"./next-tick":
|
|
47703
|
+
},{"./next-tick":133}],130:[function(require,module,exports){
|
|
47664
47704
|
var nextTick = require('./next-tick')
|
|
47665
47705
|
|
|
47666
47706
|
function AbstractIterator (db) {
|
|
@@ -47739,7 +47779,7 @@ AbstractIterator.prototype._nextTick = nextTick
|
|
|
47739
47779
|
|
|
47740
47780
|
module.exports = AbstractIterator
|
|
47741
47781
|
|
|
47742
|
-
},{"./next-tick":
|
|
47782
|
+
},{"./next-tick":133}],131:[function(require,module,exports){
|
|
47743
47783
|
var xtend = require('xtend')
|
|
47744
47784
|
var supports = require('level-supports')
|
|
47745
47785
|
var Buffer = require('buffer').Buffer
|
|
@@ -48061,12 +48101,12 @@ AbstractLevelDOWN.prototype._nextTick = nextTick
|
|
|
48061
48101
|
|
|
48062
48102
|
module.exports = AbstractLevelDOWN
|
|
48063
48103
|
|
|
48064
|
-
},{"./abstract-chained-batch":
|
|
48065
|
-
arguments[4][
|
|
48066
|
-
},{"./abstract-chained-batch":
|
|
48104
|
+
},{"./abstract-chained-batch":129,"./abstract-iterator":130,"./next-tick":133,"buffer":91,"level-supports":251,"xtend":458}],132:[function(require,module,exports){
|
|
48105
|
+
arguments[4][8][0].apply(exports,arguments)
|
|
48106
|
+
},{"./abstract-chained-batch":129,"./abstract-iterator":130,"./abstract-leveldown":131,"dup":8}],133:[function(require,module,exports){
|
|
48067
48107
|
module.exports = require('immediate')
|
|
48068
48108
|
|
|
48069
|
-
},{"immediate":
|
|
48109
|
+
},{"immediate":204}],134:[function(require,module,exports){
|
|
48070
48110
|
|
|
48071
48111
|
/**
|
|
48072
48112
|
* Expose `Delegator`.
|
|
@@ -48189,7 +48229,7 @@ Delegator.prototype.fluent = function (name) {
|
|
|
48189
48229
|
return this;
|
|
48190
48230
|
};
|
|
48191
48231
|
|
|
48192
|
-
},{}],
|
|
48232
|
+
},{}],135:[function(require,module,exports){
|
|
48193
48233
|
/*!
|
|
48194
48234
|
* depd
|
|
48195
48235
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
@@ -48268,7 +48308,7 @@ function wrapproperty (obj, prop, message) {
|
|
|
48268
48308
|
}
|
|
48269
48309
|
}
|
|
48270
48310
|
|
|
48271
|
-
},{}],
|
|
48311
|
+
},{}],136:[function(require,module,exports){
|
|
48272
48312
|
'use strict';
|
|
48273
48313
|
|
|
48274
48314
|
exports.utils = require('./des/utils');
|
|
@@ -48277,7 +48317,7 @@ exports.DES = require('./des/des');
|
|
|
48277
48317
|
exports.CBC = require('./des/cbc');
|
|
48278
48318
|
exports.EDE = require('./des/ede');
|
|
48279
48319
|
|
|
48280
|
-
},{"./des/cbc":
|
|
48320
|
+
},{"./des/cbc":137,"./des/cipher":138,"./des/des":139,"./des/ede":140,"./des/utils":141}],137:[function(require,module,exports){
|
|
48281
48321
|
'use strict';
|
|
48282
48322
|
|
|
48283
48323
|
var assert = require('minimalistic-assert');
|
|
@@ -48344,7 +48384,7 @@ proto._update = function _update(inp, inOff, out, outOff) {
|
|
|
48344
48384
|
}
|
|
48345
48385
|
};
|
|
48346
48386
|
|
|
48347
|
-
},{"inherits":
|
|
48387
|
+
},{"inherits":210,"minimalistic-assert":265}],138:[function(require,module,exports){
|
|
48348
48388
|
'use strict';
|
|
48349
48389
|
|
|
48350
48390
|
var assert = require('minimalistic-assert');
|
|
@@ -48487,7 +48527,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() {
|
|
|
48487
48527
|
return this._unpad(out);
|
|
48488
48528
|
};
|
|
48489
48529
|
|
|
48490
|
-
},{"minimalistic-assert":
|
|
48530
|
+
},{"minimalistic-assert":265}],139:[function(require,module,exports){
|
|
48491
48531
|
'use strict';
|
|
48492
48532
|
|
|
48493
48533
|
var assert = require('minimalistic-assert');
|
|
@@ -48631,7 +48671,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) {
|
|
|
48631
48671
|
utils.rip(l, r, out, off);
|
|
48632
48672
|
};
|
|
48633
48673
|
|
|
48634
|
-
},{"./cipher":
|
|
48674
|
+
},{"./cipher":138,"./utils":141,"inherits":210,"minimalistic-assert":265}],140:[function(require,module,exports){
|
|
48635
48675
|
'use strict';
|
|
48636
48676
|
|
|
48637
48677
|
var assert = require('minimalistic-assert');
|
|
@@ -48687,7 +48727,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) {
|
|
|
48687
48727
|
EDE.prototype._pad = DES.prototype._pad;
|
|
48688
48728
|
EDE.prototype._unpad = DES.prototype._unpad;
|
|
48689
48729
|
|
|
48690
|
-
},{"./cipher":
|
|
48730
|
+
},{"./cipher":138,"./des":139,"inherits":210,"minimalistic-assert":265}],141:[function(require,module,exports){
|
|
48691
48731
|
'use strict';
|
|
48692
48732
|
|
|
48693
48733
|
exports.readUInt32BE = function readUInt32BE(bytes, off) {
|
|
@@ -48945,7 +48985,7 @@ exports.padSplit = function padSplit(num, size, group) {
|
|
|
48945
48985
|
return out.join(' ');
|
|
48946
48986
|
};
|
|
48947
48987
|
|
|
48948
|
-
},{}],
|
|
48988
|
+
},{}],142:[function(require,module,exports){
|
|
48949
48989
|
/*!
|
|
48950
48990
|
* destroy
|
|
48951
48991
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -49022,7 +49062,7 @@ function onOpenClose() {
|
|
|
49022
49062
|
}
|
|
49023
49063
|
}
|
|
49024
49064
|
|
|
49025
|
-
},{"fs":
|
|
49065
|
+
},{"fs":83,"stream":407}],143:[function(require,module,exports){
|
|
49026
49066
|
(function (Buffer){(function (){
|
|
49027
49067
|
var generatePrime = require('./lib/generatePrime')
|
|
49028
49068
|
var primes = require('./lib/primes.json')
|
|
@@ -49068,7 +49108,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi
|
|
|
49068
49108
|
exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman
|
|
49069
49109
|
|
|
49070
49110
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
49071
|
-
},{"./lib/dh":
|
|
49111
|
+
},{"./lib/dh":144,"./lib/generatePrime":145,"./lib/primes.json":146,"buffer":91}],144:[function(require,module,exports){
|
|
49072
49112
|
(function (Buffer){(function (){
|
|
49073
49113
|
var BN = require('bn.js');
|
|
49074
49114
|
var MillerRabin = require('miller-rabin');
|
|
@@ -49236,7 +49276,7 @@ function formatReturnValue(bn, enc) {
|
|
|
49236
49276
|
}
|
|
49237
49277
|
|
|
49238
49278
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
49239
|
-
},{"./generatePrime":
|
|
49279
|
+
},{"./generatePrime":145,"bn.js":147,"buffer":91,"miller-rabin":260,"randombytes":364}],145:[function(require,module,exports){
|
|
49240
49280
|
var randomBytes = require('randombytes');
|
|
49241
49281
|
module.exports = findPrime;
|
|
49242
49282
|
findPrime.simpleSieve = simpleSieve;
|
|
@@ -49343,7 +49383,7 @@ function findPrime(bits, gen) {
|
|
|
49343
49383
|
|
|
49344
49384
|
}
|
|
49345
49385
|
|
|
49346
|
-
},{"bn.js":
|
|
49386
|
+
},{"bn.js":147,"miller-rabin":260,"randombytes":364}],146:[function(require,module,exports){
|
|
49347
49387
|
module.exports={
|
|
49348
49388
|
"modp1": {
|
|
49349
49389
|
"gen": "02",
|
|
@@ -49378,9 +49418,9 @@ module.exports={
|
|
|
49378
49418
|
"prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"
|
|
49379
49419
|
}
|
|
49380
49420
|
}
|
|
49381
|
-
},{}],
|
|
49382
|
-
arguments[4][
|
|
49383
|
-
},{"buffer":
|
|
49421
|
+
},{}],147:[function(require,module,exports){
|
|
49422
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
49423
|
+
},{"buffer":55,"dup":27}],148:[function(require,module,exports){
|
|
49384
49424
|
/*!
|
|
49385
49425
|
* ee-first
|
|
49386
49426
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -49477,7 +49517,7 @@ function listener(event, done) {
|
|
|
49477
49517
|
}
|
|
49478
49518
|
}
|
|
49479
49519
|
|
|
49480
|
-
},{}],
|
|
49520
|
+
},{}],149:[function(require,module,exports){
|
|
49481
49521
|
'use strict';
|
|
49482
49522
|
|
|
49483
49523
|
var elliptic = exports;
|
|
@@ -49492,7 +49532,7 @@ elliptic.curves = require('./elliptic/curves');
|
|
|
49492
49532
|
elliptic.ec = require('./elliptic/ec');
|
|
49493
49533
|
elliptic.eddsa = require('./elliptic/eddsa');
|
|
49494
49534
|
|
|
49495
|
-
},{"../package.json":
|
|
49535
|
+
},{"../package.json":165,"./elliptic/curve":152,"./elliptic/curves":155,"./elliptic/ec":156,"./elliptic/eddsa":159,"./elliptic/utils":163,"brorand":54}],150:[function(require,module,exports){
|
|
49496
49536
|
'use strict';
|
|
49497
49537
|
|
|
49498
49538
|
var BN = require('bn.js');
|
|
@@ -49870,7 +49910,7 @@ BasePoint.prototype.dblp = function dblp(k) {
|
|
|
49870
49910
|
return r;
|
|
49871
49911
|
};
|
|
49872
49912
|
|
|
49873
|
-
},{"../utils":
|
|
49913
|
+
},{"../utils":163,"bn.js":164}],151:[function(require,module,exports){
|
|
49874
49914
|
'use strict';
|
|
49875
49915
|
|
|
49876
49916
|
var utils = require('../utils');
|
|
@@ -50304,7 +50344,7 @@ Point.prototype.eqXToP = function eqXToP(x) {
|
|
|
50304
50344
|
Point.prototype.toP = Point.prototype.normalize;
|
|
50305
50345
|
Point.prototype.mixedAdd = Point.prototype.add;
|
|
50306
50346
|
|
|
50307
|
-
},{"../utils":
|
|
50347
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],152:[function(require,module,exports){
|
|
50308
50348
|
'use strict';
|
|
50309
50349
|
|
|
50310
50350
|
var curve = exports;
|
|
@@ -50314,7 +50354,7 @@ curve.short = require('./short');
|
|
|
50314
50354
|
curve.mont = require('./mont');
|
|
50315
50355
|
curve.edwards = require('./edwards');
|
|
50316
50356
|
|
|
50317
|
-
},{"./base":
|
|
50357
|
+
},{"./base":150,"./edwards":151,"./mont":153,"./short":154}],153:[function(require,module,exports){
|
|
50318
50358
|
'use strict';
|
|
50319
50359
|
|
|
50320
50360
|
var BN = require('bn.js');
|
|
@@ -50494,7 +50534,7 @@ Point.prototype.getX = function getX() {
|
|
|
50494
50534
|
return this.x.fromRed();
|
|
50495
50535
|
};
|
|
50496
50536
|
|
|
50497
|
-
},{"../utils":
|
|
50537
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],154:[function(require,module,exports){
|
|
50498
50538
|
'use strict';
|
|
50499
50539
|
|
|
50500
50540
|
var utils = require('../utils');
|
|
@@ -51433,7 +51473,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
|
|
|
51433
51473
|
return this.z.cmpn(0) === 0;
|
|
51434
51474
|
};
|
|
51435
51475
|
|
|
51436
|
-
},{"../utils":
|
|
51476
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],155:[function(require,module,exports){
|
|
51437
51477
|
'use strict';
|
|
51438
51478
|
|
|
51439
51479
|
var curves = exports;
|
|
@@ -51641,7 +51681,7 @@ defineCurve('secp256k1', {
|
|
|
51641
51681
|
]
|
|
51642
51682
|
});
|
|
51643
51683
|
|
|
51644
|
-
},{"./curve":
|
|
51684
|
+
},{"./curve":152,"./precomputed/secp256k1":162,"./utils":163,"hash.js":183}],156:[function(require,module,exports){
|
|
51645
51685
|
'use strict';
|
|
51646
51686
|
|
|
51647
51687
|
var BN = require('bn.js');
|
|
@@ -51884,7 +51924,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
|
|
|
51884
51924
|
throw new Error('Unable to find valid recovery factor');
|
|
51885
51925
|
};
|
|
51886
51926
|
|
|
51887
|
-
},{"../curves":
|
|
51927
|
+
},{"../curves":155,"../utils":163,"./key":157,"./signature":158,"bn.js":164,"brorand":54,"hmac-drbg":195}],157:[function(require,module,exports){
|
|
51888
51928
|
'use strict';
|
|
51889
51929
|
|
|
51890
51930
|
var BN = require('bn.js');
|
|
@@ -52004,7 +52044,7 @@ KeyPair.prototype.inspect = function inspect() {
|
|
|
52004
52044
|
' pub: ' + (this.pub && this.pub.inspect()) + ' >';
|
|
52005
52045
|
};
|
|
52006
52046
|
|
|
52007
|
-
},{"../utils":
|
|
52047
|
+
},{"../utils":163,"bn.js":164}],158:[function(require,module,exports){
|
|
52008
52048
|
'use strict';
|
|
52009
52049
|
|
|
52010
52050
|
var BN = require('bn.js');
|
|
@@ -52172,7 +52212,7 @@ Signature.prototype.toDER = function toDER(enc) {
|
|
|
52172
52212
|
return utils.encode(res, enc);
|
|
52173
52213
|
};
|
|
52174
52214
|
|
|
52175
|
-
},{"../utils":
|
|
52215
|
+
},{"../utils":163,"bn.js":164}],159:[function(require,module,exports){
|
|
52176
52216
|
'use strict';
|
|
52177
52217
|
|
|
52178
52218
|
var hash = require('hash.js');
|
|
@@ -52292,7 +52332,7 @@ EDDSA.prototype.isPoint = function isPoint(val) {
|
|
|
52292
52332
|
return val instanceof this.pointClass;
|
|
52293
52333
|
};
|
|
52294
52334
|
|
|
52295
|
-
},{"../curves":
|
|
52335
|
+
},{"../curves":155,"../utils":163,"./key":160,"./signature":161,"hash.js":183}],160:[function(require,module,exports){
|
|
52296
52336
|
'use strict';
|
|
52297
52337
|
|
|
52298
52338
|
var utils = require('../utils');
|
|
@@ -52389,7 +52429,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) {
|
|
|
52389
52429
|
|
|
52390
52430
|
module.exports = KeyPair;
|
|
52391
52431
|
|
|
52392
|
-
},{"../utils":
|
|
52432
|
+
},{"../utils":163}],161:[function(require,module,exports){
|
|
52393
52433
|
'use strict';
|
|
52394
52434
|
|
|
52395
52435
|
var BN = require('bn.js');
|
|
@@ -52456,7 +52496,7 @@ Signature.prototype.toHex = function toHex() {
|
|
|
52456
52496
|
|
|
52457
52497
|
module.exports = Signature;
|
|
52458
52498
|
|
|
52459
|
-
},{"../utils":
|
|
52499
|
+
},{"../utils":163,"bn.js":164}],162:[function(require,module,exports){
|
|
52460
52500
|
module.exports = {
|
|
52461
52501
|
doubles: {
|
|
52462
52502
|
step: 4,
|
|
@@ -53238,7 +53278,7 @@ module.exports = {
|
|
|
53238
53278
|
}
|
|
53239
53279
|
};
|
|
53240
53280
|
|
|
53241
|
-
},{}],
|
|
53281
|
+
},{}],163:[function(require,module,exports){
|
|
53242
53282
|
'use strict';
|
|
53243
53283
|
|
|
53244
53284
|
var utils = exports;
|
|
@@ -53359,7 +53399,7 @@ function intFromLE(bytes) {
|
|
|
53359
53399
|
utils.intFromLE = intFromLE;
|
|
53360
53400
|
|
|
53361
53401
|
|
|
53362
|
-
},{"bn.js":
|
|
53402
|
+
},{"bn.js":164,"minimalistic-assert":265,"minimalistic-crypto-utils":266}],164:[function(require,module,exports){
|
|
53363
53403
|
(function (module, exports) {
|
|
53364
53404
|
'use strict';
|
|
53365
53405
|
|
|
@@ -56794,7 +56834,7 @@ utils.intFromLE = intFromLE;
|
|
|
56794
56834
|
};
|
|
56795
56835
|
})(typeof module === 'undefined' || module, this);
|
|
56796
56836
|
|
|
56797
|
-
},{"buffer":
|
|
56837
|
+
},{"buffer":55}],165:[function(require,module,exports){
|
|
56798
56838
|
module.exports={
|
|
56799
56839
|
"_from": "elliptic@^6.5.3",
|
|
56800
56840
|
"_id": "elliptic@6.5.3",
|
|
@@ -56883,7 +56923,7 @@ module.exports={
|
|
|
56883
56923
|
"version": "6.5.3"
|
|
56884
56924
|
}
|
|
56885
56925
|
|
|
56886
|
-
},{}],
|
|
56926
|
+
},{}],166:[function(require,module,exports){
|
|
56887
56927
|
/*!
|
|
56888
56928
|
* encodeurl
|
|
56889
56929
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
@@ -56945,7 +56985,7 @@ function encodeUrl (url) {
|
|
|
56945
56985
|
.replace(ENCODE_CHARS_REGEXP, encodeURI)
|
|
56946
56986
|
}
|
|
56947
56987
|
|
|
56948
|
-
},{}],
|
|
56988
|
+
},{}],167:[function(require,module,exports){
|
|
56949
56989
|
'use strict'
|
|
56950
56990
|
|
|
56951
56991
|
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN
|
|
@@ -57125,17 +57165,17 @@ Batch.prototype._write = function (opts, cb) {
|
|
|
57125
57165
|
this.batch.write(opts, cb)
|
|
57126
57166
|
}
|
|
57127
57167
|
|
|
57128
|
-
},{"abstract-leveldown":
|
|
57129
|
-
arguments[4][128][0].apply(exports,arguments)
|
|
57130
|
-
},{"./next-tick":171,"dup":128}],168:[function(require,module,exports){
|
|
57168
|
+
},{"abstract-leveldown":171,"inherits":210,"level-codec":241,"level-errors":243}],168:[function(require,module,exports){
|
|
57131
57169
|
arguments[4][129][0].apply(exports,arguments)
|
|
57132
|
-
},{"./next-tick":
|
|
57170
|
+
},{"./next-tick":172,"dup":129}],169:[function(require,module,exports){
|
|
57133
57171
|
arguments[4][130][0].apply(exports,arguments)
|
|
57134
|
-
},{"./
|
|
57135
|
-
arguments[4][
|
|
57136
|
-
},{"./abstract-chained-batch":
|
|
57137
|
-
arguments[4][
|
|
57138
|
-
},{"
|
|
57172
|
+
},{"./next-tick":172,"dup":130}],170:[function(require,module,exports){
|
|
57173
|
+
arguments[4][131][0].apply(exports,arguments)
|
|
57174
|
+
},{"./abstract-chained-batch":168,"./abstract-iterator":169,"./next-tick":172,"buffer":91,"dup":131,"level-supports":251,"xtend":458}],171:[function(require,module,exports){
|
|
57175
|
+
arguments[4][8][0].apply(exports,arguments)
|
|
57176
|
+
},{"./abstract-chained-batch":168,"./abstract-iterator":169,"./abstract-leveldown":170,"dup":8}],172:[function(require,module,exports){
|
|
57177
|
+
arguments[4][133][0].apply(exports,arguments)
|
|
57178
|
+
},{"dup":133,"immediate":204}],173:[function(require,module,exports){
|
|
57139
57179
|
'use strict';
|
|
57140
57180
|
|
|
57141
57181
|
function assign(obj, props) {
|
|
@@ -57184,7 +57224,7 @@ function createError(err, code, props) {
|
|
|
57184
57224
|
|
|
57185
57225
|
module.exports = createError;
|
|
57186
57226
|
|
|
57187
|
-
},{}],
|
|
57227
|
+
},{}],174:[function(require,module,exports){
|
|
57188
57228
|
var prr = require('prr')
|
|
57189
57229
|
|
|
57190
57230
|
function init (type, message, cause) {
|
|
@@ -57243,7 +57283,7 @@ module.exports = function (errno) {
|
|
|
57243
57283
|
}
|
|
57244
57284
|
}
|
|
57245
57285
|
|
|
57246
|
-
},{"prr":
|
|
57286
|
+
},{"prr":351}],175:[function(require,module,exports){
|
|
57247
57287
|
var all = module.exports.all = [
|
|
57248
57288
|
{
|
|
57249
57289
|
errno: -2,
|
|
@@ -57558,7 +57598,7 @@ all.forEach(function (error) {
|
|
|
57558
57598
|
module.exports.custom = require('./custom')(module.exports)
|
|
57559
57599
|
module.exports.create = module.exports.custom.createError
|
|
57560
57600
|
|
|
57561
|
-
},{"./custom":
|
|
57601
|
+
},{"./custom":174}],176:[function(require,module,exports){
|
|
57562
57602
|
var naiveFallback = function () {
|
|
57563
57603
|
if (typeof self === "object" && self) return self;
|
|
57564
57604
|
if (typeof window === "object" && window) return window;
|
|
@@ -57595,7 +57635,7 @@ module.exports = (function () {
|
|
|
57595
57635
|
}
|
|
57596
57636
|
})();
|
|
57597
57637
|
|
|
57598
|
-
},{}],
|
|
57638
|
+
},{}],177:[function(require,module,exports){
|
|
57599
57639
|
/*!
|
|
57600
57640
|
* escape-html
|
|
57601
57641
|
* Copyright(c) 2012-2013 TJ Holowaychuk
|
|
@@ -57675,7 +57715,7 @@ function escapeHtml(string) {
|
|
|
57675
57715
|
: html;
|
|
57676
57716
|
}
|
|
57677
57717
|
|
|
57678
|
-
},{}],
|
|
57718
|
+
},{}],178:[function(require,module,exports){
|
|
57679
57719
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
57680
57720
|
//
|
|
57681
57721
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -58200,7 +58240,7 @@ function functionBindPolyfill(context) {
|
|
|
58200
58240
|
};
|
|
58201
58241
|
}
|
|
58202
58242
|
|
|
58203
|
-
},{}],
|
|
58243
|
+
},{}],179:[function(require,module,exports){
|
|
58204
58244
|
var Buffer = require('safe-buffer').Buffer
|
|
58205
58245
|
var MD5 = require('md5.js')
|
|
58206
58246
|
|
|
@@ -58247,7 +58287,7 @@ function EVP_BytesToKey (password, salt, keyBits, ivLen) {
|
|
|
58247
58287
|
|
|
58248
58288
|
module.exports = EVP_BytesToKey
|
|
58249
58289
|
|
|
58250
|
-
},{"md5.js":
|
|
58290
|
+
},{"md5.js":258,"safe-buffer":383}],180:[function(require,module,exports){
|
|
58251
58291
|
/*!
|
|
58252
58292
|
* fresh
|
|
58253
58293
|
* Copyright(c) 2012 TJ Holowaychuk
|
|
@@ -58386,7 +58426,7 @@ function parseTokenList (str) {
|
|
|
58386
58426
|
return list
|
|
58387
58427
|
}
|
|
58388
58428
|
|
|
58389
|
-
},{}],
|
|
58429
|
+
},{}],181:[function(require,module,exports){
|
|
58390
58430
|
// originally pulled out of simple-peer
|
|
58391
58431
|
|
|
58392
58432
|
module.exports = function getBrowserRTC () {
|
|
@@ -58403,7 +58443,7 @@ module.exports = function getBrowserRTC () {
|
|
|
58403
58443
|
return wrtc
|
|
58404
58444
|
}
|
|
58405
58445
|
|
|
58406
|
-
},{}],
|
|
58446
|
+
},{}],182:[function(require,module,exports){
|
|
58407
58447
|
'use strict'
|
|
58408
58448
|
var Buffer = require('safe-buffer').Buffer
|
|
58409
58449
|
var Transform = require('readable-stream').Transform
|
|
@@ -58500,7 +58540,7 @@ HashBase.prototype._digest = function () {
|
|
|
58500
58540
|
|
|
58501
58541
|
module.exports = HashBase
|
|
58502
58542
|
|
|
58503
|
-
},{"inherits":
|
|
58543
|
+
},{"inherits":210,"readable-stream":380,"safe-buffer":383}],183:[function(require,module,exports){
|
|
58504
58544
|
var hash = exports;
|
|
58505
58545
|
|
|
58506
58546
|
hash.utils = require('./hash/utils');
|
|
@@ -58517,7 +58557,7 @@ hash.sha384 = hash.sha.sha384;
|
|
|
58517
58557
|
hash.sha512 = hash.sha.sha512;
|
|
58518
58558
|
hash.ripemd160 = hash.ripemd.ripemd160;
|
|
58519
58559
|
|
|
58520
|
-
},{"./hash/common":
|
|
58560
|
+
},{"./hash/common":184,"./hash/hmac":185,"./hash/ripemd":186,"./hash/sha":187,"./hash/utils":194}],184:[function(require,module,exports){
|
|
58521
58561
|
'use strict';
|
|
58522
58562
|
|
|
58523
58563
|
var utils = require('./utils');
|
|
@@ -58611,7 +58651,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
58611
58651
|
return res;
|
|
58612
58652
|
};
|
|
58613
58653
|
|
|
58614
|
-
},{"./utils":
|
|
58654
|
+
},{"./utils":194,"minimalistic-assert":265}],185:[function(require,module,exports){
|
|
58615
58655
|
'use strict';
|
|
58616
58656
|
|
|
58617
58657
|
var utils = require('./utils');
|
|
@@ -58660,7 +58700,7 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
58660
58700
|
return this.outer.digest(enc);
|
|
58661
58701
|
};
|
|
58662
58702
|
|
|
58663
|
-
},{"./utils":
|
|
58703
|
+
},{"./utils":194,"minimalistic-assert":265}],186:[function(require,module,exports){
|
|
58664
58704
|
'use strict';
|
|
58665
58705
|
|
|
58666
58706
|
var utils = require('./utils');
|
|
@@ -58808,7 +58848,7 @@ var sh = [
|
|
|
58808
58848
|
8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11
|
|
58809
58849
|
];
|
|
58810
58850
|
|
|
58811
|
-
},{"./common":
|
|
58851
|
+
},{"./common":184,"./utils":194}],187:[function(require,module,exports){
|
|
58812
58852
|
'use strict';
|
|
58813
58853
|
|
|
58814
58854
|
exports.sha1 = require('./sha/1');
|
|
@@ -58817,7 +58857,7 @@ exports.sha256 = require('./sha/256');
|
|
|
58817
58857
|
exports.sha384 = require('./sha/384');
|
|
58818
58858
|
exports.sha512 = require('./sha/512');
|
|
58819
58859
|
|
|
58820
|
-
},{"./sha/1":
|
|
58860
|
+
},{"./sha/1":188,"./sha/224":189,"./sha/256":190,"./sha/384":191,"./sha/512":192}],188:[function(require,module,exports){
|
|
58821
58861
|
'use strict';
|
|
58822
58862
|
|
|
58823
58863
|
var utils = require('../utils');
|
|
@@ -58893,7 +58933,7 @@ SHA1.prototype._digest = function digest(enc) {
|
|
|
58893
58933
|
return utils.split32(this.h, 'big');
|
|
58894
58934
|
};
|
|
58895
58935
|
|
|
58896
|
-
},{"../common":
|
|
58936
|
+
},{"../common":184,"../utils":194,"./common":193}],189:[function(require,module,exports){
|
|
58897
58937
|
'use strict';
|
|
58898
58938
|
|
|
58899
58939
|
var utils = require('../utils');
|
|
@@ -58925,7 +58965,7 @@ SHA224.prototype._digest = function digest(enc) {
|
|
|
58925
58965
|
};
|
|
58926
58966
|
|
|
58927
58967
|
|
|
58928
|
-
},{"../utils":
|
|
58968
|
+
},{"../utils":194,"./256":190}],190:[function(require,module,exports){
|
|
58929
58969
|
'use strict';
|
|
58930
58970
|
|
|
58931
58971
|
var utils = require('../utils');
|
|
@@ -59032,7 +59072,7 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
59032
59072
|
return utils.split32(this.h, 'big');
|
|
59033
59073
|
};
|
|
59034
59074
|
|
|
59035
|
-
},{"../common":
|
|
59075
|
+
},{"../common":184,"../utils":194,"./common":193,"minimalistic-assert":265}],191:[function(require,module,exports){
|
|
59036
59076
|
'use strict';
|
|
59037
59077
|
|
|
59038
59078
|
var utils = require('../utils');
|
|
@@ -59069,7 +59109,7 @@ SHA384.prototype._digest = function digest(enc) {
|
|
|
59069
59109
|
return utils.split32(this.h.slice(0, 12), 'big');
|
|
59070
59110
|
};
|
|
59071
59111
|
|
|
59072
|
-
},{"../utils":
|
|
59112
|
+
},{"../utils":194,"./512":192}],192:[function(require,module,exports){
|
|
59073
59113
|
'use strict';
|
|
59074
59114
|
|
|
59075
59115
|
var utils = require('../utils');
|
|
@@ -59401,7 +59441,7 @@ function g1_512_lo(xh, xl) {
|
|
|
59401
59441
|
return r;
|
|
59402
59442
|
}
|
|
59403
59443
|
|
|
59404
|
-
},{"../common":
|
|
59444
|
+
},{"../common":184,"../utils":194,"minimalistic-assert":265}],193:[function(require,module,exports){
|
|
59405
59445
|
'use strict';
|
|
59406
59446
|
|
|
59407
59447
|
var utils = require('../utils');
|
|
@@ -59452,7 +59492,7 @@ function g1_256(x) {
|
|
|
59452
59492
|
}
|
|
59453
59493
|
exports.g1_256 = g1_256;
|
|
59454
59494
|
|
|
59455
|
-
},{"../utils":
|
|
59495
|
+
},{"../utils":194}],194:[function(require,module,exports){
|
|
59456
59496
|
'use strict';
|
|
59457
59497
|
|
|
59458
59498
|
var assert = require('minimalistic-assert');
|
|
@@ -59732,7 +59772,7 @@ function shr64_lo(ah, al, num) {
|
|
|
59732
59772
|
}
|
|
59733
59773
|
exports.shr64_lo = shr64_lo;
|
|
59734
59774
|
|
|
59735
|
-
},{"inherits":
|
|
59775
|
+
},{"inherits":210,"minimalistic-assert":265}],195:[function(require,module,exports){
|
|
59736
59776
|
'use strict';
|
|
59737
59777
|
|
|
59738
59778
|
var hash = require('hash.js');
|
|
@@ -59847,7 +59887,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
59847
59887
|
return utils.encode(res, enc);
|
|
59848
59888
|
};
|
|
59849
59889
|
|
|
59850
|
-
},{"hash.js":
|
|
59890
|
+
},{"hash.js":183,"minimalistic-assert":265,"minimalistic-crypto-utils":266}],196:[function(require,module,exports){
|
|
59851
59891
|
var createError = require('http-errors')
|
|
59852
59892
|
var eql = require('deep-equal')
|
|
59853
59893
|
|
|
@@ -59886,9 +59926,9 @@ assert.notDeepEqual = function (a, b, status, msg, opts) {
|
|
|
59886
59926
|
assert(!eql(a, b), status, msg, opts)
|
|
59887
59927
|
}
|
|
59888
59928
|
|
|
59889
|
-
},{"deep-equal":
|
|
59890
|
-
arguments[4][
|
|
59891
|
-
},{"dup":
|
|
59929
|
+
},{"deep-equal":124,"http-errors":198}],197:[function(require,module,exports){
|
|
59930
|
+
arguments[4][135][0].apply(exports,arguments)
|
|
59931
|
+
},{"dup":135}],198:[function(require,module,exports){
|
|
59892
59932
|
/*!
|
|
59893
59933
|
* http-errors
|
|
59894
59934
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -60156,7 +60196,7 @@ function populateConstructorExports (exports, codes, HttpError) {
|
|
|
60156
60196
|
'"I\'mateapot"; use "ImATeapot" instead')
|
|
60157
60197
|
}
|
|
60158
60198
|
|
|
60159
|
-
},{"depd":
|
|
60199
|
+
},{"depd":197,"inherits":210,"setprototypeof":388,"statuses":406,"toidentifier":432}],199:[function(require,module,exports){
|
|
60160
60200
|
/*!
|
|
60161
60201
|
* http-errors
|
|
60162
60202
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -60457,9 +60497,9 @@ function toClassName (name) {
|
|
|
60457
60497
|
: name
|
|
60458
60498
|
}
|
|
60459
60499
|
|
|
60460
|
-
},{"depd":
|
|
60461
|
-
arguments[4][
|
|
60462
|
-
},{"dup":
|
|
60500
|
+
},{"depd":200,"inherits":210,"setprototypeof":201,"statuses":406,"toidentifier":432}],200:[function(require,module,exports){
|
|
60501
|
+
arguments[4][135][0].apply(exports,arguments)
|
|
60502
|
+
},{"dup":135}],201:[function(require,module,exports){
|
|
60463
60503
|
'use strict'
|
|
60464
60504
|
/* eslint no-proto: 0 */
|
|
60465
60505
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -60478,7 +60518,7 @@ function mixinProperties (obj, proto) {
|
|
|
60478
60518
|
return obj
|
|
60479
60519
|
}
|
|
60480
60520
|
|
|
60481
|
-
},{}],
|
|
60521
|
+
},{}],202:[function(require,module,exports){
|
|
60482
60522
|
var http = require('http')
|
|
60483
60523
|
var url = require('url')
|
|
60484
60524
|
|
|
@@ -60511,7 +60551,7 @@ function validateParams (params) {
|
|
|
60511
60551
|
return params
|
|
60512
60552
|
}
|
|
60513
60553
|
|
|
60514
|
-
},{"http":
|
|
60554
|
+
},{"http":423,"url":443}],203:[function(require,module,exports){
|
|
60515
60555
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
60516
60556
|
var e, m
|
|
60517
60557
|
var eLen = (nBytes * 8) - mLen - 1
|
|
@@ -60597,7 +60637,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
60597
60637
|
buffer[offset + i - d] |= s * 128
|
|
60598
60638
|
}
|
|
60599
60639
|
|
|
60600
|
-
},{}],
|
|
60640
|
+
},{}],204:[function(require,module,exports){
|
|
60601
60641
|
'use strict';
|
|
60602
60642
|
var types = [
|
|
60603
60643
|
require('./nextTick'),
|
|
@@ -60695,7 +60735,7 @@ function immediate(task) {
|
|
|
60695
60735
|
}
|
|
60696
60736
|
}
|
|
60697
60737
|
|
|
60698
|
-
},{"./messageChannel":
|
|
60738
|
+
},{"./messageChannel":205,"./mutation.js":206,"./nextTick":207,"./stateChange":208,"./timeout":209}],205:[function(require,module,exports){
|
|
60699
60739
|
(function (global){(function (){
|
|
60700
60740
|
'use strict';
|
|
60701
60741
|
|
|
@@ -60716,7 +60756,7 @@ exports.install = function (func) {
|
|
|
60716
60756
|
};
|
|
60717
60757
|
};
|
|
60718
60758
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60719
|
-
},{}],
|
|
60759
|
+
},{}],206:[function(require,module,exports){
|
|
60720
60760
|
(function (global){(function (){
|
|
60721
60761
|
'use strict';
|
|
60722
60762
|
//based off rsvp https://github.com/tildeio/rsvp.js
|
|
@@ -60741,7 +60781,7 @@ exports.install = function (handle) {
|
|
|
60741
60781
|
};
|
|
60742
60782
|
};
|
|
60743
60783
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60744
|
-
},{}],
|
|
60784
|
+
},{}],207:[function(require,module,exports){
|
|
60745
60785
|
(function (process){(function (){
|
|
60746
60786
|
'use strict';
|
|
60747
60787
|
exports.test = function () {
|
|
@@ -60756,7 +60796,7 @@ exports.install = function (func) {
|
|
|
60756
60796
|
};
|
|
60757
60797
|
|
|
60758
60798
|
}).call(this)}).call(this,require('_process'))
|
|
60759
|
-
},{"_process":
|
|
60799
|
+
},{"_process":322}],208:[function(require,module,exports){
|
|
60760
60800
|
(function (global){(function (){
|
|
60761
60801
|
'use strict';
|
|
60762
60802
|
|
|
@@ -60783,7 +60823,7 @@ exports.install = function (handle) {
|
|
|
60783
60823
|
};
|
|
60784
60824
|
};
|
|
60785
60825
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60786
|
-
},{}],
|
|
60826
|
+
},{}],209:[function(require,module,exports){
|
|
60787
60827
|
'use strict';
|
|
60788
60828
|
exports.test = function () {
|
|
60789
60829
|
return true;
|
|
@@ -60794,7 +60834,7 @@ exports.install = function (t) {
|
|
|
60794
60834
|
setTimeout(t, 0);
|
|
60795
60835
|
};
|
|
60796
60836
|
};
|
|
60797
|
-
},{}],
|
|
60837
|
+
},{}],210:[function(require,module,exports){
|
|
60798
60838
|
if (typeof Object.create === 'function') {
|
|
60799
60839
|
// implementation from standard node.js 'util' module
|
|
60800
60840
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -60823,7 +60863,7 @@ if (typeof Object.create === 'function') {
|
|
|
60823
60863
|
}
|
|
60824
60864
|
}
|
|
60825
60865
|
|
|
60826
|
-
},{}],
|
|
60866
|
+
},{}],211:[function(require,module,exports){
|
|
60827
60867
|
'use strict'
|
|
60828
60868
|
|
|
60829
60869
|
const { filter, sortAll, take, map } = require('./utils')
|
|
@@ -61000,7 +61040,7 @@ class InterfaceDatastoreAdapter {
|
|
|
61000
61040
|
|
|
61001
61041
|
module.exports = InterfaceDatastoreAdapter
|
|
61002
61042
|
|
|
61003
|
-
},{"./utils":
|
|
61043
|
+
},{"./utils":216,"it-drain":223}],212:[function(require,module,exports){
|
|
61004
61044
|
'use strict'
|
|
61005
61045
|
|
|
61006
61046
|
const errcode = require('err-code')
|
|
@@ -61030,7 +61070,7 @@ module.exports.abortedError = (err) => {
|
|
|
61030
61070
|
return errcode(err, 'ERR_ABORTED')
|
|
61031
61071
|
}
|
|
61032
61072
|
|
|
61033
|
-
},{"err-code":
|
|
61073
|
+
},{"err-code":173}],213:[function(require,module,exports){
|
|
61034
61074
|
'use strict'
|
|
61035
61075
|
|
|
61036
61076
|
const Key = require('./key')
|
|
@@ -61045,7 +61085,7 @@ exports.utils = utils
|
|
|
61045
61085
|
exports.Errors = Errors
|
|
61046
61086
|
exports.Adapter = Adapter
|
|
61047
61087
|
|
|
61048
|
-
},{"./adapter":
|
|
61088
|
+
},{"./adapter":211,"./errors":212,"./key":214,"./memory":215,"./utils":216}],214:[function(require,module,exports){
|
|
61049
61089
|
'use strict'
|
|
61050
61090
|
|
|
61051
61091
|
const { Buffer } = require('buffer')
|
|
@@ -61443,7 +61483,7 @@ const _Key = withIs(Key, { className: 'Key', symbolName: '@ipfs/interface-datast
|
|
|
61443
61483
|
|
|
61444
61484
|
module.exports = _Key
|
|
61445
61485
|
|
|
61446
|
-
},{"buffer":
|
|
61486
|
+
},{"buffer":91,"class-is":95,"nanoid":296}],215:[function(require,module,exports){
|
|
61447
61487
|
'use strict'
|
|
61448
61488
|
|
|
61449
61489
|
const Key = require('./key')
|
|
@@ -61485,7 +61525,7 @@ class MemoryDatastore extends Adapter {
|
|
|
61485
61525
|
|
|
61486
61526
|
module.exports = MemoryDatastore
|
|
61487
61527
|
|
|
61488
|
-
},{"./adapter":
|
|
61528
|
+
},{"./adapter":211,"./errors":212,"./key":214}],216:[function(require,module,exports){
|
|
61489
61529
|
'use strict'
|
|
61490
61530
|
|
|
61491
61531
|
const tempdir = require('ipfs-utils/src/temp-dir')
|
|
@@ -61538,7 +61578,7 @@ exports.replaceStartWith = function (s, r) {
|
|
|
61538
61578
|
|
|
61539
61579
|
exports.tmpdir = tempdir
|
|
61540
61580
|
|
|
61541
|
-
},{"ipfs-utils/src/temp-dir":
|
|
61581
|
+
},{"ipfs-utils/src/temp-dir":217}],217:[function(require,module,exports){
|
|
61542
61582
|
'use strict'
|
|
61543
61583
|
|
|
61544
61584
|
const fs = require('fs')
|
|
@@ -61559,7 +61599,7 @@ const tempdir = (transform = d => d) => {
|
|
|
61559
61599
|
|
|
61560
61600
|
module.exports = tempdir
|
|
61561
61601
|
|
|
61562
|
-
},{"fs":
|
|
61602
|
+
},{"fs":83,"nanoid":296,"os":306,"path":314}],218:[function(require,module,exports){
|
|
61563
61603
|
/*!
|
|
61564
61604
|
* Determine if an object is a Buffer
|
|
61565
61605
|
*
|
|
@@ -61582,7 +61622,7 @@ function isSlowBuffer (obj) {
|
|
|
61582
61622
|
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
61583
61623
|
}
|
|
61584
61624
|
|
|
61585
|
-
},{}],
|
|
61625
|
+
},{}],219:[function(require,module,exports){
|
|
61586
61626
|
'use strict';
|
|
61587
61627
|
|
|
61588
61628
|
var toStr = Object.prototype.toString;
|
|
@@ -61622,7 +61662,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
61622
61662
|
return getProto(fn) === GeneratorFunction;
|
|
61623
61663
|
};
|
|
61624
61664
|
|
|
61625
|
-
},{}],
|
|
61665
|
+
},{}],220:[function(require,module,exports){
|
|
61626
61666
|
'use strict'
|
|
61627
61667
|
|
|
61628
61668
|
var hexRegEx = /([0-9]|[a-f])/gim
|
|
@@ -61632,7 +61672,7 @@ module.exports = function (input) {
|
|
|
61632
61672
|
(input.match(hexRegEx) || []).length === input.length
|
|
61633
61673
|
}
|
|
61634
61674
|
|
|
61635
|
-
},{}],
|
|
61675
|
+
},{}],221:[function(require,module,exports){
|
|
61636
61676
|
module.exports = isTypedArray
|
|
61637
61677
|
isTypedArray.strict = isStrictTypedArray
|
|
61638
61678
|
isTypedArray.loose = isLooseTypedArray
|
|
@@ -61675,14 +61715,14 @@ function isLooseTypedArray(arr) {
|
|
|
61675
61715
|
return names[toString.call(arr)]
|
|
61676
61716
|
}
|
|
61677
61717
|
|
|
61678
|
-
},{}],
|
|
61718
|
+
},{}],222:[function(require,module,exports){
|
|
61679
61719
|
var toString = {}.toString;
|
|
61680
61720
|
|
|
61681
61721
|
module.exports = Array.isArray || function (arr) {
|
|
61682
61722
|
return toString.call(arr) == '[object Array]';
|
|
61683
61723
|
};
|
|
61684
61724
|
|
|
61685
|
-
},{}],
|
|
61725
|
+
},{}],223:[function(require,module,exports){
|
|
61686
61726
|
'use strict'
|
|
61687
61727
|
|
|
61688
61728
|
/**
|
|
@@ -61699,10 +61739,10 @@ const drain = async (source) => {
|
|
|
61699
61739
|
|
|
61700
61740
|
module.exports = drain
|
|
61701
61741
|
|
|
61702
|
-
},{}],
|
|
61742
|
+
},{}],224:[function(require,module,exports){
|
|
61703
61743
|
module.exports = require('./lib/api')(require('./lib/keccak'))
|
|
61704
61744
|
|
|
61705
|
-
},{"./lib/api":
|
|
61745
|
+
},{"./lib/api":225,"./lib/keccak":229}],225:[function(require,module,exports){
|
|
61706
61746
|
const createKeccak = require('./keccak')
|
|
61707
61747
|
const createShake = require('./shake')
|
|
61708
61748
|
|
|
@@ -61731,7 +61771,7 @@ module.exports = function (KeccakState) {
|
|
|
61731
61771
|
}
|
|
61732
61772
|
}
|
|
61733
61773
|
|
|
61734
|
-
},{"./keccak":
|
|
61774
|
+
},{"./keccak":226,"./shake":227}],226:[function(require,module,exports){
|
|
61735
61775
|
(function (Buffer){(function (){
|
|
61736
61776
|
const { Transform } = require('stream')
|
|
61737
61777
|
|
|
@@ -61812,7 +61852,7 @@ module.exports = (KeccakState) => class Keccak extends Transform {
|
|
|
61812
61852
|
}
|
|
61813
61853
|
|
|
61814
61854
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
61815
|
-
},{"buffer":
|
|
61855
|
+
},{"buffer":91,"stream":407}],227:[function(require,module,exports){
|
|
61816
61856
|
(function (Buffer){(function (){
|
|
61817
61857
|
const { Transform } = require('stream')
|
|
61818
61858
|
|
|
@@ -61884,7 +61924,7 @@ module.exports = (KeccakState) => class Shake extends Transform {
|
|
|
61884
61924
|
}
|
|
61885
61925
|
|
|
61886
61926
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
61887
|
-
},{"buffer":
|
|
61927
|
+
},{"buffer":91,"stream":407}],228:[function(require,module,exports){
|
|
61888
61928
|
const P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]
|
|
61889
61929
|
|
|
61890
61930
|
exports.p1600 = function (s) {
|
|
@@ -62072,7 +62112,7 @@ exports.p1600 = function (s) {
|
|
|
62072
62112
|
}
|
|
62073
62113
|
}
|
|
62074
62114
|
|
|
62075
|
-
},{}],
|
|
62115
|
+
},{}],229:[function(require,module,exports){
|
|
62076
62116
|
(function (Buffer){(function (){
|
|
62077
62117
|
const keccakState = require('./keccak-state-unroll')
|
|
62078
62118
|
|
|
@@ -62144,7 +62184,7 @@ Keccak.prototype.copy = function (dest) {
|
|
|
62144
62184
|
module.exports = Keccak
|
|
62145
62185
|
|
|
62146
62186
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62147
|
-
},{"./keccak-state-unroll":
|
|
62187
|
+
},{"./keccak-state-unroll":228,"buffer":91}],230:[function(require,module,exports){
|
|
62148
62188
|
/*!
|
|
62149
62189
|
* keygrip
|
|
62150
62190
|
* Copyright(c) 2011-2014 Jed Schmidt
|
|
@@ -62197,7 +62237,7 @@ Keygrip.sign = Keygrip.verify = Keygrip.index = function() {
|
|
|
62197
62237
|
|
|
62198
62238
|
module.exports = Keygrip
|
|
62199
62239
|
|
|
62200
|
-
},{"crypto":
|
|
62240
|
+
},{"crypto":108,"tsscmp":433}],231:[function(require,module,exports){
|
|
62201
62241
|
'use strict'
|
|
62202
62242
|
|
|
62203
62243
|
/**
|
|
@@ -62247,7 +62287,7 @@ function compose (middleware) {
|
|
|
62247
62287
|
}
|
|
62248
62288
|
}
|
|
62249
62289
|
|
|
62250
|
-
},{}],
|
|
62290
|
+
},{}],232:[function(require,module,exports){
|
|
62251
62291
|
'use strict'
|
|
62252
62292
|
|
|
62253
62293
|
const co = require('co')
|
|
@@ -62309,7 +62349,7 @@ convert.back = function (mw) {
|
|
|
62309
62349
|
return converted
|
|
62310
62350
|
}
|
|
62311
62351
|
|
|
62312
|
-
},{"co":
|
|
62352
|
+
},{"co":96,"koa-compose":233}],233:[function(require,module,exports){
|
|
62313
62353
|
'use strict'
|
|
62314
62354
|
|
|
62315
62355
|
const Promise = require('any-promise')
|
|
@@ -62363,7 +62403,7 @@ function compose (middleware) {
|
|
|
62363
62403
|
}
|
|
62364
62404
|
}
|
|
62365
62405
|
|
|
62366
|
-
},{"any-promise":
|
|
62406
|
+
},{"any-promise":10}],234:[function(require,module,exports){
|
|
62367
62407
|
(function (process,Buffer){(function (){
|
|
62368
62408
|
|
|
62369
62409
|
'use strict';
|
|
@@ -62658,7 +62698,7 @@ function respond(ctx) {
|
|
|
62658
62698
|
module.exports.HttpError = HttpError;
|
|
62659
62699
|
|
|
62660
62700
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
62661
|
-
},{"./context":
|
|
62701
|
+
},{"./context":235,"./request":236,"./response":237,"_process":322,"buffer":91,"debug":238,"depd":135,"events":178,"http":423,"http-errors":199,"is-generator-function":219,"koa-compose":231,"koa-convert":232,"on-finished":304,"only":305,"statuses":406,"stream":407,"util":448}],235:[function(require,module,exports){
|
|
62662
62702
|
(function (Buffer){(function (){
|
|
62663
62703
|
|
|
62664
62704
|
'use strict';
|
|
@@ -62913,7 +62953,7 @@ delegate(proto, 'request')
|
|
|
62913
62953
|
.getter('ip');
|
|
62914
62954
|
|
|
62915
62955
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62916
|
-
},{"buffer":
|
|
62956
|
+
},{"buffer":91,"cookies":100,"delegates":134,"http-assert":196,"http-errors":199,"statuses":406,"util":448}],236:[function(require,module,exports){
|
|
62917
62957
|
|
|
62918
62958
|
'use strict';
|
|
62919
62959
|
|
|
@@ -63641,7 +63681,7 @@ if (util.inspect.custom) {
|
|
|
63641
63681
|
module.exports[util.inspect.custom] = module.exports.inspect;
|
|
63642
63682
|
}
|
|
63643
63683
|
|
|
63644
|
-
},{"accepts":
|
|
63684
|
+
},{"accepts":9,"content-type":99,"fresh":180,"net":83,"only":305,"parseurl":313,"querystring":362,"type-is":434,"url":443,"util":448}],237:[function(require,module,exports){
|
|
63645
63685
|
(function (Buffer){(function (){
|
|
63646
63686
|
|
|
63647
63687
|
'use strict';
|
|
@@ -64231,7 +64271,7 @@ if (util.inspect.custom) {
|
|
|
64231
64271
|
}
|
|
64232
64272
|
|
|
64233
64273
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
64234
|
-
},{"assert":
|
|
64274
|
+
},{"assert":28,"buffer":91,"cache-content-type":93,"content-disposition":97,"destroy":142,"encodeurl":166,"escape-html":177,"on-finished":304,"only":305,"path":314,"statuses":406,"stream":407,"type-is":434,"util":448,"vary":453}],238:[function(require,module,exports){
|
|
64235
64275
|
(function (process){(function (){
|
|
64236
64276
|
/**
|
|
64237
64277
|
* This is the web browser implementation of `debug()`.
|
|
@@ -64430,7 +64470,7 @@ function localstorage() {
|
|
|
64430
64470
|
}
|
|
64431
64471
|
|
|
64432
64472
|
}).call(this)}).call(this,require('_process'))
|
|
64433
|
-
},{"./debug":
|
|
64473
|
+
},{"./debug":239,"_process":322}],239:[function(require,module,exports){
|
|
64434
64474
|
|
|
64435
64475
|
/**
|
|
64436
64476
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -64657,7 +64697,7 @@ function coerce(val) {
|
|
|
64657
64697
|
return val;
|
|
64658
64698
|
}
|
|
64659
64699
|
|
|
64660
|
-
},{"ms":
|
|
64700
|
+
},{"ms":240}],240:[function(require,module,exports){
|
|
64661
64701
|
/**
|
|
64662
64702
|
* Helpers.
|
|
64663
64703
|
*/
|
|
@@ -64811,7 +64851,7 @@ function plural(ms, n, name) {
|
|
|
64811
64851
|
return Math.ceil(ms / n) + ' ' + name + 's';
|
|
64812
64852
|
}
|
|
64813
64853
|
|
|
64814
|
-
},{}],
|
|
64854
|
+
},{}],241:[function(require,module,exports){
|
|
64815
64855
|
var encodings = require('./lib/encodings')
|
|
64816
64856
|
|
|
64817
64857
|
module.exports = Codec
|
|
@@ -64920,7 +64960,7 @@ Codec.prototype.valueAsBuffer = function (opts) {
|
|
|
64920
64960
|
return this._valueEncoding(opts).buffer
|
|
64921
64961
|
}
|
|
64922
64962
|
|
|
64923
|
-
},{"./lib/encodings":
|
|
64963
|
+
},{"./lib/encodings":242}],242:[function(require,module,exports){
|
|
64924
64964
|
var Buffer = require('buffer').Buffer
|
|
64925
64965
|
|
|
64926
64966
|
exports.utf8 = exports['utf-8'] = {
|
|
@@ -64988,7 +65028,7 @@ function isBinary (data) {
|
|
|
64988
65028
|
return data === undefined || data === null || Buffer.isBuffer(data)
|
|
64989
65029
|
}
|
|
64990
65030
|
|
|
64991
|
-
},{"buffer":
|
|
65031
|
+
},{"buffer":91}],243:[function(require,module,exports){
|
|
64992
65032
|
var createError = require('errno').create
|
|
64993
65033
|
var LevelUPError = createError('LevelUPError')
|
|
64994
65034
|
var NotFoundError = createError('NotFoundError', LevelUPError)
|
|
@@ -65006,7 +65046,7 @@ module.exports = {
|
|
|
65006
65046
|
EncodingError: createError('EncodingError', LevelUPError)
|
|
65007
65047
|
}
|
|
65008
65048
|
|
|
65009
|
-
},{"errno":
|
|
65049
|
+
},{"errno":175}],244:[function(require,module,exports){
|
|
65010
65050
|
var inherits = require('inherits')
|
|
65011
65051
|
var Readable = require('readable-stream').Readable
|
|
65012
65052
|
var extend = require('xtend')
|
|
@@ -65052,7 +65092,7 @@ ReadStream.prototype._destroy = function (err, callback) {
|
|
|
65052
65092
|
})
|
|
65053
65093
|
}
|
|
65054
65094
|
|
|
65055
|
-
},{"inherits":
|
|
65095
|
+
},{"inherits":210,"readable-stream":380,"xtend":458}],245:[function(require,module,exports){
|
|
65056
65096
|
(function (Buffer){(function (){
|
|
65057
65097
|
/* global indexedDB */
|
|
65058
65098
|
|
|
@@ -65271,7 +65311,7 @@ Level.destroy = function (location, prefix, callback) {
|
|
|
65271
65311
|
}
|
|
65272
65312
|
|
|
65273
65313
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
65274
|
-
},{"../is-buffer/index.js":
|
|
65314
|
+
},{"../is-buffer/index.js":218,"./iterator":246,"./util/immediate":247,"./util/mixed-to-buffer":248,"./util/support":249,"abstract-leveldown":8,"inherits":210}],246:[function(require,module,exports){
|
|
65275
65315
|
/* global IDBKeyRange */
|
|
65276
65316
|
|
|
65277
65317
|
'use strict'
|
|
@@ -65432,9 +65472,9 @@ Iterator.prototype._end = function (callback) {
|
|
|
65432
65472
|
this.onComplete = callback
|
|
65433
65473
|
}
|
|
65434
65474
|
|
|
65435
|
-
},{"./util/immediate":
|
|
65436
|
-
arguments[4][
|
|
65437
|
-
},{"dup":
|
|
65475
|
+
},{"./util/immediate":247,"./util/mixed-to-buffer":248,"abstract-leveldown":8,"inherits":210,"ltgt":257}],247:[function(require,module,exports){
|
|
65476
|
+
arguments[4][133][0].apply(exports,arguments)
|
|
65477
|
+
},{"dup":133,"immediate":204}],248:[function(require,module,exports){
|
|
65438
65478
|
(function (Buffer){(function (){
|
|
65439
65479
|
'use strict'
|
|
65440
65480
|
|
|
@@ -65447,7 +65487,7 @@ module.exports = function (value) {
|
|
|
65447
65487
|
}
|
|
65448
65488
|
|
|
65449
65489
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
65450
|
-
},{"buffer":
|
|
65490
|
+
},{"buffer":91,"typedarray-to-buffer":435}],249:[function(require,module,exports){
|
|
65451
65491
|
'use strict'
|
|
65452
65492
|
|
|
65453
65493
|
exports.test = function (key) {
|
|
@@ -65464,7 +65504,7 @@ exports.test = function (key) {
|
|
|
65464
65504
|
exports.binaryKeys = exports.test(new Uint8Array(0))
|
|
65465
65505
|
exports.arrayKeys = exports.test([1])
|
|
65466
65506
|
|
|
65467
|
-
},{}],
|
|
65507
|
+
},{}],250:[function(require,module,exports){
|
|
65468
65508
|
var levelup = require('levelup')
|
|
65469
65509
|
var encode = require('encoding-down')
|
|
65470
65510
|
|
|
@@ -65502,7 +65542,7 @@ function packager (leveldown) {
|
|
|
65502
65542
|
|
|
65503
65543
|
module.exports = packager
|
|
65504
65544
|
|
|
65505
|
-
},{"encoding-down":
|
|
65545
|
+
},{"encoding-down":167,"levelup":255}],251:[function(require,module,exports){
|
|
65506
65546
|
'use strict'
|
|
65507
65547
|
|
|
65508
65548
|
// For (old) browser support
|
|
@@ -65539,10 +65579,10 @@ module.exports = function supports () {
|
|
|
65539
65579
|
})
|
|
65540
65580
|
}
|
|
65541
65581
|
|
|
65542
|
-
},{"xtend":
|
|
65582
|
+
},{"xtend":458,"xtend/mutable":459}],252:[function(require,module,exports){
|
|
65543
65583
|
module.exports = require('level-packager')(require('level-js'))
|
|
65544
65584
|
|
|
65545
|
-
},{"level-js":
|
|
65585
|
+
},{"level-js":245,"level-packager":250}],253:[function(require,module,exports){
|
|
65546
65586
|
var WriteError = require('level-errors').WriteError
|
|
65547
65587
|
var promisify = require('./promisify')
|
|
65548
65588
|
var getCallback = require('./common').getCallback
|
|
@@ -65624,7 +65664,7 @@ Batch.prototype.write = function (options, callback) {
|
|
|
65624
65664
|
|
|
65625
65665
|
module.exports = Batch
|
|
65626
65666
|
|
|
65627
|
-
},{"./common":
|
|
65667
|
+
},{"./common":254,"./promisify":256,"level-errors":243}],254:[function(require,module,exports){
|
|
65628
65668
|
exports.getCallback = function (options, callback) {
|
|
65629
65669
|
return typeof options === 'function' ? options : callback
|
|
65630
65670
|
}
|
|
@@ -65633,7 +65673,7 @@ exports.getOptions = function (options) {
|
|
|
65633
65673
|
return typeof options === 'object' && options !== null ? options : {}
|
|
65634
65674
|
}
|
|
65635
65675
|
|
|
65636
|
-
},{}],
|
|
65676
|
+
},{}],255:[function(require,module,exports){
|
|
65637
65677
|
(function (process){(function (){
|
|
65638
65678
|
var EventEmitter = require('events').EventEmitter
|
|
65639
65679
|
var inherits = require('util').inherits
|
|
@@ -65982,7 +66022,7 @@ LevelUP.errors = errors
|
|
|
65982
66022
|
module.exports = LevelUP.default = LevelUP
|
|
65983
66023
|
|
|
65984
66024
|
}).call(this)}).call(this,require('_process'))
|
|
65985
|
-
},{"./batch":
|
|
66025
|
+
},{"./batch":253,"./common":254,"./promisify":256,"_process":322,"assert":28,"deferred-leveldown":128,"events":178,"level-errors":243,"level-iterator-stream":244,"level-supports":251,"util":448,"xtend":458}],256:[function(require,module,exports){
|
|
65986
66026
|
function promisify () {
|
|
65987
66027
|
var callback
|
|
65988
66028
|
var promise = new Promise(function (resolve, reject) {
|
|
@@ -65997,7 +66037,7 @@ function promisify () {
|
|
|
65997
66037
|
|
|
65998
66038
|
module.exports = promisify
|
|
65999
66039
|
|
|
66000
|
-
},{}],
|
|
66040
|
+
},{}],257:[function(require,module,exports){
|
|
66001
66041
|
(function (Buffer){(function (){
|
|
66002
66042
|
|
|
66003
66043
|
exports.compare = function (a, b) {
|
|
@@ -66166,7 +66206,7 @@ exports.filter = function (range, compare) {
|
|
|
66166
66206
|
|
|
66167
66207
|
|
|
66168
66208
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
66169
|
-
},{"../is-buffer/index.js":
|
|
66209
|
+
},{"../is-buffer/index.js":218}],258:[function(require,module,exports){
|
|
66170
66210
|
'use strict'
|
|
66171
66211
|
var inherits = require('inherits')
|
|
66172
66212
|
var HashBase = require('hash-base')
|
|
@@ -66314,7 +66354,7 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
66314
66354
|
|
|
66315
66355
|
module.exports = MD5
|
|
66316
66356
|
|
|
66317
|
-
},{"hash-base":
|
|
66357
|
+
},{"hash-base":182,"inherits":210,"safe-buffer":383}],259:[function(require,module,exports){
|
|
66318
66358
|
/*!
|
|
66319
66359
|
* media-typer
|
|
66320
66360
|
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
@@ -66586,7 +66626,7 @@ function splitType(string) {
|
|
|
66586
66626
|
return obj
|
|
66587
66627
|
}
|
|
66588
66628
|
|
|
66589
|
-
},{}],
|
|
66629
|
+
},{}],260:[function(require,module,exports){
|
|
66590
66630
|
var bn = require('bn.js');
|
|
66591
66631
|
var brorand = require('brorand');
|
|
66592
66632
|
|
|
@@ -66703,9 +66743,9 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) {
|
|
|
66703
66743
|
return false;
|
|
66704
66744
|
};
|
|
66705
66745
|
|
|
66706
|
-
},{"bn.js":
|
|
66707
|
-
arguments[4][
|
|
66708
|
-
},{"buffer":
|
|
66746
|
+
},{"bn.js":261,"brorand":54}],261:[function(require,module,exports){
|
|
66747
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
66748
|
+
},{"buffer":55,"dup":27}],262:[function(require,module,exports){
|
|
66709
66749
|
module.exports={
|
|
66710
66750
|
"application/1d-interleaved-parityfec": {
|
|
66711
66751
|
"source": "iana"
|
|
@@ -74883,7 +74923,7 @@ module.exports={
|
|
|
74883
74923
|
}
|
|
74884
74924
|
}
|
|
74885
74925
|
|
|
74886
|
-
},{}],
|
|
74926
|
+
},{}],263:[function(require,module,exports){
|
|
74887
74927
|
/*!
|
|
74888
74928
|
* mime-db
|
|
74889
74929
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -74896,7 +74936,7 @@ module.exports={
|
|
|
74896
74936
|
|
|
74897
74937
|
module.exports = require('./db.json')
|
|
74898
74938
|
|
|
74899
|
-
},{"./db.json":
|
|
74939
|
+
},{"./db.json":262}],264:[function(require,module,exports){
|
|
74900
74940
|
/*!
|
|
74901
74941
|
* mime-types
|
|
74902
74942
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -75086,7 +75126,7 @@ function populateMaps (extensions, types) {
|
|
|
75086
75126
|
})
|
|
75087
75127
|
}
|
|
75088
75128
|
|
|
75089
|
-
},{"mime-db":
|
|
75129
|
+
},{"mime-db":263,"path":314}],265:[function(require,module,exports){
|
|
75090
75130
|
module.exports = assert;
|
|
75091
75131
|
|
|
75092
75132
|
function assert(val, msg) {
|
|
@@ -75099,7 +75139,7 @@ assert.equal = function assertEqual(l, r, msg) {
|
|
|
75099
75139
|
throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r));
|
|
75100
75140
|
};
|
|
75101
75141
|
|
|
75102
|
-
},{}],
|
|
75142
|
+
},{}],266:[function(require,module,exports){
|
|
75103
75143
|
'use strict';
|
|
75104
75144
|
|
|
75105
75145
|
var utils = exports;
|
|
@@ -75159,7 +75199,7 @@ utils.encode = function encode(arr, enc) {
|
|
|
75159
75199
|
return arr;
|
|
75160
75200
|
};
|
|
75161
75201
|
|
|
75162
|
-
},{}],
|
|
75202
|
+
},{}],267:[function(require,module,exports){
|
|
75163
75203
|
/**
|
|
75164
75204
|
* Helpers.
|
|
75165
75205
|
*/
|
|
@@ -75323,12 +75363,12 @@ function plural(ms, msAbs, n, name) {
|
|
|
75323
75363
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
75324
75364
|
}
|
|
75325
75365
|
|
|
75326
|
-
},{}],
|
|
75366
|
+
},{}],268:[function(require,module,exports){
|
|
75327
75367
|
(function (Buffer){(function (){
|
|
75328
75368
|
"use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var bs58=require("bs58"),bs32=_interopDefault(require("bs32")),ecc=_interopDefault(require("tiny-secp256k1")),varint=_interopDefault(require("varint"));class MultiSignature{constructor(e,t){if(void 0===e)throw ReferenceError("version undefined");if(void 0===t)throw ReferenceError("multicodec undefined");this.multiCodec=t,this.version=e}set multiSignature(e){this._multiSignature=e}get signature(){return this.decoded.signature}get multiSignature(){return this._multiSignature||this.encoded||this.encode(this.signature)}export(){return bs58.encode(this.multiSignature)}import(e){return bs58.decode(this.decode(e))}sign(e,t){if(!e||!t)throw ReferenceError(`${e?"privateKey":"hash"} undefined`);const r=ecc.sign(e,t);return this.decoded={version:this.version,multiCodec:this.multiCodec,signature:r},this.encode(r)}verifySignature(e,t,r){return ecc.verify(t,r,e)}verify(e,t,r){return e=this.decode(e),ecc.verify(t,r,e.signature)}encode(e){if(!(e=e||this.signature))throw ReferenceError("signature undefined");return this.multiSignature=Buffer.concat([Buffer.from(varint.encode(this.version)),Buffer.from(varint.encode(this.multiCodec)),e]),this.multiSignature}decode(e){if(e&&(this.multiSignature=e),!this.multiSignature)throw ReferenceError("multiSignature undefined");let t=this.multiSignature;const r=varint.decode(t);t=t.slice(varint.decode.bytes);const i=varint.decode(t),n=t.slice(varint.decode.bytes);if(r!==this.version)throw TypeError("Invalid version");if(this.multiCodec!==i)throw TypeError("Invalid multiCodec");return this.decoded={version:r,multiCodec:i,signature:n},this.decoded}toHex(){return this.multiSignature.toString("hex")}fromHex(e){return bs58.decode(Buffer.from(e,"hex"))}toBs58(){return bs58.encode(this.multiSignature)}fromBs58(e){return bs58.decode(e)}toBs32(){return bs32.encode(this.multiSignature)}fromBs32(e){return bs32.decode(e)}}module.exports=MultiSignature;
|
|
75329
75369
|
|
|
75330
75370
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75331
|
-
},{"bs32":
|
|
75371
|
+
},{"bs32":85,"bs58":86,"buffer":91,"tiny-secp256k1":429,"varint":271}],269:[function(require,module,exports){
|
|
75332
75372
|
module.exports = read
|
|
75333
75373
|
|
|
75334
75374
|
var MSB = 0x80
|
|
@@ -75359,7 +75399,7 @@ function read(buf, offset) {
|
|
|
75359
75399
|
return res
|
|
75360
75400
|
}
|
|
75361
75401
|
|
|
75362
|
-
},{}],
|
|
75402
|
+
},{}],270:[function(require,module,exports){
|
|
75363
75403
|
module.exports = encode
|
|
75364
75404
|
|
|
75365
75405
|
var MSB = 0x80
|
|
@@ -75387,14 +75427,14 @@ function encode(num, out, offset) {
|
|
|
75387
75427
|
return out
|
|
75388
75428
|
}
|
|
75389
75429
|
|
|
75390
|
-
},{}],
|
|
75430
|
+
},{}],271:[function(require,module,exports){
|
|
75391
75431
|
module.exports = {
|
|
75392
75432
|
encode: require('./encode.js')
|
|
75393
75433
|
, decode: require('./decode.js')
|
|
75394
75434
|
, encodingLength: require('./length.js')
|
|
75395
75435
|
}
|
|
75396
75436
|
|
|
75397
|
-
},{"./decode.js":
|
|
75437
|
+
},{"./decode.js":269,"./encode.js":270,"./length.js":272}],272:[function(require,module,exports){
|
|
75398
75438
|
|
|
75399
75439
|
var N1 = Math.pow(2, 7)
|
|
75400
75440
|
var N2 = Math.pow(2, 14)
|
|
@@ -75421,7 +75461,7 @@ module.exports = function (value) {
|
|
|
75421
75461
|
)
|
|
75422
75462
|
}
|
|
75423
75463
|
|
|
75424
|
-
},{}],
|
|
75464
|
+
},{}],273:[function(require,module,exports){
|
|
75425
75465
|
'use strict';
|
|
75426
75466
|
|
|
75427
75467
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75590,7 +75630,7 @@ exports.baseX = baseX;
|
|
|
75590
75630
|
exports.from = from;
|
|
75591
75631
|
exports.rfc4648 = rfc4648;
|
|
75592
75632
|
|
|
75593
|
-
},{"../../vendor/base-x.js":
|
|
75633
|
+
},{"../../vendor/base-x.js":294,"../bytes.js":284}],274:[function(require,module,exports){
|
|
75594
75634
|
'use strict';
|
|
75595
75635
|
|
|
75596
75636
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75605,7 +75645,7 @@ const base10 = base.baseX({
|
|
|
75605
75645
|
|
|
75606
75646
|
exports.base10 = base10;
|
|
75607
75647
|
|
|
75608
|
-
},{"./base.js":
|
|
75648
|
+
},{"./base.js":273}],275:[function(require,module,exports){
|
|
75609
75649
|
'use strict';
|
|
75610
75650
|
|
|
75611
75651
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75628,7 +75668,7 @@ const base16upper = base.rfc4648({
|
|
|
75628
75668
|
exports.base16 = base16;
|
|
75629
75669
|
exports.base16upper = base16upper;
|
|
75630
75670
|
|
|
75631
|
-
},{"./base.js":
|
|
75671
|
+
},{"./base.js":273}],276:[function(require,module,exports){
|
|
75632
75672
|
'use strict';
|
|
75633
75673
|
|
|
75634
75674
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75644,7 +75684,7 @@ const base2 = base.rfc4648({
|
|
|
75644
75684
|
|
|
75645
75685
|
exports.base2 = base2;
|
|
75646
75686
|
|
|
75647
|
-
},{"./base.js":
|
|
75687
|
+
},{"./base.js":273}],277:[function(require,module,exports){
|
|
75648
75688
|
'use strict';
|
|
75649
75689
|
|
|
75650
75690
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75716,7 +75756,7 @@ exports.base32padupper = base32padupper;
|
|
|
75716
75756
|
exports.base32upper = base32upper;
|
|
75717
75757
|
exports.base32z = base32z;
|
|
75718
75758
|
|
|
75719
|
-
},{"./base.js":
|
|
75759
|
+
},{"./base.js":273}],278:[function(require,module,exports){
|
|
75720
75760
|
'use strict';
|
|
75721
75761
|
|
|
75722
75762
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75737,7 +75777,7 @@ const base36upper = base.baseX({
|
|
|
75737
75777
|
exports.base36 = base36;
|
|
75738
75778
|
exports.base36upper = base36upper;
|
|
75739
75779
|
|
|
75740
|
-
},{"./base.js":
|
|
75780
|
+
},{"./base.js":273}],279:[function(require,module,exports){
|
|
75741
75781
|
'use strict';
|
|
75742
75782
|
|
|
75743
75783
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75758,7 +75798,7 @@ const base58flickr = base.baseX({
|
|
|
75758
75798
|
exports.base58btc = base58btc;
|
|
75759
75799
|
exports.base58flickr = base58flickr;
|
|
75760
75800
|
|
|
75761
|
-
},{"./base.js":
|
|
75801
|
+
},{"./base.js":273}],280:[function(require,module,exports){
|
|
75762
75802
|
'use strict';
|
|
75763
75803
|
|
|
75764
75804
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75795,7 +75835,7 @@ exports.base64pad = base64pad;
|
|
|
75795
75835
|
exports.base64url = base64url;
|
|
75796
75836
|
exports.base64urlpad = base64urlpad;
|
|
75797
75837
|
|
|
75798
|
-
},{"./base.js":
|
|
75838
|
+
},{"./base.js":273}],281:[function(require,module,exports){
|
|
75799
75839
|
'use strict';
|
|
75800
75840
|
|
|
75801
75841
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75811,7 +75851,7 @@ const base8 = base.rfc4648({
|
|
|
75811
75851
|
|
|
75812
75852
|
exports.base8 = base8;
|
|
75813
75853
|
|
|
75814
|
-
},{"./base.js":
|
|
75854
|
+
},{"./base.js":273}],282:[function(require,module,exports){
|
|
75815
75855
|
'use strict';
|
|
75816
75856
|
|
|
75817
75857
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75828,7 +75868,7 @@ const identity = base.from({
|
|
|
75828
75868
|
|
|
75829
75869
|
exports.identity = identity;
|
|
75830
75870
|
|
|
75831
|
-
},{"../bytes.js":
|
|
75871
|
+
},{"../bytes.js":284,"./base.js":273}],283:[function(require,module,exports){
|
|
75832
75872
|
'use strict';
|
|
75833
75873
|
|
|
75834
75874
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75882,7 +75922,7 @@ exports.bases = bases;
|
|
|
75882
75922
|
exports.codecs = codecs;
|
|
75883
75923
|
exports.hashes = hashes;
|
|
75884
75924
|
|
|
75885
|
-
},{"./bases/base10.js":
|
|
75925
|
+
},{"./bases/base10.js":274,"./bases/base16.js":275,"./bases/base2.js":276,"./bases/base32.js":277,"./bases/base36.js":278,"./bases/base58.js":279,"./bases/base64.js":280,"./bases/base8.js":281,"./bases/identity.js":282,"./bytes.js":284,"./cid.js":285,"./codecs/json.js":286,"./codecs/raw.js":287,"./hashes/digest.js":288,"./hashes/hasher.js":289,"./hashes/identity.js":290,"./hashes/sha2.js":291,"./index.js":292,"./varint.js":293}],284:[function(require,module,exports){
|
|
75886
75926
|
'use strict';
|
|
75887
75927
|
|
|
75888
75928
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75929,7 +75969,7 @@ exports.isBinary = isBinary;
|
|
|
75929
75969
|
exports.toHex = toHex;
|
|
75930
75970
|
exports.toString = toString;
|
|
75931
75971
|
|
|
75932
|
-
},{}],
|
|
75972
|
+
},{}],285:[function(require,module,exports){
|
|
75933
75973
|
'use strict';
|
|
75934
75974
|
|
|
75935
75975
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76246,7 +76286,7 @@ if (cid) {
|
|
|
76246
76286
|
|
|
76247
76287
|
exports.CID = CID;
|
|
76248
76288
|
|
|
76249
|
-
},{"./bases/base32.js":
|
|
76289
|
+
},{"./bases/base32.js":277,"./bases/base58.js":279,"./bytes.js":284,"./hashes/digest.js":288,"./varint.js":293}],286:[function(require,module,exports){
|
|
76250
76290
|
'use strict';
|
|
76251
76291
|
|
|
76252
76292
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76263,7 +76303,7 @@ exports.decode = decode;
|
|
|
76263
76303
|
exports.encode = encode;
|
|
76264
76304
|
exports.name = name;
|
|
76265
76305
|
|
|
76266
|
-
},{}],
|
|
76306
|
+
},{}],287:[function(require,module,exports){
|
|
76267
76307
|
'use strict';
|
|
76268
76308
|
|
|
76269
76309
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76283,7 +76323,7 @@ exports.decode = decode;
|
|
|
76283
76323
|
exports.encode = encode;
|
|
76284
76324
|
exports.name = name;
|
|
76285
76325
|
|
|
76286
|
-
},{"../bytes.js":
|
|
76326
|
+
},{"../bytes.js":284}],288:[function(require,module,exports){
|
|
76287
76327
|
'use strict';
|
|
76288
76328
|
|
|
76289
76329
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76332,7 +76372,7 @@ exports.create = create;
|
|
|
76332
76372
|
exports.decode = decode;
|
|
76333
76373
|
exports.equals = equals;
|
|
76334
76374
|
|
|
76335
|
-
},{"../bytes.js":
|
|
76375
|
+
},{"../bytes.js":284,"../varint.js":293}],289:[function(require,module,exports){
|
|
76336
76376
|
'use strict';
|
|
76337
76377
|
|
|
76338
76378
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76359,7 +76399,7 @@ class Hasher {
|
|
|
76359
76399
|
exports.Hasher = Hasher;
|
|
76360
76400
|
exports.from = from;
|
|
76361
76401
|
|
|
76362
|
-
},{"./digest.js":
|
|
76402
|
+
},{"./digest.js":288}],290:[function(require,module,exports){
|
|
76363
76403
|
'use strict';
|
|
76364
76404
|
|
|
76365
76405
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76375,7 +76415,7 @@ const identity = hasher.from({
|
|
|
76375
76415
|
|
|
76376
76416
|
exports.identity = identity;
|
|
76377
76417
|
|
|
76378
|
-
},{"../bytes.js":
|
|
76418
|
+
},{"../bytes.js":284,"./hasher.js":289}],291:[function(require,module,exports){
|
|
76379
76419
|
'use strict';
|
|
76380
76420
|
|
|
76381
76421
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76397,7 +76437,7 @@ const sha512 = hasher.from({
|
|
|
76397
76437
|
exports.sha256 = sha256;
|
|
76398
76438
|
exports.sha512 = sha512;
|
|
76399
76439
|
|
|
76400
|
-
},{"./hasher.js":
|
|
76440
|
+
},{"./hasher.js":289}],292:[function(require,module,exports){
|
|
76401
76441
|
'use strict';
|
|
76402
76442
|
|
|
76403
76443
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76416,7 +76456,7 @@ exports.bytes = bytes;
|
|
|
76416
76456
|
exports.hasher = hasher;
|
|
76417
76457
|
exports.digest = digest;
|
|
76418
76458
|
|
|
76419
|
-
},{"./bytes.js":
|
|
76459
|
+
},{"./bytes.js":284,"./cid.js":285,"./hashes/digest.js":288,"./hashes/hasher.js":289,"./varint.js":293}],293:[function(require,module,exports){
|
|
76420
76460
|
'use strict';
|
|
76421
76461
|
|
|
76422
76462
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76442,7 +76482,7 @@ exports.decode = decode;
|
|
|
76442
76482
|
exports.encodeTo = encodeTo;
|
|
76443
76483
|
exports.encodingLength = encodingLength;
|
|
76444
76484
|
|
|
76445
|
-
},{"../vendor/varint.js":
|
|
76485
|
+
},{"../vendor/varint.js":295}],294:[function(require,module,exports){
|
|
76446
76486
|
'use strict';
|
|
76447
76487
|
|
|
76448
76488
|
function base(ALPHABET, name) {
|
|
@@ -76580,7 +76620,7 @@ var _brrp__multiformats_scope_baseX = src;
|
|
|
76580
76620
|
|
|
76581
76621
|
module.exports = _brrp__multiformats_scope_baseX;
|
|
76582
76622
|
|
|
76583
|
-
},{}],
|
|
76623
|
+
},{}],295:[function(require,module,exports){
|
|
76584
76624
|
'use strict';
|
|
76585
76625
|
|
|
76586
76626
|
var encode_1 = encode;
|
|
@@ -76638,7 +76678,7 @@ var _brrp_varint = varint;
|
|
|
76638
76678
|
|
|
76639
76679
|
module.exports = _brrp_varint;
|
|
76640
76680
|
|
|
76641
|
-
},{}],
|
|
76681
|
+
},{}],296:[function(require,module,exports){
|
|
76642
76682
|
(function (Buffer){(function (){
|
|
76643
76683
|
let crypto = require('crypto')
|
|
76644
76684
|
|
|
@@ -76722,7 +76762,7 @@ let nanoid = (size = 21) => {
|
|
|
76722
76762
|
module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
|
|
76723
76763
|
|
|
76724
76764
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76725
|
-
},{"./url-alphabet/index.cjs":
|
|
76765
|
+
},{"./url-alphabet/index.cjs":297,"buffer":91,"crypto":108}],297:[function(require,module,exports){
|
|
76726
76766
|
// This alphabet uses `A-Za-z0-9_-` symbols. The genetic algorithm helped
|
|
76727
76767
|
// optimize the gzip compression for this alphabet.
|
|
76728
76768
|
let urlAlphabet =
|
|
@@ -76730,7 +76770,7 @@ let urlAlphabet =
|
|
|
76730
76770
|
|
|
76731
76771
|
module.exports = { urlAlphabet }
|
|
76732
76772
|
|
|
76733
|
-
},{}],
|
|
76773
|
+
},{}],298:[function(require,module,exports){
|
|
76734
76774
|
/*!
|
|
76735
76775
|
* negotiator
|
|
76736
76776
|
* Copyright(c) 2012 Federico Romero
|
|
@@ -76856,7 +76896,7 @@ function loadModule(moduleName) {
|
|
|
76856
76896
|
return module;
|
|
76857
76897
|
}
|
|
76858
76898
|
|
|
76859
|
-
},{"./lib/charset":
|
|
76899
|
+
},{"./lib/charset":299,"./lib/encoding":300,"./lib/language":301,"./lib/mediaType":302}],299:[function(require,module,exports){
|
|
76860
76900
|
/**
|
|
76861
76901
|
* negotiator
|
|
76862
76902
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77027,7 +77067,7 @@ function isQuality(spec) {
|
|
|
77027
77067
|
return spec.q > 0;
|
|
77028
77068
|
}
|
|
77029
77069
|
|
|
77030
|
-
},{}],
|
|
77070
|
+
},{}],300:[function(require,module,exports){
|
|
77031
77071
|
/**
|
|
77032
77072
|
* negotiator
|
|
77033
77073
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77213,7 +77253,7 @@ function isQuality(spec) {
|
|
|
77213
77253
|
return spec.q > 0;
|
|
77214
77254
|
}
|
|
77215
77255
|
|
|
77216
|
-
},{}],
|
|
77256
|
+
},{}],301:[function(require,module,exports){
|
|
77217
77257
|
/**
|
|
77218
77258
|
* negotiator
|
|
77219
77259
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77394,7 +77434,7 @@ function isQuality(spec) {
|
|
|
77394
77434
|
return spec.q > 0;
|
|
77395
77435
|
}
|
|
77396
77436
|
|
|
77397
|
-
},{}],
|
|
77437
|
+
},{}],302:[function(require,module,exports){
|
|
77398
77438
|
/**
|
|
77399
77439
|
* negotiator
|
|
77400
77440
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77690,7 +77730,7 @@ function splitParameters(str) {
|
|
|
77690
77730
|
return parameters;
|
|
77691
77731
|
}
|
|
77692
77732
|
|
|
77693
|
-
},{}],
|
|
77733
|
+
},{}],303:[function(require,module,exports){
|
|
77694
77734
|
/*
|
|
77695
77735
|
object-assign
|
|
77696
77736
|
(c) Sindre Sorhus
|
|
@@ -77782,7 +77822,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
77782
77822
|
return to;
|
|
77783
77823
|
};
|
|
77784
77824
|
|
|
77785
|
-
},{}],
|
|
77825
|
+
},{}],304:[function(require,module,exports){
|
|
77786
77826
|
(function (process,setImmediate){(function (){
|
|
77787
77827
|
/*!
|
|
77788
77828
|
* on-finished
|
|
@@ -77982,7 +78022,7 @@ function patchAssignSocket(res, callback) {
|
|
|
77982
78022
|
}
|
|
77983
78023
|
|
|
77984
78024
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
77985
|
-
},{"_process":
|
|
78025
|
+
},{"_process":322,"ee-first":148,"timers":428}],305:[function(require,module,exports){
|
|
77986
78026
|
|
|
77987
78027
|
module.exports = function(obj, keys){
|
|
77988
78028
|
obj = obj || {};
|
|
@@ -77994,7 +78034,7 @@ module.exports = function(obj, keys){
|
|
|
77994
78034
|
}, {});
|
|
77995
78035
|
};
|
|
77996
78036
|
|
|
77997
|
-
},{}],
|
|
78037
|
+
},{}],306:[function(require,module,exports){
|
|
77998
78038
|
exports.endianness = function () { return 'LE' };
|
|
77999
78039
|
|
|
78000
78040
|
exports.hostname = function () {
|
|
@@ -78045,7 +78085,7 @@ exports.homedir = function () {
|
|
|
78045
78085
|
return '/'
|
|
78046
78086
|
};
|
|
78047
78087
|
|
|
78048
|
-
},{}],
|
|
78088
|
+
},{}],307:[function(require,module,exports){
|
|
78049
78089
|
(function (Buffer){(function (){
|
|
78050
78090
|
/**
|
|
78051
78091
|
* Peer 2 Peer WebRTC connections with WebTorrent Trackers as signalling server
|
|
@@ -78424,7 +78464,7 @@ class P2PT extends EventEmitter {
|
|
|
78424
78464
|
module.exports = P2PT
|
|
78425
78465
|
|
|
78426
78466
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
78427
|
-
},{"bittorrent-tracker/lib/client/websocket-tracker":
|
|
78467
|
+
},{"bittorrent-tracker/lib/client/websocket-tracker":50,"buffer":91,"debug":122,"events":178,"randombytes":364,"simple-sha1":403}],308:[function(require,module,exports){
|
|
78428
78468
|
module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb",
|
|
78429
78469
|
"2.16.840.1.101.3.4.1.2": "aes-128-cbc",
|
|
78430
78470
|
"2.16.840.1.101.3.4.1.3": "aes-128-ofb",
|
|
@@ -78438,7 +78478,7 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb",
|
|
|
78438
78478
|
"2.16.840.1.101.3.4.1.43": "aes-256-ofb",
|
|
78439
78479
|
"2.16.840.1.101.3.4.1.44": "aes-256-cfb"
|
|
78440
78480
|
}
|
|
78441
|
-
},{}],
|
|
78481
|
+
},{}],309:[function(require,module,exports){
|
|
78442
78482
|
// from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js
|
|
78443
78483
|
// Fedor, you are amazing.
|
|
78444
78484
|
'use strict'
|
|
@@ -78562,7 +78602,7 @@ exports.signature = asn1.define('signature', function () {
|
|
|
78562
78602
|
)
|
|
78563
78603
|
})
|
|
78564
78604
|
|
|
78565
|
-
},{"./certificate":
|
|
78605
|
+
},{"./certificate":310,"asn1.js":13}],310:[function(require,module,exports){
|
|
78566
78606
|
// from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js
|
|
78567
78607
|
// thanks to @Rantanen
|
|
78568
78608
|
|
|
@@ -78653,7 +78693,7 @@ var X509Certificate = asn.define('X509Certificate', function () {
|
|
|
78653
78693
|
|
|
78654
78694
|
module.exports = X509Certificate
|
|
78655
78695
|
|
|
78656
|
-
},{"asn1.js":
|
|
78696
|
+
},{"asn1.js":13}],311:[function(require,module,exports){
|
|
78657
78697
|
// adapted from https://github.com/apatil/pemstrip
|
|
78658
78698
|
var findProc = /Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m
|
|
78659
78699
|
var startRegex = /^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m
|
|
@@ -78686,7 +78726,7 @@ module.exports = function (okey, password) {
|
|
|
78686
78726
|
}
|
|
78687
78727
|
}
|
|
78688
78728
|
|
|
78689
|
-
},{"browserify-aes":
|
|
78729
|
+
},{"browserify-aes":58,"evp_bytestokey":179,"safe-buffer":383}],312:[function(require,module,exports){
|
|
78690
78730
|
var asn1 = require('./asn1')
|
|
78691
78731
|
var aesid = require('./aesid.json')
|
|
78692
78732
|
var fixProc = require('./fixProc')
|
|
@@ -78795,7 +78835,7 @@ function decrypt (data, password) {
|
|
|
78795
78835
|
return Buffer.concat(out)
|
|
78796
78836
|
}
|
|
78797
78837
|
|
|
78798
|
-
},{"./aesid.json":
|
|
78838
|
+
},{"./aesid.json":308,"./asn1":309,"./fixProc":311,"browserify-aes":58,"pbkdf2":315,"safe-buffer":383}],313:[function(require,module,exports){
|
|
78799
78839
|
/*!
|
|
78800
78840
|
* parseurl
|
|
78801
78841
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -78955,7 +78995,7 @@ function fresh (url, parsedUrl) {
|
|
|
78955
78995
|
parsedUrl._raw === url
|
|
78956
78996
|
}
|
|
78957
78997
|
|
|
78958
|
-
},{"url":
|
|
78998
|
+
},{"url":443}],314:[function(require,module,exports){
|
|
78959
78999
|
(function (process){(function (){
|
|
78960
79000
|
// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
|
|
78961
79001
|
// backported and transplited with Babel, with backwards-compat fixes
|
|
@@ -79261,11 +79301,11 @@ var substr = 'ab'.substr(-1) === 'b'
|
|
|
79261
79301
|
;
|
|
79262
79302
|
|
|
79263
79303
|
}).call(this)}).call(this,require('_process'))
|
|
79264
|
-
},{"_process":
|
|
79304
|
+
},{"_process":322}],315:[function(require,module,exports){
|
|
79265
79305
|
exports.pbkdf2 = require('./lib/async')
|
|
79266
79306
|
exports.pbkdf2Sync = require('./lib/sync')
|
|
79267
79307
|
|
|
79268
|
-
},{"./lib/async":
|
|
79308
|
+
},{"./lib/async":316,"./lib/sync":319}],316:[function(require,module,exports){
|
|
79269
79309
|
(function (process,global){(function (){
|
|
79270
79310
|
var Buffer = require('safe-buffer').Buffer
|
|
79271
79311
|
|
|
@@ -79371,7 +79411,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
79371
79411
|
}
|
|
79372
79412
|
|
|
79373
79413
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79374
|
-
},{"./default-encoding":
|
|
79414
|
+
},{"./default-encoding":317,"./precondition":318,"./sync":319,"./to-buffer":320,"_process":322,"safe-buffer":383}],317:[function(require,module,exports){
|
|
79375
79415
|
(function (process){(function (){
|
|
79376
79416
|
var defaultEncoding
|
|
79377
79417
|
/* istanbul ignore next */
|
|
@@ -79387,7 +79427,7 @@ if (process.browser) {
|
|
|
79387
79427
|
module.exports = defaultEncoding
|
|
79388
79428
|
|
|
79389
79429
|
}).call(this)}).call(this,require('_process'))
|
|
79390
|
-
},{"_process":
|
|
79430
|
+
},{"_process":322}],318:[function(require,module,exports){
|
|
79391
79431
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
79392
79432
|
|
|
79393
79433
|
module.exports = function (iterations, keylen) {
|
|
@@ -79408,7 +79448,7 @@ module.exports = function (iterations, keylen) {
|
|
|
79408
79448
|
}
|
|
79409
79449
|
}
|
|
79410
79450
|
|
|
79411
|
-
},{}],
|
|
79451
|
+
},{}],319:[function(require,module,exports){
|
|
79412
79452
|
var md5 = require('create-hash/md5')
|
|
79413
79453
|
var RIPEMD160 = require('ripemd160')
|
|
79414
79454
|
var sha = require('sha.js')
|
|
@@ -79515,7 +79555,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
79515
79555
|
|
|
79516
79556
|
module.exports = pbkdf2
|
|
79517
79557
|
|
|
79518
|
-
},{"./default-encoding":
|
|
79558
|
+
},{"./default-encoding":317,"./precondition":318,"./to-buffer":320,"create-hash/md5":105,"ripemd160":381,"safe-buffer":383,"sha.js":390}],320:[function(require,module,exports){
|
|
79519
79559
|
var Buffer = require('safe-buffer').Buffer
|
|
79520
79560
|
|
|
79521
79561
|
module.exports = function (thing, encoding, name) {
|
|
@@ -79530,7 +79570,7 @@ module.exports = function (thing, encoding, name) {
|
|
|
79530
79570
|
}
|
|
79531
79571
|
}
|
|
79532
79572
|
|
|
79533
|
-
},{"safe-buffer":
|
|
79573
|
+
},{"safe-buffer":383}],321:[function(require,module,exports){
|
|
79534
79574
|
(function (process){(function (){
|
|
79535
79575
|
'use strict';
|
|
79536
79576
|
|
|
@@ -79579,7 +79619,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
79579
79619
|
|
|
79580
79620
|
|
|
79581
79621
|
}).call(this)}).call(this,require('_process'))
|
|
79582
|
-
},{"_process":
|
|
79622
|
+
},{"_process":322}],322:[function(require,module,exports){
|
|
79583
79623
|
// shim for using process in browser
|
|
79584
79624
|
var process = module.exports = {};
|
|
79585
79625
|
|
|
@@ -79765,7 +79805,7 @@ process.chdir = function (dir) {
|
|
|
79765
79805
|
};
|
|
79766
79806
|
process.umask = function() { return 0; };
|
|
79767
79807
|
|
|
79768
|
-
},{}],
|
|
79808
|
+
},{}],323:[function(require,module,exports){
|
|
79769
79809
|
var parse = require('./parse')
|
|
79770
79810
|
var stringify = require('./stringify')
|
|
79771
79811
|
|
|
@@ -79773,7 +79813,7 @@ module.exports = parse
|
|
|
79773
79813
|
module.exports.parse = parse
|
|
79774
79814
|
module.exports.stringify = stringify
|
|
79775
79815
|
|
|
79776
|
-
},{"./parse":
|
|
79816
|
+
},{"./parse":324,"./stringify":325}],324:[function(require,module,exports){
|
|
79777
79817
|
var tokenize = require('./tokenize')
|
|
79778
79818
|
var MAX_RANGE = 0x1FFFFFFF
|
|
79779
79819
|
|
|
@@ -80534,7 +80574,7 @@ var parse = function (buf) {
|
|
|
80534
80574
|
|
|
80535
80575
|
module.exports = parse
|
|
80536
80576
|
|
|
80537
|
-
},{"./tokenize":
|
|
80577
|
+
},{"./tokenize":326}],325:[function(require,module,exports){
|
|
80538
80578
|
var onfield = function (f, result) {
|
|
80539
80579
|
var prefix = f.repeated ? 'repeated' : f.required ? 'required' : 'optional'
|
|
80540
80580
|
if (f.type === 'map') prefix = 'map<' + f.map.from + ',' + f.map.to + '>'
|
|
@@ -80731,7 +80771,7 @@ module.exports = function (schema) {
|
|
|
80731
80771
|
return result.map(indent('')).join('\n')
|
|
80732
80772
|
}
|
|
80733
80773
|
|
|
80734
|
-
},{}],
|
|
80774
|
+
},{}],326:[function(require,module,exports){
|
|
80735
80775
|
module.exports = function (sch) {
|
|
80736
80776
|
var noComments = function (line) {
|
|
80737
80777
|
var i = line.indexOf('//')
|
|
@@ -80789,15 +80829,15 @@ module.exports = function (sch) {
|
|
|
80789
80829
|
.map(restoreQuotedLines(replacements))
|
|
80790
80830
|
}
|
|
80791
80831
|
|
|
80792
|
-
},{}],
|
|
80793
|
-
arguments[4][268][0].apply(exports,arguments)
|
|
80794
|
-
},{"dup":268}],327:[function(require,module,exports){
|
|
80832
|
+
},{}],327:[function(require,module,exports){
|
|
80795
80833
|
arguments[4][269][0].apply(exports,arguments)
|
|
80796
80834
|
},{"dup":269}],328:[function(require,module,exports){
|
|
80797
80835
|
arguments[4][270][0].apply(exports,arguments)
|
|
80798
|
-
},{"
|
|
80836
|
+
},{"dup":270}],329:[function(require,module,exports){
|
|
80799
80837
|
arguments[4][271][0].apply(exports,arguments)
|
|
80800
|
-
},{"dup":271}],330:[function(require,module,exports){
|
|
80838
|
+
},{"./decode.js":327,"./encode.js":328,"./length.js":330,"dup":271}],330:[function(require,module,exports){
|
|
80839
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
80840
|
+
},{"dup":272}],331:[function(require,module,exports){
|
|
80801
80841
|
/* eslint max-depth: 1 */
|
|
80802
80842
|
'use strict'
|
|
80803
80843
|
|
|
@@ -81129,7 +81169,7 @@ var coerceValue = function (f, def) {
|
|
|
81129
81169
|
|
|
81130
81170
|
module.exports = compileDecode
|
|
81131
81171
|
|
|
81132
|
-
},{"./utils":
|
|
81172
|
+
},{"./utils":349,"varint":329}],332:[function(require,module,exports){
|
|
81133
81173
|
'use strict'
|
|
81134
81174
|
|
|
81135
81175
|
var defined = require('./utils').defined
|
|
@@ -81264,7 +81304,7 @@ function compileEncode (m, resolve, enc, oneofs, encodingLength) {
|
|
|
81264
81304
|
|
|
81265
81305
|
module.exports = compileEncode
|
|
81266
81306
|
|
|
81267
|
-
},{"./utils":
|
|
81307
|
+
},{"./utils":349,"varint":329}],333:[function(require,module,exports){
|
|
81268
81308
|
'use strict'
|
|
81269
81309
|
|
|
81270
81310
|
var defined = require('./utils').defined
|
|
@@ -81368,7 +81408,7 @@ function compileEncodingLength (m, enc, oneofs) {
|
|
|
81368
81408
|
|
|
81369
81409
|
module.exports = compileEncodingLength
|
|
81370
81410
|
|
|
81371
|
-
},{"./utils":
|
|
81411
|
+
},{"./utils":349,"varint":329}],334:[function(require,module,exports){
|
|
81372
81412
|
'use strict'
|
|
81373
81413
|
|
|
81374
81414
|
const encoder = require('./encoder')
|
|
@@ -81391,7 +81431,7 @@ function boolDecode (buffer, dataView, offset) {
|
|
|
81391
81431
|
|
|
81392
81432
|
module.exports = encoder(0, boolEncode, boolDecode, boolEncodingLength)
|
|
81393
81433
|
|
|
81394
|
-
},{"./encoder":
|
|
81434
|
+
},{"./encoder":337}],335:[function(require,module,exports){
|
|
81395
81435
|
'use strict'
|
|
81396
81436
|
|
|
81397
81437
|
const varint = require('varint')
|
|
@@ -81435,7 +81475,7 @@ function bytesDecode (buffer, dataView, offset) {
|
|
|
81435
81475
|
|
|
81436
81476
|
module.exports = encoder(2, bytesEncode, bytesDecode, bytesEncodingLength)
|
|
81437
81477
|
|
|
81438
|
-
},{"./encoder":
|
|
81478
|
+
},{"./encoder":337,"varint":329}],336:[function(require,module,exports){
|
|
81439
81479
|
'use strict'
|
|
81440
81480
|
|
|
81441
81481
|
const encoder = require('./encoder')
|
|
@@ -81458,7 +81498,7 @@ function doubleDecode (buffer, dataView, offset) {
|
|
|
81458
81498
|
|
|
81459
81499
|
module.exports = encoder(1, doubleEncode, doubleDecode, doubleEncodingLength)
|
|
81460
81500
|
|
|
81461
|
-
},{"./encoder":
|
|
81501
|
+
},{"./encoder":337}],337:[function(require,module,exports){
|
|
81462
81502
|
'use strict'
|
|
81463
81503
|
|
|
81464
81504
|
function encoder (type, encode, decode, encodingLength) {
|
|
@@ -81474,7 +81514,7 @@ function encoder (type, encode, decode, encodingLength) {
|
|
|
81474
81514
|
|
|
81475
81515
|
module.exports = encoder
|
|
81476
81516
|
|
|
81477
|
-
},{}],
|
|
81517
|
+
},{}],338:[function(require,module,exports){
|
|
81478
81518
|
'use strict'
|
|
81479
81519
|
|
|
81480
81520
|
const encoder = require('./encoder')
|
|
@@ -81497,7 +81537,7 @@ function fixed32Decode (buffer, dataView, offset) {
|
|
|
81497
81537
|
|
|
81498
81538
|
module.exports = encoder(5, fixed32Encode, fixed32Decode, fixed32EncodingLength)
|
|
81499
81539
|
|
|
81500
|
-
},{"./encoder":
|
|
81540
|
+
},{"./encoder":337}],339:[function(require,module,exports){
|
|
81501
81541
|
'use strict'
|
|
81502
81542
|
|
|
81503
81543
|
const encoder = require('./encoder')
|
|
@@ -81524,7 +81564,7 @@ function fixed64Decode (buffer, dataView, offset) {
|
|
|
81524
81564
|
|
|
81525
81565
|
module.exports = encoder(1, fixed64Encode, fixed64Decode, fixed64EncodingLength)
|
|
81526
81566
|
|
|
81527
|
-
},{"./encoder":
|
|
81567
|
+
},{"./encoder":337}],340:[function(require,module,exports){
|
|
81528
81568
|
'use strict'
|
|
81529
81569
|
|
|
81530
81570
|
const encoder = require('./encoder')
|
|
@@ -81547,7 +81587,7 @@ function floatDecode (buffer, dataView, offset) {
|
|
|
81547
81587
|
|
|
81548
81588
|
module.exports = encoder(5, floatEncode, floatDecode, floatEncodingLength)
|
|
81549
81589
|
|
|
81550
|
-
},{"./encoder":
|
|
81590
|
+
},{"./encoder":337}],341:[function(require,module,exports){
|
|
81551
81591
|
'use strict'
|
|
81552
81592
|
|
|
81553
81593
|
exports.make = require('./encoder')
|
|
@@ -81571,7 +81611,7 @@ exports.fixed32 = require('./fixed32')
|
|
|
81571
81611
|
exports.sfixed32 = require('./sfixed32')
|
|
81572
81612
|
exports.float = require('./float')
|
|
81573
81613
|
|
|
81574
|
-
},{"./bool":
|
|
81614
|
+
},{"./bool":334,"./bytes":335,"./double":336,"./encoder":337,"./fixed32":338,"./fixed64":339,"./float":340,"./int32":342,"./int64":343,"./sfixed32":344,"./sint64":345,"./string":346,"./varint":347}],342:[function(require,module,exports){
|
|
81575
81615
|
'use strict'
|
|
81576
81616
|
|
|
81577
81617
|
const varint = require('varint')
|
|
@@ -81595,7 +81635,7 @@ function int32EncodingLength (val) {
|
|
|
81595
81635
|
|
|
81596
81636
|
module.exports = encoder(0, in32Encode, int32Decode, int32EncodingLength)
|
|
81597
81637
|
|
|
81598
|
-
},{"./encoder":
|
|
81638
|
+
},{"./encoder":337,"varint":329}],343:[function(require,module,exports){
|
|
81599
81639
|
'use strict'
|
|
81600
81640
|
|
|
81601
81641
|
const varint = require('varint')
|
|
@@ -81646,7 +81686,7 @@ function int64EncodingLength (val) {
|
|
|
81646
81686
|
|
|
81647
81687
|
module.exports = encoder(0, int64Encode, int64Decode, int64EncodingLength)
|
|
81648
81688
|
|
|
81649
|
-
},{"./encoder":
|
|
81689
|
+
},{"./encoder":337,"varint":329}],344:[function(require,module,exports){
|
|
81650
81690
|
'use strict'
|
|
81651
81691
|
|
|
81652
81692
|
const encoder = require('./encoder')
|
|
@@ -81669,7 +81709,7 @@ function sfixed32Decode (buffer, dataView, offset) {
|
|
|
81669
81709
|
|
|
81670
81710
|
module.exports = encoder(5, sfixed32Encode, sfixed32Decode, sfixed32EncodingLength)
|
|
81671
81711
|
|
|
81672
|
-
},{"./encoder":
|
|
81712
|
+
},{"./encoder":337}],345:[function(require,module,exports){
|
|
81673
81713
|
'use strict'
|
|
81674
81714
|
|
|
81675
81715
|
const svarint = require('signed-varint')
|
|
@@ -81690,7 +81730,7 @@ function svarintDecode (buffer, dataView, offset) {
|
|
|
81690
81730
|
|
|
81691
81731
|
module.exports = encoder(0, svarintEncode, svarintDecode, svarint.encodingLength)
|
|
81692
81732
|
|
|
81693
|
-
},{"./encoder":
|
|
81733
|
+
},{"./encoder":337,"signed-varint":397}],346:[function(require,module,exports){
|
|
81694
81734
|
'use strict'
|
|
81695
81735
|
|
|
81696
81736
|
const varint = require('varint')
|
|
@@ -81733,7 +81773,7 @@ function stringDecode (buffer, dataView, offset) {
|
|
|
81733
81773
|
|
|
81734
81774
|
module.exports = encoder(2, stringEncode, stringDecode, stringEncodingLength)
|
|
81735
81775
|
|
|
81736
|
-
},{"./encoder":
|
|
81776
|
+
},{"./encoder":337,"uint8arrays/from-string":440,"uint8arrays/to-string":441,"varint":329}],347:[function(require,module,exports){
|
|
81737
81777
|
'use strict'
|
|
81738
81778
|
|
|
81739
81779
|
const varint = require('varint')
|
|
@@ -81754,7 +81794,7 @@ function varintDecode (buffer, dataView, offset) {
|
|
|
81754
81794
|
|
|
81755
81795
|
module.exports = encoder(0, varintEncode, varintDecode, varint.encodingLength)
|
|
81756
81796
|
|
|
81757
|
-
},{"./encoder":
|
|
81797
|
+
},{"./encoder":337,"varint":329}],348:[function(require,module,exports){
|
|
81758
81798
|
'use strict'
|
|
81759
81799
|
|
|
81760
81800
|
const encodings = require('./encodings')
|
|
@@ -81921,14 +81961,14 @@ module.exports = function (schema, extraEncodings) {
|
|
|
81921
81961
|
}))
|
|
81922
81962
|
}
|
|
81923
81963
|
|
|
81924
|
-
},{"./decode":
|
|
81964
|
+
},{"./decode":331,"./encode":332,"./encoding-length":333,"./encodings":341,"varint":329}],349:[function(require,module,exports){
|
|
81925
81965
|
'use strict'
|
|
81926
81966
|
|
|
81927
81967
|
exports.defined = function (val) {
|
|
81928
81968
|
return val !== null && val !== undefined && (typeof val !== 'number' || !isNaN(val))
|
|
81929
81969
|
}
|
|
81930
81970
|
|
|
81931
|
-
},{}],
|
|
81971
|
+
},{}],350:[function(require,module,exports){
|
|
81932
81972
|
'use strict'
|
|
81933
81973
|
|
|
81934
81974
|
var schema = require('protocol-buffers-schema')
|
|
@@ -81969,7 +82009,7 @@ module.exports = function (proto, opts) {
|
|
|
81969
82009
|
return new Messages()
|
|
81970
82010
|
}
|
|
81971
82011
|
|
|
81972
|
-
},{"./compile":
|
|
82012
|
+
},{"./compile":348,"protocol-buffers-schema":323}],351:[function(require,module,exports){
|
|
81973
82013
|
/*!
|
|
81974
82014
|
* prr
|
|
81975
82015
|
* (c) 2013 Rod Vagg <rod@vagg.org>
|
|
@@ -82033,7 +82073,7 @@ module.exports = function (proto, opts) {
|
|
|
82033
82073
|
|
|
82034
82074
|
return prr
|
|
82035
82075
|
})
|
|
82036
|
-
},{}],
|
|
82076
|
+
},{}],352:[function(require,module,exports){
|
|
82037
82077
|
exports.publicEncrypt = require('./publicEncrypt')
|
|
82038
82078
|
exports.privateDecrypt = require('./privateDecrypt')
|
|
82039
82079
|
|
|
@@ -82045,7 +82085,7 @@ exports.publicDecrypt = function publicDecrypt (key, buf) {
|
|
|
82045
82085
|
return exports.privateDecrypt(key, buf, true)
|
|
82046
82086
|
}
|
|
82047
82087
|
|
|
82048
|
-
},{"./privateDecrypt":
|
|
82088
|
+
},{"./privateDecrypt":355,"./publicEncrypt":356}],353:[function(require,module,exports){
|
|
82049
82089
|
var createHash = require('create-hash')
|
|
82050
82090
|
var Buffer = require('safe-buffer').Buffer
|
|
82051
82091
|
|
|
@@ -82066,9 +82106,9 @@ function i2ops (c) {
|
|
|
82066
82106
|
return out
|
|
82067
82107
|
}
|
|
82068
82108
|
|
|
82069
|
-
},{"create-hash":
|
|
82070
|
-
arguments[4][
|
|
82071
|
-
},{"buffer":
|
|
82109
|
+
},{"create-hash":104,"safe-buffer":383}],354:[function(require,module,exports){
|
|
82110
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
82111
|
+
},{"buffer":55,"dup":27}],355:[function(require,module,exports){
|
|
82072
82112
|
var parseKeys = require('parse-asn1')
|
|
82073
82113
|
var mgf = require('./mgf')
|
|
82074
82114
|
var xor = require('./xor')
|
|
@@ -82175,7 +82215,7 @@ function compare (a, b) {
|
|
|
82175
82215
|
return dif
|
|
82176
82216
|
}
|
|
82177
82217
|
|
|
82178
|
-
},{"./mgf":
|
|
82218
|
+
},{"./mgf":353,"./withPublic":357,"./xor":358,"bn.js":354,"browserify-rsa":76,"create-hash":104,"parse-asn1":312,"safe-buffer":383}],356:[function(require,module,exports){
|
|
82179
82219
|
var parseKeys = require('parse-asn1')
|
|
82180
82220
|
var randomBytes = require('randombytes')
|
|
82181
82221
|
var createHash = require('create-hash')
|
|
@@ -82265,7 +82305,7 @@ function nonZero (len) {
|
|
|
82265
82305
|
return out
|
|
82266
82306
|
}
|
|
82267
82307
|
|
|
82268
|
-
},{"./mgf":
|
|
82308
|
+
},{"./mgf":353,"./withPublic":357,"./xor":358,"bn.js":354,"browserify-rsa":76,"create-hash":104,"parse-asn1":312,"randombytes":364,"safe-buffer":383}],357:[function(require,module,exports){
|
|
82269
82309
|
var BN = require('bn.js')
|
|
82270
82310
|
var Buffer = require('safe-buffer').Buffer
|
|
82271
82311
|
|
|
@@ -82279,7 +82319,7 @@ function withPublic (paddedMsg, key) {
|
|
|
82279
82319
|
|
|
82280
82320
|
module.exports = withPublic
|
|
82281
82321
|
|
|
82282
|
-
},{"bn.js":
|
|
82322
|
+
},{"bn.js":354,"safe-buffer":383}],358:[function(require,module,exports){
|
|
82283
82323
|
module.exports = function xor (a, b) {
|
|
82284
82324
|
var len = a.length
|
|
82285
82325
|
var i = -1
|
|
@@ -82289,7 +82329,7 @@ module.exports = function xor (a, b) {
|
|
|
82289
82329
|
return a
|
|
82290
82330
|
}
|
|
82291
82331
|
|
|
82292
|
-
},{}],
|
|
82332
|
+
},{}],359:[function(require,module,exports){
|
|
82293
82333
|
(function (global){(function (){
|
|
82294
82334
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
82295
82335
|
;(function(root) {
|
|
@@ -82826,7 +82866,7 @@ module.exports = function xor (a, b) {
|
|
|
82826
82866
|
}(this));
|
|
82827
82867
|
|
|
82828
82868
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82829
|
-
},{}],
|
|
82869
|
+
},{}],360:[function(require,module,exports){
|
|
82830
82870
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82831
82871
|
//
|
|
82832
82872
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -82912,7 +82952,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
82912
82952
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
|
82913
82953
|
};
|
|
82914
82954
|
|
|
82915
|
-
},{}],
|
|
82955
|
+
},{}],361:[function(require,module,exports){
|
|
82916
82956
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82917
82957
|
//
|
|
82918
82958
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -82999,13 +83039,13 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
82999
83039
|
return res;
|
|
83000
83040
|
};
|
|
83001
83041
|
|
|
83002
|
-
},{}],
|
|
83042
|
+
},{}],362:[function(require,module,exports){
|
|
83003
83043
|
'use strict';
|
|
83004
83044
|
|
|
83005
83045
|
exports.decode = exports.parse = require('./decode');
|
|
83006
83046
|
exports.encode = exports.stringify = require('./encode');
|
|
83007
83047
|
|
|
83008
|
-
},{"./decode":
|
|
83048
|
+
},{"./decode":360,"./encode":361}],363:[function(require,module,exports){
|
|
83009
83049
|
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
83010
83050
|
let promise
|
|
83011
83051
|
|
|
@@ -83016,7 +83056,7 @@ module.exports = typeof queueMicrotask === 'function'
|
|
|
83016
83056
|
.then(cb)
|
|
83017
83057
|
.catch(err => setTimeout(() => { throw err }, 0))
|
|
83018
83058
|
|
|
83019
|
-
},{}],
|
|
83059
|
+
},{}],364:[function(require,module,exports){
|
|
83020
83060
|
(function (process,global){(function (){
|
|
83021
83061
|
'use strict'
|
|
83022
83062
|
|
|
@@ -83070,7 +83110,7 @@ function randomBytes (size, cb) {
|
|
|
83070
83110
|
}
|
|
83071
83111
|
|
|
83072
83112
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
83073
|
-
},{"_process":
|
|
83113
|
+
},{"_process":322,"safe-buffer":383}],365:[function(require,module,exports){
|
|
83074
83114
|
(function (process,global){(function (){
|
|
83075
83115
|
'use strict'
|
|
83076
83116
|
|
|
@@ -83182,7 +83222,7 @@ function randomFillSync (buf, offset, size) {
|
|
|
83182
83222
|
}
|
|
83183
83223
|
|
|
83184
83224
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
83185
|
-
},{"_process":
|
|
83225
|
+
},{"_process":322,"randombytes":364,"safe-buffer":383}],366:[function(require,module,exports){
|
|
83186
83226
|
'use strict';
|
|
83187
83227
|
|
|
83188
83228
|
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
|
@@ -83311,7 +83351,7 @@ createErrorType('ERR_UNKNOWN_ENCODING', function (arg) {
|
|
|
83311
83351
|
createErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');
|
|
83312
83352
|
module.exports.codes = codes;
|
|
83313
83353
|
|
|
83314
|
-
},{}],
|
|
83354
|
+
},{}],367:[function(require,module,exports){
|
|
83315
83355
|
(function (process){(function (){
|
|
83316
83356
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83317
83357
|
//
|
|
@@ -83453,7 +83493,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
|
|
|
83453
83493
|
}
|
|
83454
83494
|
});
|
|
83455
83495
|
}).call(this)}).call(this,require('_process'))
|
|
83456
|
-
},{"./_stream_readable":
|
|
83496
|
+
},{"./_stream_readable":369,"./_stream_writable":371,"_process":322,"inherits":210}],368:[function(require,module,exports){
|
|
83457
83497
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83458
83498
|
//
|
|
83459
83499
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -83493,7 +83533,7 @@ function PassThrough(options) {
|
|
|
83493
83533
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
83494
83534
|
cb(null, chunk);
|
|
83495
83535
|
};
|
|
83496
|
-
},{"./_stream_transform":
|
|
83536
|
+
},{"./_stream_transform":370,"inherits":210}],369:[function(require,module,exports){
|
|
83497
83537
|
(function (process,global){(function (){
|
|
83498
83538
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83499
83539
|
//
|
|
@@ -84620,7 +84660,7 @@ function indexOf(xs, x) {
|
|
|
84620
84660
|
return -1;
|
|
84621
84661
|
}
|
|
84622
84662
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
84623
|
-
},{"../errors":
|
|
84663
|
+
},{"../errors":366,"./_stream_duplex":367,"./internal/streams/async_iterator":372,"./internal/streams/buffer_list":373,"./internal/streams/destroy":374,"./internal/streams/from":376,"./internal/streams/state":378,"./internal/streams/stream":379,"_process":322,"buffer":91,"events":178,"inherits":210,"string_decoder/":427,"util":55}],370:[function(require,module,exports){
|
|
84624
84664
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
84625
84665
|
//
|
|
84626
84666
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -84822,7 +84862,7 @@ function done(stream, er, data) {
|
|
|
84822
84862
|
if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING();
|
|
84823
84863
|
return stream.push(null);
|
|
84824
84864
|
}
|
|
84825
|
-
},{"../errors":
|
|
84865
|
+
},{"../errors":366,"./_stream_duplex":367,"inherits":210}],371:[function(require,module,exports){
|
|
84826
84866
|
(function (process,global){(function (){
|
|
84827
84867
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
84828
84868
|
//
|
|
@@ -85522,7 +85562,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
85522
85562
|
cb(err);
|
|
85523
85563
|
};
|
|
85524
85564
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
85525
|
-
},{"../errors":
|
|
85565
|
+
},{"../errors":366,"./_stream_duplex":367,"./internal/streams/destroy":374,"./internal/streams/state":378,"./internal/streams/stream":379,"_process":322,"buffer":91,"inherits":210,"util-deprecate":445}],372:[function(require,module,exports){
|
|
85526
85566
|
(function (process){(function (){
|
|
85527
85567
|
'use strict';
|
|
85528
85568
|
|
|
@@ -85732,7 +85772,7 @@ var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterat
|
|
|
85732
85772
|
|
|
85733
85773
|
module.exports = createReadableStreamAsyncIterator;
|
|
85734
85774
|
}).call(this)}).call(this,require('_process'))
|
|
85735
|
-
},{"./end-of-stream":
|
|
85775
|
+
},{"./end-of-stream":375,"_process":322}],373:[function(require,module,exports){
|
|
85736
85776
|
'use strict';
|
|
85737
85777
|
|
|
85738
85778
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -85943,7 +85983,7 @@ function () {
|
|
|
85943
85983
|
|
|
85944
85984
|
return BufferList;
|
|
85945
85985
|
}();
|
|
85946
|
-
},{"buffer":
|
|
85986
|
+
},{"buffer":91,"util":55}],374:[function(require,module,exports){
|
|
85947
85987
|
(function (process){(function (){
|
|
85948
85988
|
'use strict'; // undocumented cb() API, needed for core, not for public API
|
|
85949
85989
|
|
|
@@ -86051,7 +86091,7 @@ module.exports = {
|
|
|
86051
86091
|
errorOrDestroy: errorOrDestroy
|
|
86052
86092
|
};
|
|
86053
86093
|
}).call(this)}).call(this,require('_process'))
|
|
86054
|
-
},{"_process":
|
|
86094
|
+
},{"_process":322}],375:[function(require,module,exports){
|
|
86055
86095
|
// Ported from https://github.com/mafintosh/end-of-stream with
|
|
86056
86096
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
86057
86097
|
'use strict';
|
|
@@ -86156,12 +86196,12 @@ function eos(stream, opts, callback) {
|
|
|
86156
86196
|
}
|
|
86157
86197
|
|
|
86158
86198
|
module.exports = eos;
|
|
86159
|
-
},{"../../../errors":
|
|
86199
|
+
},{"../../../errors":366}],376:[function(require,module,exports){
|
|
86160
86200
|
module.exports = function () {
|
|
86161
86201
|
throw new Error('Readable.from is not available in the browser')
|
|
86162
86202
|
};
|
|
86163
86203
|
|
|
86164
|
-
},{}],
|
|
86204
|
+
},{}],377:[function(require,module,exports){
|
|
86165
86205
|
// Ported from https://github.com/mafintosh/pump with
|
|
86166
86206
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
86167
86207
|
'use strict';
|
|
@@ -86259,7 +86299,7 @@ function pipeline() {
|
|
|
86259
86299
|
}
|
|
86260
86300
|
|
|
86261
86301
|
module.exports = pipeline;
|
|
86262
|
-
},{"../../../errors":
|
|
86302
|
+
},{"../../../errors":366,"./end-of-stream":375}],378:[function(require,module,exports){
|
|
86263
86303
|
'use strict';
|
|
86264
86304
|
|
|
86265
86305
|
var ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;
|
|
@@ -86287,10 +86327,10 @@ function getHighWaterMark(state, options, duplexKey, isDuplex) {
|
|
|
86287
86327
|
module.exports = {
|
|
86288
86328
|
getHighWaterMark: getHighWaterMark
|
|
86289
86329
|
};
|
|
86290
|
-
},{"../../../errors":
|
|
86330
|
+
},{"../../../errors":366}],379:[function(require,module,exports){
|
|
86291
86331
|
module.exports = require('events').EventEmitter;
|
|
86292
86332
|
|
|
86293
|
-
},{"events":
|
|
86333
|
+
},{"events":178}],380:[function(require,module,exports){
|
|
86294
86334
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
86295
86335
|
exports.Stream = exports;
|
|
86296
86336
|
exports.Readable = exports;
|
|
@@ -86301,7 +86341,7 @@ exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
|
86301
86341
|
exports.finished = require('./lib/internal/streams/end-of-stream.js');
|
|
86302
86342
|
exports.pipeline = require('./lib/internal/streams/pipeline.js');
|
|
86303
86343
|
|
|
86304
|
-
},{"./lib/_stream_duplex.js":
|
|
86344
|
+
},{"./lib/_stream_duplex.js":367,"./lib/_stream_passthrough.js":368,"./lib/_stream_readable.js":369,"./lib/_stream_transform.js":370,"./lib/_stream_writable.js":371,"./lib/internal/streams/end-of-stream.js":375,"./lib/internal/streams/pipeline.js":377}],381:[function(require,module,exports){
|
|
86305
86345
|
'use strict'
|
|
86306
86346
|
var Buffer = require('buffer').Buffer
|
|
86307
86347
|
var inherits = require('inherits')
|
|
@@ -86466,7 +86506,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
86466
86506
|
|
|
86467
86507
|
module.exports = RIPEMD160
|
|
86468
86508
|
|
|
86469
|
-
},{"buffer":
|
|
86509
|
+
},{"buffer":91,"hash-base":182,"inherits":210}],382:[function(require,module,exports){
|
|
86470
86510
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
86471
86511
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
86472
86512
|
module.exports = factory();
|
|
@@ -87395,7 +87435,7 @@ module.exports = function () {
|
|
|
87395
87435
|
/***/ })
|
|
87396
87436
|
/******/ ]);
|
|
87397
87437
|
});
|
|
87398
|
-
},{}],
|
|
87438
|
+
},{}],383:[function(require,module,exports){
|
|
87399
87439
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
87400
87440
|
/* eslint-disable node/no-deprecated-api */
|
|
87401
87441
|
var buffer = require('buffer')
|
|
@@ -87462,7 +87502,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
87462
87502
|
return buffer.SlowBuffer(size)
|
|
87463
87503
|
}
|
|
87464
87504
|
|
|
87465
|
-
},{"buffer":
|
|
87505
|
+
},{"buffer":91}],384:[function(require,module,exports){
|
|
87466
87506
|
(function (process){(function (){
|
|
87467
87507
|
/* eslint-disable node/no-deprecated-api */
|
|
87468
87508
|
|
|
@@ -87543,10 +87583,10 @@ if (!safer.constants) {
|
|
|
87543
87583
|
module.exports = safer
|
|
87544
87584
|
|
|
87545
87585
|
}).call(this)}).call(this,require('_process'))
|
|
87546
|
-
},{"_process":
|
|
87586
|
+
},{"_process":322,"buffer":91}],385:[function(require,module,exports){
|
|
87547
87587
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
87548
87588
|
|
|
87549
|
-
},{"./lib":
|
|
87589
|
+
},{"./lib":387,"./lib/elliptic":386}],386:[function(require,module,exports){
|
|
87550
87590
|
const EC = require('elliptic').ec
|
|
87551
87591
|
|
|
87552
87592
|
const ec = new EC('secp256k1')
|
|
@@ -87950,7 +87990,7 @@ module.exports = {
|
|
|
87950
87990
|
}
|
|
87951
87991
|
}
|
|
87952
87992
|
|
|
87953
|
-
},{"elliptic":
|
|
87993
|
+
},{"elliptic":149}],387:[function(require,module,exports){
|
|
87954
87994
|
const errors = {
|
|
87955
87995
|
IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
|
|
87956
87996
|
TWEAK_ADD:
|
|
@@ -88288,7 +88328,7 @@ module.exports = (secp256k1) => {
|
|
|
88288
88328
|
}
|
|
88289
88329
|
}
|
|
88290
88330
|
|
|
88291
|
-
},{}],
|
|
88331
|
+
},{}],388:[function(require,module,exports){
|
|
88292
88332
|
'use strict'
|
|
88293
88333
|
/* eslint no-proto: 0 */
|
|
88294
88334
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -88307,7 +88347,7 @@ function mixinProperties (obj, proto) {
|
|
|
88307
88347
|
return obj
|
|
88308
88348
|
}
|
|
88309
88349
|
|
|
88310
|
-
},{}],
|
|
88350
|
+
},{}],389:[function(require,module,exports){
|
|
88311
88351
|
var Buffer = require('safe-buffer').Buffer
|
|
88312
88352
|
|
|
88313
88353
|
// prototype class for hash functions
|
|
@@ -88390,7 +88430,7 @@ Hash.prototype._update = function () {
|
|
|
88390
88430
|
|
|
88391
88431
|
module.exports = Hash
|
|
88392
88432
|
|
|
88393
|
-
},{"safe-buffer":
|
|
88433
|
+
},{"safe-buffer":383}],390:[function(require,module,exports){
|
|
88394
88434
|
var exports = module.exports = function SHA (algorithm) {
|
|
88395
88435
|
algorithm = algorithm.toLowerCase()
|
|
88396
88436
|
|
|
@@ -88407,7 +88447,7 @@ exports.sha256 = require('./sha256')
|
|
|
88407
88447
|
exports.sha384 = require('./sha384')
|
|
88408
88448
|
exports.sha512 = require('./sha512')
|
|
88409
88449
|
|
|
88410
|
-
},{"./sha":
|
|
88450
|
+
},{"./sha":391,"./sha1":392,"./sha224":393,"./sha256":394,"./sha384":395,"./sha512":396}],391:[function(require,module,exports){
|
|
88411
88451
|
/*
|
|
88412
88452
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
88413
88453
|
* in FIPS PUB 180-1
|
|
@@ -88503,7 +88543,7 @@ Sha.prototype._hash = function () {
|
|
|
88503
88543
|
|
|
88504
88544
|
module.exports = Sha
|
|
88505
88545
|
|
|
88506
|
-
},{"./hash":
|
|
88546
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],392:[function(require,module,exports){
|
|
88507
88547
|
/*
|
|
88508
88548
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
88509
88549
|
* in FIPS PUB 180-1
|
|
@@ -88604,7 +88644,7 @@ Sha1.prototype._hash = function () {
|
|
|
88604
88644
|
|
|
88605
88645
|
module.exports = Sha1
|
|
88606
88646
|
|
|
88607
|
-
},{"./hash":
|
|
88647
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],393:[function(require,module,exports){
|
|
88608
88648
|
/**
|
|
88609
88649
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
88610
88650
|
* in FIPS 180-2
|
|
@@ -88659,7 +88699,7 @@ Sha224.prototype._hash = function () {
|
|
|
88659
88699
|
|
|
88660
88700
|
module.exports = Sha224
|
|
88661
88701
|
|
|
88662
|
-
},{"./hash":
|
|
88702
|
+
},{"./hash":389,"./sha256":394,"inherits":210,"safe-buffer":383}],394:[function(require,module,exports){
|
|
88663
88703
|
/**
|
|
88664
88704
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
88665
88705
|
* in FIPS 180-2
|
|
@@ -88796,7 +88836,7 @@ Sha256.prototype._hash = function () {
|
|
|
88796
88836
|
|
|
88797
88837
|
module.exports = Sha256
|
|
88798
88838
|
|
|
88799
|
-
},{"./hash":
|
|
88839
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],395:[function(require,module,exports){
|
|
88800
88840
|
var inherits = require('inherits')
|
|
88801
88841
|
var SHA512 = require('./sha512')
|
|
88802
88842
|
var Hash = require('./hash')
|
|
@@ -88855,7 +88895,7 @@ Sha384.prototype._hash = function () {
|
|
|
88855
88895
|
|
|
88856
88896
|
module.exports = Sha384
|
|
88857
88897
|
|
|
88858
|
-
},{"./hash":
|
|
88898
|
+
},{"./hash":389,"./sha512":396,"inherits":210,"safe-buffer":383}],396:[function(require,module,exports){
|
|
88859
88899
|
var inherits = require('inherits')
|
|
88860
88900
|
var Hash = require('./hash')
|
|
88861
88901
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -89117,7 +89157,7 @@ Sha512.prototype._hash = function () {
|
|
|
89117
89157
|
|
|
89118
89158
|
module.exports = Sha512
|
|
89119
89159
|
|
|
89120
|
-
},{"./hash":
|
|
89160
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],397:[function(require,module,exports){
|
|
89121
89161
|
var varint = require('varint')
|
|
89122
89162
|
exports.encode = function encode (v, b, o) {
|
|
89123
89163
|
v = v >= 0 ? v*2 : v*-2 - 1
|
|
@@ -89135,15 +89175,15 @@ exports.encodingLength = function (v) {
|
|
|
89135
89175
|
return varint.encodingLength(v >= 0 ? v*2 : v*-2 - 1)
|
|
89136
89176
|
}
|
|
89137
89177
|
|
|
89138
|
-
},{"varint":
|
|
89139
|
-
arguments[4][268][0].apply(exports,arguments)
|
|
89140
|
-
},{"dup":268}],398:[function(require,module,exports){
|
|
89178
|
+
},{"varint":400}],398:[function(require,module,exports){
|
|
89141
89179
|
arguments[4][269][0].apply(exports,arguments)
|
|
89142
89180
|
},{"dup":269}],399:[function(require,module,exports){
|
|
89143
89181
|
arguments[4][270][0].apply(exports,arguments)
|
|
89144
|
-
},{"
|
|
89182
|
+
},{"dup":270}],400:[function(require,module,exports){
|
|
89145
89183
|
arguments[4][271][0].apply(exports,arguments)
|
|
89146
|
-
},{"dup":271}],401:[function(require,module,exports){
|
|
89184
|
+
},{"./decode.js":398,"./encode.js":399,"./length.js":401,"dup":271}],401:[function(require,module,exports){
|
|
89185
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
89186
|
+
},{"dup":272}],402:[function(require,module,exports){
|
|
89147
89187
|
/*! simple-peer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
89148
89188
|
const debug = require('debug')('simple-peer')
|
|
89149
89189
|
const getBrowserRTC = require('get-browser-rtc')
|
|
@@ -90169,7 +90209,7 @@ Peer.channelConfig = {}
|
|
|
90169
90209
|
|
|
90170
90210
|
module.exports = Peer
|
|
90171
90211
|
|
|
90172
|
-
},{"buffer":
|
|
90212
|
+
},{"buffer":91,"debug":122,"err-code":173,"get-browser-rtc":181,"queue-microtask":363,"randombytes":364,"readable-stream":380}],403:[function(require,module,exports){
|
|
90173
90213
|
/* global self */
|
|
90174
90214
|
|
|
90175
90215
|
var Rusha = require('rusha')
|
|
@@ -90247,7 +90287,7 @@ function hex (buf) {
|
|
|
90247
90287
|
module.exports = sha1
|
|
90248
90288
|
module.exports.sync = sha1sync
|
|
90249
90289
|
|
|
90250
|
-
},{"./rusha-worker-sha1":
|
|
90290
|
+
},{"./rusha-worker-sha1":404,"rusha":382}],404:[function(require,module,exports){
|
|
90251
90291
|
var Rusha = require('rusha')
|
|
90252
90292
|
|
|
90253
90293
|
var worker
|
|
@@ -90282,7 +90322,7 @@ function sha1 (buf, cb) {
|
|
|
90282
90322
|
|
|
90283
90323
|
module.exports = sha1
|
|
90284
90324
|
|
|
90285
|
-
},{"rusha":
|
|
90325
|
+
},{"rusha":382}],405:[function(require,module,exports){
|
|
90286
90326
|
module.exports={
|
|
90287
90327
|
"100": "Continue",
|
|
90288
90328
|
"101": "Switching Protocols",
|
|
@@ -90350,7 +90390,7 @@ module.exports={
|
|
|
90350
90390
|
"511": "Network Authentication Required"
|
|
90351
90391
|
}
|
|
90352
90392
|
|
|
90353
|
-
},{}],
|
|
90393
|
+
},{}],406:[function(require,module,exports){
|
|
90354
90394
|
/*!
|
|
90355
90395
|
* statuses
|
|
90356
90396
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -90465,7 +90505,7 @@ function status (code) {
|
|
|
90465
90505
|
return n
|
|
90466
90506
|
}
|
|
90467
90507
|
|
|
90468
|
-
},{"./codes.json":
|
|
90508
|
+
},{"./codes.json":405}],407:[function(require,module,exports){
|
|
90469
90509
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90470
90510
|
//
|
|
90471
90511
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90594,10 +90634,10 @@ Stream.prototype.pipe = function(dest, options) {
|
|
|
90594
90634
|
return dest;
|
|
90595
90635
|
};
|
|
90596
90636
|
|
|
90597
|
-
},{"events":
|
|
90637
|
+
},{"events":178,"inherits":210,"readable-stream/duplex.js":408,"readable-stream/passthrough.js":417,"readable-stream/readable.js":418,"readable-stream/transform.js":419,"readable-stream/writable.js":420}],408:[function(require,module,exports){
|
|
90598
90638
|
module.exports = require('./lib/_stream_duplex.js');
|
|
90599
90639
|
|
|
90600
|
-
},{"./lib/_stream_duplex.js":
|
|
90640
|
+
},{"./lib/_stream_duplex.js":409}],409:[function(require,module,exports){
|
|
90601
90641
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90602
90642
|
//
|
|
90603
90643
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90729,7 +90769,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
90729
90769
|
|
|
90730
90770
|
pna.nextTick(cb, err);
|
|
90731
90771
|
};
|
|
90732
|
-
},{"./_stream_readable":
|
|
90772
|
+
},{"./_stream_readable":411,"./_stream_writable":413,"core-util-is":101,"inherits":210,"process-nextick-args":321}],410:[function(require,module,exports){
|
|
90733
90773
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90734
90774
|
//
|
|
90735
90775
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90777,7 +90817,7 @@ function PassThrough(options) {
|
|
|
90777
90817
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
90778
90818
|
cb(null, chunk);
|
|
90779
90819
|
};
|
|
90780
|
-
},{"./_stream_transform":
|
|
90820
|
+
},{"./_stream_transform":412,"core-util-is":101,"inherits":210}],411:[function(require,module,exports){
|
|
90781
90821
|
(function (process,global){(function (){
|
|
90782
90822
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90783
90823
|
//
|
|
@@ -91799,7 +91839,7 @@ function indexOf(xs, x) {
|
|
|
91799
91839
|
return -1;
|
|
91800
91840
|
}
|
|
91801
91841
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
91802
|
-
},{"./_stream_duplex":
|
|
91842
|
+
},{"./_stream_duplex":409,"./internal/streams/BufferList":414,"./internal/streams/destroy":415,"./internal/streams/stream":416,"_process":322,"core-util-is":101,"events":178,"inherits":210,"isarray":222,"process-nextick-args":321,"safe-buffer":421,"string_decoder/":422,"util":55}],412:[function(require,module,exports){
|
|
91803
91843
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
91804
91844
|
//
|
|
91805
91845
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -92014,7 +92054,7 @@ function done(stream, er, data) {
|
|
|
92014
92054
|
|
|
92015
92055
|
return stream.push(null);
|
|
92016
92056
|
}
|
|
92017
|
-
},{"./_stream_duplex":
|
|
92057
|
+
},{"./_stream_duplex":409,"core-util-is":101,"inherits":210}],413:[function(require,module,exports){
|
|
92018
92058
|
(function (process,global,setImmediate){(function (){
|
|
92019
92059
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
92020
92060
|
//
|
|
@@ -92704,7 +92744,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
92704
92744
|
cb(err);
|
|
92705
92745
|
};
|
|
92706
92746
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("timers").setImmediate)
|
|
92707
|
-
},{"./_stream_duplex":
|
|
92747
|
+
},{"./_stream_duplex":409,"./internal/streams/destroy":415,"./internal/streams/stream":416,"_process":322,"core-util-is":101,"inherits":210,"process-nextick-args":321,"safe-buffer":421,"timers":428,"util-deprecate":445}],414:[function(require,module,exports){
|
|
92708
92748
|
'use strict';
|
|
92709
92749
|
|
|
92710
92750
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -92784,7 +92824,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
92784
92824
|
return this.constructor.name + ' ' + obj;
|
|
92785
92825
|
};
|
|
92786
92826
|
}
|
|
92787
|
-
},{"safe-buffer":
|
|
92827
|
+
},{"safe-buffer":421,"util":55}],415:[function(require,module,exports){
|
|
92788
92828
|
'use strict';
|
|
92789
92829
|
|
|
92790
92830
|
/*<replacement>*/
|
|
@@ -92859,12 +92899,12 @@ module.exports = {
|
|
|
92859
92899
|
destroy: destroy,
|
|
92860
92900
|
undestroy: undestroy
|
|
92861
92901
|
};
|
|
92862
|
-
},{"process-nextick-args":
|
|
92863
|
-
arguments[4][
|
|
92864
|
-
},{"dup":
|
|
92902
|
+
},{"process-nextick-args":321}],416:[function(require,module,exports){
|
|
92903
|
+
arguments[4][379][0].apply(exports,arguments)
|
|
92904
|
+
},{"dup":379,"events":178}],417:[function(require,module,exports){
|
|
92865
92905
|
module.exports = require('./readable').PassThrough
|
|
92866
92906
|
|
|
92867
|
-
},{"./readable":
|
|
92907
|
+
},{"./readable":418}],418:[function(require,module,exports){
|
|
92868
92908
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
92869
92909
|
exports.Stream = exports;
|
|
92870
92910
|
exports.Readable = exports;
|
|
@@ -92873,15 +92913,15 @@ exports.Duplex = require('./lib/_stream_duplex.js');
|
|
|
92873
92913
|
exports.Transform = require('./lib/_stream_transform.js');
|
|
92874
92914
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
92875
92915
|
|
|
92876
|
-
},{"./lib/_stream_duplex.js":
|
|
92916
|
+
},{"./lib/_stream_duplex.js":409,"./lib/_stream_passthrough.js":410,"./lib/_stream_readable.js":411,"./lib/_stream_transform.js":412,"./lib/_stream_writable.js":413}],419:[function(require,module,exports){
|
|
92877
92917
|
module.exports = require('./readable').Transform
|
|
92878
92918
|
|
|
92879
|
-
},{"./readable":
|
|
92919
|
+
},{"./readable":418}],420:[function(require,module,exports){
|
|
92880
92920
|
module.exports = require('./lib/_stream_writable.js');
|
|
92881
92921
|
|
|
92882
|
-
},{"./lib/_stream_writable.js":
|
|
92883
|
-
arguments[4][
|
|
92884
|
-
},{"buffer":
|
|
92922
|
+
},{"./lib/_stream_writable.js":413}],421:[function(require,module,exports){
|
|
92923
|
+
arguments[4][98][0].apply(exports,arguments)
|
|
92924
|
+
},{"buffer":91,"dup":98}],422:[function(require,module,exports){
|
|
92885
92925
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
92886
92926
|
//
|
|
92887
92927
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -93178,7 +93218,7 @@ function simpleWrite(buf) {
|
|
|
93178
93218
|
function simpleEnd(buf) {
|
|
93179
93219
|
return buf && buf.length ? this.write(buf) : '';
|
|
93180
93220
|
}
|
|
93181
|
-
},{"safe-buffer":
|
|
93221
|
+
},{"safe-buffer":421}],423:[function(require,module,exports){
|
|
93182
93222
|
(function (global){(function (){
|
|
93183
93223
|
var ClientRequest = require('./lib/request')
|
|
93184
93224
|
var response = require('./lib/response')
|
|
@@ -93266,7 +93306,7 @@ http.METHODS = [
|
|
|
93266
93306
|
'UNSUBSCRIBE'
|
|
93267
93307
|
]
|
|
93268
93308
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
93269
|
-
},{"./lib/request":
|
|
93309
|
+
},{"./lib/request":425,"./lib/response":426,"builtin-status-codes":92,"url":443,"xtend":458}],424:[function(require,module,exports){
|
|
93270
93310
|
(function (global){(function (){
|
|
93271
93311
|
exports.fetch = isFunction(global.fetch) && isFunction(global.ReadableStream)
|
|
93272
93312
|
|
|
@@ -93329,7 +93369,7 @@ function isFunction (value) {
|
|
|
93329
93369
|
xhr = null // Help gc
|
|
93330
93370
|
|
|
93331
93371
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
93332
|
-
},{}],
|
|
93372
|
+
},{}],425:[function(require,module,exports){
|
|
93333
93373
|
(function (process,global,Buffer){(function (){
|
|
93334
93374
|
var capability = require('./capability')
|
|
93335
93375
|
var inherits = require('inherits')
|
|
@@ -93685,7 +93725,7 @@ var unsafeHeaders = [
|
|
|
93685
93725
|
]
|
|
93686
93726
|
|
|
93687
93727
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
93688
|
-
},{"./capability":
|
|
93728
|
+
},{"./capability":424,"./response":426,"_process":322,"buffer":91,"inherits":210,"readable-stream":380}],426:[function(require,module,exports){
|
|
93689
93729
|
(function (process,global,Buffer){(function (){
|
|
93690
93730
|
var capability = require('./capability')
|
|
93691
93731
|
var inherits = require('inherits')
|
|
@@ -93900,9 +93940,9 @@ IncomingMessage.prototype._onXHRProgress = function (resetTimers) {
|
|
|
93900
93940
|
}
|
|
93901
93941
|
|
|
93902
93942
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
93903
|
-
},{"./capability":
|
|
93904
|
-
arguments[4][
|
|
93905
|
-
},{"dup":
|
|
93943
|
+
},{"./capability":424,"_process":322,"buffer":91,"inherits":210,"readable-stream":380}],427:[function(require,module,exports){
|
|
93944
|
+
arguments[4][422][0].apply(exports,arguments)
|
|
93945
|
+
},{"dup":422,"safe-buffer":383}],428:[function(require,module,exports){
|
|
93906
93946
|
(function (setImmediate,clearImmediate){(function (){
|
|
93907
93947
|
var nextTick = require('process/browser.js').nextTick;
|
|
93908
93948
|
var apply = Function.prototype.apply;
|
|
@@ -93981,7 +94021,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
93981
94021
|
delete immediateIds[id];
|
|
93982
94022
|
};
|
|
93983
94023
|
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
93984
|
-
},{"process/browser.js":
|
|
94024
|
+
},{"process/browser.js":322,"timers":428}],429:[function(require,module,exports){
|
|
93985
94025
|
(function (Buffer){(function (){
|
|
93986
94026
|
const BN = require('bn.js')
|
|
93987
94027
|
const EC = require('elliptic').ec
|
|
@@ -94267,9 +94307,9 @@ module.exports = {
|
|
|
94267
94307
|
}
|
|
94268
94308
|
|
|
94269
94309
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94270
|
-
},{"./rfc6979":
|
|
94271
|
-
arguments[4][
|
|
94272
|
-
},{"buffer":
|
|
94310
|
+
},{"./rfc6979":431,"bn.js":430,"buffer":91,"elliptic":149}],430:[function(require,module,exports){
|
|
94311
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
94312
|
+
},{"buffer":55,"dup":27}],431:[function(require,module,exports){
|
|
94273
94313
|
(function (Buffer){(function (){
|
|
94274
94314
|
const createHmac = require('create-hmac')
|
|
94275
94315
|
|
|
@@ -94335,7 +94375,7 @@ function deterministicGenerateK (hash, x, checkSig, isPrivate, extraEntropy) {
|
|
|
94335
94375
|
module.exports = deterministicGenerateK
|
|
94336
94376
|
|
|
94337
94377
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94338
|
-
},{"buffer":
|
|
94378
|
+
},{"buffer":91,"create-hmac":106}],432:[function(require,module,exports){
|
|
94339
94379
|
/*!
|
|
94340
94380
|
* toidentifier
|
|
94341
94381
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
@@ -94367,7 +94407,7 @@ function toIdentifier (str) {
|
|
|
94367
94407
|
.replace(/[^ _0-9a-z]/gi, '')
|
|
94368
94408
|
}
|
|
94369
94409
|
|
|
94370
|
-
},{}],
|
|
94410
|
+
},{}],433:[function(require,module,exports){
|
|
94371
94411
|
'use strict';
|
|
94372
94412
|
|
|
94373
94413
|
// Implements Brad Hill's Double HMAC pattern from
|
|
@@ -94407,7 +94447,7 @@ function timeSafeCompare(a, b) {
|
|
|
94407
94447
|
|
|
94408
94448
|
module.exports = timeSafeCompare;
|
|
94409
94449
|
|
|
94410
|
-
},{"crypto":
|
|
94450
|
+
},{"crypto":108}],434:[function(require,module,exports){
|
|
94411
94451
|
/*!
|
|
94412
94452
|
* type-is
|
|
94413
94453
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -94675,7 +94715,7 @@ function tryNormalizeType (value) {
|
|
|
94675
94715
|
}
|
|
94676
94716
|
}
|
|
94677
94717
|
|
|
94678
|
-
},{"media-typer":
|
|
94718
|
+
},{"media-typer":259,"mime-types":264}],435:[function(require,module,exports){
|
|
94679
94719
|
(function (Buffer){(function (){
|
|
94680
94720
|
/**
|
|
94681
94721
|
* Convert a typed array to a Buffer without a copy
|
|
@@ -94704,7 +94744,7 @@ module.exports = function typedarrayToBuffer (arr) {
|
|
|
94704
94744
|
}
|
|
94705
94745
|
|
|
94706
94746
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94707
|
-
},{"buffer":
|
|
94747
|
+
},{"buffer":91,"is-typedarray":221}],436:[function(require,module,exports){
|
|
94708
94748
|
var native = require('./native')
|
|
94709
94749
|
|
|
94710
94750
|
function getTypeName (fn) {
|
|
@@ -94816,7 +94856,7 @@ module.exports = {
|
|
|
94816
94856
|
getValueTypeName: getValueTypeName
|
|
94817
94857
|
}
|
|
94818
94858
|
|
|
94819
|
-
},{"./native":
|
|
94859
|
+
},{"./native":439}],437:[function(require,module,exports){
|
|
94820
94860
|
(function (Buffer){(function (){
|
|
94821
94861
|
var NATIVE = require('./native')
|
|
94822
94862
|
var ERRORS = require('./errors')
|
|
@@ -94911,7 +94951,7 @@ for (var typeName in types) {
|
|
|
94911
94951
|
module.exports = types
|
|
94912
94952
|
|
|
94913
94953
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
94914
|
-
},{"../is-buffer/index.js":
|
|
94954
|
+
},{"../is-buffer/index.js":218,"./errors":436,"./native":439}],438:[function(require,module,exports){
|
|
94915
94955
|
var ERRORS = require('./errors')
|
|
94916
94956
|
var NATIVE = require('./native')
|
|
94917
94957
|
|
|
@@ -95173,7 +95213,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
|
|
|
95173
95213
|
|
|
95174
95214
|
module.exports = typeforce
|
|
95175
95215
|
|
|
95176
|
-
},{"./errors":
|
|
95216
|
+
},{"./errors":436,"./extra":437,"./native":439}],439:[function(require,module,exports){
|
|
95177
95217
|
var types = {
|
|
95178
95218
|
Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
|
|
95179
95219
|
Boolean: function (value) { return typeof value === 'boolean' },
|
|
@@ -95196,7 +95236,7 @@ for (var typeName in types) {
|
|
|
95196
95236
|
|
|
95197
95237
|
module.exports = types
|
|
95198
95238
|
|
|
95199
|
-
},{}],
|
|
95239
|
+
},{}],440:[function(require,module,exports){
|
|
95200
95240
|
'use strict'
|
|
95201
95241
|
|
|
95202
95242
|
const bases = require('./util/bases')
|
|
@@ -95229,7 +95269,7 @@ function fromString (string, encoding = 'utf8') {
|
|
|
95229
95269
|
|
|
95230
95270
|
module.exports = fromString
|
|
95231
95271
|
|
|
95232
|
-
},{"./util/bases":
|
|
95272
|
+
},{"./util/bases":442}],441:[function(require,module,exports){
|
|
95233
95273
|
'use strict'
|
|
95234
95274
|
|
|
95235
95275
|
const bases = require('./util/bases')
|
|
@@ -95262,7 +95302,7 @@ function toString (array, encoding = 'utf8') {
|
|
|
95262
95302
|
|
|
95263
95303
|
module.exports = toString
|
|
95264
95304
|
|
|
95265
|
-
},{"./util/bases":
|
|
95305
|
+
},{"./util/bases":442}],442:[function(require,module,exports){
|
|
95266
95306
|
'use strict'
|
|
95267
95307
|
|
|
95268
95308
|
const { bases } = require('multiformats/basics')
|
|
@@ -95339,7 +95379,7 @@ const BASES = {
|
|
|
95339
95379
|
|
|
95340
95380
|
module.exports = BASES
|
|
95341
95381
|
|
|
95342
|
-
},{"multiformats/basics":
|
|
95382
|
+
},{"multiformats/basics":283}],443:[function(require,module,exports){
|
|
95343
95383
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
95344
95384
|
//
|
|
95345
95385
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -96073,7 +96113,7 @@ Url.prototype.parseHost = function() {
|
|
|
96073
96113
|
if (host) this.hostname = host;
|
|
96074
96114
|
};
|
|
96075
96115
|
|
|
96076
|
-
},{"./util":
|
|
96116
|
+
},{"./util":444,"punycode":359,"querystring":362}],444:[function(require,module,exports){
|
|
96077
96117
|
'use strict';
|
|
96078
96118
|
|
|
96079
96119
|
module.exports = {
|
|
@@ -96091,7 +96131,7 @@ module.exports = {
|
|
|
96091
96131
|
}
|
|
96092
96132
|
};
|
|
96093
96133
|
|
|
96094
|
-
},{}],
|
|
96134
|
+
},{}],445:[function(require,module,exports){
|
|
96095
96135
|
(function (global){(function (){
|
|
96096
96136
|
|
|
96097
96137
|
/**
|
|
@@ -96162,13 +96202,13 @@ function config (name) {
|
|
|
96162
96202
|
}
|
|
96163
96203
|
|
|
96164
96204
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
96165
|
-
},{}],
|
|
96166
|
-
arguments[4][28][0].apply(exports,arguments)
|
|
96167
|
-
},{"dup":28}],446:[function(require,module,exports){
|
|
96205
|
+
},{}],446:[function(require,module,exports){
|
|
96168
96206
|
arguments[4][29][0].apply(exports,arguments)
|
|
96169
96207
|
},{"dup":29}],447:[function(require,module,exports){
|
|
96170
96208
|
arguments[4][30][0].apply(exports,arguments)
|
|
96171
|
-
},{"
|
|
96209
|
+
},{"dup":30}],448:[function(require,module,exports){
|
|
96210
|
+
arguments[4][31][0].apply(exports,arguments)
|
|
96211
|
+
},{"./support/isBuffer":447,"_process":322,"dup":31,"inherits":446}],449:[function(require,module,exports){
|
|
96172
96212
|
module.exports = read
|
|
96173
96213
|
|
|
96174
96214
|
var MSB = 0x80
|
|
@@ -96199,7 +96239,7 @@ function read(buf, offset) {
|
|
|
96199
96239
|
return res
|
|
96200
96240
|
}
|
|
96201
96241
|
|
|
96202
|
-
},{}],
|
|
96242
|
+
},{}],450:[function(require,module,exports){
|
|
96203
96243
|
module.exports = encode
|
|
96204
96244
|
|
|
96205
96245
|
var MSB = 0x80
|
|
@@ -96231,11 +96271,11 @@ function encode(num, out, offset) {
|
|
|
96231
96271
|
return out
|
|
96232
96272
|
}
|
|
96233
96273
|
|
|
96234
|
-
},{}],
|
|
96235
|
-
arguments[4][270][0].apply(exports,arguments)
|
|
96236
|
-
},{"./decode.js":448,"./encode.js":449,"./length.js":451,"dup":270}],451:[function(require,module,exports){
|
|
96274
|
+
},{}],451:[function(require,module,exports){
|
|
96237
96275
|
arguments[4][271][0].apply(exports,arguments)
|
|
96238
|
-
},{"dup":271}],452:[function(require,module,exports){
|
|
96276
|
+
},{"./decode.js":449,"./encode.js":450,"./length.js":452,"dup":271}],452:[function(require,module,exports){
|
|
96277
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
96278
|
+
},{"dup":272}],453:[function(require,module,exports){
|
|
96239
96279
|
/*!
|
|
96240
96280
|
* vary
|
|
96241
96281
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -96386,7 +96426,7 @@ function vary (res, field) {
|
|
|
96386
96426
|
}
|
|
96387
96427
|
}
|
|
96388
96428
|
|
|
96389
|
-
},{}],
|
|
96429
|
+
},{}],454:[function(require,module,exports){
|
|
96390
96430
|
var _globalThis;
|
|
96391
96431
|
try {
|
|
96392
96432
|
_globalThis = require('es5-ext/global');
|
|
@@ -96438,10 +96478,10 @@ module.exports = {
|
|
|
96438
96478
|
'version' : websocket_version
|
|
96439
96479
|
};
|
|
96440
96480
|
|
|
96441
|
-
},{"./version":
|
|
96481
|
+
},{"./version":455,"es5-ext/global":176}],455:[function(require,module,exports){
|
|
96442
96482
|
module.exports = require('../package.json').version;
|
|
96443
96483
|
|
|
96444
|
-
},{"../package.json":
|
|
96484
|
+
},{"../package.json":456}],456:[function(require,module,exports){
|
|
96445
96485
|
module.exports={
|
|
96446
96486
|
"_from": "websocket@^1.0.31",
|
|
96447
96487
|
"_id": "websocket@1.0.32",
|
|
@@ -96538,7 +96578,7 @@ module.exports={
|
|
|
96538
96578
|
"version": "1.0.32"
|
|
96539
96579
|
}
|
|
96540
96580
|
|
|
96541
|
-
},{}],
|
|
96581
|
+
},{}],457:[function(require,module,exports){
|
|
96542
96582
|
(function (Buffer){(function (){
|
|
96543
96583
|
var bs58check = require('bs58check')
|
|
96544
96584
|
|
|
@@ -96605,7 +96645,7 @@ module.exports = {
|
|
|
96605
96645
|
}
|
|
96606
96646
|
|
|
96607
96647
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
96608
|
-
},{"bs58check":
|
|
96648
|
+
},{"bs58check":88,"buffer":91}],458:[function(require,module,exports){
|
|
96609
96649
|
module.exports = extend
|
|
96610
96650
|
|
|
96611
96651
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -96626,7 +96666,7 @@ function extend() {
|
|
|
96626
96666
|
return target
|
|
96627
96667
|
}
|
|
96628
96668
|
|
|
96629
|
-
},{}],
|
|
96669
|
+
},{}],459:[function(require,module,exports){
|
|
96630
96670
|
module.exports = extend
|
|
96631
96671
|
|
|
96632
96672
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -96645,7 +96685,7 @@ function extend(target) {
|
|
|
96645
96685
|
return target
|
|
96646
96686
|
}
|
|
96647
96687
|
|
|
96648
|
-
},{}],
|
|
96688
|
+
},{}],460:[function(require,module,exports){
|
|
96649
96689
|
'use strict';
|
|
96650
96690
|
|
|
96651
96691
|
class LRU {
|