auto-commit for 3a02b3dd-cebb-4882-bfc5-dbb637e71a6d

This commit is contained in:
emergent-agent-e1
2025-11-08 10:27:44 +00:00
parent 0a8c0df2e1
commit 7ae3a6d0ec
1906 changed files with 1906 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n module.exports = {\n uri: \"/assets/?unstable_path=.%2Fnode_modules%2F%40react-navigation%2Fnative-stack%2Fnode_modules%2F%40react-navigation%2Felements%2Flib%2Fmodule%2Fassets/close-icon.png\",\n width: 96,\n height: 96\n };\n});","lineCount":7,"map":[[7,3]],"functionMap":null,"hasCjsExports":true},"type":"js/module/asset"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n Object.defineProperty(exports, \"VALUE_BYTES_LIMIT\", {\n enumerable: true,\n get: function () {\n return VALUE_BYTES_LIMIT;\n }\n });\n exports.byteCountOverLimit = byteCountOverLimit;\n const VALUE_BYTES_LIMIT = 2048;\n // note this probably could be JS-engine dependent\n // inspired by https://stackoverflow.com/a/39488643\n function byteCountOverLimit(value, limit) {\n let bytes = 0;\n for (let i = 0; i < value.length; i++) {\n const codePoint = value.charCodeAt(i);\n // Lone surrogates cannot be passed to encodeURI\n if (codePoint >= 0xd800 && codePoint < 0xe000) {\n if (codePoint < 0xdc00 && i + 1 < value.length) {\n const next = value.charCodeAt(i + 1);\n if (next >= 0xdc00 && next < 0xe000) {\n bytes += 4;\n if (bytes > limit) {\n return true;\n }\n i++;\n continue;\n }\n }\n }\n bytes += codePoint < 0x80 ? 1 : codePoint < 0x800 ? 2 : 3;\n if (bytes > limit) {\n return true;\n }\n }\n return bytes > limit;\n }\n});","lineCount":42,"map":[[7,2,1,0,"Object"],[7,8,1,0],[7,9,1,0,"defineProperty"],[7,23,1,0],[7,24,1,0,"exports"],[7,31,1,0],[8,4,1,0,"enumerable"],[8,14,1,0],[9,4,1,0,"get"],[9,7,1,0],[9,18,1,0,"get"],[9,19,1,0],[10,6,1,0],[10,13,1,0,"VALUE_BYTES_LIMIT"],[10,30,1,0],[11,4,1,0],[12,2,1,0],[13,2,4,0,"exports"],[13,9,4,0],[13,10,4,0,"byteCountOverLimit"],[13,28,4,0],[13,31,4,0,"byteCountOverLimit"],[13,49,4,0],[14,2,1,7],[14,8,1,13,"VALUE_BYTES_LIMIT"],[14,25,1,30],[14,28,1,33],[14,32,1,37],[15,2,2,0],[16,2,3,0],[17,2,4,7],[17,11,4,16,"byteCountOverLimit"],[17,29,4,34,"byteCountOverLimit"],[17,30,4,35,"value"],[17,35,4,40],[17,37,4,42,"limit"],[17,42,4,47],[17,44,4,49],[18,4,5,4],[18,8,5,8,"bytes"],[18,13,5,13],[18,16,5,16],[18,17,5,17],[19,4,6,4],[19,9,6,9],[19,13,6,13,"i"],[19,14,6,14],[19,17,6,17],[19,18,6,18],[19,20,6,20,"i"],[19,21,6,21],[19,24,6,24,"value"],[19,29,6,29],[19,30,6,30,"length"],[19,36,6,36],[19,38,6,38,"i"],[19,39,6,39],[19,41,6,41],[19,43,6,43],[20,6,7,8],[20,12,7,14,"codePoint"],[20,21,7,23],[20,24,7,26,"value"],[20,29,7,31],[20,30,7,32,"charCodeAt"],[20,40,7,42],[20,41,7,43,"i"],[20,42,7,44],[20,43,7,45],[21,6,8,8],[22,6,9,8],[22,10,9,12,"codePoint"],[22,19,9,21],[22,23,9,25],[22,29,9,31],[22,33,9,35,"codePoint"],[22,42,9,44],[22,45,9,47],[22,51,9,53],[22,53,9,55],[23,8,10,12],[23,12,10,16,"codePoint"],[23,21,10,25],[23,24,10,28],[23,30,10,34],[23,34,10,38,"i"],[23,35,10,39],[23,38,10,42],[23,39,10,43],[23,42,10,46,"value"],[23,47,10,51],[23,48,10,52,"length"],[23,54,10,58],[23,56,10,60],[24,10,11,16],[24,16,11,22,"next"],[24,20,11,26],[24,23,11,29,"value"],[24,28,11,34],[24,29,11,35,"charCodeAt"],[24,39,11,45],[24,40,11,46,"i"],[24,41,11,47],[24,44,11,50],[24,45,11,51],[24,46,11,52],[25,10,12,16],[25,14,12,20,"next"],[25,18,12,24],[25,22,12,28],[25,28,12,34],[25,32,12,38,"next"],[25,36,12,42],[25,39,12,45],[25,45,12,51],[25,47,12,53],[26,12,13,20,"bytes"],[26,17,13,25],[26,21,13,29],[26,22,13,30],[27,12,14,20],[27,16,14,24,"bytes"],[27,21,14,29],[27,24,14,32,"limit"],[27,29,14,37],[27,31,14,39],[28,14,15,24],[28,21,15,31],[28,25,15,35],[29,12,16,20],[30,12,17,20,"i"],[30,13,17,21],[30,15,17,23],[31,12,18,20],[32,10,19,16],[33,8,20,12],[34,6,21,8],[35,6,22,8,"bytes"],[35,11,22,13],[35,15,22,17,"codePoint"],[35,24,22,26],[35,27,22,29],[35,31,22,33],[35,34,22,36],[35,35,22,37],[35,38,22,40,"codePoint"],[35,47,22,49],[35,50,22,52],[35,55,22,57],[35,58,22,60],[35,59,22,61],[35,62,22,64],[35,63,22,65],[36,6,23,8],[36,10,23,12,"bytes"],[36,15,23,17],[36,18,23,20,"limit"],[36,23,23,25],[36,25,23,27],[37,8,24,12],[37,15,24,19],[37,19,24,23],[38,6,25,8],[39,4,26,4],[40,4,27,4],[40,11,27,11,"bytes"],[40,16,27,16],[40,19,27,19,"limit"],[40,24,27,24],[41,2,28,0],[42,0,28,1],[42,3]],"functionMap":{"names":["<global>","byteCountOverLimit"],"mappings":"AAA;OCG;CDwB"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"./rpc.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":17,"index":94},"end":{"line":3,"column":36,"index":113}}],"key":"HM5SWdtr7pQCI/dpW5F7o9eBHJM=","exportNames":["*"],"imports":1}},{"name":"./runtime.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":21,"index":136},"end":{"line":4,"column":44,"index":159}}],"key":"1Bt1nJiKs8NxyJ2wvuA5w0tRpWE=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n const rpc_js_1 = require(_dependencyMap[0], \"./rpc.js\");\n const runtime_js_1 = require(_dependencyMap[1], \"./runtime.js\");\n exports.default = {\n rpc: rpc_js_1.rpc,\n runtime: runtime_js_1.runtime,\n types: {\n MmrBatchProof: {\n leafIndices: 'Vec<MmrLeafIndex>',\n leafCount: 'MmrNodeIndex',\n items: 'Vec<Hash>'\n },\n MmrEncodableOpaqueLeaf: 'Bytes',\n MmrError: {\n _enum: ['InvalidNumericOp', 'Push', 'GetRoot', 'Commit', 'GenerateProof', 'Verify', 'LeafNotFound', ' PalletNotIncluded', 'InvalidLeafIndex', 'InvalidBestKnownBlock']\n },\n MmrHash: 'Hash',\n MmrLeafBatchProof: {\n blockHash: 'BlockHash',\n leaves: 'Bytes',\n proof: 'Bytes'\n },\n MmrLeafIndex: 'u64',\n MmrLeafProof: {\n blockHash: 'BlockHash',\n leaf: 'Bytes',\n proof: 'Bytes'\n },\n MmrNodeIndex: 'u64',\n MmrProof: {\n leafIndex: 'MmrLeafIndex',\n leafCount: 'MmrNodeIndex',\n items: 'Vec<Hash>'\n }\n }\n };\n});","lineCount":42,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0],[7,8,3,6,"rpc_js_1"],[7,16,3,14],[7,19,3,17,"require"],[7,26,3,24],[7,27,3,24,"_dependencyMap"],[7,41,3,24],[7,56,3,35],[7,57,3,36],[8,2,4,0],[8,8,4,6,"runtime_js_1"],[8,20,4,18],[8,23,4,21,"require"],[8,30,4,28],[8,31,4,28,"_dependencyMap"],[8,45,4,28],[8,64,4,43],[8,65,4,44],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"default"],[9,17,5,15],[9,20,5,18],[10,4,6,4,"rpc"],[10,7,6,7],[10,9,6,9,"rpc_js_1"],[10,17,6,17],[10,18,6,18,"rpc"],[10,21,6,21],[11,4,7,4,"runtime"],[11,11,7,11],[11,13,7,13,"runtime_js_1"],[11,25,7,25],[11,26,7,26,"runtime"],[11,33,7,33],[12,4,8,4,"types"],[12,9,8,9],[12,11,8,11],[13,6,9,8,"MmrBatchProof"],[13,19,9,21],[13,21,9,23],[14,8,10,12,"leafIndices"],[14,19,10,23],[14,21,10,25],[14,40,10,44],[15,8,11,12,"leafCount"],[15,17,11,21],[15,19,11,23],[15,33,11,37],[16,8,12,12,"items"],[16,13,12,17],[16,15,12,19],[17,6,13,8],[17,7,13,9],[18,6,14,8,"MmrEncodableOpaqueLeaf"],[18,28,14,30],[18,30,14,32],[18,37,14,39],[19,6,15,8,"MmrError"],[19,14,15,16],[19,16,15,18],[20,8,16,12,"_enum"],[20,13,16,17],[20,15,16,19],[20,16,16,20],[20,34,16,38],[20,36,16,40],[20,42,16,46],[20,44,16,48],[20,53,16,57],[20,55,16,59],[20,63,16,67],[20,65,16,69],[20,80,16,84],[20,82,16,86],[20,90,16,94],[20,92,16,96],[20,106,16,110],[20,108,16,112],[20,128,16,132],[20,130,16,134],[20,148,16,152],[20,150,16,154],[20,173,16,177],[21,6,17,8],[21,7,17,9],[22,6,18,8,"MmrHash"],[22,13,18,15],[22,15,18,17],[22,21,18,23],[23,6,19,8,"MmrLeafBatchProof"],[23,23,19,25],[23,25,19,27],[24,8,20,12,"blockHash"],[24,17,20,21],[24,19,20,23],[24,30,20,34],[25,8,21,12,"leaves"],[25,14,21,18],[25,16,21,20],[25,23,21,27],[26,8,22,12,"proof"],[26,13,22,17],[26,15,22,19],[27,6,23,8],[27,7,23,9],[28,6,24,8,"MmrLeafIndex"],[28,18,24,20],[28,20,24,22],[28,25,24,27],[29,6,25,8,"MmrLeafProof"],[29,18,25,20],[29,20,25,22],[30,8,26,12,"blockHash"],[30,17,26,21],[30,19,26,23],[30,30,26,34],[31,8,27,12,"leaf"],[31,12,27,16],[31,14,27,18],[31,21,27,25],[32,8,28,12,"proof"],[32,13,28,17],[32,15,28,19],[33,6,29,8],[33,7,29,9],[34,6,30,8,"MmrNodeIndex"],[34,18,30,20],[34,20,30,22],[34,25,30,27],[35,6,31,8,"MmrProof"],[35,14,31,16],[35,16,31,18],[36,8,32,12,"leafIndex"],[36,17,32,21],[36,19,32,23],[36,33,32,37],[37,8,33,12,"leafCount"],[37,17,33,21],[37,19,33,23],[37,33,33,37],[38,8,34,12,"items"],[38,13,34,17],[38,15,34,19],[39,6,35,8],[40,4,36,4],[41,2,37,0],[41,3,37,1],[42,0,37,2],[42,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"./Map.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":17,"index":120},"end":{"line":4,"column":36,"index":139}}],"key":"kPNBKU9znZuENLxareGSbL0eIoA=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.HashMap = void 0;\n const Map_js_1 = require(_dependencyMap[0], \"./Map.js\");\n class HashMap extends Map_js_1.CodecMap {\n static with(keyType, valType) {\n return class extends HashMap {\n constructor(registry, value) {\n super(registry, keyType, valType, value);\n }\n };\n }\n }\n exports.HashMap = HashMap;\n});","lineCount":19,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"HashMap"],[7,17,3,15],[7,20,3,18],[7,25,3,23],[7,26,3,24],[8,2,4,0],[8,8,4,6,"Map_js_1"],[8,16,4,14],[8,19,4,17,"require"],[8,26,4,24],[8,27,4,24,"_dependencyMap"],[8,41,4,24],[8,56,4,35],[8,57,4,36],[9,2,5,0],[9,8,5,6,"HashMap"],[9,15,5,13],[9,24,5,22,"Map_js_1"],[9,32,5,30],[9,33,5,31,"CodecMap"],[9,41,5,39],[9,42,5,40],[10,4,6,4],[10,11,6,11,"with"],[10,15,6,15,"with"],[10,16,6,16,"keyType"],[10,23,6,23],[10,25,6,25,"valType"],[10,32,6,32],[10,34,6,34],[11,6,7,8],[11,13,7,15],[11,27,7,29,"HashMap"],[11,34,7,36],[11,35,7,37],[12,8,8,12,"constructor"],[12,19,8,23,"constructor"],[12,20,8,24,"registry"],[12,28,8,32],[12,30,8,34,"value"],[12,35,8,39],[12,37,8,41],[13,10,9,16],[13,15,9,21],[13,16,9,22,"registry"],[13,24,9,30],[13,26,9,32,"keyType"],[13,33,9,39],[13,35,9,41,"valType"],[13,42,9,48],[13,44,9,50,"value"],[13,49,9,55],[13,50,9,56],[14,8,10,12],[15,6,11,8],[15,7,11,9],[16,4,12,4],[17,2,13,0],[18,2,14,0,"exports"],[18,9,14,7],[18,10,14,8,"HashMap"],[18,17,14,15],[18,20,14,18,"HashMap"],[18,27,14,25],[19,0,14,26],[19,3]],"functionMap":{"names":["<global>","HashMap","_with","<anonymous>","constructor"],"mappings":"AAA;ACI;ICC;eCC;YCC;aDE;SDC;KDC;CDC"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long