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
File diff suppressed because one or more lines are too long
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":"../scheduler/dateTimestampProvider","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":30,"index":135},"end":{"line":4,"column":75,"index":180}}],"key":"BJdHMKdIKT3axsDwe5NOfKocNOU=","exportNames":["*"],"imports":1}},{"name":"./map","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":12,"index":194},"end":{"line":5,"column":28,"index":210}}],"key":"J6iBHebb1utm6IVWiPys08u9mSU=","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.timestamp = void 0;\n var dateTimestampProvider_1 = require(_dependencyMap[0], \"../scheduler/dateTimestampProvider\");\n var map_1 = require(_dependencyMap[1], \"./map\");\n function timestamp(timestampProvider) {\n if (timestampProvider === void 0) {\n timestampProvider = dateTimestampProvider_1.dateTimestampProvider;\n }\n return map_1.map(function (value) {\n return {\n value: value,\n timestamp: timestampProvider.now()\n };\n });\n }\n exports.timestamp = timestamp;\n});","lineCount":22,"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,"timestamp"],[7,19,3,17],[7,22,3,20],[7,27,3,25],[7,28,3,26],[8,2,4,0],[8,6,4,4,"dateTimestampProvider_1"],[8,29,4,27],[8,32,4,30,"require"],[8,39,4,37],[8,40,4,37,"_dependencyMap"],[8,54,4,37],[8,95,4,74],[8,96,4,75],[9,2,5,0],[9,6,5,4,"map_1"],[9,11,5,9],[9,14,5,12,"require"],[9,21,5,19],[9,22,5,19,"_dependencyMap"],[9,36,5,19],[9,48,5,27],[9,49,5,28],[10,2,6,0],[10,11,6,9,"timestamp"],[10,20,6,18,"timestamp"],[10,21,6,19,"timestampProvider"],[10,38,6,36],[10,40,6,38],[11,4,7,4],[11,8,7,8,"timestampProvider"],[11,25,7,25],[11,30,7,30],[11,35,7,35],[11,36,7,36],[11,38,7,38],[12,6,7,40,"timestampProvider"],[12,23,7,57],[12,26,7,60,"dateTimestampProvider_1"],[12,49,7,83],[12,50,7,84,"dateTimestampProvider"],[12,71,7,105],[13,4,7,107],[14,4,8,4],[14,11,8,11,"map_1"],[14,16,8,16],[14,17,8,17,"map"],[14,20,8,20],[14,21,8,21],[14,31,8,31,"value"],[14,36,8,36],[14,38,8,38],[15,6,8,40],[15,13,8,48],[16,8,8,50,"value"],[16,13,8,55],[16,15,8,57,"value"],[16,20,8,62],[17,8,8,64,"timestamp"],[17,17,8,73],[17,19,8,75,"timestampProvider"],[17,36,8,92],[17,37,8,93,"now"],[17,40,8,96],[17,41,8,97],[18,6,8,99],[18,7,8,100],[19,4,8,103],[19,5,8,104],[19,6,8,105],[20,2,9,0],[21,2,10,0,"exports"],[21,9,10,7],[21,10,10,8,"timestamp"],[21,19,10,17],[21,22,10,20,"timestamp"],[21,31,10,29],[22,0,10,30],[22,3]],"functionMap":{"names":["<global>","timestamp","map_1.map$argument_0"],"mappings":"AAA;ACK;qBCE,mFD;CDC"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n});","lineCount":3,"map":[[3,3]],"functionMap":{"names":["<global>","EventEmitter"],"mappings":"AAA;OCwB;CDmE"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./sha2.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":14,"column":18,"index":531},"end":{"line":14,"column":38,"index":551}}],"key":"6/wC6kPCuE9AQ+btrgtq2UN1TnM=","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.sha224 = exports.SHA224 = exports.sha256 = exports.SHA256 = void 0;\n /**\n * SHA2-256 a.k.a. sha256. In JS, it is the fastest hash, even faster than Blake3.\n *\n * To break sha256 using birthday attack, attackers need to try 2^128 hashes.\n * BTC network is doing 2^70 hashes/sec (2^95 hashes/year) as per 2025.\n *\n * Check out [FIPS 180-4](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf).\n * @module\n * @deprecated\n */\n const sha2_ts_1 = require(_dependencyMap[0], \"./sha2.js\");\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.SHA256 = sha2_ts_1.SHA256;\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.sha256 = sha2_ts_1.sha256;\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.SHA224 = sha2_ts_1.SHA224;\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.sha224 = sha2_ts_1.sha224;\n});","lineCount":27,"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,"sha224"],[7,16,3,14],[7,19,3,17,"exports"],[7,26,3,24],[7,27,3,25,"SHA224"],[7,33,3,31],[7,36,3,34,"exports"],[7,43,3,41],[7,44,3,42,"sha256"],[7,50,3,48],[7,53,3,51,"exports"],[7,60,3,58],[7,61,3,59,"SHA256"],[7,67,3,65],[7,70,3,68],[7,75,3,73],[7,76,3,74],[8,2,4,0],[9,0,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,12,0],[17,0,13,0],[18,2,14,0],[18,8,14,6,"sha2_ts_1"],[18,17,14,15],[18,20,14,18,"require"],[18,27,14,25],[18,28,14,25,"_dependencyMap"],[18,42,14,25],[18,58,14,37],[18,59,14,38],[19,2,15,0],[20,2,16,0,"exports"],[20,9,16,7],[20,10,16,8,"SHA256"],[20,16,16,14],[20,19,16,17,"sha2_ts_1"],[20,28,16,26],[20,29,16,27,"SHA256"],[20,35,16,33],[21,2,17,0],[22,2,18,0,"exports"],[22,9,18,7],[22,10,18,8,"sha256"],[22,16,18,14],[22,19,18,17,"sha2_ts_1"],[22,28,18,26],[22,29,18,27,"sha256"],[22,35,18,33],[23,2,19,0],[24,2,20,0,"exports"],[24,9,20,7],[24,10,20,8,"SHA224"],[24,16,20,14],[24,19,20,17,"sha2_ts_1"],[24,28,20,26],[24,29,20,27,"SHA224"],[24,35,20,33],[25,2,21,0],[26,2,22,0,"exports"],[26,9,22,7],[26,10,22,8,"sha224"],[26,16,22,14],[26,19,22,17,"sha2_ts_1"],[26,28,22,26],[26,29,22,27,"sha224"],[26,35,22,33],[27,0,22,34],[27,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"../observable/empty","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":14,"index":114},"end":{"line":4,"column":44,"index":144}}],"key":"fHiplf/yIO5IHuM0YpI9kvQkhvg=","exportNames":["*"],"imports":1}},{"name":"../util/lift","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":13,"index":159},"end":{"line":5,"column":36,"index":182}}],"key":"QCxE0PdfaUm4cT9qPVYaaaoo46A=","exportNames":["*"],"imports":1}},{"name":"./OperatorSubscriber","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":27,"index":211},"end":{"line":6,"column":58,"index":242}}],"key":"5a4JxA+rxI0MIxewBKZddpWmHrQ=","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.take = void 0;\n var empty_1 = require(_dependencyMap[0], \"../observable/empty\");\n var lift_1 = require(_dependencyMap[1], \"../util/lift\");\n var OperatorSubscriber_1 = require(_dependencyMap[2], \"./OperatorSubscriber\");\n function take(count) {\n return count <= 0 ? function () {\n return empty_1.EMPTY;\n } : lift_1.operate(function (source, subscriber) {\n var seen = 0;\n source.subscribe(OperatorSubscriber_1.createOperatorSubscriber(subscriber, function (value) {\n if (++seen <= count) {\n subscriber.next(value);\n if (count <= seen) {\n subscriber.complete();\n }\n }\n }));\n });\n }\n exports.take = take;\n});","lineCount":27,"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,"take"],[7,14,3,12],[7,17,3,15],[7,22,3,20],[7,23,3,21],[8,2,4,0],[8,6,4,4,"empty_1"],[8,13,4,11],[8,16,4,14,"require"],[8,23,4,21],[8,24,4,21,"_dependencyMap"],[8,38,4,21],[8,64,4,43],[8,65,4,44],[9,2,5,0],[9,6,5,4,"lift_1"],[9,12,5,10],[9,15,5,13,"require"],[9,22,5,20],[9,23,5,20,"_dependencyMap"],[9,37,5,20],[9,56,5,35],[9,57,5,36],[10,2,6,0],[10,6,6,4,"OperatorSubscriber_1"],[10,26,6,24],[10,29,6,27,"require"],[10,36,6,34],[10,37,6,34,"_dependencyMap"],[10,51,6,34],[10,78,6,57],[10,79,6,58],[11,2,7,0],[11,11,7,9,"take"],[11,15,7,13,"take"],[11,16,7,14,"count"],[11,21,7,19],[11,23,7,21],[12,4,8,4],[12,11,8,11,"count"],[12,16,8,16],[12,20,8,20],[12,21,8,21],[12,24,10,12],[12,36,10,24],[13,6,10,26],[13,13,10,33,"empty_1"],[13,20,10,40],[13,21,10,41,"EMPTY"],[13,26,10,46],[14,4,10,48],[14,5,10,49],[14,8,11,10,"lift_1"],[14,14,11,16],[14,15,11,17,"operate"],[14,22,11,24],[14,23,11,25],[14,33,11,35,"source"],[14,39,11,41],[14,41,11,43,"subscriber"],[14,51,11,53],[14,53,11,55],[15,6,12,12],[15,10,12,16,"seen"],[15,14,12,20],[15,17,12,23],[15,18,12,24],[16,6,13,12,"source"],[16,12,13,18],[16,13,13,19,"subscribe"],[16,22,13,28],[16,23,13,29,"OperatorSubscriber_1"],[16,43,13,49],[16,44,13,50,"createOperatorSubscriber"],[16,68,13,74],[16,69,13,75,"subscriber"],[16,79,13,85],[16,81,13,87],[16,91,13,97,"value"],[16,96,13,102],[16,98,13,104],[17,8,14,16],[17,12,14,20],[17,14,14,22,"seen"],[17,18,14,26],[17,22,14,30,"count"],[17,27,14,35],[17,29,14,37],[18,10,15,20,"subscriber"],[18,20,15,30],[18,21,15,31,"next"],[18,25,15,35],[18,26,15,36,"value"],[18,31,15,41],[18,32,15,42],[19,10,16,20],[19,14,16,24,"count"],[19,19,16,29],[19,23,16,33,"seen"],[19,27,16,37],[19,29,16,39],[20,12,17,24,"subscriber"],[20,22,17,34],[20,23,17,35,"complete"],[20,31,17,43],[20,32,17,44],[20,33,17,45],[21,10,18,20],[22,8,19,16],[23,6,20,12],[23,7,20,13],[23,8,20,14],[23,9,20,15],[24,4,21,8],[24,5,21,9],[24,6,21,10],[25,2,22,0],[26,2,23,0,"exports"],[26,9,23,7],[26,10,23,8,"take"],[26,14,23,12],[26,17,23,15,"take"],[26,21,23,19],[27,0,23,20],[27,3]],"functionMap":{"names":["<global>","take","<anonymous>","lift_1.operate$argument_0","OperatorSubscriber_1.createOperatorSubscriber$argument_1"],"mappings":"AAA;ACM;YCG,qCD;yBEC;uFCE;aDO;SFC;CDC"},"hasCjsExports":true},"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
File diff suppressed because one or more lines are too long