auto-commit for f8470fe1-4ce5-4123-a3e6-0b710ab3390a

This commit is contained in:
emergent-agent-e1
2025-11-08 07:19:17 +00:00
parent 92245c9124
commit dd2549e54a
1911 changed files with 1911 additions and 0 deletions
@@ -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 exports.default = {\n rpc: {},\n types: {\n ActiveGilt: {\n proportion: 'Perquintill',\n amount: 'Balance',\n who: 'AccountId',\n expiry: 'BlockNumber'\n },\n ActiveGiltsTotal: {\n frozen: 'Balance',\n proportion: 'Perquintill',\n index: 'ActiveIndex',\n target: 'Perquintill'\n },\n ActiveIndex: 'u32',\n GiltBid: {\n amount: 'Balance',\n who: 'AccountId'\n }\n }\n };\n});","lineCount":29,"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,"default"],[7,17,3,15],[7,20,3,18],[8,4,4,4,"rpc"],[8,7,4,7],[8,9,4,9],[8,10,4,10],[8,11,4,11],[9,4,5,4,"types"],[9,9,5,9],[9,11,5,11],[10,6,6,8,"ActiveGilt"],[10,16,6,18],[10,18,6,20],[11,8,7,12,"proportion"],[11,18,7,22],[11,20,7,24],[11,33,7,37],[12,8,8,12,"amount"],[12,14,8,18],[12,16,8,20],[12,25,8,29],[13,8,9,12,"who"],[13,11,9,15],[13,13,9,17],[13,24,9,28],[14,8,10,12,"expiry"],[14,14,10,18],[14,16,10,20],[15,6,11,8],[15,7,11,9],[16,6,12,8,"ActiveGiltsTotal"],[16,22,12,24],[16,24,12,26],[17,8,13,12,"frozen"],[17,14,13,18],[17,16,13,20],[17,25,13,29],[18,8,14,12,"proportion"],[18,18,14,22],[18,20,14,24],[18,33,14,37],[19,8,15,12,"index"],[19,13,15,17],[19,15,15,19],[19,28,15,32],[20,8,16,12,"target"],[20,14,16,18],[20,16,16,20],[21,6,17,8],[21,7,17,9],[22,6,18,8,"ActiveIndex"],[22,17,18,19],[22,19,18,21],[22,24,18,26],[23,6,19,8,"GiltBid"],[23,13,19,15],[23,15,19,17],[24,8,20,12,"amount"],[24,14,20,18],[24,16,20,20],[24,25,20,29],[25,8,21,12,"who"],[25,11,21,15],[25,13,21,17],[26,6,22,8],[27,4,23,4],[28,2,24,0],[28,3,24,1],[29,0,24,2],[29,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0,"index":210},"end":{"line":11,"column":44,"index":254}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","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 Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return useRefEffect;\n }\n });\n var _react = require(_dependencyMap[0], \"react\");\n /**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n\n /**\n * Constructs a callback ref that provides similar semantics as `useEffect`. The\n * supplied `effect` callback will be called with non-null component instances.\n * The `effect` callback can also optionally return a cleanup function.\n *\n * When a component is updated or unmounted, the cleanup function is called. The\n * `effect` callback will then be called again, if applicable.\n *\n * When a new `effect` callback is supplied, the previously returned cleanup\n * function will be called before the new `effect` callback is called with the\n * same instance.\n *\n * WARNING: The `effect` callback should be stable (e.g. using `useCallback`).\n */\n function useRefEffect(effect) {\n var cleanupRef = (0, _react.useRef)(undefined);\n return (0, _react.useCallback)(instance => {\n if (cleanupRef.current) {\n cleanupRef.current();\n cleanupRef.current = undefined;\n }\n if (instance != null) {\n cleanupRef.current = effect(instance);\n }\n }, [effect]);\n }\n});","lineCount":50,"map":[[7,2,26,15,"Object"],[7,8,26,15],[7,9,26,15,"defineProperty"],[7,23,26,15],[7,24,26,15,"exports"],[7,31,26,15],[8,4,26,15,"enumerable"],[8,14,26,15],[9,4,26,15,"get"],[9,7,26,15],[9,18,26,15,"get"],[9,19,26,15],[10,6,26,15],[10,13,26,15,"useRefEffect"],[10,25,26,15],[11,4,26,15],[12,2,26,15],[13,2,11,0],[13,6,11,0,"_react"],[13,12,11,0],[13,15,11,0,"require"],[13,22,11,0],[13,23,11,0,"_dependencyMap"],[13,37,11,0],[14,2,1,0],[15,0,2,0],[16,0,3,0],[17,0,4,0],[18,0,5,0],[19,0,6,0],[20,0,7,0],[21,0,8,0],[22,0,9,0],[24,2,12,0],[25,0,13,0],[26,0,14,0],[27,0,15,0],[28,0,16,0],[29,0,17,0],[30,0,18,0],[31,0,19,0],[32,0,20,0],[33,0,21,0],[34,0,22,0],[35,0,23,0],[36,0,24,0],[37,0,25,0],[38,2,26,15],[38,11,26,24,"useRefEffect"],[38,23,26,36,"useRefEffect"],[38,24,26,37,"effect"],[38,30,26,43],[38,32,26,45],[39,4,27,2],[39,8,27,6,"cleanupRef"],[39,18,27,16],[39,21,27,19],[39,25,27,19,"useRef"],[39,31,27,25],[39,32,27,25,"useRef"],[39,38,27,25],[39,40,27,26,"undefined"],[39,49,27,35],[39,50,27,36],[40,4,28,2],[40,11,28,9],[40,15,28,9,"useCallback"],[40,21,28,20],[40,22,28,20,"useCallback"],[40,33,28,20],[40,35,28,21,"instance"],[40,43,28,29],[40,47,28,33],[41,6,29,4],[41,10,29,8,"cleanupRef"],[41,20,29,18],[41,21,29,19,"current"],[41,28,29,26],[41,30,29,28],[42,8,30,6,"cleanupRef"],[42,18,30,16],[42,19,30,17,"current"],[42,26,30,24],[42,27,30,25],[42,28,30,26],[43,8,31,6,"cleanupRef"],[43,18,31,16],[43,19,31,17,"current"],[43,26,31,24],[43,29,31,27,"undefined"],[43,38,31,36],[44,6,32,4],[45,6,33,4],[45,10,33,8,"instance"],[45,18,33,16],[45,22,33,20],[45,26,33,24],[45,28,33,26],[46,8,34,6,"cleanupRef"],[46,18,34,16],[46,19,34,17,"current"],[46,26,34,24],[46,29,34,27,"effect"],[46,35,34,33],[46,36,34,34,"instance"],[46,44,34,42],[46,45,34,43],[47,6,35,4],[48,4,36,2],[48,5,36,3],[48,7,36,5],[48,8,36,6,"effect"],[48,14,36,12],[48,15,36,13],[48,16,36,14],[49,2,37,0],[50,0,37,1],[50,3]],"functionMap":{"names":["<global>","useRefEffect","<anonymous>"],"mappings":"AAA;eCyB;qBCE;GDQ"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./runtime.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":21,"index":98},"end":{"line":3,"column":44,"index":121}}],"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 runtime_js_1 = require(_dependencyMap[0], \"./runtime.js\");\n exports.default = {\n rpc: {},\n runtime: runtime_js_1.runtime,\n types: {}\n };\n});","lineCount":13,"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,"runtime_js_1"],[7,20,3,18],[7,23,3,21,"require"],[7,30,3,28],[7,31,3,28,"_dependencyMap"],[7,45,3,28],[7,64,3,43],[7,65,3,44],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"default"],[8,17,4,15],[8,20,4,18],[9,4,5,4,"rpc"],[9,7,5,7],[9,9,5,9],[9,10,5,10],[9,11,5,11],[10,4,6,4,"runtime"],[10,11,6,11],[10,13,6,13,"runtime_js_1"],[10,25,6,25],[10,26,6,26,"runtime"],[10,33,6,33],[11,4,7,4,"types"],[11,9,7,9],[11,11,7,11],[11,12,7,12],[12,2,8,0],[12,3,8,1],[13,0,8,2],[13,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"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\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n exports.checkDuplicateRouteNames = checkDuplicateRouteNames;\n function checkDuplicateRouteNames(state) {\n const duplicates = [];\n const getRouteNames = (location, state) => {\n state.routes.forEach(route => {\n const currentLocation = location ? `${location} > ${route.name}` : route.name;\n route.state?.routeNames?.forEach(routeName => {\n if (routeName === route.name) {\n duplicates.push([currentLocation, `${currentLocation} > ${route.name}`]);\n }\n });\n if (route.state) {\n getRouteNames(currentLocation, route.state);\n }\n });\n };\n getRouteNames('', state);\n return duplicates;\n }\n});","lineCount":26,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,3,0,"exports"],[7,9,3,0],[7,10,3,0,"checkDuplicateRouteNames"],[7,34,3,0],[7,37,3,0,"checkDuplicateRouteNames"],[7,61,3,0],[8,2,3,7],[8,11,3,16,"checkDuplicateRouteNames"],[8,35,3,40,"checkDuplicateRouteNames"],[8,36,3,41,"state"],[8,41,3,46],[8,43,3,48],[9,4,4,2],[9,10,4,8,"duplicates"],[9,20,4,18],[9,23,4,21],[9,25,4,23],[10,4,5,2],[10,10,5,8,"getRouteNames"],[10,23,5,21],[10,26,5,24,"getRouteNames"],[10,27,5,25,"location"],[10,35,5,33],[10,37,5,35,"state"],[10,42,5,40],[10,47,5,45],[11,6,6,4,"state"],[11,11,6,9],[11,12,6,10,"routes"],[11,18,6,16],[11,19,6,17,"forEach"],[11,26,6,24],[11,27,6,25,"route"],[11,32,6,30],[11,36,6,34],[12,8,7,6],[12,14,7,12,"currentLocation"],[12,29,7,27],[12,32,7,30,"location"],[12,40,7,38],[12,43,7,41],[12,46,7,44,"location"],[12,54,7,52],[12,60,7,58,"route"],[12,65,7,63],[12,66,7,64,"name"],[12,70,7,68],[12,72,7,70],[12,75,7,73,"route"],[12,80,7,78],[12,81,7,79,"name"],[12,85,7,83],[13,8,8,6,"route"],[13,13,8,11],[13,14,8,12,"state"],[13,19,8,17],[13,21,8,19,"routeNames"],[13,31,8,29],[13,33,8,31,"forEach"],[13,40,8,38],[13,41,8,39,"routeName"],[13,50,8,48],[13,54,8,52],[14,10,9,8],[14,14,9,12,"routeName"],[14,23,9,21],[14,28,9,26,"route"],[14,33,9,31],[14,34,9,32,"name"],[14,38,9,36],[14,40,9,38],[15,12,10,10,"duplicates"],[15,22,10,20],[15,23,10,21,"push"],[15,27,10,25],[15,28,10,26],[15,29,10,27,"currentLocation"],[15,44,10,42],[15,46,10,44],[15,49,10,47,"currentLocation"],[15,64,10,62],[15,70,10,68,"route"],[15,75,10,73],[15,76,10,74,"name"],[15,80,10,78],[15,82,10,80],[15,83,10,81],[15,84,10,82],[16,10,11,8],[17,8,12,6],[17,9,12,7],[17,10,12,8],[18,8,13,6],[18,12,13,10,"route"],[18,17,13,15],[18,18,13,16,"state"],[18,23,13,21],[18,25,13,23],[19,10,14,8,"getRouteNames"],[19,23,14,21],[19,24,14,22,"currentLocation"],[19,39,14,37],[19,41,14,39,"route"],[19,46,14,44],[19,47,14,45,"state"],[19,52,14,50],[19,53,14,51],[20,8,15,6],[21,6,16,4],[21,7,16,5],[21,8,16,6],[22,4,17,2],[22,5,17,3],[23,4,18,2,"getRouteNames"],[23,17,18,15],[23,18,18,16],[23,20,18,18],[23,22,18,20,"state"],[23,27,18,25],[23,28,18,26],[24,4,19,2],[24,11,19,9,"duplicates"],[24,21,19,19],[25,2,20,0],[26,0,20,1],[26,3]],"functionMap":{"names":["<global>","checkDuplicateRouteNames","getRouteNames","state.routes.forEach$argument_0","route.state.routeNames.forEach$argument_0"],"mappings":"AAA;OCE;wBCE;yBCC;uCCE;ODI;KDI;GDC;CDG"},"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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long