@libp2p/webrtc 0.0.0
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/LICENSE +4 -0
- package/README.md +210 -0
- package/dist/index.min.js +54 -0
- package/dist/index.min.js.map +7 -0
- package/dist/proto_ts/message.d.ts +56 -0
- package/dist/proto_ts/message.d.ts.map +1 -0
- package/dist/proto_ts/message.js +86 -0
- package/dist/proto_ts/message.js.map +1 -0
- package/dist/src/error.d.ts +54 -0
- package/dist/src/error.d.ts.map +1 -0
- package/dist/src/error.js +105 -0
- package/dist/src/error.js.map +1 -0
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +6 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/maconn.d.ts +43 -0
- package/dist/src/maconn.d.ts.map +1 -0
- package/dist/src/maconn.js +29 -0
- package/dist/src/maconn.js.map +1 -0
- package/dist/src/muxer.d.ts +55 -0
- package/dist/src/muxer.d.ts.map +1 -0
- package/dist/src/muxer.js +92 -0
- package/dist/src/muxer.js.map +1 -0
- package/dist/src/options.d.ts +6 -0
- package/dist/src/options.d.ts.map +1 -0
- package/dist/src/options.js +2 -0
- package/dist/src/options.js.map +1 -0
- package/dist/src/sdp.d.ts +33 -0
- package/dist/src/sdp.d.ts.map +1 -0
- package/dist/src/sdp.js +118 -0
- package/dist/src/sdp.js.map +1 -0
- package/dist/src/stream.d.ts +141 -0
- package/dist/src/stream.d.ts.map +1 -0
- package/dist/src/stream.js +290 -0
- package/dist/src/stream.js.map +1 -0
- package/dist/src/transport.d.ts +60 -0
- package/dist/src/transport.d.ts.map +1 -0
- package/dist/src/transport.js +193 -0
- package/dist/src/transport.js.map +1 -0
- package/dist/src/util.d.ts +5 -0
- package/dist/src/util.d.ts.map +1 -0
- package/dist/src/util.js +5 -0
- package/dist/src/util.js.map +1 -0
- package/dist/stats.json +1 -0
- package/package.json +170 -0
- package/proto_ts/message.ts +105 -0
- package/src/error.ts +123 -0
- package/src/index.ts +6 -0
- package/src/maconn.ts +67 -0
- package/src/message.proto +22 -0
- package/src/muxer.ts +120 -0
- package/src/options.ts +4 -0
- package/src/sdp.ts +136 -0
- package/src/stream.ts +422 -0
- package/src/transport.ts +243 -0
- package/src/util.ts +5 -0
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import { noise as Noise } from '@chainsafe/libp2p-noise';
|
|
2
|
+
import '@libp2p/interface-connection';
|
|
3
|
+
import { symbol } from '@libp2p/interface-transport';
|
|
4
|
+
import { logger } from '@libp2p/logger';
|
|
5
|
+
import * as p from '@libp2p/peer-id';
|
|
6
|
+
import '@multiformats/multiaddr';
|
|
7
|
+
import * as multihashes from 'multihashes';
|
|
8
|
+
import defer from 'p-defer';
|
|
9
|
+
import { v4 as genUuid } from 'uuid';
|
|
10
|
+
import { fromString as uint8arrayFromString } from 'uint8arrays/from-string';
|
|
11
|
+
import { concat } from 'uint8arrays/concat';
|
|
12
|
+
import { dataChannelError, inappropriateMultiaddr, unimplemented, invalidArgument } from './error.js';
|
|
13
|
+
import { WebRTCMultiaddrConnection } from './maconn.js';
|
|
14
|
+
import { DataChannelMuxerFactory } from './muxer.js';
|
|
15
|
+
import './options.js';
|
|
16
|
+
import * as sdp from './sdp.js';
|
|
17
|
+
import { WebRTCStream } from './stream.js';
|
|
18
|
+
const log = logger('libp2p:webrtc:transport');
|
|
19
|
+
/**
|
|
20
|
+
* The time to wait, in milliseconds, for the data channel handshake to complete
|
|
21
|
+
*/
|
|
22
|
+
const HANDSHAKE_TIMEOUT_MS = 10000;
|
|
23
|
+
/**
|
|
24
|
+
* Created by converting the hexadecimal protocol code to an integer.
|
|
25
|
+
*
|
|
26
|
+
* {@link https://github.com/multiformats/multiaddr/blob/master/protocols.csv}
|
|
27
|
+
*/
|
|
28
|
+
export const WEBRTC_CODE = 280;
|
|
29
|
+
/**
|
|
30
|
+
* Created by converting the hexadecimal protocol code to an integer.
|
|
31
|
+
*
|
|
32
|
+
* {@link https://github.com/multiformats/multiaddr/blob/master/protocols.csv}
|
|
33
|
+
*/
|
|
34
|
+
export const CERTHASH_CODE = 466;
|
|
35
|
+
export class WebRTCTransport {
|
|
36
|
+
constructor(components) {
|
|
37
|
+
this.components = components;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Dial a given multiaddr
|
|
41
|
+
*/
|
|
42
|
+
async dial(ma, options) {
|
|
43
|
+
const rawConn = await this._connect(ma, options);
|
|
44
|
+
log(`dialing address - ${ma.toString()}`);
|
|
45
|
+
return rawConn;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Create transport listeners no supported by browsers
|
|
49
|
+
*/
|
|
50
|
+
createListener(options) {
|
|
51
|
+
throw unimplemented('WebRTCTransport.createListener');
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Takes a list of `Multiaddr`s and returns only valid addresses for the transport
|
|
55
|
+
*/
|
|
56
|
+
filter(multiaddrs) {
|
|
57
|
+
return multiaddrs.filter(validMa);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Implement toString() for WebRTCTransport
|
|
61
|
+
*/
|
|
62
|
+
get [Symbol.toStringTag]() {
|
|
63
|
+
return '@libp2p/webrtc';
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Symbol.for('@libp2p/transport')
|
|
67
|
+
*/
|
|
68
|
+
get [symbol]() {
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Connect to a peer using a multiaddr
|
|
73
|
+
*/
|
|
74
|
+
async _connect(ma, options) {
|
|
75
|
+
const rps = ma.getPeerId();
|
|
76
|
+
if (rps === null) {
|
|
77
|
+
throw inappropriateMultiaddr("we need to have the remote's PeerId");
|
|
78
|
+
}
|
|
79
|
+
const remoteCerthash = sdp.decodeCerthash(sdp.certhash(ma));
|
|
80
|
+
// ECDSA is preferred over RSA here. From our testing we find that P-256 elliptic
|
|
81
|
+
// curve is supported by Pion, webrtc-rs, as well as Chromium (P-228 and P-384
|
|
82
|
+
// was not supported in Chromium). We use the same hash function as found in the
|
|
83
|
+
// multiaddr if it is supported.
|
|
84
|
+
const certificate = await RTCPeerConnection.generateCertificate({
|
|
85
|
+
name: 'ECDSA',
|
|
86
|
+
namedCurve: 'P-256',
|
|
87
|
+
hash: sdp.toSupportedHashFunction(remoteCerthash.name)
|
|
88
|
+
});
|
|
89
|
+
const peerConnection = new RTCPeerConnection({ certificates: [certificate] });
|
|
90
|
+
// create data channel for running the noise handshake. Once the data channel is opened,
|
|
91
|
+
// the remote will initiate the noise handshake. This is used to confirm the identity of
|
|
92
|
+
// the peer.
|
|
93
|
+
const dataChannelOpenPromise = defer();
|
|
94
|
+
const handshakeDataChannel = peerConnection.createDataChannel('handshake', { negotiated: true, id: 0 });
|
|
95
|
+
const handhsakeTimeout = setTimeout(() => {
|
|
96
|
+
const error = `Data channel was never opened: state: ${handshakeDataChannel.readyState}`;
|
|
97
|
+
log.error(error);
|
|
98
|
+
dataChannelOpenPromise.reject(dataChannelError('data', error));
|
|
99
|
+
}, HANDSHAKE_TIMEOUT_MS);
|
|
100
|
+
handshakeDataChannel.onopen = (_) => {
|
|
101
|
+
clearTimeout(handhsakeTimeout);
|
|
102
|
+
dataChannelOpenPromise.resolve();
|
|
103
|
+
};
|
|
104
|
+
// ref: https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel/error_event
|
|
105
|
+
handshakeDataChannel.onerror = (event) => {
|
|
106
|
+
clearTimeout(handhsakeTimeout);
|
|
107
|
+
const errorTarget = event.target?.toString() ?? 'not specified';
|
|
108
|
+
const error = `Error opening a data channel for handshaking: ${errorTarget}`;
|
|
109
|
+
log.error(error);
|
|
110
|
+
dataChannelOpenPromise.reject(dataChannelError('data', error));
|
|
111
|
+
};
|
|
112
|
+
const ufrag = 'libp2p+webrtc+v1/' + genUuid().replaceAll('-', '');
|
|
113
|
+
// Create offer and munge sdp with ufrag = pwd. This allows the remote to
|
|
114
|
+
// respond to STUN messages without performing an actual SDP exchange.
|
|
115
|
+
// This is because it can infer the passwd field by reading the USERNAME
|
|
116
|
+
// attribute of the STUN message.
|
|
117
|
+
const offerSdp = await peerConnection.createOffer();
|
|
118
|
+
const mungedOfferSdp = sdp.munge(offerSdp, ufrag);
|
|
119
|
+
await peerConnection.setLocalDescription(mungedOfferSdp);
|
|
120
|
+
// construct answer sdp from multiaddr and ufrag
|
|
121
|
+
const answerSdp = sdp.fromMultiAddr(ma, ufrag);
|
|
122
|
+
await peerConnection.setRemoteDescription(answerSdp);
|
|
123
|
+
// wait for peerconnection.onopen to fire, or for the datachannel to open
|
|
124
|
+
await dataChannelOpenPromise.promise;
|
|
125
|
+
const myPeerId = this.components.peerId;
|
|
126
|
+
const theirPeerId = p.peerIdFromString(rps);
|
|
127
|
+
// Do noise handshake.
|
|
128
|
+
// Set the Noise Prologue to libp2p-webrtc-noise:<FINGERPRINTS> before starting the actual Noise handshake.
|
|
129
|
+
// <FINGERPRINTS> is the concatenation of the of the two TLS fingerprints of A and B in their multihash byte representation, sorted in ascending order.
|
|
130
|
+
const fingerprintsPrologue = this.generateNoisePrologue(peerConnection, remoteCerthash.name, ma);
|
|
131
|
+
// Since we use the default crypto interface and do not use a static key or early data,
|
|
132
|
+
// we pass in undefined for these parameters.
|
|
133
|
+
const noiseInit = { staticNoiseKey: undefined, extensions: undefined, crypto: undefined, prologueBytes: fingerprintsPrologue };
|
|
134
|
+
const noise = Noise(noiseInit)();
|
|
135
|
+
const wrappedChannel = new WebRTCStream({ channel: handshakeDataChannel, stat: { direction: 'outbound', timeline: { open: 1 } } });
|
|
136
|
+
const wrappedDuplex = {
|
|
137
|
+
...wrappedChannel,
|
|
138
|
+
source: {
|
|
139
|
+
[Symbol.asyncIterator]: async function* () {
|
|
140
|
+
for await (const list of wrappedChannel.source) {
|
|
141
|
+
yield list.subarray();
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
// Creating the connection before completion of the noise
|
|
147
|
+
// handshake ensures that the stream opening callback is set up
|
|
148
|
+
const maConn = new WebRTCMultiaddrConnection({
|
|
149
|
+
peerConnection,
|
|
150
|
+
remoteAddr: ma,
|
|
151
|
+
timeline: {
|
|
152
|
+
open: (new Date()).getTime()
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
const muxerFactory = new DataChannelMuxerFactory(peerConnection);
|
|
156
|
+
// For outbound connections, the remote is expected to start the noise handshake.
|
|
157
|
+
// Therefore, we need to secure an inbound noise connection from the remote.
|
|
158
|
+
await noise.secureInbound(myPeerId, wrappedDuplex, theirPeerId);
|
|
159
|
+
return await options.upgrader.upgradeOutbound(maConn, { skipProtection: true, skipEncryption: true, muxerFactory });
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Generate a noise prologue from the peer connection's certificate.
|
|
163
|
+
* noise prologue = bytes('libp2p-webrtc-noise:') + noise-responder fingerprint + noise-initiator fingerprint
|
|
164
|
+
*/
|
|
165
|
+
generateNoisePrologue(pc, hashName, ma) {
|
|
166
|
+
if (pc.getConfiguration().certificates?.length === 0) {
|
|
167
|
+
throw invalidArgument('no local certificate');
|
|
168
|
+
}
|
|
169
|
+
const localCert = pc.getConfiguration().certificates?.at(0);
|
|
170
|
+
if (localCert === undefined || localCert.getFingerprints().length === 0) {
|
|
171
|
+
throw invalidArgument('no fingerprint on local certificate');
|
|
172
|
+
}
|
|
173
|
+
const localFingerprint = localCert.getFingerprints()[0];
|
|
174
|
+
if (localFingerprint.value === undefined) {
|
|
175
|
+
throw invalidArgument('no fingerprint on local certificate');
|
|
176
|
+
}
|
|
177
|
+
const localFpString = localFingerprint.value.replace(/:/g, '');
|
|
178
|
+
const localFpArray = uint8arrayFromString(localFpString, 'hex');
|
|
179
|
+
const local = multihashes.encode(localFpArray, multihashes.names[hashName]);
|
|
180
|
+
const remote = sdp.mbdecoder.decode(sdp.certhash(ma));
|
|
181
|
+
const prefix = uint8arrayFromString('libp2p-webrtc-noise:');
|
|
182
|
+
return concat([prefix, local, remote]);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Determine if a given multiaddr contains a WebRTC Code (280),
|
|
187
|
+
* a Certhash Code (466) and a PeerId
|
|
188
|
+
*/
|
|
189
|
+
function validMa(ma) {
|
|
190
|
+
const codes = ma.protoCodes();
|
|
191
|
+
return codes.includes(WEBRTC_CODE) && codes.includes(CERTHASH_CODE) && ma.getPeerId() != null;
|
|
192
|
+
}
|
|
193
|
+
//# sourceMappingURL=transport.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transport.js","sourceRoot":"","sources":["../../src/transport.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../src/util.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS;;CAErB,CAAA;AAED,eAAO,MAAM,OAAO,MAAa,GAAG,kBAAO,CAAA"}
|
package/dist/src/util.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/util.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,KAAK,CAAC,CAAE,CAAC,MAAM,CAAC,aAAa,CAAC,KAAK,CAAC;CACrC,CAAA;AAED,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,CAAM,EAAE,EAAE,GAAE,CAAC,CAAA"}
|
package/dist/stats.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"inputs":{"node_modules/@libp2p/interface-transport/dist/src/index.js":{"bytes":179,"imports":[]},"node_modules/uint8arrays/dist/src/util/as-uint8array.js":{"bytes":310,"imports":[]},"node_modules/uint8arrays/dist/src/alloc.js":{"bytes":783,"imports":[{"path":"node_modules/uint8arrays/dist/src/util/as-uint8array.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/concat.js":{"bytes":553,"imports":[{"path":"node_modules/uint8arrays/dist/src/alloc.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/util/as-uint8array.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/equals.js":{"bytes":391,"imports":[]},"node_modules/uint8arraylist/dist/src/index.js":{"bytes":16786,"imports":[{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/alloc.js","kind":"import-statement"}]},"node_modules/it-reader/dist/src/index.js":{"bytes":1507,"imports":[{"path":"node_modules/uint8arraylist/dist/src/index.js","kind":"import-statement"}]},"node_modules/it-pushable/dist/src/fifo.js":{"bytes":2060,"imports":[]},"node_modules/it-pushable/dist/src/index.js":{"bytes":4320,"imports":[{"path":"node_modules/it-pushable/dist/src/fifo.js","kind":"import-statement"}]},"node_modules/p-defer/index.js":{"bytes":197,"imports":[]},"node_modules/it-handshake/dist/src/index.js":{"bytes":1322,"imports":[{"path":"node_modules/it-reader/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-pushable/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/p-defer/index.js","kind":"import-statement"}]},"node_modules/byte-access/dist/src/index.js":{"bytes":463,"imports":[]},"node_modules/longbits/dist/src/index.js":{"bytes":5520,"imports":[{"path":"node_modules/byte-access/dist/src/index.js","kind":"import-statement"}]},"node_modules/uint8-varint/dist/src/index.js":{"bytes":2592,"imports":[{"path":"node_modules/longbits/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/alloc.js","kind":"import-statement"}]},"node_modules/it-length-prefixed/dist/src/alloc.js":{"bytes":273,"imports":[]},"node_modules/it-length-prefixed/dist/src/encode.js":{"bytes":1380,"imports":[{"path":"node_modules/uint8arraylist/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/uint8-varint/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-length-prefixed/dist/src/alloc.js","kind":"import-statement"}]},"node_modules/err-code/index.js":{"bytes":1392,"imports":[]},"node_modules/it-length-prefixed/dist/src/decode.js":{"bytes":4535,"imports":[{"path":"node_modules/uint8arraylist/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/uint8-varint/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"}]},"node_modules/it-length-prefixed/dist/src/index.js":{"bytes":109,"imports":[{"path":"node_modules/it-length-prefixed/dist/src/encode.js","kind":"import-statement"},{"path":"node_modules/it-length-prefixed/dist/src/decode.js","kind":"import-statement"}]},"node_modules/it-pb-stream/dist/src/index.js":{"bytes":2089,"imports":[{"path":"node_modules/it-handshake/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-length-prefixed/dist/src/index.js","kind":"import-statement"}]},"node_modules/it-pair/dist/src/index.js":{"bytes":550,"imports":[{"path":"node_modules/p-defer/index.js","kind":"import-statement"}]},"node_modules/it-pair/dist/src/duplex.js":{"bytes":379,"imports":[{"path":"node_modules/it-pair/dist/src/index.js","kind":"import-statement"}]},"node_modules/it-merge/dist/src/index.js":{"bytes":721,"imports":[{"path":"node_modules/it-pushable/dist/src/index.js","kind":"import-statement"}]},"node_modules/it-pipe/dist/src/index.js":{"bytes":2073,"imports":[{"path":"node_modules/it-pushable/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-merge/dist/src/index.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/constants.js":{"bytes":259,"imports":[]},"node_modules/@stablelib/hash/lib/hash.js":{"bytes":521,"imports":[]},"node_modules/@stablelib/constant-time/lib/constant-time.js":{"bytes":1935,"imports":[]},"node_modules/@stablelib/wipe/lib/wipe.js":{"bytes":1142,"imports":[]},"node_modules/@stablelib/hmac/lib/hmac.js":{"bytes":6458,"imports":[{"path":"node_modules/@stablelib/hash/lib/hash.js","kind":"require-call"},{"path":"node_modules/@stablelib/constant-time/lib/constant-time.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/hkdf/lib/hkdf.js":{"bytes":3161,"imports":[{"path":"node_modules/@stablelib/hmac/lib/hmac.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/random/lib/source/browser.js":{"bytes":1179,"imports":[]},"node_modules/@stablelib/random/lib/source/node.js":{"bytes":1495,"imports":[{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/random/lib/source/system.js":{"bytes":1179,"imports":[{"path":"node_modules/@stablelib/random/lib/source/browser.js","kind":"require-call"},{"path":"node_modules/@stablelib/random/lib/source/node.js","kind":"require-call"}]},"node_modules/@stablelib/int/lib/int.js":{"bytes":1729,"imports":[]},"node_modules/@stablelib/binary/lib/binary.js":{"bytes":15554,"imports":[{"path":"node_modules/@stablelib/int/lib/int.js","kind":"require-call"}]},"node_modules/@stablelib/random/lib/random.js":{"bytes":3132,"imports":[{"path":"node_modules/@stablelib/random/lib/source/system.js","kind":"require-call"},{"path":"node_modules/@stablelib/binary/lib/binary.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/x25519/lib/x25519.js":{"bytes":15545,"imports":[{"path":"node_modules/@stablelib/random/lib/random.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/sha256/lib/sha256.js":{"bytes":8576,"imports":[{"path":"node_modules/@stablelib/binary/lib/binary.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/chacha/lib/chacha.js":{"bytes":9486,"imports":[{"path":"node_modules/@stablelib/binary/lib/binary.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/poly1305/lib/poly1305.js":{"bytes":14138,"imports":[{"path":"node_modules/@stablelib/constant-time/lib/constant-time.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"}]},"node_modules/@stablelib/chacha20poly1305/lib/chacha20poly1305.js":{"bytes":7529,"imports":[{"path":"node_modules/@stablelib/chacha/lib/chacha.js","kind":"require-call"},{"path":"node_modules/@stablelib/poly1305/lib/poly1305.js","kind":"require-call"},{"path":"node_modules/@stablelib/wipe/lib/wipe.js","kind":"require-call"},{"path":"node_modules/@stablelib/binary/lib/binary.js","kind":"require-call"},{"path":"node_modules/@stablelib/constant-time/lib/constant-time.js","kind":"require-call"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/stablelib.js":{"bytes":1485,"imports":[{"path":"node_modules/@stablelib/hkdf/lib/hkdf.js","kind":"import-statement"},{"path":"node_modules/@stablelib/x25519/lib/x25519.js","kind":"import-statement"},{"path":"node_modules/@stablelib/sha256/lib/sha256.js","kind":"import-statement"},{"path":"node_modules/@stablelib/chacha20poly1305/lib/chacha20poly1305.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/encoder.js":{"bytes":2272,"imports":[{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/streaming.js":{"bytes":2473,"imports":[{"path":"node_modules/@stablelib/chacha20poly1305/lib/chacha20poly1305.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/constants.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/encoder.js","kind":"import-statement"}]},"node_modules/@libp2p/interface-connection-encrypter/dist/src/errors.js":{"bytes":836,"imports":[]},"node_modules/@protobufjs/aspromise/index.js":{"bytes":1592,"imports":[]},"node_modules/@protobufjs/base64/index.js":{"bytes":3943,"imports":[]},"node_modules/@protobufjs/eventemitter/index.js":{"bytes":2088,"imports":[]},"node_modules/@protobufjs/float/index.js":{"bytes":11448,"imports":[]},"node_modules/@protobufjs/inquire/index.js":{"bytes":544,"imports":[]},"node_modules/@protobufjs/utf8/index.js":{"bytes":3373,"imports":[]},"node_modules/@protobufjs/pool/index.js":{"bytes":1240,"imports":[]},"node_modules/protobufjs/src/util/longbits.js":{"bytes":5393,"imports":[{"path":"node_modules/protobufjs/src/util/minimal.js","kind":"require-call"}]},"node_modules/protobufjs/src/util/minimal.js":{"bytes":13208,"imports":[{"path":"node_modules/@protobufjs/aspromise/index.js","kind":"require-call"},{"path":"node_modules/@protobufjs/base64/index.js","kind":"require-call"},{"path":"node_modules/@protobufjs/eventemitter/index.js","kind":"require-call"},{"path":"node_modules/@protobufjs/float/index.js","kind":"require-call"},{"path":"node_modules/@protobufjs/inquire/index.js","kind":"require-call"},{"path":"node_modules/@protobufjs/utf8/index.js","kind":"require-call"},{"path":"node_modules/@protobufjs/pool/index.js","kind":"require-call"},{"path":"node_modules/protobufjs/src/util/longbits.js","kind":"require-call"}]},"node_modules/protobufjs/src/reader.js":{"bytes":11263,"imports":[{"path":"node_modules/protobufjs/src/util/minimal.js","kind":"require-call"}]},"node_modules/protobufjs/src/reader_buffer.js":{"bytes":1252,"imports":[{"path":"node_modules/protobufjs/src/reader.js","kind":"require-call"},{"path":"node_modules/protobufjs/src/util/minimal.js","kind":"require-call"}]},"node_modules/protobufjs/src/writer.js":{"bytes":12072,"imports":[{"path":"node_modules/protobufjs/src/util/minimal.js","kind":"require-call"}]},"node_modules/protobufjs/src/writer_buffer.js":{"bytes":2356,"imports":[{"path":"node_modules/protobufjs/src/writer.js","kind":"require-call"},{"path":"node_modules/protobufjs/src/util/minimal.js","kind":"require-call"}]},"node_modules/protons-runtime/dist/src/utils.js":{"bytes":1555,"imports":[{"path":"node_modules/protobufjs/src/reader.js","kind":"import-statement"},{"path":"node_modules/protobufjs/src/reader_buffer.js","kind":"import-statement"},{"path":"node_modules/protobufjs/src/writer.js","kind":"import-statement"},{"path":"node_modules/protobufjs/src/writer_buffer.js","kind":"import-statement"},{"path":"node_modules/protobufjs/src/util/minimal.js","kind":"import-statement"}]},"node_modules/protons-runtime/dist/src/decode.js":{"bytes":217,"imports":[{"path":"node_modules/protons-runtime/dist/src/utils.js","kind":"import-statement"}]},"node_modules/protons-runtime/dist/src/encode.js":{"bytes":238,"imports":[{"path":"node_modules/protons-runtime/dist/src/utils.js","kind":"import-statement"}]},"node_modules/protons-runtime/dist/src/codec.js":{"bytes":697,"imports":[]},"node_modules/protons-runtime/dist/src/codecs/enum.js":{"bytes":809,"imports":[{"path":"node_modules/protons-runtime/dist/src/codec.js","kind":"import-statement"}]},"node_modules/protons-runtime/dist/src/codecs/message.js":{"bytes":216,"imports":[{"path":"node_modules/protons-runtime/dist/src/codec.js","kind":"import-statement"}]},"node_modules/protons-runtime/dist/src/index.js":{"bytes":263,"imports":[{"path":"node_modules/protons-runtime/dist/src/decode.js","kind":"import-statement"},{"path":"node_modules/protons-runtime/dist/src/encode.js","kind":"import-statement"},{"path":"node_modules/protons-runtime/dist/src/codecs/enum.js","kind":"import-statement"},{"path":"node_modules/protons-runtime/dist/src/codecs/message.js","kind":"import-statement"},{"path":"node_modules/protons-runtime/dist/src/utils.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/keys.js":{"bytes":4271,"imports":[{"path":"node_modules/protons-runtime/dist/src/index.js","kind":"import-statement"}]},"node_modules/node-forge/lib/forge.js":{"bytes":200,"imports":[]},"node_modules/node-forge/lib/baseN.js":{"bytes":5068,"imports":[]},"node_modules/node-forge/lib/util.js":{"bytes":69858,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/baseN.js","kind":"require-call"}]},"node_modules/node-forge/lib/oids.js":{"bytes":6844,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"}]},"node_modules/node-forge/lib/asn1.js":{"bytes":42831,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/oids.js","kind":"require-call"}]},"node_modules/node-forge/lib/cipher.js":{"bytes":6668,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/cipherModes.js":{"bytes":28917,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/aes.js":{"bytes":39025,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/cipher.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/cipherModes.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/des.js":{"bytes":20445,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/cipher.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/cipherModes.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/md.js":{"bytes":253,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"}]},"node_modules/node-forge/lib/hmac.js":{"bytes":3833,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/md.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/pbkdf2.js":{"bytes":5809,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/hmac.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/md.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/pem.js":{"bytes":6693,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/sha256.js":{"bytes":9574,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/md.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/prng.js":{"bytes":12326,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/random.js":{"bytes":5438,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/aes.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/sha256.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/prng.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/rc2.js":{"bytes":11949,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/jsbn.js":{"bytes":35188,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"}]},"node_modules/node-forge/lib/sha1.js":{"bytes":9089,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/md.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/pkcs1.js":{"bytes":8375,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/random.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/sha1.js","kind":"require-call"}]},"node_modules/node-forge/lib/prime.js":{"bytes":8776,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/jsbn.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/random.js","kind":"require-call"}]},"node_modules/node-forge/lib/rsa.js":{"bytes":60058,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/asn1.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/jsbn.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/oids.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/pkcs1.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/prime.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/random.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/node-forge/lib/pbe.js":{"bytes":30999,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/aes.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/asn1.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/des.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/md.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/oids.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/pbkdf2.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/pem.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/random.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/rc2.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/rsa.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/multiformats/vendor/base-x.js":{"bytes":4392,"imports":[]},"node_modules/multiformats/src/bytes.js":{"bytes":1477,"imports":[]},"node_modules/multiformats/src/bases/interface.js":{"bytes":50,"imports":[]},"node_modules/multiformats/src/bases/base.js":{"bytes":8870,"imports":[{"path":"node_modules/multiformats/vendor/base-x.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/interface.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/identity.js":{"bytes":240,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base2.js":{"bytes":152,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base8.js":{"bytes":158,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base10.js":{"bytes":126,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base16.js":{"bytes":296,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base32.js":{"bytes":1336,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base36.js":{"bytes":280,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base58.js":{"bytes":332,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base64.js":{"bytes":740,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/src/bases/base256emoji.js":{"bytes":2010,"imports":[{"path":"node_modules/multiformats/src/bases/base.js","kind":"import-statement"}]},"node_modules/multiformats/vendor/varint.js":{"bytes":1605,"imports":[]},"node_modules/multiformats/src/varint.js":{"bytes":601,"imports":[{"path":"node_modules/multiformats/vendor/varint.js","kind":"import-statement"}]},"node_modules/multiformats/src/hashes/digest.js":{"bytes":2202,"imports":[{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/varint.js","kind":"import-statement"}]},"node_modules/multiformats/src/hashes/hasher.js":{"bytes":1449,"imports":[{"path":"node_modules/multiformats/src/hashes/digest.js","kind":"import-statement"}]},"node_modules/multiformats/src/hashes/sha2.js":{"bytes":406,"imports":[{"path":"node_modules/multiformats/src/hashes/hasher.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"}]},"node_modules/multiformats/src/hashes/identity.js":{"bytes":392,"imports":[{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/digest.js","kind":"import-statement"}]},"node_modules/multiformats/src/codecs/raw.js":{"bytes":421,"imports":[{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"}]},"node_modules/multiformats/src/codecs/json.js":{"bytes":509,"imports":[]},"node_modules/multiformats/src/link/interface.js":{"bytes":50,"imports":[]},"node_modules/multiformats/src/cid.js":{"bytes":16773,"imports":[{"path":"node_modules/multiformats/src/varint.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/digest.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base32.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/link/interface.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/link/interface.js","kind":"import-statement"}]},"node_modules/multiformats/src/interface.js":{"bytes":50,"imports":[]},"node_modules/multiformats/src/index.js":{"bytes":331,"imports":[{"path":"node_modules/multiformats/src/cid.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/varint.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bytes.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/hasher.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/digest.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/interface.js","kind":"import-statement"}]},"node_modules/multiformats/src/basics.js":{"bytes":983,"imports":[{"path":"node_modules/multiformats/src/bases/identity.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base2.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base8.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base10.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base16.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base32.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base36.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base64.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base256emoji.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/sha2.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/identity.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/codecs/raw.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/codecs/json.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/index.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/util/bases.js":{"bytes":1145,"imports":[{"path":"node_modules/multiformats/src/basics.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/alloc.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/from-string.js":{"bytes":887,"imports":[{"path":"node_modules/uint8arrays/dist/src/util/bases.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/util/as-uint8array.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/hmac/lengths.js":{"bytes":100,"imports":[]},"node_modules/@libp2p/crypto/dist/src/hmac/index.js":{"bytes":393,"imports":[{"path":"node_modules/@libp2p/crypto/dist/src/hmac/lengths.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/key-stretcher.js":{"bytes":2148,"imports":[{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/hmac/index.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/ecdh.js":{"bytes":857,"imports":[{"path":"node_modules/err-code/index.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/ephemeral-keys.js":{"bytes":323,"imports":[{"path":"node_modules/@libp2p/crypto/dist/src/keys/ecdh.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/ciphers/aes-gcm.js":{"bytes":3869,"imports":[{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/importer.js":{"bytes":533,"imports":[{"path":"node_modules/multiformats/src/bases/base64.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/ciphers/aes-gcm.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/to-string.js":{"bytes":765,"imports":[{"path":"node_modules/uint8arrays/dist/src/util/bases.js","kind":"import-statement"}]},"node_modules/node-forge/lib/sha512.js":{"bytes":17133,"imports":[{"path":"node_modules/node-forge/lib/forge.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/md.js","kind":"require-call"},{"path":"node_modules/node-forge/lib/util.js","kind":"require-call"}]},"node_modules/@noble/secp256k1/lib/esm/index.js":{"bytes":39477,"imports":[]},"node_modules/@libp2p/crypto/dist/src/random-bytes.js":{"bytes":356,"imports":[{"path":"node_modules/@noble/secp256k1/lib/esm/index.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/util.js":{"bytes":1737,"imports":[{"path":"node_modules/node-forge/lib/util.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/jsbn.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/forge.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/rsa-utils.js":{"bytes":2801,"imports":[{"path":"node_modules/node-forge/lib/asn1.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/rsa.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/forge.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/util.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/rsa.js":{"bytes":2028,"imports":[{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/random-bytes.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/rsa-utils.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/exporter.js":{"bytes":518,"imports":[{"path":"node_modules/multiformats/src/bases/base64.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/ciphers/aes-gcm.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/rsa-class.js":{"bytes":4098,"imports":[{"path":"node_modules/multiformats/src/hashes/sha2.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/sha512.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/forge.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/rsa.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/keys.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/exporter.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/ed25519.js":{"bytes":3991,"imports":[{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/ed25519-class.js":{"bytes":4263,"imports":[{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/sha2.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/identity.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/ed25519.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/keys.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/exporter.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/secp256k1.js":{"bytes":1703,"imports":[{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/@noble/secp256k1/lib/esm/index.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/sha2.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/secp256k1-class.js":{"bytes":3024,"imports":[{"path":"node_modules/multiformats/src/hashes/sha2.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/secp256k1.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/exporter.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/keys.js","kind":"import-statement"}]},"node_modules/@libp2p/crypto/dist/src/keys/index.js":{"bytes":4351,"imports":[{"path":"node_modules/@libp2p/crypto/dist/src/keys/keys.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/asn1.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/pbe.js","kind":"import-statement"},{"path":"node_modules/node-forge/lib/forge.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/key-stretcher.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/ephemeral-keys.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/importer.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/rsa-class.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/ed25519-class.js","kind":"import-statement"},{"path":"node_modules/@libp2p/crypto/dist/src/keys/secp256k1-class.js","kind":"import-statement"}]},"node_modules/@libp2p/interface-peer-id/dist/src/index.js":{"bytes":174,"imports":[]},"node_modules/@libp2p/peer-id/dist/src/index.js":{"bytes":7151,"imports":[{"path":"node_modules/multiformats/src/cid.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/basics.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/digest.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/identity.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/sha2.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/interface-peer-id/dist/src/index.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/proto/payload.js":{"bytes":4401,"imports":[{"path":"node_modules/protons-runtime/dist/src/index.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/utils.js":{"bytes":3046,"imports":[{"path":"node_modules/@libp2p/crypto/dist/src/keys/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/peer-id/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/proto/payload.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/compare.js":{"bytes":461,"imports":[]},"node_modules/uint8arrays/dist/src/xor.js":{"bytes":471,"imports":[{"path":"node_modules/uint8arrays/dist/src/alloc.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/util/as-uint8array.js","kind":"import-statement"}]},"node_modules/uint8arrays/dist/src/index.js":{"bytes":334,"imports":[{"path":"node_modules/uint8arrays/dist/src/compare.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/xor.js","kind":"import-statement"}]},"node_modules/ms/index.js":{"bytes":3023,"imports":[]},"node_modules/debug/src/common.js":{"bytes":6289,"imports":[{"path":"node_modules/ms/index.js","kind":"require-call"}]},"node_modules/debug/src/browser.js":{"bytes":6010,"imports":[{"path":"node_modules/debug/src/common.js","kind":"require-call"}]},"node_modules/has-flag/index.js":{"bytes":330,"imports":[]},"node_modules/supports-color/index.js":{"bytes":2748,"imports":[{"path":"node_modules/has-flag/index.js","kind":"require-call"}]},"node_modules/debug/src/node.js":{"bytes":4685,"imports":[{"path":"node_modules/supports-color/index.js","kind":"require-call"},{"path":"node_modules/debug/src/common.js","kind":"require-call"}]},"node_modules/debug/src/index.js":{"bytes":314,"imports":[{"path":"node_modules/debug/src/browser.js","kind":"require-call"},{"path":"node_modules/debug/src/node.js","kind":"require-call"}]},"node_modules/@libp2p/logger/dist/src/index.js":{"bytes":1402,"imports":[{"path":"node_modules/debug/src/index.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base32.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base64.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/logger.js":{"bytes":1601,"imports":[{"path":"node_modules/@libp2p/logger/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/constants.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/nonce.js":{"bytes":1568,"imports":[]},"node_modules/@chainsafe/libp2p-noise/dist/src/handshakes/abstract-handshake.js":{"bytes":4404,"imports":[{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/logger.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/nonce.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/handshakes/xx.js":{"bytes":6046,"imports":[{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/utils.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/handshakes/abstract-handshake.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/handshake-xx.js":{"bytes":6306,"imports":[{"path":"node_modules/@libp2p/interface-connection-encrypter/dist/src/errors.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/encoder.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/handshakes/xx.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/logger.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/utils.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/metrics.js":{"bytes":935,"imports":[]},"node_modules/@chainsafe/libp2p-noise/dist/src/noise.js":{"bytes":5285,"imports":[{"path":"node_modules/it-pb-stream/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-pair/dist/src/duplex.js","kind":"import-statement"},{"path":"node_modules/it-pipe/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-length-prefixed/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/constants.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/stablelib.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/streaming.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/encoder.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/handshake-xx.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/utils.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/metrics.js","kind":"import-statement"}]},"node_modules/@chainsafe/libp2p-noise/dist/src/crypto.js":{"bytes":45,"imports":[]},"node_modules/@chainsafe/libp2p-noise/dist/src/index.js":{"bytes":208,"imports":[{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/noise.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/crypto.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/stablelib.js","kind":"import-statement"}]},"node_modules/@libp2p/interface-connection/dist/src/index.js":{"bytes":181,"imports":[]},"node_modules/@chainsafe/is-ip/lib/is-ip.node.js":{"bytes":249,"imports":[]},"node_modules/@multiformats/multiaddr/dist/src/ip.js":{"bytes":2922,"imports":[{"path":"node_modules/@chainsafe/is-ip/lib/is-ip.node.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/@chainsafe/is-ip/lib/is-ip.node.js","kind":"import-statement"}]},"node_modules/@multiformats/multiaddr/dist/src/protocols-table.js":{"bytes":2281,"imports":[]},"node_modules/varint/encode.js":{"bytes":595,"imports":[]},"node_modules/varint/decode.js":{"bytes":522,"imports":[]},"node_modules/varint/length.js":{"bytes":471,"imports":[]},"node_modules/varint/index.js":{"bytes":134,"imports":[{"path":"node_modules/varint/encode.js","kind":"require-call"},{"path":"node_modules/varint/decode.js","kind":"require-call"},{"path":"node_modules/varint/length.js","kind":"require-call"}]},"node_modules/@multiformats/multiaddr/dist/src/convert.js":{"bytes":7041,"imports":[{"path":"node_modules/@multiformats/multiaddr/dist/src/ip.js","kind":"import-statement"},{"path":"node_modules/@multiformats/multiaddr/dist/src/protocols-table.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/cid.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base32.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/basics.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/hashes/digest.js","kind":"import-statement"},{"path":"node_modules/varint/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"}]},"node_modules/@multiformats/multiaddr/dist/src/codec.js":{"bytes":5357,"imports":[{"path":"node_modules/@multiformats/multiaddr/dist/src/convert.js","kind":"import-statement"},{"path":"node_modules/@multiformats/multiaddr/dist/src/protocols-table.js","kind":"import-statement"},{"path":"node_modules/varint/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"}]},"node_modules/@multiformats/multiaddr/dist/src/index.js":{"bytes":12464,"imports":[{"path":"node_modules/@multiformats/multiaddr/dist/src/codec.js","kind":"import-statement"},{"path":"node_modules/@multiformats/multiaddr/dist/src/protocols-table.js","kind":"import-statement"},{"path":"node_modules/varint/index.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/cid.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/bases/base58.js","kind":"import-statement"},{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/to-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/equals.js","kind":"import-statement"}]},"node_modules/@multiformats/base-x/src/index.js":{"bytes":4277,"imports":[]},"node_modules/multibase/src/util.js":{"bytes":757,"imports":[]},"node_modules/multibase/src/base.js":{"bytes":1085,"imports":[{"path":"node_modules/multibase/src/util.js","kind":"require-call"}]},"node_modules/multibase/src/rfc4648.js":{"bytes":2882,"imports":[]},"node_modules/multibase/src/constants.js":{"bytes":2754,"imports":[{"path":"node_modules/@multiformats/base-x/src/index.js","kind":"require-call"},{"path":"node_modules/multibase/src/base.js","kind":"require-call"},{"path":"node_modules/multibase/src/rfc4648.js","kind":"require-call"},{"path":"node_modules/multibase/src/util.js","kind":"require-call"}]},"node_modules/multibase/src/index.js":{"bytes":4133,"imports":[{"path":"node_modules/multibase/src/constants.js","kind":"require-call"},{"path":"node_modules/multibase/src/util.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/varint/encode.js":{"bytes":452,"imports":[]},"node_modules/multihashes/node_modules/varint/decode.js":{"bytes":508,"imports":[]},"node_modules/multihashes/node_modules/varint/length.js":{"bytes":471,"imports":[]},"node_modules/multihashes/node_modules/varint/index.js":{"bytes":134,"imports":[{"path":"node_modules/multihashes/node_modules/varint/encode.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/varint/decode.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/varint/length.js","kind":"require-call"}]},"node_modules/multihashes/src/constants.js":{"bytes":18268,"imports":[]},"node_modules/multihashes/node_modules/multiformats/cjs/vendor/base-x.js":{"bytes":3558,"imports":[]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js":{"bytes":1311,"imports":[]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js":{"bytes":4373,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/vendor/base-x.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/identity.js":{"bytes":325,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base2.js":{"bytes":237,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base8.js":{"bytes":243,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base10.js":{"bytes":229,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base16.js":{"bytes":416,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base32.js":{"bytes":1711,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base36.js":{"bytes":416,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base58.js":{"bytes":476,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base64.js":{"bytes":920,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base256emoji.js":{"bytes":3807,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/vendor/varint.js":{"bytes":1526,"imports":[]},"node_modules/multihashes/node_modules/multiformats/cjs/src/varint.js":{"bytes":545,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/vendor/varint.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js":{"bytes":1377,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/varint.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/hasher.js":{"bytes":679,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/sha2.js":{"bytes":757,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/hasher.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/identity.js":{"bytes":374,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/codecs/raw.js":{"bytes":332,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/codecs/json.js":{"bytes":415,"imports":[]},"node_modules/multihashes/node_modules/multiformats/cjs/src/cid.js":{"bytes":8793,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/varint.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base58.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base32.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/index.js":{"bytes":394,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/cid.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/varint.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/hasher.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/multiformats/cjs/src/basics.js":{"bytes":1334,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/identity.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base2.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base8.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base10.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base16.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base32.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base36.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base58.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base64.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base256emoji.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/sha2.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/identity.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/codecs/raw.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/codecs/json.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/index.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/cid.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/hasher.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/varint.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/as-uint8array.js":{"bytes":272,"imports":[]},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/alloc.js":{"bytes":618,"imports":[{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/as-uint8array.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/bases.js":{"bytes":1026,"imports":[{"path":"node_modules/multihashes/node_modules/multiformats/cjs/src/basics.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/alloc.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/to-string.js":{"bytes":584,"imports":[{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/bases.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/from-string.js":{"bytes":634,"imports":[{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/bases.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/as-uint8array.js","kind":"require-call"}]},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/concat.js":{"bytes":513,"imports":[{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/alloc.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/as-uint8array.js","kind":"require-call"}]},"node_modules/multihashes/src/index.js":{"bytes":5556,"imports":[{"path":"node_modules/multibase/src/index.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/varint/index.js","kind":"require-call"},{"path":"node_modules/multihashes/src/constants.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/to-string.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/from-string.js","kind":"require-call"},{"path":"node_modules/multihashes/node_modules/uint8arrays/cjs/src/concat.js","kind":"require-call"}]},"node_modules/uuid/dist/rng.js":{"bytes":549,"imports":[]},"node_modules/uuid/dist/regex.js":{"bytes":267,"imports":[]},"node_modules/uuid/dist/validate.js":{"bytes":410,"imports":[{"path":"node_modules/uuid/dist/regex.js","kind":"require-call"}]},"node_modules/uuid/dist/stringify.js":{"bytes":1795,"imports":[{"path":"node_modules/uuid/dist/validate.js","kind":"require-call"}]},"node_modules/uuid/dist/v1.js":{"bytes":3602,"imports":[{"path":"node_modules/uuid/dist/rng.js","kind":"require-call"},{"path":"node_modules/uuid/dist/stringify.js","kind":"require-call"}]},"node_modules/uuid/dist/parse.js":{"bytes":1380,"imports":[{"path":"node_modules/uuid/dist/validate.js","kind":"require-call"}]},"node_modules/uuid/dist/v35.js":{"bytes":2076,"imports":[{"path":"node_modules/uuid/dist/stringify.js","kind":"require-call"},{"path":"node_modules/uuid/dist/parse.js","kind":"require-call"}]},"node_modules/uuid/dist/md5.js":{"bytes":550,"imports":[]},"node_modules/uuid/dist/v3.js":{"bytes":414,"imports":[{"path":"node_modules/uuid/dist/v35.js","kind":"require-call"},{"path":"node_modules/uuid/dist/md5.js","kind":"require-call"}]},"node_modules/uuid/dist/native.js":{"bytes":350,"imports":[]},"node_modules/uuid/dist/v4.js":{"bytes":1009,"imports":[{"path":"node_modules/uuid/dist/native.js","kind":"require-call"},{"path":"node_modules/uuid/dist/rng.js","kind":"require-call"},{"path":"node_modules/uuid/dist/stringify.js","kind":"require-call"}]},"node_modules/uuid/dist/sha1.js":{"bytes":553,"imports":[]},"node_modules/uuid/dist/v5.js":{"bytes":417,"imports":[{"path":"node_modules/uuid/dist/v35.js","kind":"require-call"},{"path":"node_modules/uuid/dist/sha1.js","kind":"require-call"}]},"node_modules/uuid/dist/nil.js":{"bytes":188,"imports":[]},"node_modules/uuid/dist/version.js":{"bytes":474,"imports":[{"path":"node_modules/uuid/dist/validate.js","kind":"require-call"}]},"node_modules/uuid/dist/index.js":{"bytes":1765,"imports":[{"path":"node_modules/uuid/dist/v1.js","kind":"require-call"},{"path":"node_modules/uuid/dist/v3.js","kind":"require-call"},{"path":"node_modules/uuid/dist/v4.js","kind":"require-call"},{"path":"node_modules/uuid/dist/v5.js","kind":"require-call"},{"path":"node_modules/uuid/dist/nil.js","kind":"require-call"},{"path":"node_modules/uuid/dist/version.js","kind":"require-call"},{"path":"node_modules/uuid/dist/validate.js","kind":"require-call"},{"path":"node_modules/uuid/dist/stringify.js","kind":"require-call"},{"path":"node_modules/uuid/dist/parse.js","kind":"require-call"}]},"node_modules/uuid/wrapper.mjs":{"bytes":323,"imports":[{"path":"node_modules/uuid/dist/index.js","kind":"import-statement"}]},"dist/src/error.js":{"bytes":4481,"imports":[{"path":"node_modules/err-code/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/interface-connection/dist/src/index.js","kind":"import-statement"}]},"node_modules/it-stream-types/dist/src/index.js":{"bytes":44,"imports":[]},"dist/src/util.js":{"bytes":143,"imports":[]},"dist/src/maconn.js":{"bytes":980,"imports":[{"path":"node_modules/@libp2p/interface-connection/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/logger/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@multiformats/multiaddr/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-stream-types/dist/src/index.js","kind":"import-statement"},{"path":"dist/src/util.js","kind":"import-statement"}]},"node_modules/@libp2p/interface-stream-muxer/dist/src/index.js":{"bytes":44,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/json-typings.js":{"bytes":705,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/base64.js":{"bytes":3840,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/protobufjs-utf8.js":{"bytes":3310,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/binary-format-contract.js":{"bytes":3807,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/goog-varint.js":{"bytes":10073,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js":{"bytes":7729,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/goog-varint.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/binary-reader.js":{"bytes":5892,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-format-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/goog-varint.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js":{"bytes":1657,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/binary-writer.js":{"bytes":7078,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/goog-varint.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/json-format-contract.js":{"bytes":1342,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/message-type-contract.js":{"bytes":380,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/lower-camel-case.js":{"bytes":988,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js":{"bytes":6365,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/lower-camel-case.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/oneof.js":{"bytes":3448,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-type-check.js":{"bytes":9189,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/oneof.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-long-convert.js":{"bytes":785,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-reader.js":{"bytes":14715,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/json-typings.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/base64.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-long-convert.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-writer.js":{"bytes":10931,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/base64.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-scalar-default.js":{"bytes":1565,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-long-convert.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-reader.js":{"bytes":8646,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-format-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-long-convert.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-scalar-default.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-writer.js":{"bytes":9433,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-format-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-create.js":{"bytes":1305,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-scalar-default.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/message-type-contract.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-merge-partial.js":{"bytes":4088,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-equals.js":{"bytes":2680,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/message-type.js":{"bytes":6989,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-type-check.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-reader.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-writer.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-reader.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-writer.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-create.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-merge-partial.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/json-typings.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/json-format-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-equals.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-writer.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-reader.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-contains-message-type.js":{"bytes":521,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/message-type-contract.js","kind":"require-call"}]},"node_modules/@protobuf-ts/runtime/build/commonjs/enum-object.js":{"bytes":2902,"imports":[]},"node_modules/@protobuf-ts/runtime/build/commonjs/index.js":{"bytes":9406,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/json-typings.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/base64.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/protobufjs-utf8.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-format-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-reader.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/binary-writer.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/json-format-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/message-type-contract.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/message-type.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-type-check.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-create.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-scalar-default.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-merge-partial.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-equals.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-reader.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-writer.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-reader.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-writer.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-contains-message-type.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/oneof.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/enum-object.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/lower-camel-case.js","kind":"require-call"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js","kind":"require-call"}]},"dist/proto_ts/message.js":{"bytes":3607,"imports":[{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/index.js","kind":"import-statement"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/index.js","kind":"import-statement"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/index.js","kind":"import-statement"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/index.js","kind":"import-statement"},{"path":"node_modules/@protobuf-ts/runtime/build/commonjs/index.js","kind":"import-statement"}]},"dist/src/stream.js":{"bytes":10434,"imports":[{"path":"node_modules/@libp2p/interface-connection/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/logger/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-length-prefixed/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-merge/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-pipe/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-pushable/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/p-defer/index.js","kind":"import-statement"},{"path":"node_modules/it-stream-types/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/uint8arraylist/dist/src/index.js","kind":"import-statement"},{"path":"dist/proto_ts/message.js","kind":"import-statement"}]},"dist/src/muxer.js":{"bytes":2812,"imports":[{"path":"node_modules/@libp2p/interface-connection/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/interface-stream-muxer/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/it-stream-types/dist/src/index.js","kind":"import-statement"},{"path":"dist/src/stream.js","kind":"import-statement"},{"path":"dist/src/util.js","kind":"import-statement"}]},"dist/src/options.js":{"bytes":73,"imports":[{"path":"node_modules/@libp2p/interface-transport/dist/src/index.js","kind":"import-statement"}]},"dist/src/sdp.js":{"bytes":3628,"imports":[{"path":"node_modules/@libp2p/logger/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@multiformats/multiaddr/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/multiformats/src/basics.js","kind":"import-statement"},{"path":"node_modules/multihashes/src/index.js","kind":"import-statement"},{"path":"dist/src/error.js","kind":"import-statement"},{"path":"dist/src/transport.js","kind":"import-statement"}]},"dist/src/transport.js":{"bytes":8993,"imports":[{"path":"node_modules/@chainsafe/libp2p-noise/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/interface-connection/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/interface-transport/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/logger/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@libp2p/peer-id/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/@multiformats/multiaddr/dist/src/index.js","kind":"import-statement"},{"path":"node_modules/multihashes/src/index.js","kind":"import-statement"},{"path":"node_modules/p-defer/index.js","kind":"import-statement"},{"path":"node_modules/uuid/wrapper.mjs","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/from-string.js","kind":"import-statement"},{"path":"node_modules/uint8arrays/dist/src/concat.js","kind":"import-statement"},{"path":"dist/src/error.js","kind":"import-statement"},{"path":"dist/src/maconn.js","kind":"import-statement"},{"path":"dist/src/muxer.js","kind":"import-statement"},{"path":"dist/src/options.js","kind":"import-statement"},{"path":"dist/src/sdp.js","kind":"import-statement"},{"path":"dist/src/stream.js","kind":"import-statement"}]},"dist/src/index.js":{"bytes":210,"imports":[{"path":"node_modules/@libp2p/interface-transport/dist/src/index.js","kind":"import-statement"},{"path":"dist/src/transport.js","kind":"import-statement"}]}},"outputs":{"dist/index.min.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":1840268},"dist/index.min.js":{"imports":[],"exports":[],"entryPoint":"dist/src/index.js","inputs":{"node_modules/err-code/index.js":{"bytesInOutput":467},"node_modules/@stablelib/hash/lib/hash.js":{"bytesInOutput":206},"node_modules/@stablelib/constant-time/lib/constant-time.js":{"bytesInOutput":396},"node_modules/@stablelib/wipe/lib/wipe.js":{"bytesInOutput":148},"node_modules/@stablelib/hmac/lib/hmac.js":{"bytesInOutput":2401},"node_modules/@stablelib/hkdf/lib/hkdf.js":{"bytesInOutput":987},"node_modules/@stablelib/random/lib/source/browser.js":{"bytesInOutput":611},"node_modules/@stablelib/random/lib/source/node.js":{"bytesInOutput":645},"node_modules/@stablelib/random/lib/source/system.js":{"bytesInOutput":575},"node_modules/@stablelib/int/lib/int.js":{"bytesInOutput":626},"node_modules/@stablelib/binary/lib/binary.js":{"bytesInOutput":4633},"node_modules/@stablelib/random/lib/random.js":{"bytesInOutput":1041},"node_modules/@stablelib/x25519/lib/x25519.js":{"bytesInOutput":6927},"node_modules/@stablelib/sha256/lib/sha256.js":{"bytesInOutput":3951},"node_modules/@stablelib/chacha/lib/chacha.js":{"bytesInOutput":2966},"node_modules/@stablelib/poly1305/lib/poly1305.js":{"bytesInOutput":5858},"node_modules/@stablelib/chacha20poly1305/lib/chacha20poly1305.js":{"bytesInOutput":2076},"node_modules/@protobufjs/aspromise/index.js":{"bytesInOutput":380},"node_modules/@protobufjs/base64/index.js":{"bytesInOutput":1228},"node_modules/@protobufjs/eventemitter/index.js":{"bytesInOutput":576},"node_modules/@protobufjs/float/index.js":{"bytesInOutput":3035},"node_modules/@protobufjs/inquire/index.js":{"bytesInOutput":231},"node_modules/@protobufjs/utf8/index.js":{"bytesInOutput":1086},"node_modules/@protobufjs/pool/index.js":{"bytesInOutput":214},"node_modules/protobufjs/src/util/longbits.js":{"bytesInOutput":1847},"node_modules/protobufjs/src/util/minimal.js":{"bytesInOutput":3050},"node_modules/protobufjs/src/reader.js":{"bytesInOutput":3962},"node_modules/protobufjs/src/reader_buffer.js":{"bytesInOutput":483},"node_modules/protobufjs/src/writer.js":{"bytesInOutput":3250},"node_modules/protobufjs/src/writer_buffer.js":{"bytesInOutput":835},"node_modules/node-forge/lib/forge.js":{"bytesInOutput":65},"node_modules/node-forge/lib/baseN.js":{"bytesInOutput":1470},"node_modules/node-forge/lib/util.js":{"bytesInOutput":23068},"node_modules/node-forge/lib/oids.js":{"bytesInOutput":5178},"node_modules/node-forge/lib/asn1.js":{"bytesInOutput":11383},"node_modules/node-forge/lib/cipher.js":{"bytesInOutput":1956},"node_modules/node-forge/lib/cipherModes.js":{"bytesInOutput":12621},"node_modules/node-forge/lib/aes.js":{"bytesInOutput":3932},"node_modules/node-forge/lib/des.js":{"bytesInOutput":8845},"node_modules/node-forge/lib/md.js":{"bytesInOutput":98},"node_modules/node-forge/lib/hmac.js":{"bytesInOutput":1011},"node_modules/node-forge/lib/pbkdf2.js":{"bytesInOutput":1685},"node_modules/node-forge/lib/pem.js":{"bytesInOutput":2589},"node_modules/node-forge/lib/sha256.js":{"bytesInOutput":3121},"node_modules/node-forge/lib/prng.js":{"bytesInOutput":3529},"node_modules/node-forge/lib/random.js":{"bytesInOutput":1532},"node_modules/node-forge/lib/rc2.js":{"bytesInOutput":3015},"node_modules/node-forge/lib/jsbn.js":{"bytesInOutput":18972},"node_modules/node-forge/lib/sha1.js":{"bytesInOutput":2696},"node_modules/node-forge/lib/pkcs1.js":{"bytesInOutput":2283},"node_modules/node-forge/lib/prime.js":{"bytesInOutput":1980},"node_modules/node-forge/lib/rsa.js":{"bytesInOutput":18322},"node_modules/node-forge/lib/pbe.js":{"bytesInOutput":13461},"node_modules/node-forge/lib/sha512.js":{"bytesInOutput":7022},"node_modules/ms/index.js":{"bytesInOutput":1397},"node_modules/debug/src/common.js":{"bytesInOutput":2075},"node_modules/debug/src/browser.js":{"bytesInOutput":2565},"node_modules/has-flag/index.js":{"bytesInOutput":180},"node_modules/supports-color/index.js":{"bytesInOutput":1533},"node_modules/debug/src/node.js":{"bytesInOutput":1974},"node_modules/debug/src/index.js":{"bytesInOutput":137},"node_modules/varint/encode.js":{"bytesInOutput":335},"node_modules/varint/decode.js":{"bytesInOutput":271},"node_modules/varint/length.js":{"bytesInOutput":283},"node_modules/varint/index.js":{"bytesInOutput":78},"node_modules/@multiformats/base-x/src/index.js":{"bytesInOutput":1640},"node_modules/multibase/src/util.js":{"bytesInOutput":257},"node_modules/multibase/src/base.js":{"bytesInOutput":377},"node_modules/multibase/src/rfc4648.js":{"bytesInOutput":684},"node_modules/multibase/src/constants.js":{"bytesInOutput":1684},"node_modules/multibase/src/index.js":{"bytesInOutput":1161},"node_modules/multihashes/node_modules/varint/encode.js":{"bytesInOutput":222},"node_modules/multihashes/node_modules/varint/decode.js":{"bytesInOutput":265},"node_modules/multihashes/node_modules/varint/length.js":{"bytesInOutput":283},"node_modules/multihashes/node_modules/varint/index.js":{"bytesInOutput":78},"node_modules/multihashes/src/constants.js":{"bytesInOutput":7272},"node_modules/multihashes/node_modules/multiformats/cjs/vendor/base-x.js":{"bytesInOutput":1653},"node_modules/multihashes/node_modules/multiformats/cjs/src/bytes.js":{"bytesInOutput":880},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base.js":{"bytesInOutput":2347},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/identity.js":{"bytesInOutput":208},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base2.js":{"bytesInOutput":172},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base8.js":{"bytesInOutput":178},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base10.js":{"bytesInOutput":166},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base16.js":{"bytesInOutput":295},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base32.js":{"bytesInOutput":1202},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base36.js":{"bytesInOutput":303},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base58.js":{"bytesInOutput":355},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base64.js":{"bytesInOutput":697},"node_modules/multihashes/node_modules/multiformats/cjs/src/bases/base256emoji.js":{"bytesInOutput":2743},"node_modules/multihashes/node_modules/multiformats/cjs/vendor/varint.js":{"bytesInOutput":784},"node_modules/multihashes/node_modules/multiformats/cjs/src/varint.js":{"bytesInOutput":247},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/digest.js":{"bytesInOutput":661},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/hasher.js":{"bytesInOutput":429},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/sha2.js":{"bytesInOutput":448},"node_modules/multihashes/node_modules/multiformats/cjs/src/hashes/identity.js":{"bytesInOutput":213},"node_modules/multihashes/node_modules/multiformats/cjs/src/codecs/raw.js":{"bytesInOutput":192},"node_modules/multihashes/node_modules/multiformats/cjs/src/codecs/json.js":{"bytesInOutput":252},"node_modules/multihashes/node_modules/multiformats/cjs/src/cid.js":{"bytesInOutput":4846},"node_modules/multihashes/node_modules/multiformats/cjs/src/index.js":{"bytesInOutput":188},"node_modules/multihashes/node_modules/multiformats/cjs/src/basics.js":{"bytesInOutput":449},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/as-uint8array.js":{"bytesInOutput":197},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/alloc.js":{"bytesInOutput":415},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/util/bases.js":{"bytesInOutput":568},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/to-string.js":{"bytesInOutput":391},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/from-string.js":{"bytesInOutput":379},"node_modules/multihashes/node_modules/uint8arrays/cjs/src/concat.js":{"bytesInOutput":258},"node_modules/multihashes/src/index.js":{"bytesInOutput":2099},"node_modules/uuid/dist/rng.js":{"bytesInOutput":305},"node_modules/uuid/dist/regex.js":{"bytesInOutput":236},"node_modules/uuid/dist/validate.js":{"bytesInOutput":250},"node_modules/uuid/dist/stringify.js":{"bytesInOutput":632},"node_modules/uuid/dist/v1.js":{"bytesInOutput":1056},"node_modules/uuid/dist/parse.js":{"bytesInOutput":672},"node_modules/uuid/dist/v35.js":{"bytesInOutput":907},"node_modules/uuid/dist/md5.js":{"bytesInOutput":347},"node_modules/uuid/dist/v3.js":{"bytesInOutput":239},"node_modules/uuid/dist/native.js":{"bytesInOutput":229},"node_modules/uuid/dist/v4.js":{"bytesInOutput":458},"node_modules/uuid/dist/sha1.js":{"bytesInOutput":348},"node_modules/uuid/dist/v5.js":{"bytesInOutput":239},"node_modules/uuid/dist/nil.js":{"bytesInOutput":157},"node_modules/uuid/dist/version.js":{"bytesInOutput":293},"node_modules/uuid/dist/index.js":{"bytesInOutput":995},"node_modules/@protobuf-ts/runtime/build/commonjs/json-typings.js":{"bytesInOutput":346},"node_modules/@protobuf-ts/runtime/build/commonjs/base64.js":{"bytesInOutput":1152},"node_modules/@protobuf-ts/runtime/build/commonjs/protobufjs-utf8.js":{"bytesInOutput":570},"node_modules/@protobuf-ts/runtime/build/commonjs/binary-format-contract.js":{"bytesInOutput":904},"node_modules/@protobuf-ts/runtime/build/commonjs/goog-varint.js":{"bytesInOutput":2186},"node_modules/@protobuf-ts/runtime/build/commonjs/pb-long.js":{"bytesInOutput":3226},"node_modules/@protobuf-ts/runtime/build/commonjs/binary-reader.js":{"bytesInOutput":2069},"node_modules/@protobuf-ts/runtime/build/commonjs/assert.js":{"bytesInOutput":921},"node_modules/@protobuf-ts/runtime/build/commonjs/binary-writer.js":{"bytesInOutput":2571},"node_modules/@protobuf-ts/runtime/build/commonjs/json-format-contract.js":{"bytesInOutput":642},"node_modules/@protobuf-ts/runtime/build/commonjs/message-type-contract.js":{"bytesInOutput":157},"node_modules/@protobuf-ts/runtime/build/commonjs/lower-camel-case.js":{"bytesInOutput":332},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-info.js":{"bytesInOutput":1689},"node_modules/@protobuf-ts/runtime/build/commonjs/oneof.js":{"bytesInOutput":969},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-type-check.js":{"bytesInOutput":3241},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-long-convert.js":{"bytesInOutput":295},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-reader.js":{"bytesInOutput":4891},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-json-writer.js":{"bytesInOutput":3683},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-scalar-default.js":{"bytesInOutput":646},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-reader.js":{"bytesInOutput":2915},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-binary-writer.js":{"bytesInOutput":3206},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-create.js":{"bytesInOutput":493},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-merge-partial.js":{"bytesInOutput":854},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-equals.js":{"bytesInOutput":1088},"node_modules/@protobuf-ts/runtime/build/commonjs/message-type.js":{"bytesInOutput":2041},"node_modules/@protobuf-ts/runtime/build/commonjs/reflection-contains-message-type.js":{"bytesInOutput":194},"node_modules/@protobuf-ts/runtime/build/commonjs/enum-object.js":{"bytesInOutput":802},"node_modules/@protobuf-ts/runtime/build/commonjs/index.js":{"bytesInOutput":5466},"dist/src/index.js":{"bytesInOutput":67},"node_modules/@libp2p/interface-transport/dist/src/index.js":{"bytesInOutput":39},"node_modules/uint8arrays/dist/src/util/as-uint8array.js":{"bytesInOutput":99},"node_modules/uint8arrays/dist/src/alloc.js":{"bytesInOutput":220},"node_modules/uint8arrays/dist/src/concat.js":{"bytesInOutput":127},"node_modules/uint8arrays/dist/src/equals.js":{"bytesInOutput":139},"node_modules/uint8arraylist/dist/src/index.js":{"bytesInOutput":5835},"node_modules/it-reader/dist/src/index.js":{"bytesInOutput":408},"node_modules/it-pushable/dist/src/fifo.js":{"bytesInOutput":1064},"node_modules/it-pushable/dist/src/index.js":{"bytesInOutput":1137},"node_modules/p-defer/index.js":{"bytesInOutput":87},"node_modules/it-handshake/dist/src/index.js":{"bytesInOutput":342},"node_modules/byte-access/dist/src/index.js":{"bytesInOutput":132},"node_modules/longbits/dist/src/index.js":{"bytesInOutput":1861},"node_modules/uint8-varint/dist/src/index.js":{"bytesInOutput":517},"node_modules/it-length-prefixed/dist/src/alloc.js":{"bytesInOutput":111},"node_modules/it-length-prefixed/dist/src/encode.js":{"bytesInOutput":380},"node_modules/it-length-prefixed/dist/src/index.js":{"bytesInOutput":0},"node_modules/it-length-prefixed/dist/src/decode.js":{"bytesInOutput":1311},"node_modules/it-pb-stream/dist/src/index.js":{"bytesInOutput":674},"node_modules/it-pair/dist/src/index.js":{"bytesInOutput":160},"node_modules/it-pair/dist/src/duplex.js":{"bytesInOutput":100},"node_modules/it-merge/dist/src/index.js":{"bytesInOutput":192},"node_modules/it-pipe/dist/src/index.js":{"bytesInOutput":674},"node_modules/@chainsafe/libp2p-noise/dist/src/constants.js":{"bytesInOutput":59},"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/stablelib.js":{"bytesInOutput":675},"node_modules/@chainsafe/libp2p-noise/dist/src/crypto/streaming.js":{"bytesInOutput":683},"node_modules/@chainsafe/libp2p-noise/dist/src/encoder.js":{"bytesInOutput":1221},"node_modules/@libp2p/interface-connection-encrypter/dist/src/errors.js":{"bytesInOutput":282},"node_modules/protons-runtime/dist/src/utils.js":{"bytesInOutput":582},"node_modules/protons-runtime/dist/src/decode.js":{"bytesInOutput":85},"node_modules/protons-runtime/dist/src/index.js":{"bytesInOutput":0},"node_modules/protons-runtime/dist/src/encode.js":{"bytesInOutput":81},"node_modules/protons-runtime/dist/src/codec.js":{"bytesInOutput":266},"node_modules/protons-runtime/dist/src/codecs/enum.js":{"bytesInOutput":222},"node_modules/protons-runtime/dist/src/codecs/message.js":{"bytesInOutput":62},"node_modules/@libp2p/crypto/dist/src/keys/keys.js":{"bytesInOutput":1268},"node_modules/@libp2p/crypto/dist/src/keys/index.js":{"bytesInOutput":853},"node_modules/multiformats/src/bases/identity.js":{"bytesInOutput":108},"node_modules/multiformats/vendor/base-x.js":{"bytesInOutput":1611},"node_modules/multiformats/src/bytes.js":{"bytesInOutput":503},"node_modules/multiformats/src/bases/base.js":{"bytesInOutput":2187},"node_modules/multiformats/src/bases/base2.js":{"bytesInOutput":97},"node_modules/multiformats/src/bases/base8.js":{"bytesInOutput":103},"node_modules/multiformats/src/bases/base10.js":{"bytesInOutput":93},"node_modules/multiformats/src/bases/base16.js":{"bytesInOutput":213},"node_modules/multiformats/src/bases/base32.js":{"bytesInOutput":1071},"node_modules/multiformats/src/bases/base36.js":{"bytesInOutput":225},"node_modules/multiformats/src/bases/base58.js":{"bytesInOutput":277},"node_modules/multiformats/src/bases/base64.js":{"bytesInOutput":601},"node_modules/multiformats/src/bases/base256emoji.js":{"bytesInOutput":2671},"node_modules/multiformats/src/hashes/sha2.js":{"bytesInOutput":272},"node_modules/multiformats/vendor/varint.js":{"bytesInOutput":736},"node_modules/multiformats/src/varint.js":{"bytesInOutput":111},"node_modules/multiformats/src/hashes/digest.js":{"bytesInOutput":497},"node_modules/multiformats/src/hashes/hasher.js":{"bytesInOutput":304},"node_modules/multiformats/src/hashes/identity.js":{"bytesInOutput":124},"node_modules/multiformats/src/codecs/json.js":{"bytesInOutput":42},"node_modules/multiformats/src/cid.js":{"bytesInOutput":3866},"node_modules/multiformats/src/index.js":{"bytesInOutput":0},"node_modules/multiformats/src/basics.js":{"bytesInOutput":86},"node_modules/uint8arrays/dist/src/util/bases.js":{"bytesInOutput":482},"node_modules/uint8arrays/dist/src/from-string.js":{"bytesInOutput":255},"node_modules/@libp2p/crypto/dist/src/keys/key-stretcher.js":{"bytesInOutput":17},"node_modules/@libp2p/crypto/dist/src/keys/ecdh.js":{"bytesInOutput":120},"node_modules/@libp2p/crypto/dist/src/ciphers/aes-gcm.js":{"bytesInOutput":887},"node_modules/@libp2p/crypto/dist/src/keys/rsa-class.js":{"bytesInOutput":1899},"node_modules/uint8arrays/dist/src/to-string.js":{"bytesInOutput":289},"node_modules/@libp2p/crypto/dist/src/keys/rsa.js":{"bytesInOutput":902},"node_modules/@noble/secp256k1/lib/esm/index.js":{"bytesInOutput":16195},"node_modules/@libp2p/crypto/dist/src/random-bytes.js":{"bytesInOutput":181},"node_modules/@libp2p/crypto/dist/src/keys/rsa-utils.js":{"bytesInOutput":1118},"node_modules/@libp2p/crypto/dist/src/util.js":{"bytesInOutput":532},"node_modules/@libp2p/crypto/dist/src/keys/exporter.js":{"bytesInOutput":73},"node_modules/@libp2p/crypto/dist/src/keys/ed25519-class.js":{"bytesInOutput":1722},"node_modules/@libp2p/crypto/dist/src/keys/ed25519.js":{"bytesInOutput":1775},"node_modules/@libp2p/crypto/dist/src/keys/secp256k1-class.js":{"bytesInOutput":1257},"node_modules/@libp2p/crypto/dist/src/keys/secp256k1.js":{"bytesInOutput":649},"node_modules/@libp2p/peer-id/dist/src/index.js":{"bytesInOutput":2400},"node_modules/@libp2p/interface-peer-id/dist/src/index.js":{"bytesInOutput":37},"node_modules/@chainsafe/libp2p-noise/dist/src/proto/payload.js":{"bytesInOutput":1356},"node_modules/@chainsafe/libp2p-noise/dist/src/utils.js":{"bytesInOutput":1086},"node_modules/@libp2p/logger/dist/src/index.js":{"bytesInOutput":516},"node_modules/@chainsafe/libp2p-noise/dist/src/logger.js":{"bytesInOutput":711},"node_modules/@chainsafe/libp2p-noise/dist/src/nonce.js":{"bytesInOutput":423},"node_modules/@chainsafe/libp2p-noise/dist/src/handshakes/abstract-handshake.js":{"bytesInOutput":1918},"node_modules/@chainsafe/libp2p-noise/dist/src/handshakes/xx.js":{"bytesInOutput":3021},"node_modules/@chainsafe/libp2p-noise/dist/src/handshake-xx.js":{"bytesInOutput":3143},"node_modules/@chainsafe/libp2p-noise/dist/src/metrics.js":{"bytesInOutput":659},"node_modules/@chainsafe/libp2p-noise/dist/src/noise.js":{"bytesInOutput":1609},"node_modules/@chainsafe/libp2p-noise/dist/src/index.js":{"bytesInOutput":38},"node_modules/@libp2p/interface-connection/dist/src/index.js":{"bytesInOutput":40},"node_modules/@chainsafe/is-ip/lib/is-ip.node.js":{"bytesInOutput":68},"node_modules/@multiformats/multiaddr/dist/src/ip.js":{"bytesInOutput":1042},"node_modules/@multiformats/multiaddr/dist/src/protocols-table.js":{"bytesInOutput":1037},"node_modules/@multiformats/multiaddr/dist/src/convert.js":{"bytesInOutput":2973},"node_modules/@multiformats/multiaddr/dist/src/codec.js":{"bytesInOutput":1632},"node_modules/@multiformats/multiaddr/dist/src/index.js":{"bytesInOutput":3965},"dist/src/transport.js":{"bytesInOutput":2326},"node_modules/uuid/wrapper.mjs":{"bytesInOutput":192},"dist/src/error.js":{"bytesInOutput":2013},"dist/src/util.js":{"bytesInOutput":57},"dist/src/maconn.js":{"bytesInOutput":318},"dist/proto_ts/message.js":{"bytesInOutput":1208},"dist/src/stream.js":{"bytesInOutput":3824},"dist/src/muxer.js":{"bytesInOutput":643},"dist/src/sdp.js":{"bytesInOutput":1565}},"bytes":415595}}}
|