@astrox/connection 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +23 -0
  3. package/lib/cjs/canisters/internet_identity_idl.d.ts +7 -0
  4. package/lib/cjs/canisters/internet_identity_idl.js +101 -0
  5. package/lib/cjs/canisters/internet_identity_idl.js.map +1 -0
  6. package/lib/cjs/canisters/ledger.idl.d.ts +7 -0
  7. package/lib/cjs/canisters/ledger.idl.js +81 -0
  8. package/lib/cjs/canisters/ledger.idl.js.map +1 -0
  9. package/lib/cjs/canisters/me.idl.d.ts +7 -0
  10. package/lib/cjs/canisters/me.idl.js +125 -0
  11. package/lib/cjs/canisters/me.idl.js.map +1 -0
  12. package/lib/cjs/canisters/nns-dapp-cert.idl.d.ts +7 -0
  13. package/lib/cjs/canisters/nns-dapp-cert.idl.js +86 -0
  14. package/lib/cjs/canisters/nns-dapp-cert.idl.js.map +1 -0
  15. package/lib/cjs/canisters/nns-dapp.idl.d.ts +7 -0
  16. package/lib/cjs/canisters/nns-dapp.idl.js +184 -0
  17. package/lib/cjs/canisters/nns-dapp.idl.js.map +1 -0
  18. package/lib/cjs/connections/baseConnection.d.ts +52 -0
  19. package/lib/cjs/connections/baseConnection.js +87 -0
  20. package/lib/cjs/connections/baseConnection.js.map +1 -0
  21. package/lib/cjs/connections/ledgerConnection.d.ts +57 -0
  22. package/lib/cjs/connections/ledgerConnection.js +135 -0
  23. package/lib/cjs/connections/ledgerConnection.js.map +1 -0
  24. package/lib/cjs/connections/nnsConnection.d.ts +62 -0
  25. package/lib/cjs/connections/nnsConnection.js +166 -0
  26. package/lib/cjs/connections/nnsConnection.js.map +1 -0
  27. package/lib/cjs/ic/icAuthClient.d.ts +31 -0
  28. package/lib/cjs/ic/icAuthClient.js +233 -0
  29. package/lib/cjs/ic/icAuthClient.js.map +1 -0
  30. package/lib/cjs/ic/icConnect.d.ts +32 -0
  31. package/lib/cjs/ic/icConnect.js +181 -0
  32. package/lib/cjs/ic/icConnect.js.map +1 -0
  33. package/lib/cjs/ic/icStorage.d.ts +16 -0
  34. package/lib/cjs/ic/icStorage.js +49 -0
  35. package/lib/cjs/ic/icStorage.js.map +1 -0
  36. package/lib/cjs/ic/icWindow.d.ts +7 -0
  37. package/lib/cjs/ic/icWindow.js +20 -0
  38. package/lib/cjs/ic/icWindow.js.map +1 -0
  39. package/lib/cjs/ic/index.d.ts +2 -0
  40. package/lib/cjs/ic/index.js +7 -0
  41. package/lib/cjs/ic/index.js.map +1 -0
  42. package/lib/cjs/ic/types.d.ts +129 -0
  43. package/lib/cjs/ic/types.js +17 -0
  44. package/lib/cjs/ic/types.js.map +1 -0
  45. package/lib/cjs/index.d.ts +5 -0
  46. package/lib/cjs/index.js +18 -0
  47. package/lib/cjs/index.js.map +1 -0
  48. package/lib/cjs/utils/common/types.d.ts +15 -0
  49. package/lib/cjs/utils/common/types.js +12 -0
  50. package/lib/cjs/utils/common/types.js.map +1 -0
  51. package/lib/cjs/utils/constants.d.ts +6 -0
  52. package/lib/cjs/utils/constants.js +13 -0
  53. package/lib/cjs/utils/constants.js.map +1 -0
  54. package/lib/cjs/utils/converter.d.ts +32 -0
  55. package/lib/cjs/utils/converter.js +130 -0
  56. package/lib/cjs/utils/converter.js.map +1 -0
  57. package/lib/cjs/utils/index.d.ts +3 -0
  58. package/lib/cjs/utils/index.js +16 -0
  59. package/lib/cjs/utils/index.js.map +1 -0
  60. package/lib/esm/canisters/internet_identity_idl.d.ts +7 -0
  61. package/lib/esm/canisters/internet_identity_idl.js +98 -0
  62. package/lib/esm/canisters/internet_identity_idl.js.map +1 -0
  63. package/lib/esm/canisters/ledger.idl.d.ts +7 -0
  64. package/lib/esm/canisters/ledger.idl.js +78 -0
  65. package/lib/esm/canisters/ledger.idl.js.map +1 -0
  66. package/lib/esm/canisters/me.idl.d.ts +7 -0
  67. package/lib/esm/canisters/me.idl.js +122 -0
  68. package/lib/esm/canisters/me.idl.js.map +1 -0
  69. package/lib/esm/canisters/nns-dapp-cert.idl.d.ts +7 -0
  70. package/lib/esm/canisters/nns-dapp-cert.idl.js +83 -0
  71. package/lib/esm/canisters/nns-dapp-cert.idl.js.map +1 -0
  72. package/lib/esm/canisters/nns-dapp.idl.d.ts +7 -0
  73. package/lib/esm/canisters/nns-dapp.idl.js +181 -0
  74. package/lib/esm/canisters/nns-dapp.idl.js.map +1 -0
  75. package/lib/esm/connections/baseConnection.d.ts +52 -0
  76. package/lib/esm/connections/baseConnection.js +80 -0
  77. package/lib/esm/connections/baseConnection.js.map +1 -0
  78. package/lib/esm/connections/ledgerConnection.d.ts +57 -0
  79. package/lib/esm/connections/ledgerConnection.js +128 -0
  80. package/lib/esm/connections/ledgerConnection.js.map +1 -0
  81. package/lib/esm/connections/nnsConnection.d.ts +62 -0
  82. package/lib/esm/connections/nnsConnection.js +159 -0
  83. package/lib/esm/connections/nnsConnection.js.map +1 -0
  84. package/lib/esm/ic/icAuthClient.d.ts +31 -0
  85. package/lib/esm/ic/icAuthClient.js +229 -0
  86. package/lib/esm/ic/icAuthClient.js.map +1 -0
  87. package/lib/esm/ic/icConnect.d.ts +32 -0
  88. package/lib/esm/ic/icConnect.js +177 -0
  89. package/lib/esm/ic/icConnect.js.map +1 -0
  90. package/lib/esm/ic/icStorage.d.ts +16 -0
  91. package/lib/esm/ic/icStorage.js +44 -0
  92. package/lib/esm/ic/icStorage.js.map +1 -0
  93. package/lib/esm/ic/icWindow.d.ts +7 -0
  94. package/lib/esm/ic/icWindow.js +16 -0
  95. package/lib/esm/ic/icWindow.js.map +1 -0
  96. package/lib/esm/ic/index.d.ts +2 -0
  97. package/lib/esm/ic/index.js +3 -0
  98. package/lib/esm/ic/index.js.map +1 -0
  99. package/lib/esm/ic/types.d.ts +129 -0
  100. package/lib/esm/ic/types.js +14 -0
  101. package/lib/esm/ic/types.js.map +1 -0
  102. package/lib/esm/index.d.ts +5 -0
  103. package/lib/esm/index.js +6 -0
  104. package/lib/esm/index.js.map +1 -0
  105. package/lib/esm/utils/common/types.d.ts +15 -0
  106. package/lib/esm/utils/common/types.js +9 -0
  107. package/lib/esm/utils/common/types.js.map +1 -0
  108. package/lib/esm/utils/constants.d.ts +6 -0
  109. package/lib/esm/utils/constants.js +10 -0
  110. package/lib/esm/utils/constants.js.map +1 -0
  111. package/lib/esm/utils/converter.d.ts +32 -0
  112. package/lib/esm/utils/converter.js +124 -0
  113. package/lib/esm/utils/converter.js.map +1 -0
  114. package/lib/esm/utils/index.d.ts +3 -0
  115. package/lib/esm/utils/index.js +4 -0
  116. package/lib/esm/utils/index.js.map +1 -0
  117. package/lib/tsconfig-cjs.tsbuildinfo +2834 -0
  118. package/lib/tsconfig.tsbuildinfo +2833 -0
  119. package/package.json +53 -0
@@ -0,0 +1,2833 @@
1
+ {
2
+ "program": {
3
+ "fileInfos": {
4
+ "../../../node_modules/typescript/lib/lib.es5.d.ts": {
5
+ "version": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
6
+ "signature": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
7
+ "affectsGlobalScope": true
8
+ },
9
+ "../../../node_modules/typescript/lib/lib.es2015.d.ts": {
10
+ "version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
11
+ "signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
12
+ "affectsGlobalScope": false
13
+ },
14
+ "../../../node_modules/typescript/lib/lib.es2016.d.ts": {
15
+ "version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
16
+ "signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
17
+ "affectsGlobalScope": false
18
+ },
19
+ "../../../node_modules/typescript/lib/lib.es2017.d.ts": {
20
+ "version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
21
+ "signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
22
+ "affectsGlobalScope": false
23
+ },
24
+ "../../../node_modules/typescript/lib/lib.es2018.d.ts": {
25
+ "version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
26
+ "signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
27
+ "affectsGlobalScope": false
28
+ },
29
+ "../../../node_modules/typescript/lib/lib.es2019.d.ts": {
30
+ "version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
31
+ "signature": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
32
+ "affectsGlobalScope": false
33
+ },
34
+ "../../../node_modules/typescript/lib/lib.es2020.d.ts": {
35
+ "version": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
36
+ "signature": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
37
+ "affectsGlobalScope": false
38
+ },
39
+ "../../../node_modules/typescript/lib/lib.dom.d.ts": {
40
+ "version": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
41
+ "signature": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
42
+ "affectsGlobalScope": true
43
+ },
44
+ "../../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
45
+ "version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
46
+ "signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
47
+ "affectsGlobalScope": true
48
+ },
49
+ "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
50
+ "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
51
+ "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
52
+ "affectsGlobalScope": true
53
+ },
54
+ "../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
55
+ "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
56
+ "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
57
+ "affectsGlobalScope": true
58
+ },
59
+ "../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
60
+ "version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
61
+ "signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
62
+ "affectsGlobalScope": true
63
+ },
64
+ "../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
65
+ "version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
66
+ "signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
67
+ "affectsGlobalScope": true
68
+ },
69
+ "../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
70
+ "version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
71
+ "signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
72
+ "affectsGlobalScope": true
73
+ },
74
+ "../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
75
+ "version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
76
+ "signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
77
+ "affectsGlobalScope": true
78
+ },
79
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
80
+ "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
81
+ "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
82
+ "affectsGlobalScope": true
83
+ },
84
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
85
+ "version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
86
+ "signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
87
+ "affectsGlobalScope": true
88
+ },
89
+ "../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
90
+ "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
91
+ "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
92
+ "affectsGlobalScope": true
93
+ },
94
+ "../../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
95
+ "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
96
+ "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
97
+ "affectsGlobalScope": true
98
+ },
99
+ "../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
100
+ "version": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
101
+ "signature": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
102
+ "affectsGlobalScope": true
103
+ },
104
+ "../../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
105
+ "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
106
+ "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
107
+ "affectsGlobalScope": true
108
+ },
109
+ "../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
110
+ "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
111
+ "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
112
+ "affectsGlobalScope": true
113
+ },
114
+ "../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
115
+ "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
116
+ "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
117
+ "affectsGlobalScope": true
118
+ },
119
+ "../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
120
+ "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
121
+ "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
122
+ "affectsGlobalScope": true
123
+ },
124
+ "../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
125
+ "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
126
+ "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
127
+ "affectsGlobalScope": true
128
+ },
129
+ "../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
130
+ "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
131
+ "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
132
+ "affectsGlobalScope": true
133
+ },
134
+ "../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
135
+ "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
136
+ "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
137
+ "affectsGlobalScope": true
138
+ },
139
+ "../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
140
+ "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
141
+ "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
142
+ "affectsGlobalScope": true
143
+ },
144
+ "../../../node_modules/typescript/lib/lib.es2019.array.d.ts": {
145
+ "version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
146
+ "signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
147
+ "affectsGlobalScope": true
148
+ },
149
+ "../../../node_modules/typescript/lib/lib.es2019.object.d.ts": {
150
+ "version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
151
+ "signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
152
+ "affectsGlobalScope": true
153
+ },
154
+ "../../../node_modules/typescript/lib/lib.es2019.string.d.ts": {
155
+ "version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
156
+ "signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
157
+ "affectsGlobalScope": true
158
+ },
159
+ "../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
160
+ "version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
161
+ "signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
162
+ "affectsGlobalScope": true
163
+ },
164
+ "../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
165
+ "version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
166
+ "signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
167
+ "affectsGlobalScope": true
168
+ },
169
+ "../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
170
+ "version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
171
+ "signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
172
+ "affectsGlobalScope": true
173
+ },
174
+ "../../../node_modules/typescript/lib/lib.es2020.string.d.ts": {
175
+ "version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
176
+ "signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
177
+ "affectsGlobalScope": true
178
+ },
179
+ "../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
180
+ "version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
181
+ "signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
182
+ "affectsGlobalScope": true
183
+ },
184
+ "../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
185
+ "version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
186
+ "signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
187
+ "affectsGlobalScope": true
188
+ },
189
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts": {
190
+ "version": "cd8d6d050c41bec199aa4596f2d20d54ccd69d522f1bacb3b7aad05e8f7d9cb5",
191
+ "signature": "cd8d6d050c41bec199aa4596f2d20d54ccd69d522f1bacb3b7aad05e8f7d9cb5",
192
+ "affectsGlobalScope": false
193
+ },
194
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts": {
195
+ "version": "c338802ef17a1f55829756a15058daa686178fa7cb786e9a80c9283b60361388",
196
+ "signature": "c338802ef17a1f55829756a15058daa686178fa7cb786e9a80c9283b60361388",
197
+ "affectsGlobalScope": false
198
+ },
199
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts": {
200
+ "version": "3481977b8b5e8a9836e3b7b735f47735bace0c75f5d5fdcbadc6aa6b05bffa51",
201
+ "signature": "3481977b8b5e8a9836e3b7b735f47735bace0c75f5d5fdcbadc6aa6b05bffa51",
202
+ "affectsGlobalScope": false
203
+ },
204
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts": {
205
+ "version": "887bd35d582f22c92810962ffbf14df6583855730a0a78d8373b3847d1ddde0e",
206
+ "signature": "887bd35d582f22c92810962ffbf14df6583855730a0a78d8373b3847d1ddde0e",
207
+ "affectsGlobalScope": false
208
+ },
209
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts": {
210
+ "version": "8adb765421f0fbcf8c383bf6c2b731b92d10fa89c9880ac2e22d21a4ebb428f4",
211
+ "signature": "8adb765421f0fbcf8c383bf6c2b731b92d10fa89c9880ac2e22d21a4ebb428f4",
212
+ "affectsGlobalScope": false
213
+ },
214
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts": {
215
+ "version": "1970051a1eda793399f0454418f9dcfece1cb1466be57110fb977159a8792a52",
216
+ "signature": "1970051a1eda793399f0454418f9dcfece1cb1466be57110fb977159a8792a52",
217
+ "affectsGlobalScope": false
218
+ },
219
+ "../node_modules/@dfinity/candid/lib/cjs/candid-ui.d.ts": {
220
+ "version": "79eb6f78ee482eee91014e7c5e23f13fec63e670d93ff98a811b82798310577e",
221
+ "signature": "79eb6f78ee482eee91014e7c5e23f13fec63e670d93ff98a811b82798310577e",
222
+ "affectsGlobalScope": false
223
+ },
224
+ "../node_modules/@dfinity/candid/lib/cjs/utils/hash.d.ts": {
225
+ "version": "5b47cb83c652cd8bc153f69b605d33964ef36b9d738da8dfffce4ce4f49a64d6",
226
+ "signature": "5b47cb83c652cd8bc153f69b605d33964ef36b9d738da8dfffce4ce4f49a64d6",
227
+ "affectsGlobalScope": false
228
+ },
229
+ "../node_modules/@dfinity/candid/lib/cjs/utils/leb128.d.ts": {
230
+ "version": "21fdffc0f26e94280f10dfa6e3e8b8c7ce7613109c9d64af01d8132dfc050484",
231
+ "signature": "21fdffc0f26e94280f10dfa6e3e8b8c7ce7613109c9d64af01d8132dfc050484",
232
+ "affectsGlobalScope": false
233
+ },
234
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts": {
235
+ "version": "b5f1d45ed28d5bc5755e781d11dadf52e7af2f34cbc5b28f72c4794405c1ca33",
236
+ "signature": "b5f1d45ed28d5bc5755e781d11dadf52e7af2f34cbc5b28f72c4794405c1ca33",
237
+ "affectsGlobalScope": false
238
+ },
239
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts": {
240
+ "version": "72314dac5a386b739dc2a335a43eb97ceaaa4e6e8f225136fccdbff0d000c3f5",
241
+ "signature": "72314dac5a386b739dc2a335a43eb97ceaaa4e6e8f225136fccdbff0d000c3f5",
242
+ "affectsGlobalScope": false
243
+ },
244
+ "../node_modules/simple-cbor/src/value.d.ts": {
245
+ "version": "26bf9bf388ef12b2ebfe0e2d55e3f91b72ea1362ec12260bad877d3bfba0222e",
246
+ "signature": "26bf9bf388ef12b2ebfe0e2d55e3f91b72ea1362ec12260bad877d3bfba0222e",
247
+ "affectsGlobalScope": false
248
+ },
249
+ "../node_modules/simple-cbor/src/serializer.d.ts": {
250
+ "version": "001b7033521a3520b0ca7f7a8070dbf45a3386c453a6dc040f3c826d2a1ab419",
251
+ "signature": "001b7033521a3520b0ca7f7a8070dbf45a3386c453a6dc040f3c826d2a1ab419",
252
+ "affectsGlobalScope": false
253
+ },
254
+ "../node_modules/simple-cbor/src/index.d.ts": {
255
+ "version": "4ccddfef221e37b010912e8744f4d0f2d31220fef40986a77646403e6cc7916a",
256
+ "signature": "4ccddfef221e37b010912e8744f4d0f2d31220fef40986a77646403e6cc7916a",
257
+ "affectsGlobalScope": false
258
+ },
259
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts": {
260
+ "version": "444adb300d7941dd5b3444278998ab0fe7458b57db7e273deacf466175bf734e",
261
+ "signature": "444adb300d7941dd5b3444278998ab0fe7458b57db7e273deacf466175bf734e",
262
+ "affectsGlobalScope": false
263
+ },
264
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts": {
265
+ "version": "9fa540a3b48bb98ea4bfffd5b02f7d771e62e0d566e5c7118e5b940d038148b9",
266
+ "signature": "9fa540a3b48bb98ea4bfffd5b02f7d771e62e0d566e5c7118e5b940d038148b9",
267
+ "affectsGlobalScope": false
268
+ },
269
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts": {
270
+ "version": "c21faff4581ae8fad38e97682f64b86f36df8e22e138b8b47df338f377d233b6",
271
+ "signature": "c21faff4581ae8fad38e97682f64b86f36df8e22e138b8b47df338f377d233b6",
272
+ "affectsGlobalScope": false
273
+ },
274
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/index.d.ts": {
275
+ "version": "e2ea868068af3d4312377fc559276e270fe29d26fa07bd2bfd8fc6dba4f0c21a",
276
+ "signature": "e2ea868068af3d4312377fc559276e270fe29d26fa07bd2bfd8fc6dba4f0c21a",
277
+ "affectsGlobalScope": false
278
+ },
279
+ "../node_modules/@dfinity/agent/lib/cjs/agent/proxy.d.ts": {
280
+ "version": "53816e32c06a2822053383756516a9e20ee17c39c4c713fb824c6923f69994ee",
281
+ "signature": "53816e32c06a2822053383756516a9e20ee17c39c4c713fb824c6923f69994ee",
282
+ "affectsGlobalScope": false
283
+ },
284
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts": {
285
+ "version": "b99e67148be0289d1b99836b5a99b4d61ebc667e66a11e6b3a7b77deeee1272f",
286
+ "signature": "b99e67148be0289d1b99836b5a99b4d61ebc667e66a11e6b3a7b77deeee1272f",
287
+ "affectsGlobalScope": false
288
+ },
289
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts": {
290
+ "version": "60c1ba04b2379e959ede8e09b3bd00a050f38431ce65b23bfbf92b88ab9f683e",
291
+ "signature": "60c1ba04b2379e959ede8e09b3bd00a050f38431ce65b23bfbf92b88ab9f683e",
292
+ "affectsGlobalScope": false
293
+ },
294
+ "../node_modules/@dfinity/agent/lib/cjs/polling/strategy.d.ts": {
295
+ "version": "67438112503f69eae61a6a52f17e375a3be1b243626ef1f7b768625ad78a5c45",
296
+ "signature": "67438112503f69eae61a6a52f17e375a3be1b243626ef1f7b768625ad78a5c45",
297
+ "affectsGlobalScope": false
298
+ },
299
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts": {
300
+ "version": "a17b5bd05d431b0d71434a0793f3f7d0e83ba15228a2aa71b153778132221498",
301
+ "signature": "a17b5bd05d431b0d71434a0793f3f7d0e83ba15228a2aa71b153778132221498",
302
+ "affectsGlobalScope": false
303
+ },
304
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts": {
305
+ "version": "e0ebe98feb93143bf1d3249a1ada99a85adad1366bfbd115994249d0e772d714",
306
+ "signature": "e0ebe98feb93143bf1d3249a1ada99a85adad1366bfbd115994249d0e772d714",
307
+ "affectsGlobalScope": false
308
+ },
309
+ "../node_modules/@dfinity/agent/lib/cjs/certificate.d.ts": {
310
+ "version": "24acaf4b767818dda1fdf2d2975a8414dd456b53855ab50af1800049d065f62f",
311
+ "signature": "24acaf4b767818dda1fdf2d2975a8414dd456b53855ab50af1800049d065f62f",
312
+ "affectsGlobalScope": false
313
+ },
314
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/asset.d.ts": {
315
+ "version": "8204a285a106e56aac90307ab77fd829336c9ab56fc033cac815c3da8dc20032",
316
+ "signature": "8204a285a106e56aac90307ab77fd829336c9ab56fc033cac815c3da8dc20032",
317
+ "affectsGlobalScope": false
318
+ },
319
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/management.d.ts": {
320
+ "version": "7e4ff977246471952d7bfe2ca796858004605ee8a56fcb0b301f89aee1ff4ff4",
321
+ "signature": "7e4ff977246471952d7bfe2ca796858004605ee8a56fcb0b301f89aee1ff4ff4",
322
+ "affectsGlobalScope": false
323
+ },
324
+ "../node_modules/@dfinity/agent/lib/cjs/utils/bls.d.ts": {
325
+ "version": "a67c78f15169732aa32722f242bac8a453ed1db9364712a1e554a9f7481dae9b",
326
+ "signature": "a67c78f15169732aa32722f242bac8a453ed1db9364712a1e554a9f7481dae9b",
327
+ "affectsGlobalScope": false
328
+ },
329
+ "../node_modules/@dfinity/agent/lib/cjs/cbor.d.ts": {
330
+ "version": "8a3ba50245cdac81ed0528d4f72fd1dc1afc197e7d6572271a81a9322bb0f792",
331
+ "signature": "8a3ba50245cdac81ed0528d4f72fd1dc1afc197e7d6572271a81a9322bb0f792",
332
+ "affectsGlobalScope": false
333
+ },
334
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts": {
335
+ "version": "74e0f3cba194058c6050923cb44cfcafd7d4d6d89f6384fd6e6a27291b36f9be",
336
+ "signature": "74e0f3cba194058c6050923cb44cfcafd7d4d6d89f6384fd6e6a27291b36f9be",
337
+ "affectsGlobalScope": false
338
+ },
339
+ "../node_modules/@dfinity/identity/lib/cjs/identity/ed25519.d.ts": {
340
+ "version": "79c023531bcddeb4d2cfaf368827b0e6248d79a916f535decb45b2ec5ebe51f7",
341
+ "signature": "79c023531bcddeb4d2cfaf368827b0e6248d79a916f535decb45b2ec5ebe51f7",
342
+ "affectsGlobalScope": false
343
+ },
344
+ "../node_modules/@dfinity/identity/lib/cjs/identity/secp256k1.d.ts": {
345
+ "version": "513d5abea2b1e3e561871c167fe6240d504347dee8241d23d413598334a771db",
346
+ "signature": "513d5abea2b1e3e561871c167fe6240d504347dee8241d23d413598334a771db",
347
+ "affectsGlobalScope": false
348
+ },
349
+ "../node_modules/@dfinity/identity/lib/cjs/identity/delegation.d.ts": {
350
+ "version": "07dbe906467ac5859b0e8cad5d2fd0b9b114ae1163a8603bea3d35c1b33a2d37",
351
+ "signature": "07dbe906467ac5859b0e8cad5d2fd0b9b114ae1163a8603bea3d35c1b33a2d37",
352
+ "affectsGlobalScope": false
353
+ },
354
+ "../node_modules/@dfinity/identity/lib/cjs/identity/webauthn.d.ts": {
355
+ "version": "26c93ba6c319e57d21c45a71579f8ad94e65d8bd82e119207ac3f307eab684a1",
356
+ "signature": "26c93ba6c319e57d21c45a71579f8ad94e65d8bd82e119207ac3f307eab684a1",
357
+ "affectsGlobalScope": false
358
+ },
359
+ "../node_modules/@dfinity/identity/lib/cjs/identity/der.d.ts": {
360
+ "version": "77ce8eb44c7fc4423ba8d5e45a07084a0445ab4033c0d7607c24fd896a1de695",
361
+ "signature": "77ce8eb44c7fc4423ba8d5e45a07084a0445ab4033c0d7607c24fd896a1de695",
362
+ "affectsGlobalScope": false
363
+ },
364
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts": {
365
+ "version": "a20903ac93855eeaa0850e870e3555435ea016de8a9f04f7866d58f1c3d15261",
366
+ "signature": "a20903ac93855eeaa0850e870e3555435ea016de8a9f04f7866d58f1c3d15261",
367
+ "affectsGlobalScope": false
368
+ },
369
+ "../src/connections/baseconnection.ts": {
370
+ "version": "75e7945c69198ce6cfa43e22ac3116497f7126a74a7f1b1efd7f0684f5e8fd1c",
371
+ "signature": "c718a68d39c7ebdafafc087eb499d22264110d44d66b018077d7ba621c17873d",
372
+ "affectsGlobalScope": false
373
+ },
374
+ "../src/canisters/ledger.idl.js": {
375
+ "version": "384f634f27e9c0f0c3b6ff2ed4d0cb21b2bd84066ad04c09d233af9077369097",
376
+ "signature": "4fba57dffac918510cc18f99311ca7a9641649aae30242e0b85469686c0a9fb4",
377
+ "affectsGlobalScope": false
378
+ },
379
+ "../../principal/lib/cjs/index.d.ts": {
380
+ "version": "cd8d6d050c41bec199aa4596f2d20d54ccd69d522f1bacb3b7aad05e8f7d9cb5",
381
+ "signature": "cd8d6d050c41bec199aa4596f2d20d54ccd69d522f1bacb3b7aad05e8f7d9cb5",
382
+ "affectsGlobalScope": false
383
+ },
384
+ "../src/canisters/ledger.d.ts": {
385
+ "version": "91a76424938d7ecd6f72621e7b5a43fb0944f7876a470a97984cc44a10c4d8ea",
386
+ "signature": "91a76424938d7ecd6f72621e7b5a43fb0944f7876a470a97984cc44a10c4d8ea",
387
+ "affectsGlobalScope": false
388
+ },
389
+ "../node_modules/js-sha256/index.d.ts": {
390
+ "version": "0afbe91142eb631d6f31be624cf8a550b03736bfd22b0f309405a6fe4d4c9517",
391
+ "signature": "0afbe91142eb631d6f31be624cf8a550b03736bfd22b0f309405a6fe4d4c9517",
392
+ "affectsGlobalScope": false
393
+ },
394
+ "../node_modules/buffer/index.d.ts": {
395
+ "version": "8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6",
396
+ "signature": "8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6",
397
+ "affectsGlobalScope": false
398
+ },
399
+ "../node_modules/@types/node/assert.d.ts": {
400
+ "version": "0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9",
401
+ "signature": "0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9",
402
+ "affectsGlobalScope": false
403
+ },
404
+ "../node_modules/@types/node/assert/strict.d.ts": {
405
+ "version": "a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",
406
+ "signature": "a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",
407
+ "affectsGlobalScope": false
408
+ },
409
+ "../node_modules/@types/node/globals.d.ts": {
410
+ "version": "92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4",
411
+ "signature": "92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4",
412
+ "affectsGlobalScope": true
413
+ },
414
+ "../node_modules/@types/node/async_hooks.d.ts": {
415
+ "version": "ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",
416
+ "signature": "ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",
417
+ "affectsGlobalScope": false
418
+ },
419
+ "../node_modules/@types/node/buffer.d.ts": {
420
+ "version": "9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303",
421
+ "signature": "9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303",
422
+ "affectsGlobalScope": true
423
+ },
424
+ "../node_modules/@types/node/child_process.d.ts": {
425
+ "version": "95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216",
426
+ "signature": "95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216",
427
+ "affectsGlobalScope": false
428
+ },
429
+ "../node_modules/@types/node/cluster.d.ts": {
430
+ "version": "afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",
431
+ "signature": "afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",
432
+ "affectsGlobalScope": false
433
+ },
434
+ "../node_modules/@types/node/console.d.ts": {
435
+ "version": "34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e",
436
+ "signature": "34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e",
437
+ "affectsGlobalScope": true
438
+ },
439
+ "../node_modules/@types/node/constants.d.ts": {
440
+ "version": "82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4",
441
+ "signature": "82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4",
442
+ "affectsGlobalScope": false
443
+ },
444
+ "../node_modules/@types/node/crypto.d.ts": {
445
+ "version": "2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f",
446
+ "signature": "2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f",
447
+ "affectsGlobalScope": false
448
+ },
449
+ "../node_modules/@types/node/dgram.d.ts": {
450
+ "version": "f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf",
451
+ "signature": "f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf",
452
+ "affectsGlobalScope": false
453
+ },
454
+ "../node_modules/@types/node/diagnostics_channel.d.ts": {
455
+ "version": "2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90",
456
+ "signature": "2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90",
457
+ "affectsGlobalScope": false
458
+ },
459
+ "../node_modules/@types/node/dns.d.ts": {
460
+ "version": "76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409",
461
+ "signature": "76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409",
462
+ "affectsGlobalScope": false
463
+ },
464
+ "../node_modules/@types/node/dns/promises.d.ts": {
465
+ "version": "0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122",
466
+ "signature": "0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122",
467
+ "affectsGlobalScope": false
468
+ },
469
+ "../node_modules/@types/node/domain.d.ts": {
470
+ "version": "6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",
471
+ "signature": "6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",
472
+ "affectsGlobalScope": false
473
+ },
474
+ "../node_modules/@types/node/events.d.ts": {
475
+ "version": "4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c",
476
+ "signature": "4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c",
477
+ "affectsGlobalScope": true
478
+ },
479
+ "../node_modules/@types/node/fs.d.ts": {
480
+ "version": "80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00",
481
+ "signature": "80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00",
482
+ "affectsGlobalScope": false
483
+ },
484
+ "../node_modules/@types/node/fs/promises.d.ts": {
485
+ "version": "a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083",
486
+ "signature": "a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083",
487
+ "affectsGlobalScope": false
488
+ },
489
+ "../node_modules/@types/node/http.d.ts": {
490
+ "version": "5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9",
491
+ "signature": "5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9",
492
+ "affectsGlobalScope": false
493
+ },
494
+ "../node_modules/@types/node/http2.d.ts": {
495
+ "version": "b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b",
496
+ "signature": "b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b",
497
+ "affectsGlobalScope": false
498
+ },
499
+ "../node_modules/@types/node/https.d.ts": {
500
+ "version": "4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd",
501
+ "signature": "4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd",
502
+ "affectsGlobalScope": false
503
+ },
504
+ "../node_modules/@types/node/inspector.d.ts": {
505
+ "version": "a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",
506
+ "signature": "a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",
507
+ "affectsGlobalScope": false
508
+ },
509
+ "../node_modules/@types/node/module.d.ts": {
510
+ "version": "e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5",
511
+ "signature": "e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5",
512
+ "affectsGlobalScope": true
513
+ },
514
+ "../node_modules/@types/node/net.d.ts": {
515
+ "version": "902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2",
516
+ "signature": "902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2",
517
+ "affectsGlobalScope": false
518
+ },
519
+ "../node_modules/@types/node/os.d.ts": {
520
+ "version": "abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6",
521
+ "signature": "abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6",
522
+ "affectsGlobalScope": false
523
+ },
524
+ "../node_modules/@types/node/path.d.ts": {
525
+ "version": "cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939",
526
+ "signature": "cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939",
527
+ "affectsGlobalScope": false
528
+ },
529
+ "../node_modules/@types/node/perf_hooks.d.ts": {
530
+ "version": "94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",
531
+ "signature": "94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",
532
+ "affectsGlobalScope": false
533
+ },
534
+ "../node_modules/@types/node/process.d.ts": {
535
+ "version": "bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9",
536
+ "signature": "bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9",
537
+ "affectsGlobalScope": true
538
+ },
539
+ "../node_modules/@types/node/punycode.d.ts": {
540
+ "version": "9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492",
541
+ "signature": "9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492",
542
+ "affectsGlobalScope": false
543
+ },
544
+ "../node_modules/@types/node/querystring.d.ts": {
545
+ "version": "ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553",
546
+ "signature": "ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553",
547
+ "affectsGlobalScope": false
548
+ },
549
+ "../node_modules/@types/node/readline.d.ts": {
550
+ "version": "29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324",
551
+ "signature": "29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324",
552
+ "affectsGlobalScope": false
553
+ },
554
+ "../node_modules/@types/node/repl.d.ts": {
555
+ "version": "0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3",
556
+ "signature": "0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3",
557
+ "affectsGlobalScope": false
558
+ },
559
+ "../node_modules/@types/node/stream.d.ts": {
560
+ "version": "d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139",
561
+ "signature": "d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139",
562
+ "affectsGlobalScope": false
563
+ },
564
+ "../node_modules/@types/node/stream/promises.d.ts": {
565
+ "version": "1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",
566
+ "signature": "1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",
567
+ "affectsGlobalScope": false
568
+ },
569
+ "../node_modules/@types/node/stream/consumers.d.ts": {
570
+ "version": "806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0",
571
+ "signature": "806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0",
572
+ "affectsGlobalScope": true
573
+ },
574
+ "../node_modules/@types/node/stream/web.d.ts": {
575
+ "version": "a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f",
576
+ "signature": "a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f",
577
+ "affectsGlobalScope": false
578
+ },
579
+ "../node_modules/@types/node/string_decoder.d.ts": {
580
+ "version": "c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",
581
+ "signature": "c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",
582
+ "affectsGlobalScope": false
583
+ },
584
+ "../node_modules/@types/node/timers.d.ts": {
585
+ "version": "b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc",
586
+ "signature": "b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc",
587
+ "affectsGlobalScope": true
588
+ },
589
+ "../node_modules/@types/node/timers/promises.d.ts": {
590
+ "version": "664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980",
591
+ "signature": "664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980",
592
+ "affectsGlobalScope": false
593
+ },
594
+ "../node_modules/@types/node/tls.d.ts": {
595
+ "version": "2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11",
596
+ "signature": "2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11",
597
+ "affectsGlobalScope": false
598
+ },
599
+ "../node_modules/@types/node/trace_events.d.ts": {
600
+ "version": "998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151",
601
+ "signature": "998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151",
602
+ "affectsGlobalScope": false
603
+ },
604
+ "../node_modules/@types/node/tty.d.ts": {
605
+ "version": "ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",
606
+ "signature": "ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",
607
+ "affectsGlobalScope": false
608
+ },
609
+ "../node_modules/@types/node/url.d.ts": {
610
+ "version": "d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21",
611
+ "signature": "d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21",
612
+ "affectsGlobalScope": false
613
+ },
614
+ "../node_modules/@types/node/util.d.ts": {
615
+ "version": "badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e",
616
+ "signature": "badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e",
617
+ "affectsGlobalScope": false
618
+ },
619
+ "../node_modules/@types/node/v8.d.ts": {
620
+ "version": "c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2",
621
+ "signature": "c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2",
622
+ "affectsGlobalScope": false
623
+ },
624
+ "../node_modules/@types/node/vm.d.ts": {
625
+ "version": "235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0",
626
+ "signature": "235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0",
627
+ "affectsGlobalScope": false
628
+ },
629
+ "../node_modules/@types/node/wasi.d.ts": {
630
+ "version": "bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1",
631
+ "signature": "bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1",
632
+ "affectsGlobalScope": false
633
+ },
634
+ "../node_modules/@types/node/worker_threads.d.ts": {
635
+ "version": "9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958",
636
+ "signature": "9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958",
637
+ "affectsGlobalScope": false
638
+ },
639
+ "../node_modules/@types/node/zlib.d.ts": {
640
+ "version": "c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",
641
+ "signature": "c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",
642
+ "affectsGlobalScope": false
643
+ },
644
+ "../node_modules/@types/node/globals.global.d.ts": {
645
+ "version": "ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e",
646
+ "signature": "ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e",
647
+ "affectsGlobalScope": true
648
+ },
649
+ "../node_modules/@types/node/index.d.ts": {
650
+ "version": "1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e",
651
+ "signature": "1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e",
652
+ "affectsGlobalScope": false
653
+ },
654
+ "../node_modules/@types/crc/index.d.ts": {
655
+ "version": "278963c40ea9ab38c4fab05b0ff5243d67f04b9f5843bd5e2f5478cb4d21f8a2",
656
+ "signature": "278963c40ea9ab38c4fab05b0ff5243d67f04b9f5843bd5e2f5478cb4d21f8a2",
657
+ "affectsGlobalScope": false
658
+ },
659
+ "../src/utils/constants.ts": {
660
+ "version": "eee3c18cdc2b4665cfbf06d32c26f2d886e7a4dd06e291a53a24d8f89589a850",
661
+ "signature": "f35f7890ee86b24a1f8f5610771ddc7828d5241b1eefb0bca0b91150a2b3e37e",
662
+ "affectsGlobalScope": false
663
+ },
664
+ "../src/utils/common/types.ts": {
665
+ "version": "8d5a23a2d4611a1bc7f2997705e1e6b37fca54f6943a350e798eacab4ae9293c",
666
+ "signature": "a154801238398d40726b2dd310f5edfa8f2e9e8ffed153c88acb262d05dc9e49",
667
+ "affectsGlobalScope": false
668
+ },
669
+ "../src/utils/converter.ts": {
670
+ "version": "9f4e5ed7886fab48a40b6a38a2dda63c7931ca0e204bdab6771d4be7f33224be",
671
+ "signature": "eaf97519e6b43e001856dbdbc94a3f68c5522a4cba12e320b6ce75e3072f3930",
672
+ "affectsGlobalScope": false
673
+ },
674
+ "../src/connections/ledgerconnection.ts": {
675
+ "version": "b5e99a9084a76f9f9afcbe316d6e9dff850570be304825da384ee7d35a84a2cd",
676
+ "signature": "5f537ec12d05b2be1287e179f9d5887f568d0d45ef0678806cd632e76d17220e",
677
+ "affectsGlobalScope": false
678
+ },
679
+ "../src/canisters/nns-dapp.idl.js": {
680
+ "version": "81668abf080a558c362553e2d9695cbfc1fa80bc66b1b784c76b369ab6ee10a9",
681
+ "signature": "94e42869eebfdbd8ed4f97bc0f5a17ac86265829b64246969bce4e9044640544",
682
+ "affectsGlobalScope": false
683
+ },
684
+ "../src/canisters/nns-dapp-cert.idl.js": {
685
+ "version": "d392acbe707ec5a524741fc336dff460a45c2120e47876d4d7341c66fa9f665c",
686
+ "signature": "94e42869eebfdbd8ed4f97bc0f5a17ac86265829b64246969bce4e9044640544",
687
+ "affectsGlobalScope": false
688
+ },
689
+ "../src/canisters/nns-dapp.d.ts": {
690
+ "version": "e3a9f89160411bf446efb3ff121e01915dfef6fc9b9c6722a4bd42292aeebd73",
691
+ "signature": "e3a9f89160411bf446efb3ff121e01915dfef6fc9b9c6722a4bd42292aeebd73",
692
+ "affectsGlobalScope": false
693
+ },
694
+ "../src/connections/nnsconnection.ts": {
695
+ "version": "0572748b71df6f3604cc5da81dbd677ab1df35860e9c70ea409de88177f7608f",
696
+ "signature": "b4faea9063405a73cde8ef1d5f8d13b8d97c2a3d5ee7082fee9424c3f7f7fc6e",
697
+ "affectsGlobalScope": false
698
+ },
699
+ "../src/utils/index.ts": {
700
+ "version": "c7ea6be1c5a500e80211046a59e0ca64b5910137dba5cea498fe963e0dbd0511",
701
+ "signature": "c7ea6be1c5a500e80211046a59e0ca64b5910137dba5cea498fe963e0dbd0511",
702
+ "affectsGlobalScope": false
703
+ },
704
+ "../node_modules/@dfinity/authentication/lib/cjs/index.d.ts": {
705
+ "version": "75904b787aa1956bbee1e493b13a6f8d3e6cdc88b8ce4248455cd8168637ede1",
706
+ "signature": "75904b787aa1956bbee1e493b13a6f8d3e6cdc88b8ce4248455cd8168637ede1",
707
+ "affectsGlobalScope": false
708
+ },
709
+ "../src/ic/icstorage.ts": {
710
+ "version": "b6ed5873ae97be24a5d69797566b9efb20d213862061a86638d5346b9e7f60db",
711
+ "signature": "88c188618f6fa69c7937123fc5243d22c38dea9fa9b600ed097cf2e69e13b045",
712
+ "affectsGlobalScope": false
713
+ },
714
+ "../src/ic/icwindow.ts": {
715
+ "version": "8f2a84e616084d5ea3a18a03470cc9b02ecd99fc0cfa854e15ed6758ad856f63",
716
+ "signature": "dd4eba4f154f00a24d43d167d2bbd244c5995171b917c7093681fdf5b3e392c2",
717
+ "affectsGlobalScope": false
718
+ },
719
+ "../src/ic/icconnect.ts": {
720
+ "version": "56879d45f44e8d3fd07f6c11c9626c141eb54ad6497669bb2f621d44419aa409",
721
+ "signature": "e09ce6efb1fe879a9f0598375c5fe8b33291c64a50940826522e5d819fa5fe84",
722
+ "affectsGlobalScope": true
723
+ },
724
+ "../src/ic/types.ts": {
725
+ "version": "c0b7a977862b80094a701884057520b4e7f71e2cf7119182fd5afa35c40ee9c3",
726
+ "signature": "e307dd848492952650c374bf56f687351bc53c1c0bc7467c2fd0ef4ac4ee59e0",
727
+ "affectsGlobalScope": false
728
+ },
729
+ "../src/ic/icauthclient.ts": {
730
+ "version": "4807408a81dadb61031eac5d05615cc73d3d46460909a05209e4a8654c4c3ed1",
731
+ "signature": "f34a486f43efaba27b7e388b84a313c938474c5e834ac472f690e96cfe78a6a8",
732
+ "affectsGlobalScope": false
733
+ },
734
+ "../src/ic/index.ts": {
735
+ "version": "e27e2bf15aef8ea587963ac5a0bfa08b40082ef0ec8117678c830fc2f6e32084",
736
+ "signature": "e27e2bf15aef8ea587963ac5a0bfa08b40082ef0ec8117678c830fc2f6e32084",
737
+ "affectsGlobalScope": false
738
+ },
739
+ "../src/index.ts": {
740
+ "version": "525231644e8d15ffb5f9563fd30d8c70c1676c615b3b0af442f77e44b59db31a",
741
+ "signature": "525231644e8d15ffb5f9563fd30d8c70c1676c615b3b0af442f77e44b59db31a",
742
+ "affectsGlobalScope": false
743
+ },
744
+ "../src/canisters/internet_identity_idl.js": {
745
+ "version": "fb04754e09dd7f124a06a18ef38830e4a1cfea140dcf291ce34e1ea04dbf3e49",
746
+ "signature": "4fba57dffac918510cc18f99311ca7a9641649aae30242e0b85469686c0a9fb4",
747
+ "affectsGlobalScope": false
748
+ },
749
+ "../src/canisters/internet_identity_types.d.ts": {
750
+ "version": "8f9f21a987d5491c2d5f5b1221dfda36e23eeb6a938f4c23cd9fa3d53e1226e3",
751
+ "signature": "8f9f21a987d5491c2d5f5b1221dfda36e23eeb6a938f4c23cd9fa3d53e1226e3",
752
+ "affectsGlobalScope": false
753
+ },
754
+ "../src/canisters/me.d.ts": {
755
+ "version": "18d481f15c9cde0ef47d622c68eace7570e1fde9d941ee88d0a8a239c06e5164",
756
+ "signature": "18d481f15c9cde0ef47d622c68eace7570e1fde9d941ee88d0a8a239c06e5164",
757
+ "affectsGlobalScope": false
758
+ },
759
+ "../src/canisters/me.idl.js": {
760
+ "version": "a8a4b8e160cf485b5f5004b294292d24627ddb2f824ce08e037f6ec153c5f501",
761
+ "signature": "94e42869eebfdbd8ed4f97bc0f5a17ac86265829b64246969bce4e9044640544",
762
+ "affectsGlobalScope": false
763
+ },
764
+ "../../../node_modules/@babel/types/lib/index.d.ts": {
765
+ "version": "b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483",
766
+ "signature": "b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483",
767
+ "affectsGlobalScope": false
768
+ },
769
+ "../../../node_modules/@types/babel__generator/index.d.ts": {
770
+ "version": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e",
771
+ "signature": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e",
772
+ "affectsGlobalScope": false
773
+ },
774
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts": {
775
+ "version": "069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964",
776
+ "signature": "069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964",
777
+ "affectsGlobalScope": false
778
+ },
779
+ "../../../node_modules/@types/babel__template/index.d.ts": {
780
+ "version": "3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed",
781
+ "signature": "3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed",
782
+ "affectsGlobalScope": false
783
+ },
784
+ "../../../node_modules/@types/babel__traverse/ts4.1/index.d.ts": {
785
+ "version": "e60cdc881a28c83e48b0e6f4e335845c7bd83ff9d900a5ed7cc292747580450f",
786
+ "signature": "e60cdc881a28c83e48b0e6f4e335845c7bd83ff9d900a5ed7cc292747580450f",
787
+ "affectsGlobalScope": false
788
+ },
789
+ "../../../node_modules/@types/babel__core/index.d.ts": {
790
+ "version": "6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2",
791
+ "signature": "6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2",
792
+ "affectsGlobalScope": false
793
+ },
794
+ "../../../node_modules/@types/graceful-fs/index.d.ts": {
795
+ "version": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
796
+ "signature": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
797
+ "affectsGlobalScope": false
798
+ },
799
+ "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts": {
800
+ "version": "de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857",
801
+ "signature": "de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857",
802
+ "affectsGlobalScope": false
803
+ },
804
+ "../../../node_modules/@types/istanbul-lib-report/index.d.ts": {
805
+ "version": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
806
+ "signature": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
807
+ "affectsGlobalScope": false
808
+ },
809
+ "../../../node_modules/@types/istanbul-reports/index.d.ts": {
810
+ "version": "905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab",
811
+ "signature": "905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab",
812
+ "affectsGlobalScope": false
813
+ },
814
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts": {
815
+ "version": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322",
816
+ "signature": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322",
817
+ "affectsGlobalScope": false
818
+ },
819
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts": {
820
+ "version": "69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2",
821
+ "signature": "69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2",
822
+ "affectsGlobalScope": false
823
+ },
824
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts": {
825
+ "version": "561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9",
826
+ "signature": "561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9",
827
+ "affectsGlobalScope": false
828
+ },
829
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts": {
830
+ "version": "62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f",
831
+ "signature": "62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f",
832
+ "affectsGlobalScope": false
833
+ },
834
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts": {
835
+ "version": "b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc",
836
+ "signature": "b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc",
837
+ "affectsGlobalScope": false
838
+ },
839
+ "../../../node_modules/pretty-format/build/types.d.ts": {
840
+ "version": "5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09",
841
+ "signature": "5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09",
842
+ "affectsGlobalScope": false
843
+ },
844
+ "../../../node_modules/pretty-format/build/index.d.ts": {
845
+ "version": "02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",
846
+ "signature": "02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",
847
+ "affectsGlobalScope": false
848
+ },
849
+ "../../../node_modules/@types/jest/index.d.ts": {
850
+ "version": "bbc19287f48d4b3c753bd2c82dd9326af19cccbfa1506f859029dfcedc7c5522",
851
+ "signature": "bbc19287f48d4b3c753bd2c82dd9326af19cccbfa1506f859029dfcedc7c5522",
852
+ "affectsGlobalScope": true
853
+ },
854
+ "../../../node_modules/@types/json-schema/index.d.ts": {
855
+ "version": "3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27",
856
+ "signature": "3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27",
857
+ "affectsGlobalScope": false
858
+ },
859
+ "../../../node_modules/@types/ledgerhq__hw-transport/index.d.ts": {
860
+ "version": "58c2c85ea087c42c3e4f182050e7768097b70ddfecf0c5271e6da493cb43d2ea",
861
+ "signature": "58c2c85ea087c42c3e4f182050e7768097b70ddfecf0c5271e6da493cb43d2ea",
862
+ "affectsGlobalScope": false
863
+ },
864
+ "../../../node_modules/@types/minimatch/index.d.ts": {
865
+ "version": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
866
+ "signature": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
867
+ "affectsGlobalScope": false
868
+ },
869
+ "../../../node_modules/@types/minimist/index.d.ts": {
870
+ "version": "e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88",
871
+ "signature": "e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88",
872
+ "affectsGlobalScope": false
873
+ },
874
+ "../../../node_modules/@types/normalize-package-data/index.d.ts": {
875
+ "version": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
876
+ "signature": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
877
+ "affectsGlobalScope": false
878
+ },
879
+ "../../../node_modules/@types/parse-json/index.d.ts": {
880
+ "version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
881
+ "signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
882
+ "affectsGlobalScope": false
883
+ },
884
+ "../../../node_modules/@types/prettier/index.d.ts": {
885
+ "version": "08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881",
886
+ "signature": "08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881",
887
+ "affectsGlobalScope": false
888
+ },
889
+ "../../../node_modules/@types/stack-utils/index.d.ts": {
890
+ "version": "c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57",
891
+ "signature": "c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57",
892
+ "affectsGlobalScope": false
893
+ },
894
+ "../../../node_modules/@types/yargs-parser/index.d.ts": {
895
+ "version": "3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f",
896
+ "signature": "3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f",
897
+ "affectsGlobalScope": false
898
+ },
899
+ "../../../node_modules/@types/yargs/index.d.ts": {
900
+ "version": "5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11",
901
+ "signature": "5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11",
902
+ "affectsGlobalScope": false
903
+ }
904
+ },
905
+ "options": {
906
+ "target": 4,
907
+ "module": 6,
908
+ "allowJs": true,
909
+ "esModuleInterop": true,
910
+ "lib": [
911
+ "lib.dom.d.ts",
912
+ "lib.es2015.d.ts",
913
+ "lib.es2017.d.ts"
914
+ ],
915
+ "rootDir": "../src",
916
+ "baseUrl": "..",
917
+ "composite": true,
918
+ "declaration": true,
919
+ "forceConsistentCasingInFileNames": true,
920
+ "incremental": true,
921
+ "moduleResolution": 2,
922
+ "outDir": "./esm",
923
+ "resolveJsonModule": true,
924
+ "sourceMap": true,
925
+ "strict": true,
926
+ "configFilePath": "../tsconfig.json"
927
+ },
928
+ "referencedMap": {
929
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
930
+ "../../../node_modules/@babel/types/lib/index.d.ts",
931
+ "../node_modules/@types/node/util.d.ts"
932
+ ],
933
+ "../../../node_modules/@babel/types/lib/index.d.ts": [
934
+ "../node_modules/@types/node/util.d.ts"
935
+ ],
936
+ "../../../node_modules/@types/babel__core/index.d.ts": [
937
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
938
+ "../../../node_modules/@babel/types/lib/index.d.ts",
939
+ "../../../node_modules/@types/babel__generator/index.d.ts",
940
+ "../../../node_modules/@types/babel__template/index.d.ts",
941
+ "../../../node_modules/@types/babel__traverse/ts4.1/index.d.ts",
942
+ "../node_modules/@types/node/util.d.ts"
943
+ ],
944
+ "../../../node_modules/@types/babel__generator/index.d.ts": [
945
+ "../../../node_modules/@babel/types/lib/index.d.ts",
946
+ "../node_modules/@types/node/util.d.ts"
947
+ ],
948
+ "../../../node_modules/@types/babel__template/index.d.ts": [
949
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
950
+ "../../../node_modules/@babel/types/lib/index.d.ts",
951
+ "../node_modules/@types/node/util.d.ts"
952
+ ],
953
+ "../../../node_modules/@types/babel__traverse/ts4.1/index.d.ts": [
954
+ "../../../node_modules/@babel/types/lib/index.d.ts",
955
+ "../node_modules/@types/node/util.d.ts"
956
+ ],
957
+ "../../../node_modules/@types/graceful-fs/index.d.ts": [
958
+ "../node_modules/@types/node/fs.d.ts",
959
+ "../node_modules/@types/node/index.d.ts",
960
+ "../node_modules/@types/node/util.d.ts"
961
+ ],
962
+ "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts": [
963
+ "../node_modules/@types/node/util.d.ts"
964
+ ],
965
+ "../../../node_modules/@types/istanbul-lib-report/index.d.ts": [
966
+ "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
967
+ "../node_modules/@types/node/util.d.ts"
968
+ ],
969
+ "../../../node_modules/@types/istanbul-reports/index.d.ts": [
970
+ "../../../node_modules/@types/istanbul-lib-report/index.d.ts",
971
+ "../node_modules/@types/node/util.d.ts"
972
+ ],
973
+ "../../../node_modules/@types/jest/index.d.ts": [
974
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts",
975
+ "../../../node_modules/pretty-format/build/index.d.ts",
976
+ "../node_modules/@types/node/util.d.ts"
977
+ ],
978
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts": [
979
+ "../node_modules/@types/node/util.d.ts"
980
+ ],
981
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts": [
982
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
983
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
984
+ "../node_modules/@types/node/util.d.ts"
985
+ ],
986
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts": [
987
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
988
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts",
989
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts",
990
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
991
+ "../node_modules/@types/node/util.d.ts"
992
+ ],
993
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts": [
994
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
995
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
996
+ "../node_modules/@types/node/util.d.ts"
997
+ ],
998
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts": [
999
+ "../node_modules/@types/node/util.d.ts"
1000
+ ],
1001
+ "../../../node_modules/@types/json-schema/index.d.ts": [
1002
+ "../node_modules/@types/node/util.d.ts"
1003
+ ],
1004
+ "../../../node_modules/@types/ledgerhq__hw-transport/index.d.ts": [
1005
+ "../node_modules/@types/node/index.d.ts",
1006
+ "../node_modules/@types/node/util.d.ts"
1007
+ ],
1008
+ "../../../node_modules/@types/minimatch/index.d.ts": [
1009
+ "../node_modules/@types/node/util.d.ts"
1010
+ ],
1011
+ "../../../node_modules/@types/minimist/index.d.ts": [
1012
+ "../node_modules/@types/node/util.d.ts"
1013
+ ],
1014
+ "../../../node_modules/@types/normalize-package-data/index.d.ts": [
1015
+ "../node_modules/@types/node/util.d.ts"
1016
+ ],
1017
+ "../../../node_modules/@types/parse-json/index.d.ts": [
1018
+ "../node_modules/@types/node/util.d.ts"
1019
+ ],
1020
+ "../../../node_modules/@types/prettier/index.d.ts": [
1021
+ "../node_modules/@types/node/util.d.ts"
1022
+ ],
1023
+ "../../../node_modules/@types/stack-utils/index.d.ts": [
1024
+ "../node_modules/@types/node/util.d.ts"
1025
+ ],
1026
+ "../../../node_modules/@types/yargs-parser/index.d.ts": [
1027
+ "../node_modules/@types/node/util.d.ts"
1028
+ ],
1029
+ "../../../node_modules/@types/yargs/index.d.ts": [
1030
+ "../../../node_modules/@types/yargs-parser/index.d.ts",
1031
+ "../node_modules/@types/node/util.d.ts"
1032
+ ],
1033
+ "../../../node_modules/pretty-format/build/index.d.ts": [
1034
+ "../../../node_modules/pretty-format/build/types.d.ts",
1035
+ "../node_modules/@types/node/util.d.ts"
1036
+ ],
1037
+ "../../../node_modules/pretty-format/build/types.d.ts": [
1038
+ "../node_modules/@types/node/util.d.ts"
1039
+ ],
1040
+ "../../../node_modules/typescript/lib/lib.dom.d.ts": [
1041
+ "../node_modules/@types/node/util.d.ts"
1042
+ ],
1043
+ "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
1044
+ "../node_modules/@types/node/util.d.ts"
1045
+ ],
1046
+ "../../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
1047
+ "../node_modules/@types/node/util.d.ts"
1048
+ ],
1049
+ "../../../node_modules/typescript/lib/lib.es2015.d.ts": [
1050
+ "../node_modules/@types/node/util.d.ts"
1051
+ ],
1052
+ "../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
1053
+ "../node_modules/@types/node/util.d.ts"
1054
+ ],
1055
+ "../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
1056
+ "../node_modules/@types/node/util.d.ts"
1057
+ ],
1058
+ "../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
1059
+ "../node_modules/@types/node/util.d.ts"
1060
+ ],
1061
+ "../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
1062
+ "../node_modules/@types/node/util.d.ts"
1063
+ ],
1064
+ "../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
1065
+ "../node_modules/@types/node/util.d.ts"
1066
+ ],
1067
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
1068
+ "../node_modules/@types/node/util.d.ts"
1069
+ ],
1070
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
1071
+ "../node_modules/@types/node/util.d.ts"
1072
+ ],
1073
+ "../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
1074
+ "../node_modules/@types/node/util.d.ts"
1075
+ ],
1076
+ "../../../node_modules/typescript/lib/lib.es2016.d.ts": [
1077
+ "../node_modules/@types/node/util.d.ts"
1078
+ ],
1079
+ "../../../node_modules/typescript/lib/lib.es2017.d.ts": [
1080
+ "../node_modules/@types/node/util.d.ts"
1081
+ ],
1082
+ "../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
1083
+ "../node_modules/@types/node/util.d.ts"
1084
+ ],
1085
+ "../../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
1086
+ "../node_modules/@types/node/util.d.ts"
1087
+ ],
1088
+ "../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
1089
+ "../node_modules/@types/node/util.d.ts"
1090
+ ],
1091
+ "../../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
1092
+ "../node_modules/@types/node/util.d.ts"
1093
+ ],
1094
+ "../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
1095
+ "../node_modules/@types/node/util.d.ts"
1096
+ ],
1097
+ "../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
1098
+ "../node_modules/@types/node/util.d.ts"
1099
+ ],
1100
+ "../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
1101
+ "../node_modules/@types/node/util.d.ts"
1102
+ ],
1103
+ "../../../node_modules/typescript/lib/lib.es2018.d.ts": [
1104
+ "../node_modules/@types/node/util.d.ts"
1105
+ ],
1106
+ "../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
1107
+ "../node_modules/@types/node/util.d.ts"
1108
+ ],
1109
+ "../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
1110
+ "../node_modules/@types/node/util.d.ts"
1111
+ ],
1112
+ "../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
1113
+ "../node_modules/@types/node/util.d.ts"
1114
+ ],
1115
+ "../../../node_modules/typescript/lib/lib.es2019.array.d.ts": [
1116
+ "../node_modules/@types/node/util.d.ts"
1117
+ ],
1118
+ "../../../node_modules/typescript/lib/lib.es2019.d.ts": [
1119
+ "../node_modules/@types/node/util.d.ts"
1120
+ ],
1121
+ "../../../node_modules/typescript/lib/lib.es2019.object.d.ts": [
1122
+ "../node_modules/@types/node/util.d.ts"
1123
+ ],
1124
+ "../../../node_modules/typescript/lib/lib.es2019.string.d.ts": [
1125
+ "../node_modules/@types/node/util.d.ts"
1126
+ ],
1127
+ "../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
1128
+ "../node_modules/@types/node/util.d.ts"
1129
+ ],
1130
+ "../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
1131
+ "../node_modules/@types/node/util.d.ts"
1132
+ ],
1133
+ "../../../node_modules/typescript/lib/lib.es2020.d.ts": [
1134
+ "../node_modules/@types/node/util.d.ts"
1135
+ ],
1136
+ "../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": [
1137
+ "../node_modules/@types/node/util.d.ts"
1138
+ ],
1139
+ "../../../node_modules/typescript/lib/lib.es2020.string.d.ts": [
1140
+ "../node_modules/@types/node/util.d.ts"
1141
+ ],
1142
+ "../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [
1143
+ "../node_modules/@types/node/util.d.ts"
1144
+ ],
1145
+ "../../../node_modules/typescript/lib/lib.es5.d.ts": [
1146
+ "../node_modules/@types/node/util.d.ts"
1147
+ ],
1148
+ "../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
1149
+ "../node_modules/@types/node/util.d.ts"
1150
+ ],
1151
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts": [
1152
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
1153
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts",
1154
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
1155
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
1156
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
1157
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1158
+ "../node_modules/@types/node/util.d.ts"
1159
+ ],
1160
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts": [
1161
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
1162
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
1163
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1164
+ "../node_modules/@types/node/util.d.ts"
1165
+ ],
1166
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/index.d.ts": [
1167
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
1168
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
1169
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
1170
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts",
1171
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
1172
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1173
+ "../node_modules/@types/node/util.d.ts"
1174
+ ],
1175
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts": [
1176
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
1177
+ "../node_modules/@types/node/util.d.ts",
1178
+ "../node_modules/simple-cbor/src/index.d.ts"
1179
+ ],
1180
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts": [
1181
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
1182
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1183
+ "../node_modules/@types/node/util.d.ts"
1184
+ ],
1185
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts": [
1186
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
1187
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/index.d.ts",
1188
+ "../node_modules/@dfinity/agent/lib/cjs/agent/proxy.d.ts",
1189
+ "../node_modules/@types/node/util.d.ts"
1190
+ ],
1191
+ "../node_modules/@dfinity/agent/lib/cjs/agent/proxy.d.ts": [
1192
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
1193
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1194
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
1195
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1196
+ "../node_modules/@types/node/util.d.ts"
1197
+ ],
1198
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts": [
1199
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
1200
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1201
+ "../node_modules/@types/node/util.d.ts"
1202
+ ],
1203
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/asset.d.ts": [
1204
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
1205
+ "../node_modules/@types/node/util.d.ts"
1206
+ ],
1207
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/management.d.ts": [
1208
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
1209
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1210
+ "../node_modules/@types/node/util.d.ts"
1211
+ ],
1212
+ "../node_modules/@dfinity/agent/lib/cjs/cbor.d.ts": [
1213
+ "../node_modules/@types/node/util.d.ts"
1214
+ ],
1215
+ "../node_modules/@dfinity/agent/lib/cjs/certificate.d.ts": [
1216
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
1217
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts",
1218
+ "../node_modules/@types/node/util.d.ts"
1219
+ ],
1220
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts": [
1221
+ "../node_modules/@types/node/util.d.ts"
1222
+ ],
1223
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts": [
1224
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
1225
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
1226
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
1227
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
1228
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts",
1229
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/asset.d.ts",
1230
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/management.d.ts",
1231
+ "../node_modules/@dfinity/agent/lib/cjs/cbor.d.ts",
1232
+ "../node_modules/@dfinity/agent/lib/cjs/certificate.d.ts",
1233
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
1234
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
1235
+ "../node_modules/@dfinity/agent/lib/cjs/utils/bls.d.ts",
1236
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
1237
+ "../node_modules/@types/node/util.d.ts"
1238
+ ],
1239
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts": [
1240
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
1241
+ "../node_modules/@dfinity/agent/lib/cjs/polling/strategy.d.ts",
1242
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
1243
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1244
+ "../node_modules/@types/node/util.d.ts"
1245
+ ],
1246
+ "../node_modules/@dfinity/agent/lib/cjs/polling/strategy.d.ts": [
1247
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1248
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
1249
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1250
+ "../node_modules/@types/node/util.d.ts"
1251
+ ],
1252
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts": [
1253
+ "../node_modules/@types/node/util.d.ts"
1254
+ ],
1255
+ "../node_modules/@dfinity/agent/lib/cjs/utils/bls.d.ts": [
1256
+ "../node_modules/@types/node/util.d.ts"
1257
+ ],
1258
+ "../node_modules/@dfinity/authentication/lib/cjs/index.d.ts": [
1259
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1260
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
1261
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1262
+ "../node_modules/@types/node/util.d.ts"
1263
+ ],
1264
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts": [
1265
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
1266
+ "../node_modules/@types/node/util.d.ts"
1267
+ ],
1268
+ "../node_modules/@dfinity/candid/lib/cjs/candid-ui.d.ts": [
1269
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts",
1270
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
1271
+ "../node_modules/@types/node/util.d.ts"
1272
+ ],
1273
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts": [
1274
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts",
1275
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts",
1276
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1277
+ "../node_modules/@types/node/util.d.ts"
1278
+ ],
1279
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts": [
1280
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts",
1281
+ "../node_modules/@dfinity/candid/lib/cjs/candid-ui.d.ts",
1282
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
1283
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts",
1284
+ "../node_modules/@dfinity/candid/lib/cjs/utils/hash.d.ts",
1285
+ "../node_modules/@dfinity/candid/lib/cjs/utils/leb128.d.ts",
1286
+ "../node_modules/@types/node/util.d.ts"
1287
+ ],
1288
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts": [
1289
+ "../node_modules/@types/node/util.d.ts"
1290
+ ],
1291
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts": [
1292
+ "../node_modules/@types/node/util.d.ts"
1293
+ ],
1294
+ "../node_modules/@dfinity/candid/lib/cjs/utils/hash.d.ts": [
1295
+ "../node_modules/@types/node/util.d.ts"
1296
+ ],
1297
+ "../node_modules/@dfinity/candid/lib/cjs/utils/leb128.d.ts": [
1298
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts",
1299
+ "../node_modules/@types/node/util.d.ts"
1300
+ ],
1301
+ "../node_modules/@dfinity/identity/lib/cjs/identity/delegation.d.ts": [
1302
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1303
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1304
+ "../node_modules/@types/node/util.d.ts",
1305
+ "../node_modules/simple-cbor/src/index.d.ts"
1306
+ ],
1307
+ "../node_modules/@dfinity/identity/lib/cjs/identity/der.d.ts": [
1308
+ "../node_modules/@types/node/util.d.ts"
1309
+ ],
1310
+ "../node_modules/@dfinity/identity/lib/cjs/identity/ed25519.d.ts": [
1311
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1312
+ "../node_modules/@types/node/util.d.ts"
1313
+ ],
1314
+ "../node_modules/@dfinity/identity/lib/cjs/identity/secp256k1.d.ts": [
1315
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1316
+ "../node_modules/@types/node/util.d.ts"
1317
+ ],
1318
+ "../node_modules/@dfinity/identity/lib/cjs/identity/webauthn.d.ts": [
1319
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1320
+ "../node_modules/@types/node/util.d.ts"
1321
+ ],
1322
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts": [
1323
+ "../node_modules/@dfinity/identity/lib/cjs/identity/delegation.d.ts",
1324
+ "../node_modules/@dfinity/identity/lib/cjs/identity/der.d.ts",
1325
+ "../node_modules/@dfinity/identity/lib/cjs/identity/ed25519.d.ts",
1326
+ "../node_modules/@dfinity/identity/lib/cjs/identity/secp256k1.d.ts",
1327
+ "../node_modules/@dfinity/identity/lib/cjs/identity/webauthn.d.ts",
1328
+ "../node_modules/@types/node/util.d.ts"
1329
+ ],
1330
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts": [
1331
+ "../node_modules/@types/node/util.d.ts"
1332
+ ],
1333
+ "../node_modules/@types/crc/index.d.ts": [
1334
+ "../node_modules/@types/node/index.d.ts",
1335
+ "../node_modules/@types/node/util.d.ts"
1336
+ ],
1337
+ "../node_modules/@types/node/assert.d.ts": [
1338
+ "../node_modules/@types/node/assert.d.ts",
1339
+ "../node_modules/@types/node/util.d.ts"
1340
+ ],
1341
+ "../node_modules/@types/node/assert/strict.d.ts": [
1342
+ "../node_modules/@types/node/assert.d.ts",
1343
+ "../node_modules/@types/node/util.d.ts"
1344
+ ],
1345
+ "../node_modules/@types/node/async_hooks.d.ts": [
1346
+ "../node_modules/@types/node/async_hooks.d.ts",
1347
+ "../node_modules/@types/node/util.d.ts"
1348
+ ],
1349
+ "../node_modules/@types/node/buffer.d.ts": [
1350
+ "../node_modules/@types/node/buffer.d.ts",
1351
+ "../node_modules/@types/node/crypto.d.ts",
1352
+ "../node_modules/@types/node/util.d.ts"
1353
+ ],
1354
+ "../node_modules/@types/node/child_process.d.ts": [
1355
+ "../node_modules/@types/node/child_process.d.ts",
1356
+ "../node_modules/@types/node/events.d.ts",
1357
+ "../node_modules/@types/node/fs.d.ts",
1358
+ "../node_modules/@types/node/net.d.ts",
1359
+ "../node_modules/@types/node/stream.d.ts",
1360
+ "../node_modules/@types/node/url.d.ts",
1361
+ "../node_modules/@types/node/util.d.ts"
1362
+ ],
1363
+ "../node_modules/@types/node/cluster.d.ts": [
1364
+ "../node_modules/@types/node/child_process.d.ts",
1365
+ "../node_modules/@types/node/cluster.d.ts",
1366
+ "../node_modules/@types/node/events.d.ts",
1367
+ "../node_modules/@types/node/net.d.ts",
1368
+ "../node_modules/@types/node/util.d.ts"
1369
+ ],
1370
+ "../node_modules/@types/node/console.d.ts": [
1371
+ "../node_modules/@types/node/console.d.ts",
1372
+ "../node_modules/@types/node/util.d.ts"
1373
+ ],
1374
+ "../node_modules/@types/node/constants.d.ts": [
1375
+ "../node_modules/@types/node/constants.d.ts",
1376
+ "../node_modules/@types/node/crypto.d.ts",
1377
+ "../node_modules/@types/node/fs.d.ts",
1378
+ "../node_modules/@types/node/os.d.ts",
1379
+ "../node_modules/@types/node/util.d.ts"
1380
+ ],
1381
+ "../node_modules/@types/node/crypto.d.ts": [
1382
+ "../node_modules/@types/node/crypto.d.ts",
1383
+ "../node_modules/@types/node/stream.d.ts",
1384
+ "../node_modules/@types/node/tls.d.ts",
1385
+ "../node_modules/@types/node/util.d.ts"
1386
+ ],
1387
+ "../node_modules/@types/node/dgram.d.ts": [
1388
+ "../node_modules/@types/node/dgram.d.ts",
1389
+ "../node_modules/@types/node/dns.d.ts",
1390
+ "../node_modules/@types/node/events.d.ts",
1391
+ "../node_modules/@types/node/net.d.ts",
1392
+ "../node_modules/@types/node/util.d.ts"
1393
+ ],
1394
+ "../node_modules/@types/node/diagnostics_channel.d.ts": [
1395
+ "../node_modules/@types/node/diagnostics_channel.d.ts",
1396
+ "../node_modules/@types/node/util.d.ts"
1397
+ ],
1398
+ "../node_modules/@types/node/dns.d.ts": [
1399
+ "../node_modules/@types/node/dns.d.ts",
1400
+ "../node_modules/@types/node/dns/promises.d.ts",
1401
+ "../node_modules/@types/node/util.d.ts"
1402
+ ],
1403
+ "../node_modules/@types/node/dns/promises.d.ts": [
1404
+ "../node_modules/@types/node/dns.d.ts",
1405
+ "../node_modules/@types/node/dns/promises.d.ts",
1406
+ "../node_modules/@types/node/util.d.ts"
1407
+ ],
1408
+ "../node_modules/@types/node/domain.d.ts": [
1409
+ "../node_modules/@types/node/domain.d.ts",
1410
+ "../node_modules/@types/node/events.d.ts",
1411
+ "../node_modules/@types/node/util.d.ts"
1412
+ ],
1413
+ "../node_modules/@types/node/events.d.ts": [
1414
+ "../node_modules/@types/node/events.d.ts",
1415
+ "../node_modules/@types/node/util.d.ts"
1416
+ ],
1417
+ "../node_modules/@types/node/fs.d.ts": [
1418
+ "../node_modules/@types/node/events.d.ts",
1419
+ "../node_modules/@types/node/fs.d.ts",
1420
+ "../node_modules/@types/node/fs/promises.d.ts",
1421
+ "../node_modules/@types/node/stream.d.ts",
1422
+ "../node_modules/@types/node/url.d.ts",
1423
+ "../node_modules/@types/node/util.d.ts"
1424
+ ],
1425
+ "../node_modules/@types/node/fs/promises.d.ts": [
1426
+ "../node_modules/@types/node/events.d.ts",
1427
+ "../node_modules/@types/node/fs.d.ts",
1428
+ "../node_modules/@types/node/fs/promises.d.ts",
1429
+ "../node_modules/@types/node/stream.d.ts",
1430
+ "../node_modules/@types/node/util.d.ts"
1431
+ ],
1432
+ "../node_modules/@types/node/globals.d.ts": [
1433
+ "../node_modules/@types/node/util.d.ts"
1434
+ ],
1435
+ "../node_modules/@types/node/globals.global.d.ts": [
1436
+ "../node_modules/@types/node/util.d.ts"
1437
+ ],
1438
+ "../node_modules/@types/node/http.d.ts": [
1439
+ "../node_modules/@types/node/http.d.ts",
1440
+ "../node_modules/@types/node/net.d.ts",
1441
+ "../node_modules/@types/node/stream.d.ts",
1442
+ "../node_modules/@types/node/url.d.ts",
1443
+ "../node_modules/@types/node/util.d.ts"
1444
+ ],
1445
+ "../node_modules/@types/node/http2.d.ts": [
1446
+ "../node_modules/@types/node/events.d.ts",
1447
+ "../node_modules/@types/node/fs.d.ts",
1448
+ "../node_modules/@types/node/http.d.ts",
1449
+ "../node_modules/@types/node/http2.d.ts",
1450
+ "../node_modules/@types/node/net.d.ts",
1451
+ "../node_modules/@types/node/stream.d.ts",
1452
+ "../node_modules/@types/node/tls.d.ts",
1453
+ "../node_modules/@types/node/url.d.ts",
1454
+ "../node_modules/@types/node/util.d.ts"
1455
+ ],
1456
+ "../node_modules/@types/node/https.d.ts": [
1457
+ "../node_modules/@types/node/http.d.ts",
1458
+ "../node_modules/@types/node/https.d.ts",
1459
+ "../node_modules/@types/node/stream.d.ts",
1460
+ "../node_modules/@types/node/tls.d.ts",
1461
+ "../node_modules/@types/node/url.d.ts",
1462
+ "../node_modules/@types/node/util.d.ts"
1463
+ ],
1464
+ "../node_modules/@types/node/index.d.ts": [
1465
+ "../node_modules/@types/node/assert.d.ts",
1466
+ "../node_modules/@types/node/assert/strict.d.ts",
1467
+ "../node_modules/@types/node/async_hooks.d.ts",
1468
+ "../node_modules/@types/node/buffer.d.ts",
1469
+ "../node_modules/@types/node/child_process.d.ts",
1470
+ "../node_modules/@types/node/cluster.d.ts",
1471
+ "../node_modules/@types/node/console.d.ts",
1472
+ "../node_modules/@types/node/constants.d.ts",
1473
+ "../node_modules/@types/node/crypto.d.ts",
1474
+ "../node_modules/@types/node/dgram.d.ts",
1475
+ "../node_modules/@types/node/diagnostics_channel.d.ts",
1476
+ "../node_modules/@types/node/dns.d.ts",
1477
+ "../node_modules/@types/node/dns/promises.d.ts",
1478
+ "../node_modules/@types/node/domain.d.ts",
1479
+ "../node_modules/@types/node/events.d.ts",
1480
+ "../node_modules/@types/node/fs.d.ts",
1481
+ "../node_modules/@types/node/fs/promises.d.ts",
1482
+ "../node_modules/@types/node/globals.d.ts",
1483
+ "../node_modules/@types/node/globals.global.d.ts",
1484
+ "../node_modules/@types/node/http.d.ts",
1485
+ "../node_modules/@types/node/http2.d.ts",
1486
+ "../node_modules/@types/node/https.d.ts",
1487
+ "../node_modules/@types/node/inspector.d.ts",
1488
+ "../node_modules/@types/node/module.d.ts",
1489
+ "../node_modules/@types/node/net.d.ts",
1490
+ "../node_modules/@types/node/os.d.ts",
1491
+ "../node_modules/@types/node/path.d.ts",
1492
+ "../node_modules/@types/node/perf_hooks.d.ts",
1493
+ "../node_modules/@types/node/process.d.ts",
1494
+ "../node_modules/@types/node/punycode.d.ts",
1495
+ "../node_modules/@types/node/querystring.d.ts",
1496
+ "../node_modules/@types/node/readline.d.ts",
1497
+ "../node_modules/@types/node/repl.d.ts",
1498
+ "../node_modules/@types/node/stream.d.ts",
1499
+ "../node_modules/@types/node/stream/consumers.d.ts",
1500
+ "../node_modules/@types/node/stream/promises.d.ts",
1501
+ "../node_modules/@types/node/stream/web.d.ts",
1502
+ "../node_modules/@types/node/string_decoder.d.ts",
1503
+ "../node_modules/@types/node/timers.d.ts",
1504
+ "../node_modules/@types/node/timers/promises.d.ts",
1505
+ "../node_modules/@types/node/tls.d.ts",
1506
+ "../node_modules/@types/node/trace_events.d.ts",
1507
+ "../node_modules/@types/node/tty.d.ts",
1508
+ "../node_modules/@types/node/url.d.ts",
1509
+ "../node_modules/@types/node/util.d.ts",
1510
+ "../node_modules/@types/node/v8.d.ts",
1511
+ "../node_modules/@types/node/vm.d.ts",
1512
+ "../node_modules/@types/node/wasi.d.ts",
1513
+ "../node_modules/@types/node/worker_threads.d.ts",
1514
+ "../node_modules/@types/node/zlib.d.ts"
1515
+ ],
1516
+ "../node_modules/@types/node/inspector.d.ts": [
1517
+ "../node_modules/@types/node/events.d.ts",
1518
+ "../node_modules/@types/node/inspector.d.ts",
1519
+ "../node_modules/@types/node/util.d.ts"
1520
+ ],
1521
+ "../node_modules/@types/node/module.d.ts": [
1522
+ "../node_modules/@types/node/module.d.ts",
1523
+ "../node_modules/@types/node/url.d.ts",
1524
+ "../node_modules/@types/node/util.d.ts"
1525
+ ],
1526
+ "../node_modules/@types/node/net.d.ts": [
1527
+ "../node_modules/@types/node/dns.d.ts",
1528
+ "../node_modules/@types/node/events.d.ts",
1529
+ "../node_modules/@types/node/net.d.ts",
1530
+ "../node_modules/@types/node/stream.d.ts",
1531
+ "../node_modules/@types/node/util.d.ts"
1532
+ ],
1533
+ "../node_modules/@types/node/os.d.ts": [
1534
+ "../node_modules/@types/node/os.d.ts",
1535
+ "../node_modules/@types/node/util.d.ts"
1536
+ ],
1537
+ "../node_modules/@types/node/path.d.ts": [
1538
+ "../node_modules/@types/node/path.d.ts",
1539
+ "../node_modules/@types/node/util.d.ts"
1540
+ ],
1541
+ "../node_modules/@types/node/perf_hooks.d.ts": [
1542
+ "../node_modules/@types/node/async_hooks.d.ts",
1543
+ "../node_modules/@types/node/perf_hooks.d.ts",
1544
+ "../node_modules/@types/node/util.d.ts"
1545
+ ],
1546
+ "../node_modules/@types/node/process.d.ts": [
1547
+ "../node_modules/@types/node/process.d.ts",
1548
+ "../node_modules/@types/node/tty.d.ts",
1549
+ "../node_modules/@types/node/util.d.ts",
1550
+ "../node_modules/@types/node/worker_threads.d.ts"
1551
+ ],
1552
+ "../node_modules/@types/node/punycode.d.ts": [
1553
+ "../node_modules/@types/node/punycode.d.ts",
1554
+ "../node_modules/@types/node/util.d.ts"
1555
+ ],
1556
+ "../node_modules/@types/node/querystring.d.ts": [
1557
+ "../node_modules/@types/node/querystring.d.ts",
1558
+ "../node_modules/@types/node/util.d.ts"
1559
+ ],
1560
+ "../node_modules/@types/node/readline.d.ts": [
1561
+ "../node_modules/@types/node/events.d.ts",
1562
+ "../node_modules/@types/node/readline.d.ts",
1563
+ "../node_modules/@types/node/util.d.ts"
1564
+ ],
1565
+ "../node_modules/@types/node/repl.d.ts": [
1566
+ "../node_modules/@types/node/readline.d.ts",
1567
+ "../node_modules/@types/node/repl.d.ts",
1568
+ "../node_modules/@types/node/util.d.ts",
1569
+ "../node_modules/@types/node/vm.d.ts"
1570
+ ],
1571
+ "../node_modules/@types/node/stream.d.ts": [
1572
+ "../node_modules/@types/node/events.d.ts",
1573
+ "../node_modules/@types/node/stream.d.ts",
1574
+ "../node_modules/@types/node/stream/consumers.d.ts",
1575
+ "../node_modules/@types/node/stream/promises.d.ts",
1576
+ "../node_modules/@types/node/util.d.ts"
1577
+ ],
1578
+ "../node_modules/@types/node/stream/consumers.d.ts": [
1579
+ "../node_modules/@types/node/stream.d.ts",
1580
+ "../node_modules/@types/node/stream/consumers.d.ts",
1581
+ "../node_modules/@types/node/util.d.ts"
1582
+ ],
1583
+ "../node_modules/@types/node/stream/promises.d.ts": [
1584
+ "../node_modules/@types/node/stream.d.ts",
1585
+ "../node_modules/@types/node/stream/promises.d.ts",
1586
+ "../node_modules/@types/node/util.d.ts"
1587
+ ],
1588
+ "../node_modules/@types/node/stream/web.d.ts": [
1589
+ "../node_modules/@types/node/stream/web.d.ts",
1590
+ "../node_modules/@types/node/util.d.ts"
1591
+ ],
1592
+ "../node_modules/@types/node/string_decoder.d.ts": [
1593
+ "../node_modules/@types/node/string_decoder.d.ts",
1594
+ "../node_modules/@types/node/util.d.ts"
1595
+ ],
1596
+ "../node_modules/@types/node/timers.d.ts": [
1597
+ "../node_modules/@types/node/events.d.ts",
1598
+ "../node_modules/@types/node/timers.d.ts",
1599
+ "../node_modules/@types/node/timers/promises.d.ts",
1600
+ "../node_modules/@types/node/util.d.ts"
1601
+ ],
1602
+ "../node_modules/@types/node/timers/promises.d.ts": [
1603
+ "../node_modules/@types/node/timers.d.ts",
1604
+ "../node_modules/@types/node/timers/promises.d.ts",
1605
+ "../node_modules/@types/node/util.d.ts"
1606
+ ],
1607
+ "../node_modules/@types/node/tls.d.ts": [
1608
+ "../node_modules/@types/node/crypto.d.ts",
1609
+ "../node_modules/@types/node/net.d.ts",
1610
+ "../node_modules/@types/node/tls.d.ts",
1611
+ "../node_modules/@types/node/util.d.ts"
1612
+ ],
1613
+ "../node_modules/@types/node/trace_events.d.ts": [
1614
+ "../node_modules/@types/node/trace_events.d.ts",
1615
+ "../node_modules/@types/node/util.d.ts"
1616
+ ],
1617
+ "../node_modules/@types/node/tty.d.ts": [
1618
+ "../node_modules/@types/node/net.d.ts",
1619
+ "../node_modules/@types/node/tty.d.ts",
1620
+ "../node_modules/@types/node/util.d.ts"
1621
+ ],
1622
+ "../node_modules/@types/node/url.d.ts": [
1623
+ "../node_modules/@types/node/buffer.d.ts",
1624
+ "../node_modules/@types/node/http.d.ts",
1625
+ "../node_modules/@types/node/querystring.d.ts",
1626
+ "../node_modules/@types/node/url.d.ts",
1627
+ "../node_modules/@types/node/util.d.ts"
1628
+ ],
1629
+ "../node_modules/@types/node/util.d.ts": [
1630
+ "../node_modules/@types/node/crypto.d.ts",
1631
+ "../node_modules/@types/node/util.d.ts"
1632
+ ],
1633
+ "../node_modules/@types/node/v8.d.ts": [
1634
+ "../node_modules/@types/node/stream.d.ts",
1635
+ "../node_modules/@types/node/util.d.ts",
1636
+ "../node_modules/@types/node/v8.d.ts"
1637
+ ],
1638
+ "../node_modules/@types/node/vm.d.ts": [
1639
+ "../node_modules/@types/node/util.d.ts",
1640
+ "../node_modules/@types/node/vm.d.ts"
1641
+ ],
1642
+ "../node_modules/@types/node/wasi.d.ts": [
1643
+ "../node_modules/@types/node/util.d.ts",
1644
+ "../node_modules/@types/node/wasi.d.ts"
1645
+ ],
1646
+ "../node_modules/@types/node/worker_threads.d.ts": [
1647
+ "../node_modules/@types/node/buffer.d.ts",
1648
+ "../node_modules/@types/node/crypto.d.ts",
1649
+ "../node_modules/@types/node/events.d.ts",
1650
+ "../node_modules/@types/node/fs/promises.d.ts",
1651
+ "../node_modules/@types/node/perf_hooks.d.ts",
1652
+ "../node_modules/@types/node/stream.d.ts",
1653
+ "../node_modules/@types/node/url.d.ts",
1654
+ "../node_modules/@types/node/util.d.ts",
1655
+ "../node_modules/@types/node/vm.d.ts",
1656
+ "../node_modules/@types/node/worker_threads.d.ts"
1657
+ ],
1658
+ "../node_modules/@types/node/zlib.d.ts": [
1659
+ "../node_modules/@types/node/stream.d.ts",
1660
+ "../node_modules/@types/node/util.d.ts",
1661
+ "../node_modules/@types/node/zlib.d.ts"
1662
+ ],
1663
+ "../node_modules/buffer/index.d.ts": [
1664
+ "../node_modules/@types/node/util.d.ts"
1665
+ ],
1666
+ "../node_modules/js-sha256/index.d.ts": [
1667
+ "../node_modules/@types/node/util.d.ts"
1668
+ ],
1669
+ "../node_modules/simple-cbor/src/index.d.ts": [
1670
+ "../node_modules/@types/node/util.d.ts",
1671
+ "../node_modules/simple-cbor/src/serializer.d.ts",
1672
+ "../node_modules/simple-cbor/src/value.d.ts"
1673
+ ],
1674
+ "../node_modules/simple-cbor/src/serializer.d.ts": [
1675
+ "../node_modules/@types/node/util.d.ts",
1676
+ "../node_modules/simple-cbor/src/value.d.ts"
1677
+ ],
1678
+ "../node_modules/simple-cbor/src/value.d.ts": [
1679
+ "../node_modules/@types/node/util.d.ts"
1680
+ ],
1681
+ "../src/canisters/internet_identity_idl.js": [
1682
+ "../node_modules/@types/node/util.d.ts"
1683
+ ],
1684
+ "../src/canisters/internet_identity_types.d.ts": [
1685
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1686
+ "../node_modules/@types/node/util.d.ts"
1687
+ ],
1688
+ "../src/canisters/ledger.d.ts": [
1689
+ "../../principal/lib/cjs/index.d.ts",
1690
+ "../node_modules/@types/node/util.d.ts"
1691
+ ],
1692
+ "../src/canisters/ledger.idl.js": [
1693
+ "../node_modules/@types/node/util.d.ts"
1694
+ ],
1695
+ "../src/canisters/me.d.ts": [
1696
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1697
+ "../node_modules/@types/node/util.d.ts"
1698
+ ],
1699
+ "../src/canisters/me.idl.js": [
1700
+ "../node_modules/@types/node/util.d.ts"
1701
+ ],
1702
+ "../src/canisters/nns-dapp-cert.idl.js": [
1703
+ "../node_modules/@types/node/util.d.ts"
1704
+ ],
1705
+ "../src/canisters/nns-dapp.d.ts": [
1706
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1707
+ "../node_modules/@types/node/util.d.ts"
1708
+ ],
1709
+ "../src/canisters/nns-dapp.idl.js": [
1710
+ "../node_modules/@types/node/util.d.ts"
1711
+ ],
1712
+ "../src/connections/baseconnection.ts": [
1713
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1714
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
1715
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
1716
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1717
+ "../node_modules/@types/node/util.d.ts"
1718
+ ],
1719
+ "../src/connections/ledgerconnection.ts": [
1720
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1721
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
1722
+ "../node_modules/@types/node/util.d.ts",
1723
+ "../src/canisters/ledger.d.ts",
1724
+ "../src/canisters/ledger.idl.js",
1725
+ "../src/connections/baseconnection.ts",
1726
+ "../src/utils/constants.ts",
1727
+ "../src/utils/converter.ts"
1728
+ ],
1729
+ "../src/connections/nnsconnection.ts": [
1730
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1731
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
1732
+ "../node_modules/@types/node/util.d.ts",
1733
+ "../src/canisters/nns-dapp-cert.idl.js",
1734
+ "../src/canisters/nns-dapp.d.ts",
1735
+ "../src/canisters/nns-dapp.idl.js",
1736
+ "../src/connections/baseconnection.ts",
1737
+ "../src/utils/constants.ts"
1738
+ ],
1739
+ "../src/ic/icauthclient.ts": [
1740
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1741
+ "../node_modules/@dfinity/authentication/lib/cjs/index.d.ts",
1742
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
1743
+ "../node_modules/@types/node/util.d.ts",
1744
+ "../src/ic/icstorage.ts",
1745
+ "../src/ic/types.ts"
1746
+ ],
1747
+ "../src/ic/icconnect.ts": [
1748
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1749
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
1750
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1751
+ "../node_modules/@types/node/util.d.ts",
1752
+ "../src/connections/ledgerconnection.ts",
1753
+ "../src/ic/icauthclient.ts",
1754
+ "../src/ic/icstorage.ts",
1755
+ "../src/ic/icwindow.ts",
1756
+ "../src/ic/types.ts"
1757
+ ],
1758
+ "../src/ic/icstorage.ts": [
1759
+ "../node_modules/@types/node/util.d.ts",
1760
+ "../src/ic/types.ts"
1761
+ ],
1762
+ "../src/ic/icwindow.ts": [
1763
+ "../node_modules/@types/node/util.d.ts",
1764
+ "../src/ic/types.ts"
1765
+ ],
1766
+ "../src/ic/index.ts": [
1767
+ "../node_modules/@types/node/util.d.ts",
1768
+ "../src/ic/icauthclient.ts",
1769
+ "../src/ic/icconnect.ts"
1770
+ ],
1771
+ "../src/ic/types.ts": [
1772
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
1773
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1774
+ "../node_modules/@types/node/util.d.ts",
1775
+ "../src/connections/ledgerconnection.ts",
1776
+ "../src/ic/icconnect.ts",
1777
+ "../src/utils/common/types.ts"
1778
+ ],
1779
+ "../src/index.ts": [
1780
+ "../node_modules/@types/node/util.d.ts",
1781
+ "../src/connections/baseconnection.ts",
1782
+ "../src/connections/ledgerconnection.ts",
1783
+ "../src/connections/nnsconnection.ts",
1784
+ "../src/ic/index.ts",
1785
+ "../src/utils/index.ts"
1786
+ ],
1787
+ "../src/utils/common/types.ts": [
1788
+ "../node_modules/@types/node/util.d.ts"
1789
+ ],
1790
+ "../src/utils/constants.ts": [
1791
+ "../node_modules/@types/node/util.d.ts"
1792
+ ],
1793
+ "../src/utils/converter.ts": [
1794
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
1795
+ "../node_modules/@types/crc/index.d.ts",
1796
+ "../node_modules/@types/node/buffer.d.ts",
1797
+ "../node_modules/@types/node/util.d.ts",
1798
+ "../node_modules/js-sha256/index.d.ts",
1799
+ "../src/utils/common/types.ts",
1800
+ "../src/utils/constants.ts"
1801
+ ],
1802
+ "../src/utils/index.ts": [
1803
+ "../node_modules/@types/node/util.d.ts",
1804
+ "../src/utils/common/types.ts",
1805
+ "../src/utils/constants.ts",
1806
+ "../src/utils/converter.ts"
1807
+ ],
1808
+ "../../principal/lib/cjs/index.d.ts": [
1809
+ "../node_modules/@types/node/util.d.ts"
1810
+ ]
1811
+ },
1812
+ "exportedModulesMap": {
1813
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
1814
+ "../../../node_modules/@babel/types/lib/index.d.ts",
1815
+ "../node_modules/@types/node/util.d.ts"
1816
+ ],
1817
+ "../../../node_modules/@babel/types/lib/index.d.ts": [
1818
+ "../node_modules/@types/node/util.d.ts"
1819
+ ],
1820
+ "../../../node_modules/@types/babel__core/index.d.ts": [
1821
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
1822
+ "../../../node_modules/@babel/types/lib/index.d.ts",
1823
+ "../../../node_modules/@types/babel__generator/index.d.ts",
1824
+ "../../../node_modules/@types/babel__template/index.d.ts",
1825
+ "../../../node_modules/@types/babel__traverse/ts4.1/index.d.ts",
1826
+ "../node_modules/@types/node/util.d.ts"
1827
+ ],
1828
+ "../../../node_modules/@types/babel__generator/index.d.ts": [
1829
+ "../../../node_modules/@babel/types/lib/index.d.ts",
1830
+ "../node_modules/@types/node/util.d.ts"
1831
+ ],
1832
+ "../../../node_modules/@types/babel__template/index.d.ts": [
1833
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
1834
+ "../../../node_modules/@babel/types/lib/index.d.ts",
1835
+ "../node_modules/@types/node/util.d.ts"
1836
+ ],
1837
+ "../../../node_modules/@types/babel__traverse/ts4.1/index.d.ts": [
1838
+ "../../../node_modules/@babel/types/lib/index.d.ts",
1839
+ "../node_modules/@types/node/util.d.ts"
1840
+ ],
1841
+ "../../../node_modules/@types/graceful-fs/index.d.ts": [
1842
+ "../node_modules/@types/node/fs.d.ts",
1843
+ "../node_modules/@types/node/index.d.ts",
1844
+ "../node_modules/@types/node/util.d.ts"
1845
+ ],
1846
+ "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts": [
1847
+ "../node_modules/@types/node/util.d.ts"
1848
+ ],
1849
+ "../../../node_modules/@types/istanbul-lib-report/index.d.ts": [
1850
+ "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
1851
+ "../node_modules/@types/node/util.d.ts"
1852
+ ],
1853
+ "../../../node_modules/@types/istanbul-reports/index.d.ts": [
1854
+ "../../../node_modules/@types/istanbul-lib-report/index.d.ts",
1855
+ "../node_modules/@types/node/util.d.ts"
1856
+ ],
1857
+ "../../../node_modules/@types/jest/index.d.ts": [
1858
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts",
1859
+ "../../../node_modules/pretty-format/build/index.d.ts",
1860
+ "../node_modules/@types/node/util.d.ts"
1861
+ ],
1862
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts": [
1863
+ "../node_modules/@types/node/util.d.ts"
1864
+ ],
1865
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts": [
1866
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
1867
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
1868
+ "../node_modules/@types/node/util.d.ts"
1869
+ ],
1870
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts": [
1871
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
1872
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts",
1873
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts",
1874
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
1875
+ "../node_modules/@types/node/util.d.ts"
1876
+ ],
1877
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts": [
1878
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
1879
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
1880
+ "../node_modules/@types/node/util.d.ts"
1881
+ ],
1882
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts": [
1883
+ "../node_modules/@types/node/util.d.ts"
1884
+ ],
1885
+ "../../../node_modules/@types/json-schema/index.d.ts": [
1886
+ "../node_modules/@types/node/util.d.ts"
1887
+ ],
1888
+ "../../../node_modules/@types/ledgerhq__hw-transport/index.d.ts": [
1889
+ "../node_modules/@types/node/index.d.ts",
1890
+ "../node_modules/@types/node/util.d.ts"
1891
+ ],
1892
+ "../../../node_modules/@types/minimatch/index.d.ts": [
1893
+ "../node_modules/@types/node/util.d.ts"
1894
+ ],
1895
+ "../../../node_modules/@types/minimist/index.d.ts": [
1896
+ "../node_modules/@types/node/util.d.ts"
1897
+ ],
1898
+ "../../../node_modules/@types/normalize-package-data/index.d.ts": [
1899
+ "../node_modules/@types/node/util.d.ts"
1900
+ ],
1901
+ "../../../node_modules/@types/parse-json/index.d.ts": [
1902
+ "../node_modules/@types/node/util.d.ts"
1903
+ ],
1904
+ "../../../node_modules/@types/prettier/index.d.ts": [
1905
+ "../node_modules/@types/node/util.d.ts"
1906
+ ],
1907
+ "../../../node_modules/@types/stack-utils/index.d.ts": [
1908
+ "../node_modules/@types/node/util.d.ts"
1909
+ ],
1910
+ "../../../node_modules/@types/yargs-parser/index.d.ts": [
1911
+ "../node_modules/@types/node/util.d.ts"
1912
+ ],
1913
+ "../../../node_modules/@types/yargs/index.d.ts": [
1914
+ "../../../node_modules/@types/yargs-parser/index.d.ts",
1915
+ "../node_modules/@types/node/util.d.ts"
1916
+ ],
1917
+ "../../../node_modules/pretty-format/build/index.d.ts": [
1918
+ "../../../node_modules/pretty-format/build/types.d.ts",
1919
+ "../node_modules/@types/node/util.d.ts"
1920
+ ],
1921
+ "../../../node_modules/pretty-format/build/types.d.ts": [
1922
+ "../node_modules/@types/node/util.d.ts"
1923
+ ],
1924
+ "../../../node_modules/typescript/lib/lib.dom.d.ts": [
1925
+ "../node_modules/@types/node/util.d.ts"
1926
+ ],
1927
+ "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
1928
+ "../node_modules/@types/node/util.d.ts"
1929
+ ],
1930
+ "../../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
1931
+ "../node_modules/@types/node/util.d.ts"
1932
+ ],
1933
+ "../../../node_modules/typescript/lib/lib.es2015.d.ts": [
1934
+ "../node_modules/@types/node/util.d.ts"
1935
+ ],
1936
+ "../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
1937
+ "../node_modules/@types/node/util.d.ts"
1938
+ ],
1939
+ "../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
1940
+ "../node_modules/@types/node/util.d.ts"
1941
+ ],
1942
+ "../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
1943
+ "../node_modules/@types/node/util.d.ts"
1944
+ ],
1945
+ "../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
1946
+ "../node_modules/@types/node/util.d.ts"
1947
+ ],
1948
+ "../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
1949
+ "../node_modules/@types/node/util.d.ts"
1950
+ ],
1951
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
1952
+ "../node_modules/@types/node/util.d.ts"
1953
+ ],
1954
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
1955
+ "../node_modules/@types/node/util.d.ts"
1956
+ ],
1957
+ "../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
1958
+ "../node_modules/@types/node/util.d.ts"
1959
+ ],
1960
+ "../../../node_modules/typescript/lib/lib.es2016.d.ts": [
1961
+ "../node_modules/@types/node/util.d.ts"
1962
+ ],
1963
+ "../../../node_modules/typescript/lib/lib.es2017.d.ts": [
1964
+ "../node_modules/@types/node/util.d.ts"
1965
+ ],
1966
+ "../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
1967
+ "../node_modules/@types/node/util.d.ts"
1968
+ ],
1969
+ "../../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
1970
+ "../node_modules/@types/node/util.d.ts"
1971
+ ],
1972
+ "../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
1973
+ "../node_modules/@types/node/util.d.ts"
1974
+ ],
1975
+ "../../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
1976
+ "../node_modules/@types/node/util.d.ts"
1977
+ ],
1978
+ "../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
1979
+ "../node_modules/@types/node/util.d.ts"
1980
+ ],
1981
+ "../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
1982
+ "../node_modules/@types/node/util.d.ts"
1983
+ ],
1984
+ "../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
1985
+ "../node_modules/@types/node/util.d.ts"
1986
+ ],
1987
+ "../../../node_modules/typescript/lib/lib.es2018.d.ts": [
1988
+ "../node_modules/@types/node/util.d.ts"
1989
+ ],
1990
+ "../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
1991
+ "../node_modules/@types/node/util.d.ts"
1992
+ ],
1993
+ "../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
1994
+ "../node_modules/@types/node/util.d.ts"
1995
+ ],
1996
+ "../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
1997
+ "../node_modules/@types/node/util.d.ts"
1998
+ ],
1999
+ "../../../node_modules/typescript/lib/lib.es2019.array.d.ts": [
2000
+ "../node_modules/@types/node/util.d.ts"
2001
+ ],
2002
+ "../../../node_modules/typescript/lib/lib.es2019.d.ts": [
2003
+ "../node_modules/@types/node/util.d.ts"
2004
+ ],
2005
+ "../../../node_modules/typescript/lib/lib.es2019.object.d.ts": [
2006
+ "../node_modules/@types/node/util.d.ts"
2007
+ ],
2008
+ "../../../node_modules/typescript/lib/lib.es2019.string.d.ts": [
2009
+ "../node_modules/@types/node/util.d.ts"
2010
+ ],
2011
+ "../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
2012
+ "../node_modules/@types/node/util.d.ts"
2013
+ ],
2014
+ "../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
2015
+ "../node_modules/@types/node/util.d.ts"
2016
+ ],
2017
+ "../../../node_modules/typescript/lib/lib.es2020.d.ts": [
2018
+ "../node_modules/@types/node/util.d.ts"
2019
+ ],
2020
+ "../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": [
2021
+ "../node_modules/@types/node/util.d.ts"
2022
+ ],
2023
+ "../../../node_modules/typescript/lib/lib.es2020.string.d.ts": [
2024
+ "../node_modules/@types/node/util.d.ts"
2025
+ ],
2026
+ "../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [
2027
+ "../node_modules/@types/node/util.d.ts"
2028
+ ],
2029
+ "../../../node_modules/typescript/lib/lib.es5.d.ts": [
2030
+ "../node_modules/@types/node/util.d.ts"
2031
+ ],
2032
+ "../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
2033
+ "../node_modules/@types/node/util.d.ts"
2034
+ ],
2035
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts": [
2036
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
2037
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts",
2038
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
2039
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
2040
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
2041
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2042
+ "../node_modules/@types/node/util.d.ts"
2043
+ ],
2044
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts": [
2045
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
2046
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
2047
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2048
+ "../node_modules/@types/node/util.d.ts"
2049
+ ],
2050
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/index.d.ts": [
2051
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
2052
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
2053
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
2054
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts",
2055
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
2056
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2057
+ "../node_modules/@types/node/util.d.ts"
2058
+ ],
2059
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts": [
2060
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
2061
+ "../node_modules/@types/node/util.d.ts",
2062
+ "../node_modules/simple-cbor/src/index.d.ts"
2063
+ ],
2064
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts": [
2065
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
2066
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2067
+ "../node_modules/@types/node/util.d.ts"
2068
+ ],
2069
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts": [
2070
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
2071
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/index.d.ts",
2072
+ "../node_modules/@dfinity/agent/lib/cjs/agent/proxy.d.ts",
2073
+ "../node_modules/@types/node/util.d.ts"
2074
+ ],
2075
+ "../node_modules/@dfinity/agent/lib/cjs/agent/proxy.d.ts": [
2076
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
2077
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2078
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
2079
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2080
+ "../node_modules/@types/node/util.d.ts"
2081
+ ],
2082
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts": [
2083
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
2084
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2085
+ "../node_modules/@types/node/util.d.ts"
2086
+ ],
2087
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/asset.d.ts": [
2088
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
2089
+ "../node_modules/@types/node/util.d.ts"
2090
+ ],
2091
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/management.d.ts": [
2092
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
2093
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2094
+ "../node_modules/@types/node/util.d.ts"
2095
+ ],
2096
+ "../node_modules/@dfinity/agent/lib/cjs/cbor.d.ts": [
2097
+ "../node_modules/@types/node/util.d.ts"
2098
+ ],
2099
+ "../node_modules/@dfinity/agent/lib/cjs/certificate.d.ts": [
2100
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
2101
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts",
2102
+ "../node_modules/@types/node/util.d.ts"
2103
+ ],
2104
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts": [
2105
+ "../node_modules/@types/node/util.d.ts"
2106
+ ],
2107
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts": [
2108
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
2109
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
2110
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
2111
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
2112
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts",
2113
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/asset.d.ts",
2114
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/management.d.ts",
2115
+ "../node_modules/@dfinity/agent/lib/cjs/cbor.d.ts",
2116
+ "../node_modules/@dfinity/agent/lib/cjs/certificate.d.ts",
2117
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
2118
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
2119
+ "../node_modules/@dfinity/agent/lib/cjs/utils/bls.d.ts",
2120
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
2121
+ "../node_modules/@types/node/util.d.ts"
2122
+ ],
2123
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts": [
2124
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
2125
+ "../node_modules/@dfinity/agent/lib/cjs/polling/strategy.d.ts",
2126
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
2127
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2128
+ "../node_modules/@types/node/util.d.ts"
2129
+ ],
2130
+ "../node_modules/@dfinity/agent/lib/cjs/polling/strategy.d.ts": [
2131
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2132
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
2133
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2134
+ "../node_modules/@types/node/util.d.ts"
2135
+ ],
2136
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts": [
2137
+ "../node_modules/@types/node/util.d.ts"
2138
+ ],
2139
+ "../node_modules/@dfinity/agent/lib/cjs/utils/bls.d.ts": [
2140
+ "../node_modules/@types/node/util.d.ts"
2141
+ ],
2142
+ "../node_modules/@dfinity/authentication/lib/cjs/index.d.ts": [
2143
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2144
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
2145
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2146
+ "../node_modules/@types/node/util.d.ts"
2147
+ ],
2148
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts": [
2149
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
2150
+ "../node_modules/@types/node/util.d.ts"
2151
+ ],
2152
+ "../node_modules/@dfinity/candid/lib/cjs/candid-ui.d.ts": [
2153
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts",
2154
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
2155
+ "../node_modules/@types/node/util.d.ts"
2156
+ ],
2157
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts": [
2158
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts",
2159
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts",
2160
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2161
+ "../node_modules/@types/node/util.d.ts"
2162
+ ],
2163
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts": [
2164
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts",
2165
+ "../node_modules/@dfinity/candid/lib/cjs/candid-ui.d.ts",
2166
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
2167
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts",
2168
+ "../node_modules/@dfinity/candid/lib/cjs/utils/hash.d.ts",
2169
+ "../node_modules/@dfinity/candid/lib/cjs/utils/leb128.d.ts",
2170
+ "../node_modules/@types/node/util.d.ts"
2171
+ ],
2172
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts": [
2173
+ "../node_modules/@types/node/util.d.ts"
2174
+ ],
2175
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts": [
2176
+ "../node_modules/@types/node/util.d.ts"
2177
+ ],
2178
+ "../node_modules/@dfinity/candid/lib/cjs/utils/hash.d.ts": [
2179
+ "../node_modules/@types/node/util.d.ts"
2180
+ ],
2181
+ "../node_modules/@dfinity/candid/lib/cjs/utils/leb128.d.ts": [
2182
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts",
2183
+ "../node_modules/@types/node/util.d.ts"
2184
+ ],
2185
+ "../node_modules/@dfinity/identity/lib/cjs/identity/delegation.d.ts": [
2186
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2187
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2188
+ "../node_modules/@types/node/util.d.ts",
2189
+ "../node_modules/simple-cbor/src/index.d.ts"
2190
+ ],
2191
+ "../node_modules/@dfinity/identity/lib/cjs/identity/der.d.ts": [
2192
+ "../node_modules/@types/node/util.d.ts"
2193
+ ],
2194
+ "../node_modules/@dfinity/identity/lib/cjs/identity/ed25519.d.ts": [
2195
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2196
+ "../node_modules/@types/node/util.d.ts"
2197
+ ],
2198
+ "../node_modules/@dfinity/identity/lib/cjs/identity/secp256k1.d.ts": [
2199
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2200
+ "../node_modules/@types/node/util.d.ts"
2201
+ ],
2202
+ "../node_modules/@dfinity/identity/lib/cjs/identity/webauthn.d.ts": [
2203
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2204
+ "../node_modules/@types/node/util.d.ts"
2205
+ ],
2206
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts": [
2207
+ "../node_modules/@dfinity/identity/lib/cjs/identity/delegation.d.ts",
2208
+ "../node_modules/@dfinity/identity/lib/cjs/identity/der.d.ts",
2209
+ "../node_modules/@dfinity/identity/lib/cjs/identity/ed25519.d.ts",
2210
+ "../node_modules/@dfinity/identity/lib/cjs/identity/secp256k1.d.ts",
2211
+ "../node_modules/@dfinity/identity/lib/cjs/identity/webauthn.d.ts",
2212
+ "../node_modules/@types/node/util.d.ts"
2213
+ ],
2214
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts": [
2215
+ "../node_modules/@types/node/util.d.ts"
2216
+ ],
2217
+ "../node_modules/@types/crc/index.d.ts": [
2218
+ "../node_modules/@types/node/index.d.ts",
2219
+ "../node_modules/@types/node/util.d.ts"
2220
+ ],
2221
+ "../node_modules/@types/node/assert.d.ts": [
2222
+ "../node_modules/@types/node/assert.d.ts",
2223
+ "../node_modules/@types/node/util.d.ts"
2224
+ ],
2225
+ "../node_modules/@types/node/assert/strict.d.ts": [
2226
+ "../node_modules/@types/node/assert.d.ts",
2227
+ "../node_modules/@types/node/util.d.ts"
2228
+ ],
2229
+ "../node_modules/@types/node/async_hooks.d.ts": [
2230
+ "../node_modules/@types/node/async_hooks.d.ts",
2231
+ "../node_modules/@types/node/util.d.ts"
2232
+ ],
2233
+ "../node_modules/@types/node/buffer.d.ts": [
2234
+ "../node_modules/@types/node/buffer.d.ts",
2235
+ "../node_modules/@types/node/crypto.d.ts",
2236
+ "../node_modules/@types/node/util.d.ts"
2237
+ ],
2238
+ "../node_modules/@types/node/child_process.d.ts": [
2239
+ "../node_modules/@types/node/child_process.d.ts",
2240
+ "../node_modules/@types/node/events.d.ts",
2241
+ "../node_modules/@types/node/fs.d.ts",
2242
+ "../node_modules/@types/node/net.d.ts",
2243
+ "../node_modules/@types/node/stream.d.ts",
2244
+ "../node_modules/@types/node/url.d.ts",
2245
+ "../node_modules/@types/node/util.d.ts"
2246
+ ],
2247
+ "../node_modules/@types/node/cluster.d.ts": [
2248
+ "../node_modules/@types/node/child_process.d.ts",
2249
+ "../node_modules/@types/node/cluster.d.ts",
2250
+ "../node_modules/@types/node/events.d.ts",
2251
+ "../node_modules/@types/node/net.d.ts",
2252
+ "../node_modules/@types/node/util.d.ts"
2253
+ ],
2254
+ "../node_modules/@types/node/console.d.ts": [
2255
+ "../node_modules/@types/node/console.d.ts",
2256
+ "../node_modules/@types/node/util.d.ts"
2257
+ ],
2258
+ "../node_modules/@types/node/constants.d.ts": [
2259
+ "../node_modules/@types/node/constants.d.ts",
2260
+ "../node_modules/@types/node/crypto.d.ts",
2261
+ "../node_modules/@types/node/fs.d.ts",
2262
+ "../node_modules/@types/node/os.d.ts",
2263
+ "../node_modules/@types/node/util.d.ts"
2264
+ ],
2265
+ "../node_modules/@types/node/crypto.d.ts": [
2266
+ "../node_modules/@types/node/crypto.d.ts",
2267
+ "../node_modules/@types/node/stream.d.ts",
2268
+ "../node_modules/@types/node/tls.d.ts",
2269
+ "../node_modules/@types/node/util.d.ts"
2270
+ ],
2271
+ "../node_modules/@types/node/dgram.d.ts": [
2272
+ "../node_modules/@types/node/dgram.d.ts",
2273
+ "../node_modules/@types/node/dns.d.ts",
2274
+ "../node_modules/@types/node/events.d.ts",
2275
+ "../node_modules/@types/node/net.d.ts",
2276
+ "../node_modules/@types/node/util.d.ts"
2277
+ ],
2278
+ "../node_modules/@types/node/diagnostics_channel.d.ts": [
2279
+ "../node_modules/@types/node/diagnostics_channel.d.ts",
2280
+ "../node_modules/@types/node/util.d.ts"
2281
+ ],
2282
+ "../node_modules/@types/node/dns.d.ts": [
2283
+ "../node_modules/@types/node/dns.d.ts",
2284
+ "../node_modules/@types/node/dns/promises.d.ts",
2285
+ "../node_modules/@types/node/util.d.ts"
2286
+ ],
2287
+ "../node_modules/@types/node/dns/promises.d.ts": [
2288
+ "../node_modules/@types/node/dns.d.ts",
2289
+ "../node_modules/@types/node/dns/promises.d.ts",
2290
+ "../node_modules/@types/node/util.d.ts"
2291
+ ],
2292
+ "../node_modules/@types/node/domain.d.ts": [
2293
+ "../node_modules/@types/node/domain.d.ts",
2294
+ "../node_modules/@types/node/events.d.ts",
2295
+ "../node_modules/@types/node/util.d.ts"
2296
+ ],
2297
+ "../node_modules/@types/node/events.d.ts": [
2298
+ "../node_modules/@types/node/events.d.ts",
2299
+ "../node_modules/@types/node/util.d.ts"
2300
+ ],
2301
+ "../node_modules/@types/node/fs.d.ts": [
2302
+ "../node_modules/@types/node/events.d.ts",
2303
+ "../node_modules/@types/node/fs.d.ts",
2304
+ "../node_modules/@types/node/fs/promises.d.ts",
2305
+ "../node_modules/@types/node/stream.d.ts",
2306
+ "../node_modules/@types/node/url.d.ts",
2307
+ "../node_modules/@types/node/util.d.ts"
2308
+ ],
2309
+ "../node_modules/@types/node/fs/promises.d.ts": [
2310
+ "../node_modules/@types/node/events.d.ts",
2311
+ "../node_modules/@types/node/fs.d.ts",
2312
+ "../node_modules/@types/node/fs/promises.d.ts",
2313
+ "../node_modules/@types/node/stream.d.ts",
2314
+ "../node_modules/@types/node/util.d.ts"
2315
+ ],
2316
+ "../node_modules/@types/node/globals.d.ts": [
2317
+ "../node_modules/@types/node/util.d.ts"
2318
+ ],
2319
+ "../node_modules/@types/node/globals.global.d.ts": [
2320
+ "../node_modules/@types/node/util.d.ts"
2321
+ ],
2322
+ "../node_modules/@types/node/http.d.ts": [
2323
+ "../node_modules/@types/node/http.d.ts",
2324
+ "../node_modules/@types/node/net.d.ts",
2325
+ "../node_modules/@types/node/stream.d.ts",
2326
+ "../node_modules/@types/node/url.d.ts",
2327
+ "../node_modules/@types/node/util.d.ts"
2328
+ ],
2329
+ "../node_modules/@types/node/http2.d.ts": [
2330
+ "../node_modules/@types/node/events.d.ts",
2331
+ "../node_modules/@types/node/fs.d.ts",
2332
+ "../node_modules/@types/node/http.d.ts",
2333
+ "../node_modules/@types/node/http2.d.ts",
2334
+ "../node_modules/@types/node/net.d.ts",
2335
+ "../node_modules/@types/node/stream.d.ts",
2336
+ "../node_modules/@types/node/tls.d.ts",
2337
+ "../node_modules/@types/node/url.d.ts",
2338
+ "../node_modules/@types/node/util.d.ts"
2339
+ ],
2340
+ "../node_modules/@types/node/https.d.ts": [
2341
+ "../node_modules/@types/node/http.d.ts",
2342
+ "../node_modules/@types/node/https.d.ts",
2343
+ "../node_modules/@types/node/stream.d.ts",
2344
+ "../node_modules/@types/node/tls.d.ts",
2345
+ "../node_modules/@types/node/url.d.ts",
2346
+ "../node_modules/@types/node/util.d.ts"
2347
+ ],
2348
+ "../node_modules/@types/node/index.d.ts": [
2349
+ "../node_modules/@types/node/assert.d.ts",
2350
+ "../node_modules/@types/node/assert/strict.d.ts",
2351
+ "../node_modules/@types/node/async_hooks.d.ts",
2352
+ "../node_modules/@types/node/buffer.d.ts",
2353
+ "../node_modules/@types/node/child_process.d.ts",
2354
+ "../node_modules/@types/node/cluster.d.ts",
2355
+ "../node_modules/@types/node/console.d.ts",
2356
+ "../node_modules/@types/node/constants.d.ts",
2357
+ "../node_modules/@types/node/crypto.d.ts",
2358
+ "../node_modules/@types/node/dgram.d.ts",
2359
+ "../node_modules/@types/node/diagnostics_channel.d.ts",
2360
+ "../node_modules/@types/node/dns.d.ts",
2361
+ "../node_modules/@types/node/dns/promises.d.ts",
2362
+ "../node_modules/@types/node/domain.d.ts",
2363
+ "../node_modules/@types/node/events.d.ts",
2364
+ "../node_modules/@types/node/fs.d.ts",
2365
+ "../node_modules/@types/node/fs/promises.d.ts",
2366
+ "../node_modules/@types/node/globals.d.ts",
2367
+ "../node_modules/@types/node/globals.global.d.ts",
2368
+ "../node_modules/@types/node/http.d.ts",
2369
+ "../node_modules/@types/node/http2.d.ts",
2370
+ "../node_modules/@types/node/https.d.ts",
2371
+ "../node_modules/@types/node/inspector.d.ts",
2372
+ "../node_modules/@types/node/module.d.ts",
2373
+ "../node_modules/@types/node/net.d.ts",
2374
+ "../node_modules/@types/node/os.d.ts",
2375
+ "../node_modules/@types/node/path.d.ts",
2376
+ "../node_modules/@types/node/perf_hooks.d.ts",
2377
+ "../node_modules/@types/node/process.d.ts",
2378
+ "../node_modules/@types/node/punycode.d.ts",
2379
+ "../node_modules/@types/node/querystring.d.ts",
2380
+ "../node_modules/@types/node/readline.d.ts",
2381
+ "../node_modules/@types/node/repl.d.ts",
2382
+ "../node_modules/@types/node/stream.d.ts",
2383
+ "../node_modules/@types/node/stream/consumers.d.ts",
2384
+ "../node_modules/@types/node/stream/promises.d.ts",
2385
+ "../node_modules/@types/node/stream/web.d.ts",
2386
+ "../node_modules/@types/node/string_decoder.d.ts",
2387
+ "../node_modules/@types/node/timers.d.ts",
2388
+ "../node_modules/@types/node/timers/promises.d.ts",
2389
+ "../node_modules/@types/node/tls.d.ts",
2390
+ "../node_modules/@types/node/trace_events.d.ts",
2391
+ "../node_modules/@types/node/tty.d.ts",
2392
+ "../node_modules/@types/node/url.d.ts",
2393
+ "../node_modules/@types/node/util.d.ts",
2394
+ "../node_modules/@types/node/v8.d.ts",
2395
+ "../node_modules/@types/node/vm.d.ts",
2396
+ "../node_modules/@types/node/wasi.d.ts",
2397
+ "../node_modules/@types/node/worker_threads.d.ts",
2398
+ "../node_modules/@types/node/zlib.d.ts"
2399
+ ],
2400
+ "../node_modules/@types/node/inspector.d.ts": [
2401
+ "../node_modules/@types/node/events.d.ts",
2402
+ "../node_modules/@types/node/inspector.d.ts",
2403
+ "../node_modules/@types/node/util.d.ts"
2404
+ ],
2405
+ "../node_modules/@types/node/module.d.ts": [
2406
+ "../node_modules/@types/node/module.d.ts",
2407
+ "../node_modules/@types/node/url.d.ts",
2408
+ "../node_modules/@types/node/util.d.ts"
2409
+ ],
2410
+ "../node_modules/@types/node/net.d.ts": [
2411
+ "../node_modules/@types/node/dns.d.ts",
2412
+ "../node_modules/@types/node/events.d.ts",
2413
+ "../node_modules/@types/node/net.d.ts",
2414
+ "../node_modules/@types/node/stream.d.ts",
2415
+ "../node_modules/@types/node/util.d.ts"
2416
+ ],
2417
+ "../node_modules/@types/node/os.d.ts": [
2418
+ "../node_modules/@types/node/os.d.ts",
2419
+ "../node_modules/@types/node/util.d.ts"
2420
+ ],
2421
+ "../node_modules/@types/node/path.d.ts": [
2422
+ "../node_modules/@types/node/path.d.ts",
2423
+ "../node_modules/@types/node/util.d.ts"
2424
+ ],
2425
+ "../node_modules/@types/node/perf_hooks.d.ts": [
2426
+ "../node_modules/@types/node/async_hooks.d.ts",
2427
+ "../node_modules/@types/node/perf_hooks.d.ts",
2428
+ "../node_modules/@types/node/util.d.ts"
2429
+ ],
2430
+ "../node_modules/@types/node/process.d.ts": [
2431
+ "../node_modules/@types/node/process.d.ts",
2432
+ "../node_modules/@types/node/tty.d.ts",
2433
+ "../node_modules/@types/node/util.d.ts",
2434
+ "../node_modules/@types/node/worker_threads.d.ts"
2435
+ ],
2436
+ "../node_modules/@types/node/punycode.d.ts": [
2437
+ "../node_modules/@types/node/punycode.d.ts",
2438
+ "../node_modules/@types/node/util.d.ts"
2439
+ ],
2440
+ "../node_modules/@types/node/querystring.d.ts": [
2441
+ "../node_modules/@types/node/querystring.d.ts",
2442
+ "../node_modules/@types/node/util.d.ts"
2443
+ ],
2444
+ "../node_modules/@types/node/readline.d.ts": [
2445
+ "../node_modules/@types/node/events.d.ts",
2446
+ "../node_modules/@types/node/readline.d.ts",
2447
+ "../node_modules/@types/node/util.d.ts"
2448
+ ],
2449
+ "../node_modules/@types/node/repl.d.ts": [
2450
+ "../node_modules/@types/node/readline.d.ts",
2451
+ "../node_modules/@types/node/repl.d.ts",
2452
+ "../node_modules/@types/node/util.d.ts",
2453
+ "../node_modules/@types/node/vm.d.ts"
2454
+ ],
2455
+ "../node_modules/@types/node/stream.d.ts": [
2456
+ "../node_modules/@types/node/events.d.ts",
2457
+ "../node_modules/@types/node/stream.d.ts",
2458
+ "../node_modules/@types/node/stream/consumers.d.ts",
2459
+ "../node_modules/@types/node/stream/promises.d.ts",
2460
+ "../node_modules/@types/node/util.d.ts"
2461
+ ],
2462
+ "../node_modules/@types/node/stream/consumers.d.ts": [
2463
+ "../node_modules/@types/node/stream.d.ts",
2464
+ "../node_modules/@types/node/stream/consumers.d.ts",
2465
+ "../node_modules/@types/node/util.d.ts"
2466
+ ],
2467
+ "../node_modules/@types/node/stream/promises.d.ts": [
2468
+ "../node_modules/@types/node/stream.d.ts",
2469
+ "../node_modules/@types/node/stream/promises.d.ts",
2470
+ "../node_modules/@types/node/util.d.ts"
2471
+ ],
2472
+ "../node_modules/@types/node/stream/web.d.ts": [
2473
+ "../node_modules/@types/node/stream/web.d.ts",
2474
+ "../node_modules/@types/node/util.d.ts"
2475
+ ],
2476
+ "../node_modules/@types/node/string_decoder.d.ts": [
2477
+ "../node_modules/@types/node/string_decoder.d.ts",
2478
+ "../node_modules/@types/node/util.d.ts"
2479
+ ],
2480
+ "../node_modules/@types/node/timers.d.ts": [
2481
+ "../node_modules/@types/node/events.d.ts",
2482
+ "../node_modules/@types/node/timers.d.ts",
2483
+ "../node_modules/@types/node/timers/promises.d.ts",
2484
+ "../node_modules/@types/node/util.d.ts"
2485
+ ],
2486
+ "../node_modules/@types/node/timers/promises.d.ts": [
2487
+ "../node_modules/@types/node/timers.d.ts",
2488
+ "../node_modules/@types/node/timers/promises.d.ts",
2489
+ "../node_modules/@types/node/util.d.ts"
2490
+ ],
2491
+ "../node_modules/@types/node/tls.d.ts": [
2492
+ "../node_modules/@types/node/crypto.d.ts",
2493
+ "../node_modules/@types/node/net.d.ts",
2494
+ "../node_modules/@types/node/tls.d.ts",
2495
+ "../node_modules/@types/node/util.d.ts"
2496
+ ],
2497
+ "../node_modules/@types/node/trace_events.d.ts": [
2498
+ "../node_modules/@types/node/trace_events.d.ts",
2499
+ "../node_modules/@types/node/util.d.ts"
2500
+ ],
2501
+ "../node_modules/@types/node/tty.d.ts": [
2502
+ "../node_modules/@types/node/net.d.ts",
2503
+ "../node_modules/@types/node/tty.d.ts",
2504
+ "../node_modules/@types/node/util.d.ts"
2505
+ ],
2506
+ "../node_modules/@types/node/url.d.ts": [
2507
+ "../node_modules/@types/node/buffer.d.ts",
2508
+ "../node_modules/@types/node/http.d.ts",
2509
+ "../node_modules/@types/node/querystring.d.ts",
2510
+ "../node_modules/@types/node/url.d.ts",
2511
+ "../node_modules/@types/node/util.d.ts"
2512
+ ],
2513
+ "../node_modules/@types/node/util.d.ts": [
2514
+ "../node_modules/@types/node/crypto.d.ts",
2515
+ "../node_modules/@types/node/util.d.ts"
2516
+ ],
2517
+ "../node_modules/@types/node/v8.d.ts": [
2518
+ "../node_modules/@types/node/stream.d.ts",
2519
+ "../node_modules/@types/node/util.d.ts",
2520
+ "../node_modules/@types/node/v8.d.ts"
2521
+ ],
2522
+ "../node_modules/@types/node/vm.d.ts": [
2523
+ "../node_modules/@types/node/util.d.ts",
2524
+ "../node_modules/@types/node/vm.d.ts"
2525
+ ],
2526
+ "../node_modules/@types/node/wasi.d.ts": [
2527
+ "../node_modules/@types/node/util.d.ts",
2528
+ "../node_modules/@types/node/wasi.d.ts"
2529
+ ],
2530
+ "../node_modules/@types/node/worker_threads.d.ts": [
2531
+ "../node_modules/@types/node/buffer.d.ts",
2532
+ "../node_modules/@types/node/crypto.d.ts",
2533
+ "../node_modules/@types/node/events.d.ts",
2534
+ "../node_modules/@types/node/fs/promises.d.ts",
2535
+ "../node_modules/@types/node/perf_hooks.d.ts",
2536
+ "../node_modules/@types/node/stream.d.ts",
2537
+ "../node_modules/@types/node/url.d.ts",
2538
+ "../node_modules/@types/node/util.d.ts",
2539
+ "../node_modules/@types/node/vm.d.ts",
2540
+ "../node_modules/@types/node/worker_threads.d.ts"
2541
+ ],
2542
+ "../node_modules/@types/node/zlib.d.ts": [
2543
+ "../node_modules/@types/node/stream.d.ts",
2544
+ "../node_modules/@types/node/util.d.ts",
2545
+ "../node_modules/@types/node/zlib.d.ts"
2546
+ ],
2547
+ "../node_modules/buffer/index.d.ts": [
2548
+ "../node_modules/@types/node/util.d.ts"
2549
+ ],
2550
+ "../node_modules/js-sha256/index.d.ts": [
2551
+ "../node_modules/@types/node/util.d.ts"
2552
+ ],
2553
+ "../node_modules/simple-cbor/src/index.d.ts": [
2554
+ "../node_modules/@types/node/util.d.ts",
2555
+ "../node_modules/simple-cbor/src/serializer.d.ts",
2556
+ "../node_modules/simple-cbor/src/value.d.ts"
2557
+ ],
2558
+ "../node_modules/simple-cbor/src/serializer.d.ts": [
2559
+ "../node_modules/@types/node/util.d.ts",
2560
+ "../node_modules/simple-cbor/src/value.d.ts"
2561
+ ],
2562
+ "../node_modules/simple-cbor/src/value.d.ts": [
2563
+ "../node_modules/@types/node/util.d.ts"
2564
+ ],
2565
+ "../src/canisters/internet_identity_types.d.ts": [
2566
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2567
+ "../node_modules/@types/node/util.d.ts"
2568
+ ],
2569
+ "../src/canisters/ledger.d.ts": [
2570
+ "../../principal/lib/cjs/index.d.ts",
2571
+ "../node_modules/@types/node/util.d.ts"
2572
+ ],
2573
+ "../src/canisters/me.d.ts": [
2574
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2575
+ "../node_modules/@types/node/util.d.ts"
2576
+ ],
2577
+ "../src/canisters/nns-dapp.d.ts": [
2578
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2579
+ "../node_modules/@types/node/util.d.ts"
2580
+ ],
2581
+ "../src/connections/baseconnection.ts": [
2582
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2583
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
2584
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
2585
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts"
2586
+ ],
2587
+ "../src/connections/ledgerconnection.ts": [
2588
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2589
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
2590
+ "../src/canisters/ledger.d.ts",
2591
+ "../src/connections/baseconnection.ts"
2592
+ ],
2593
+ "../src/connections/nnsconnection.ts": [
2594
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2595
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
2596
+ "../src/canisters/nns-dapp.d.ts",
2597
+ "../src/connections/baseconnection.ts"
2598
+ ],
2599
+ "../src/ic/icauthclient.ts": [
2600
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2601
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
2602
+ "../src/ic/types.ts"
2603
+ ],
2604
+ "../src/ic/icconnect.ts": [
2605
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2606
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
2607
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2608
+ "../src/ic/icauthclient.ts",
2609
+ "../src/ic/icwindow.ts",
2610
+ "../src/ic/types.ts"
2611
+ ],
2612
+ "../src/ic/icstorage.ts": [
2613
+ "../src/ic/types.ts"
2614
+ ],
2615
+ "../src/ic/icwindow.ts": [
2616
+ "../src/ic/types.ts"
2617
+ ],
2618
+ "../src/ic/index.ts": [
2619
+ "../src/ic/icauthclient.ts",
2620
+ "../src/ic/icconnect.ts"
2621
+ ],
2622
+ "../src/ic/types.ts": [
2623
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2624
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2625
+ "../src/connections/ledgerconnection.ts",
2626
+ "../src/ic/icconnect.ts",
2627
+ "../src/utils/common/types.ts"
2628
+ ],
2629
+ "../src/index.ts": [
2630
+ "../src/connections/baseconnection.ts",
2631
+ "../src/connections/ledgerconnection.ts",
2632
+ "../src/connections/nnsconnection.ts",
2633
+ "../src/ic/index.ts",
2634
+ "../src/utils/index.ts"
2635
+ ],
2636
+ "../src/utils/converter.ts": [
2637
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2638
+ "../src/utils/common/types.ts"
2639
+ ],
2640
+ "../src/utils/index.ts": [
2641
+ "../src/utils/common/types.ts",
2642
+ "../src/utils/constants.ts",
2643
+ "../src/utils/converter.ts"
2644
+ ],
2645
+ "../../principal/lib/cjs/index.d.ts": [
2646
+ "../node_modules/@types/node/util.d.ts"
2647
+ ]
2648
+ },
2649
+ "semanticDiagnosticsPerFile": [
2650
+ "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
2651
+ "../../../node_modules/@babel/types/lib/index.d.ts",
2652
+ "../../../node_modules/@types/babel__core/index.d.ts",
2653
+ "../../../node_modules/@types/babel__generator/index.d.ts",
2654
+ "../../../node_modules/@types/babel__template/index.d.ts",
2655
+ "../../../node_modules/@types/babel__traverse/ts4.1/index.d.ts",
2656
+ "../../../node_modules/@types/graceful-fs/index.d.ts",
2657
+ "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
2658
+ "../../../node_modules/@types/istanbul-lib-report/index.d.ts",
2659
+ "../../../node_modules/@types/istanbul-reports/index.d.ts",
2660
+ "../../../node_modules/@types/jest/index.d.ts",
2661
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts",
2662
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts",
2663
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts",
2664
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts",
2665
+ "../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts",
2666
+ "../../../node_modules/@types/json-schema/index.d.ts",
2667
+ "../../../node_modules/@types/ledgerhq__hw-transport/index.d.ts",
2668
+ "../../../node_modules/@types/minimatch/index.d.ts",
2669
+ "../../../node_modules/@types/minimist/index.d.ts",
2670
+ "../../../node_modules/@types/normalize-package-data/index.d.ts",
2671
+ "../../../node_modules/@types/parse-json/index.d.ts",
2672
+ "../../../node_modules/@types/prettier/index.d.ts",
2673
+ "../../../node_modules/@types/stack-utils/index.d.ts",
2674
+ "../../../node_modules/@types/yargs-parser/index.d.ts",
2675
+ "../../../node_modules/@types/yargs/index.d.ts",
2676
+ "../../../node_modules/pretty-format/build/index.d.ts",
2677
+ "../../../node_modules/pretty-format/build/types.d.ts",
2678
+ "../../../node_modules/typescript/lib/lib.dom.d.ts",
2679
+ "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
2680
+ "../../../node_modules/typescript/lib/lib.es2015.core.d.ts",
2681
+ "../../../node_modules/typescript/lib/lib.es2015.d.ts",
2682
+ "../../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
2683
+ "../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
2684
+ "../../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
2685
+ "../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
2686
+ "../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
2687
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
2688
+ "../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
2689
+ "../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
2690
+ "../../../node_modules/typescript/lib/lib.es2016.d.ts",
2691
+ "../../../node_modules/typescript/lib/lib.es2017.d.ts",
2692
+ "../../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
2693
+ "../../../node_modules/typescript/lib/lib.es2017.object.d.ts",
2694
+ "../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
2695
+ "../../../node_modules/typescript/lib/lib.es2017.string.d.ts",
2696
+ "../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
2697
+ "../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
2698
+ "../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
2699
+ "../../../node_modules/typescript/lib/lib.es2018.d.ts",
2700
+ "../../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
2701
+ "../../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
2702
+ "../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
2703
+ "../../../node_modules/typescript/lib/lib.es2019.array.d.ts",
2704
+ "../../../node_modules/typescript/lib/lib.es2019.d.ts",
2705
+ "../../../node_modules/typescript/lib/lib.es2019.object.d.ts",
2706
+ "../../../node_modules/typescript/lib/lib.es2019.string.d.ts",
2707
+ "../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts",
2708
+ "../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
2709
+ "../../../node_modules/typescript/lib/lib.es2020.d.ts",
2710
+ "../../../node_modules/typescript/lib/lib.es2020.promise.d.ts",
2711
+ "../../../node_modules/typescript/lib/lib.es2020.string.d.ts",
2712
+ "../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts",
2713
+ "../../../node_modules/typescript/lib/lib.es5.d.ts",
2714
+ "../../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
2715
+ "../node_modules/@dfinity/agent/lib/cjs/actor.d.ts",
2716
+ "../node_modules/@dfinity/agent/lib/cjs/agent/api.d.ts",
2717
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/index.d.ts",
2718
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/transforms.d.ts",
2719
+ "../node_modules/@dfinity/agent/lib/cjs/agent/http/types.d.ts",
2720
+ "../node_modules/@dfinity/agent/lib/cjs/agent/index.d.ts",
2721
+ "../node_modules/@dfinity/agent/lib/cjs/agent/proxy.d.ts",
2722
+ "../node_modules/@dfinity/agent/lib/cjs/auth.d.ts",
2723
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/asset.d.ts",
2724
+ "../node_modules/@dfinity/agent/lib/cjs/canisters/management.d.ts",
2725
+ "../node_modules/@dfinity/agent/lib/cjs/cbor.d.ts",
2726
+ "../node_modules/@dfinity/agent/lib/cjs/certificate.d.ts",
2727
+ "../node_modules/@dfinity/agent/lib/cjs/errors.d.ts",
2728
+ "../node_modules/@dfinity/agent/lib/cjs/index.d.ts",
2729
+ "../node_modules/@dfinity/agent/lib/cjs/polling/index.d.ts",
2730
+ "../node_modules/@dfinity/agent/lib/cjs/polling/strategy.d.ts",
2731
+ "../node_modules/@dfinity/agent/lib/cjs/request_id.d.ts",
2732
+ "../node_modules/@dfinity/agent/lib/cjs/utils/bls.d.ts",
2733
+ "../node_modules/@dfinity/authentication/lib/cjs/index.d.ts",
2734
+ "../node_modules/@dfinity/candid/lib/cjs/candid-core.d.ts",
2735
+ "../node_modules/@dfinity/candid/lib/cjs/candid-ui.d.ts",
2736
+ "../node_modules/@dfinity/candid/lib/cjs/idl.d.ts",
2737
+ "../node_modules/@dfinity/candid/lib/cjs/index.d.ts",
2738
+ "../node_modules/@dfinity/candid/lib/cjs/types.d.ts",
2739
+ "../node_modules/@dfinity/candid/lib/cjs/utils/buffer.d.ts",
2740
+ "../node_modules/@dfinity/candid/lib/cjs/utils/hash.d.ts",
2741
+ "../node_modules/@dfinity/candid/lib/cjs/utils/leb128.d.ts",
2742
+ "../node_modules/@dfinity/identity/lib/cjs/identity/delegation.d.ts",
2743
+ "../node_modules/@dfinity/identity/lib/cjs/identity/der.d.ts",
2744
+ "../node_modules/@dfinity/identity/lib/cjs/identity/ed25519.d.ts",
2745
+ "../node_modules/@dfinity/identity/lib/cjs/identity/secp256k1.d.ts",
2746
+ "../node_modules/@dfinity/identity/lib/cjs/identity/webauthn.d.ts",
2747
+ "../node_modules/@dfinity/identity/lib/cjs/index.d.ts",
2748
+ "../node_modules/@dfinity/principal/lib/cjs/index.d.ts",
2749
+ "../node_modules/@types/crc/index.d.ts",
2750
+ "../node_modules/@types/node/assert.d.ts",
2751
+ "../node_modules/@types/node/assert/strict.d.ts",
2752
+ "../node_modules/@types/node/async_hooks.d.ts",
2753
+ "../node_modules/@types/node/buffer.d.ts",
2754
+ "../node_modules/@types/node/child_process.d.ts",
2755
+ "../node_modules/@types/node/cluster.d.ts",
2756
+ "../node_modules/@types/node/console.d.ts",
2757
+ "../node_modules/@types/node/constants.d.ts",
2758
+ "../node_modules/@types/node/crypto.d.ts",
2759
+ "../node_modules/@types/node/dgram.d.ts",
2760
+ "../node_modules/@types/node/diagnostics_channel.d.ts",
2761
+ "../node_modules/@types/node/dns.d.ts",
2762
+ "../node_modules/@types/node/dns/promises.d.ts",
2763
+ "../node_modules/@types/node/domain.d.ts",
2764
+ "../node_modules/@types/node/events.d.ts",
2765
+ "../node_modules/@types/node/fs.d.ts",
2766
+ "../node_modules/@types/node/fs/promises.d.ts",
2767
+ "../node_modules/@types/node/globals.d.ts",
2768
+ "../node_modules/@types/node/globals.global.d.ts",
2769
+ "../node_modules/@types/node/http.d.ts",
2770
+ "../node_modules/@types/node/http2.d.ts",
2771
+ "../node_modules/@types/node/https.d.ts",
2772
+ "../node_modules/@types/node/index.d.ts",
2773
+ "../node_modules/@types/node/inspector.d.ts",
2774
+ "../node_modules/@types/node/module.d.ts",
2775
+ "../node_modules/@types/node/net.d.ts",
2776
+ "../node_modules/@types/node/os.d.ts",
2777
+ "../node_modules/@types/node/path.d.ts",
2778
+ "../node_modules/@types/node/perf_hooks.d.ts",
2779
+ "../node_modules/@types/node/process.d.ts",
2780
+ "../node_modules/@types/node/punycode.d.ts",
2781
+ "../node_modules/@types/node/querystring.d.ts",
2782
+ "../node_modules/@types/node/readline.d.ts",
2783
+ "../node_modules/@types/node/repl.d.ts",
2784
+ "../node_modules/@types/node/stream.d.ts",
2785
+ "../node_modules/@types/node/stream/consumers.d.ts",
2786
+ "../node_modules/@types/node/stream/promises.d.ts",
2787
+ "../node_modules/@types/node/stream/web.d.ts",
2788
+ "../node_modules/@types/node/string_decoder.d.ts",
2789
+ "../node_modules/@types/node/timers.d.ts",
2790
+ "../node_modules/@types/node/timers/promises.d.ts",
2791
+ "../node_modules/@types/node/tls.d.ts",
2792
+ "../node_modules/@types/node/trace_events.d.ts",
2793
+ "../node_modules/@types/node/tty.d.ts",
2794
+ "../node_modules/@types/node/url.d.ts",
2795
+ "../node_modules/@types/node/util.d.ts",
2796
+ "../node_modules/@types/node/v8.d.ts",
2797
+ "../node_modules/@types/node/vm.d.ts",
2798
+ "../node_modules/@types/node/wasi.d.ts",
2799
+ "../node_modules/@types/node/worker_threads.d.ts",
2800
+ "../node_modules/@types/node/zlib.d.ts",
2801
+ "../node_modules/buffer/index.d.ts",
2802
+ "../node_modules/js-sha256/index.d.ts",
2803
+ "../node_modules/simple-cbor/src/index.d.ts",
2804
+ "../node_modules/simple-cbor/src/serializer.d.ts",
2805
+ "../node_modules/simple-cbor/src/value.d.ts",
2806
+ "../src/canisters/internet_identity_idl.js",
2807
+ "../src/canisters/internet_identity_types.d.ts",
2808
+ "../src/canisters/ledger.d.ts",
2809
+ "../src/canisters/ledger.idl.js",
2810
+ "../src/canisters/me.d.ts",
2811
+ "../src/canisters/me.idl.js",
2812
+ "../src/canisters/nns-dapp-cert.idl.js",
2813
+ "../src/canisters/nns-dapp.d.ts",
2814
+ "../src/canisters/nns-dapp.idl.js",
2815
+ "../src/connections/baseconnection.ts",
2816
+ "../src/connections/ledgerconnection.ts",
2817
+ "../src/connections/nnsconnection.ts",
2818
+ "../src/ic/icauthclient.ts",
2819
+ "../src/ic/icconnect.ts",
2820
+ "../src/ic/icstorage.ts",
2821
+ "../src/ic/icwindow.ts",
2822
+ "../src/ic/index.ts",
2823
+ "../src/ic/types.ts",
2824
+ "../src/index.ts",
2825
+ "../src/utils/common/types.ts",
2826
+ "../src/utils/constants.ts",
2827
+ "../src/utils/converter.ts",
2828
+ "../src/utils/index.ts",
2829
+ "../../principal/lib/cjs/index.d.ts"
2830
+ ]
2831
+ },
2832
+ "version": "3.9.9"
2833
+ }