Skip to content

Instantly share code, notes, and snippets.

@Kilo-Loco
Created March 13, 2024 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kilo-Loco/18aaeb722534154e3ed4ba222ef95688 to your computer and use it in GitHub Desktop.
Save Kilo-Loco/18aaeb722534154e3ed4ba222ef95688 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.19+commit.7dd6d404.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS =
0x000000000000000000636F6e736F6c652e6c6f67;
function _sendLogPayloadImplementation(bytes memory payload) internal view {
address consoleAddress = CONSOLE_ADDRESS;
/// @solidity memory-safe-assembly
assembly {
pop(
staticcall(
gas(),
consoleAddress,
add(payload, 32),
mload(payload),
0,
0
)
)
}
}
function _castToPure(
function(bytes memory) internal view fnIn
) internal pure returns (function(bytes memory) pure fnOut) {
assembly {
fnOut := fnIn
}
}
function _sendLogPayload(bytes memory payload) internal pure {
_castToPure(_sendLogPayloadImplementation)(payload);
}
function log() internal pure {
_sendLogPayload(abi.encodeWithSignature("log()"));
}
function logInt(int256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
}
function logUint(uint256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function logString(string memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function logBool(bool p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function logAddress(address p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function logBytes(bytes memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
}
function logBytes1(bytes1 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
}
function logBytes2(bytes2 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
}
function logBytes3(bytes3 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
}
function logBytes4(bytes4 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
}
function logBytes5(bytes5 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
}
function logBytes6(bytes6 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
}
function logBytes7(bytes7 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
}
function logBytes8(bytes8 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
}
function logBytes9(bytes9 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
}
function logBytes10(bytes10 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
}
function logBytes11(bytes11 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
}
function logBytes12(bytes12 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
}
function logBytes13(bytes13 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
}
function logBytes14(bytes14 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
}
function logBytes15(bytes15 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
}
function logBytes16(bytes16 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
}
function logBytes17(bytes17 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
}
function logBytes18(bytes18 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
}
function logBytes19(bytes19 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
}
function logBytes20(bytes20 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
}
function logBytes21(bytes21 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
}
function logBytes22(bytes22 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
}
function logBytes23(bytes23 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
}
function logBytes24(bytes24 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
}
function logBytes25(bytes25 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
}
function logBytes26(bytes26 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
}
function logBytes27(bytes27 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
}
function logBytes28(bytes28 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
}
function logBytes29(bytes29 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
}
function logBytes30(bytes30 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
}
function logBytes31(bytes31 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
}
function logBytes32(bytes32 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
}
function log(uint256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function log(string memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function log(bool p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function log(address p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function log(uint256 p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
}
function log(uint256 p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
}
function log(uint256 p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
}
function log(uint256 p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
}
function log(string memory p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
}
function log(string memory p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
}
function log(string memory p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
}
function log(string memory p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
}
function log(bool p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
}
function log(bool p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
}
function log(bool p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
}
function log(bool p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
}
function log(address p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
}
function log(address p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
}
function log(address p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
}
function log(address p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
}
function log(uint256 p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
}
function log(uint256 p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
}
function log(uint256 p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
}
function log(uint256 p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
}
function log(uint256 p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
}
function log(uint256 p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
}
function log(uint256 p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
}
function log(uint256 p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
}
function log(uint256 p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
}
function log(string memory p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
}
function log(string memory p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
}
function log(string memory p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
}
function log(string memory p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
}
function log(string memory p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
}
function log(string memory p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
}
function log(string memory p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
}
function log(string memory p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
}
function log(string memory p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
}
function log(string memory p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
}
function log(string memory p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
}
function log(string memory p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
}
function log(bool p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
}
function log(bool p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
}
function log(bool p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
}
function log(bool p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
}
function log(bool p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
}
function log(bool p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
}
function log(bool p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
}
function log(bool p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
}
function log(bool p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
}
function log(bool p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
}
function log(bool p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
}
function log(bool p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
}
function log(bool p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
}
function log(bool p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
}
function log(bool p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
}
function log(bool p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
}
function log(address p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
}
function log(address p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
}
function log(address p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
}
function log(address p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
}
function log(address p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
}
function log(address p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
}
function log(address p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
}
function log(address p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
}
function log(address p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
}
function log(address p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
}
function log(address p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
}
function log(address p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
}
function log(address p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
}
function log(address p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
}
function log(address p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
}
function log(address p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below.
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract.
SCRIPTS
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, require/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import {SimpleStorage} from "./SimpleStorage.sol";
contract AddFiveStorage is SimpleStorage {
function store(uint256 _newNumber) public override {
myFavoriteNumber = _newNumber + 5;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506109aa806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102be565b60405180910390f35b610094600480360381019061008f9190610319565b61011c565b6040516100a29291906103d6565b60405180910390f35b6100c560048036038101906100c09190610319565b6101d8565b005b6100e160048036038101906100dc919061053b565b6101ee565b005b6100fd60048036038101906100f89190610597565b610277565b60405161010a91906102be565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101559061060f565b80601f01602080910402602001604051908101604052809291908181526020018280546101819061060f565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b6005816101e5919061066f565b60008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024d919061084f565b50505080600283604051610261919061095d565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102b8816102a5565b82525050565b60006020820190506102d360008301846102af565b92915050565b6000604051905090565b600080fd5b600080fd5b6102f6816102a5565b811461030157600080fd5b50565b600081359050610313816102ed565b92915050565b60006020828403121561032f5761032e6102e3565b5b600061033d84828501610304565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610380578082015181840152602081019050610365565b60008484015250505050565b6000601f19601f8301169050919050565b60006103a882610346565b6103b28185610351565b93506103c2818560208601610362565b6103cb8161038c565b840191505092915050565b60006040820190506103eb60008301856102af565b81810360208301526103fd818461039d565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6104488261038c565b810181811067ffffffffffffffff8211171561046757610466610410565b5b80604052505050565b600061047a6102d9565b9050610486828261043f565b919050565b600067ffffffffffffffff8211156104a6576104a5610410565b5b6104af8261038c565b9050602081019050919050565b82818337600083830152505050565b60006104de6104d98461048b565b610470565b9050828152602081018484840111156104fa576104f961040b565b5b6105058482856104bc565b509392505050565b600082601f83011261052257610521610406565b5b81356105328482602086016104cb565b91505092915050565b60008060408385031215610552576105516102e3565b5b600083013567ffffffffffffffff8111156105705761056f6102e8565b5b61057c8582860161050d565b925050602061058d85828601610304565b9150509250929050565b6000602082840312156105ad576105ac6102e3565b5b600082013567ffffffffffffffff8111156105cb576105ca6102e8565b5b6105d78482850161050d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061062757607f821691505b60208210810361063a576106396105e0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061067a826102a5565b9150610685836102a5565b925082820190508082111561069d5761069c610640565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026107057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106c8565b61070f86836106c8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061074c610747610742846102a5565b610727565b6102a5565b9050919050565b6000819050919050565b61076683610731565b61077a61077282610753565b8484546106d5565b825550505050565b600090565b61078f610782565b61079a81848461075d565b505050565b5b818110156107be576107b3600082610787565b6001810190506107a0565b5050565b601f821115610803576107d4816106a3565b6107dd846106b8565b810160208510156107ec578190505b6108006107f8856106b8565b83018261079f565b50505b505050565b600082821c905092915050565b600061082660001984600802610808565b1980831691505092915050565b600061083f8383610815565b9150826002028217905092915050565b61085882610346565b67ffffffffffffffff81111561087157610870610410565b5b61087b825461060f565b6108868282856107c2565b600060209050601f8311600181146108b957600084156108a7578287015190505b6108b18582610833565b865550610919565b601f1984166108c7866106a3565b60005b828110156108ef578489015182556001820191506020850194506020810190506108ca565b8683101561090c5784890151610908601f891682610815565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600061093782610346565b6109418185610921565b9350610951818560208601610362565b80840191505092915050565b6000610969828461092c565b91508190509291505056fea2646970667358221220db4dde6a3f8041ffb87c0c021025ac3889fd42aa037e8cf2ce366ba20347470e64736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9AA DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x319 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x319 JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x53B JUMP JUMPDEST PUSH2 0x1EE JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x597 JUMP JUMPDEST PUSH2 0x277 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x60F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x60F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x1E5 SWAP2 SWAP1 PUSH2 0x66F JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x24D SWAP2 SWAP1 PUSH2 0x84F JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x261 SWAP2 SWAP1 PUSH2 0x95D JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B8 DUP2 PUSH2 0x2A5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2AF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F6 DUP2 PUSH2 0x2A5 JUMP JUMPDEST DUP2 EQ PUSH2 0x301 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x313 DUP2 PUSH2 0x2ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x32F JUMPI PUSH2 0x32E PUSH2 0x2E3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33D DUP5 DUP3 DUP6 ADD PUSH2 0x304 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x380 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x365 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A8 DUP3 PUSH2 0x346 JUMP JUMPDEST PUSH2 0x3B2 DUP2 DUP6 PUSH2 0x351 JUMP JUMPDEST SWAP4 POP PUSH2 0x3C2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x362 JUMP JUMPDEST PUSH2 0x3CB DUP2 PUSH2 0x38C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3EB PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2AF JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3FD DUP2 DUP5 PUSH2 0x39D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x448 DUP3 PUSH2 0x38C JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x467 JUMPI PUSH2 0x466 PUSH2 0x410 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47A PUSH2 0x2D9 JUMP JUMPDEST SWAP1 POP PUSH2 0x486 DUP3 DUP3 PUSH2 0x43F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4A6 JUMPI PUSH2 0x4A5 PUSH2 0x410 JUMP JUMPDEST JUMPDEST PUSH2 0x4AF DUP3 PUSH2 0x38C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4DE PUSH2 0x4D9 DUP5 PUSH2 0x48B JUMP JUMPDEST PUSH2 0x470 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4FA JUMPI PUSH2 0x4F9 PUSH2 0x40B JUMP JUMPDEST JUMPDEST PUSH2 0x505 DUP5 DUP3 DUP6 PUSH2 0x4BC JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x522 JUMPI PUSH2 0x521 PUSH2 0x406 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x532 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4CB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x552 JUMPI PUSH2 0x551 PUSH2 0x2E3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x570 JUMPI PUSH2 0x56F PUSH2 0x2E8 JUMP JUMPDEST JUMPDEST PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x50D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x58D DUP6 DUP3 DUP7 ADD PUSH2 0x304 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5AD JUMPI PUSH2 0x5AC PUSH2 0x2E3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5CB JUMPI PUSH2 0x5CA PUSH2 0x2E8 JUMP JUMPDEST JUMPDEST PUSH2 0x5D7 DUP5 DUP3 DUP6 ADD PUSH2 0x50D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x627 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x63A JUMPI PUSH2 0x639 PUSH2 0x5E0 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x67A DUP3 PUSH2 0x2A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x685 DUP4 PUSH2 0x2A5 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x69D JUMPI PUSH2 0x69C PUSH2 0x640 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x705 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x6C8 JUMP JUMPDEST PUSH2 0x70F DUP7 DUP4 PUSH2 0x6C8 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x74C PUSH2 0x747 PUSH2 0x742 DUP5 PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x727 JUMP JUMPDEST PUSH2 0x2A5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x766 DUP4 PUSH2 0x731 JUMP JUMPDEST PUSH2 0x77A PUSH2 0x772 DUP3 PUSH2 0x753 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x6D5 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x78F PUSH2 0x782 JUMP JUMPDEST PUSH2 0x79A DUP2 DUP5 DUP5 PUSH2 0x75D JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7BE JUMPI PUSH2 0x7B3 PUSH1 0x0 DUP3 PUSH2 0x787 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x7A0 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x803 JUMPI PUSH2 0x7D4 DUP2 PUSH2 0x6A3 JUMP JUMPDEST PUSH2 0x7DD DUP5 PUSH2 0x6B8 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x7EC JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x800 PUSH2 0x7F8 DUP6 PUSH2 0x6B8 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x79F JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x826 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x808 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x83F DUP4 DUP4 PUSH2 0x815 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x858 DUP3 PUSH2 0x346 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x871 JUMPI PUSH2 0x870 PUSH2 0x410 JUMP JUMPDEST JUMPDEST PUSH2 0x87B DUP3 SLOAD PUSH2 0x60F JUMP JUMPDEST PUSH2 0x886 DUP3 DUP3 DUP6 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x8B9 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x8A7 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x8B1 DUP6 DUP3 PUSH2 0x833 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x919 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x8C7 DUP7 PUSH2 0x6A3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x8EF JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8CA JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x90C JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x908 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x815 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x937 DUP3 PUSH2 0x346 JUMP JUMPDEST PUSH2 0x941 DUP2 DUP6 PUSH2 0x921 JUMP JUMPDEST SWAP4 POP PUSH2 0x951 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x362 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x969 DUP3 DUP5 PUSH2 0x92C JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDB 0x4D 0xDE PUSH11 0x3F8041FFB87C0C021025AC CODESIZE DUP10 REVERT TIMESTAMP 0xAA SUB PUSH31 0x8CF2CE366BA20347470E64736F6C6343000813003300000000000000000000 ",
"sourceMap": "115:156:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_77": {
"entryPoint": 494,
"id": 77,
"parameterSlots": 2,
"returnSlots": 0
},
"@listOfPeople_32": {
"entryPoint": 284,
"id": 32,
"parameterSlots": 0,
"returnSlots": 0
},
"@nameToFavoriteNumber_36": {
"entryPoint": 631,
"id": 36,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_54": {
"entryPoint": 275,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_18": {
"entryPoint": 472,
"id": 18,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1227,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1293,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 772,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1431,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1339,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 793,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 925,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2348,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 687,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2397,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 702,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 982,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 729,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1163,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1699,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 838,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 849,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2337,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1647,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1986,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 677,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1951,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1841,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2127,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 1212,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 866,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1720,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1551,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 2099,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1087,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1831,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 2069,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1600,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1504,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1040,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1875,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1030,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1035,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 744,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 739,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 908,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1736,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 2056,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1927,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1749,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1885,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 749,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1922,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:12179:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:2",
"type": ""
}
],
"src": "7:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:2"
},
"nodeType": "YulFunctionCall",
"src": "177:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:2"
},
"nodeType": "YulFunctionCall",
"src": "165:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:2",
"type": ""
}
],
"src": "90:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:2"
},
"nodeType": "YulFunctionCall",
"src": "330:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:2"
},
"nodeType": "YulFunctionCall",
"src": "411:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:2"
},
"nodeType": "YulFunctionCall",
"src": "358:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:2",
"type": ""
}
],
"src": "214:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:2"
},
"nodeType": "YulFunctionCall",
"src": "502:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:2",
"type": ""
}
],
"src": "442:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:2"
},
"nodeType": "YulFunctionCall",
"src": "622:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:2"
},
"nodeType": "YulFunctionCall",
"src": "745:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:2"
},
"nodeType": "YulFunctionCall",
"src": "871:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:2"
},
"nodeType": "YulFunctionCall",
"src": "842:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:2"
},
"nodeType": "YulFunctionCall",
"src": "832:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:2"
},
"nodeType": "YulFunctionCall",
"src": "825:43:2"
},
"nodeType": "YulIf",
"src": "822:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:2",
"type": ""
}
],
"src": "769:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:2"
},
"nodeType": "YulFunctionCall",
"src": "968:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:2"
},
"nodeType": "YulFunctionCall",
"src": "997:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:2",
"type": ""
}
],
"src": "897:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:2"
},
"nodeType": "YulIf",
"src": "1118:119:2"
},
{
"nodeType": "YulBlock",
"src": "1247:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:2",
"type": ""
}
],
"src": "1042:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1436:40:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1447:22:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1463:5:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1457:5:2"
},
"nodeType": "YulFunctionCall",
"src": "1457:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1447:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1419:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1429:6:2",
"type": ""
}
],
"src": "1377:99:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1578:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1595:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1600:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1588:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1588:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "1588:19:2"
},
{
"nodeType": "YulAssignment",
"src": "1616:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1635:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1640:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1631:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1631:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1616:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1550:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1555:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1566:11:2",
"type": ""
}
],
"src": "1482:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:184:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1729:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1738:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1733:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1798:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1823:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1828:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1819:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1819:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1842:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1847:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1838:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1838:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1832:5:2"
},
"nodeType": "YulFunctionCall",
"src": "1832:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1812:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1812:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "1812:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1759:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1762:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1756:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1756:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1770:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1772:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1781:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1784:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1777:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1777:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1772:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1752:3:2",
"statements": []
},
"src": "1748:113:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1881:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1886:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1877:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1877:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1870:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1870:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "1870:27:2"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1701:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1706:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1711:6:2",
"type": ""
}
],
"src": "1657:246:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1957:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1967:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1985:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1981:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1981:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2001:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1997:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1997:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1977:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1977:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1967:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1940:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1950:6:2",
"type": ""
}
],
"src": "1909:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2109:285:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2119:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2166:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2133:32:2"
},
"nodeType": "YulFunctionCall",
"src": "2133:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2123:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2181:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2247:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2252:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2188:58:2"
},
"nodeType": "YulFunctionCall",
"src": "2188:71:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2181:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2307:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2314:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2303:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2303:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2321:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2326:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2268:34:2"
},
"nodeType": "YulFunctionCall",
"src": "2268:65:2"
},
"nodeType": "YulExpressionStatement",
"src": "2268:65:2"
},
{
"nodeType": "YulAssignment",
"src": "2342:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2353:3:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2380:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2358:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2358:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2349:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2349:39:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2342:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2090:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2097:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2105:3:2",
"type": ""
}
],
"src": "2017:377:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2546:277:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2556:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2568:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2564:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2564:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2556:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2636:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2649:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2660:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2645:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2645:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2592:43:2"
},
"nodeType": "YulFunctionCall",
"src": "2592:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "2592:71:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2684:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2695:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2680:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2680:18:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2704:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2710:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2700:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2700:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2673:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2673:48:2"
},
"nodeType": "YulExpressionStatement",
"src": "2673:48:2"
},
{
"nodeType": "YulAssignment",
"src": "2730:86:2",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2802:6:2"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2811:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2738:63:2"
},
"nodeType": "YulFunctionCall",
"src": "2738:78:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2730:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2510:9:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2522:6:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2530:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2541:4:2",
"type": ""
}
],
"src": "2400:423:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2918:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2935:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2938:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2928:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2928:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "2928:12:2"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "2829:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3041:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3061:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3051:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3051:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "3051:12:2"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "2952:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3103:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3120:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3123:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3113:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3113:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "3113:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3217:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3220:4:2",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3210:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3210:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3210:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3241:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3234:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3234:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3234:15:2"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3075:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3304:238:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3314:58:2",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3336:6:2"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3366:4:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3344:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3344:27:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3332:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3332:40:2"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3318:10:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3483:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3485:16:2"
},
"nodeType": "YulFunctionCall",
"src": "3485:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "3485:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3426:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3438:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3423:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3423:34:2"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3462:10:2"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3474:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3459:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3459:22:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3420:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3420:62:2"
},
"nodeType": "YulIf",
"src": "3417:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3521:2:2",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3525:10:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3514:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3514:22:2"
},
"nodeType": "YulExpressionStatement",
"src": "3514:22:2"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3290:6:2",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3298:4:2",
"type": ""
}
],
"src": "3261:281:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3589:88:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3599:30:2",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3609:18:2"
},
"nodeType": "YulFunctionCall",
"src": "3609:20:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3599:6:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3658:6:2"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3666:4:2"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3638:19:2"
},
"nodeType": "YulFunctionCall",
"src": "3638:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "3638:33:2"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3573:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3582:6:2",
"type": ""
}
],
"src": "3548:129:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3750:241:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3855:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3857:16:2"
},
"nodeType": "YulFunctionCall",
"src": "3857:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "3857:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3827:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3835:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3824:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3824:30:2"
},
"nodeType": "YulIf",
"src": "3821:56:2"
},
{
"nodeType": "YulAssignment",
"src": "3887:37:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3917:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3895:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3895:29:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3887:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3961:23:2",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3973:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3979:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3969:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3969:15:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3961:4:2"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3734:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3745:4:2",
"type": ""
}
],
"src": "3683:308:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4061:82:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4084:3:2"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4089:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4094:6:2"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "4071:12:2"
},
"nodeType": "YulFunctionCall",
"src": "4071:30:2"
},
"nodeType": "YulExpressionStatement",
"src": "4071:30:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4121:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4126:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4117:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4117:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4135:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4110:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4110:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "4110:27:2"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4043:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4048:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4053:6:2",
"type": ""
}
],
"src": "3997:146:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4233:341:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4243:75:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4310:6:2"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4268:41:2"
},
"nodeType": "YulFunctionCall",
"src": "4268:49:2"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "4252:15:2"
},
"nodeType": "YulFunctionCall",
"src": "4252:66:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4243:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4334:5:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4341:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4327:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4327:21:2"
},
"nodeType": "YulExpressionStatement",
"src": "4327:21:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4357:27:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4372:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4379:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4368:16:2"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4361:3:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4422:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "4424:77:2"
},
"nodeType": "YulFunctionCall",
"src": "4424:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "4424:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4403:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4408:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4399:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4399:16:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4417:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4396:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4396:25:2"
},
"nodeType": "YulIf",
"src": "4393:112:2"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4551:3:2"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4556:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4561:6:2"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "4514:36:2"
},
"nodeType": "YulFunctionCall",
"src": "4514:54:2"
},
"nodeType": "YulExpressionStatement",
"src": "4514:54:2"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4206:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4211:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4219:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4227:5:2",
"type": ""
}
],
"src": "4149:425:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4656:278:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4705:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "4707:77:2"
},
"nodeType": "YulFunctionCall",
"src": "4707:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "4707:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4684:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4692:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4680:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4680:17:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4699:3:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4676:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4676:27:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4669:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4669:35:2"
},
"nodeType": "YulIf",
"src": "4666:122:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4797:34:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4824:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4811:12:2"
},
"nodeType": "YulFunctionCall",
"src": "4811:20:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4801:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4840:88:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4901:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4909:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4897:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4897:17:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4916:6:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4924:3:2"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4849:47:2"
},
"nodeType": "YulFunctionCall",
"src": "4849:79:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4840:5:2"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4634:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4642:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4650:5:2",
"type": ""
}
],
"src": "4594:340:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5033:561:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5079:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5081:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5081:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5081:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5054:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5063:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5050:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5050:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5075:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5046:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5046:32:2"
},
"nodeType": "YulIf",
"src": "5043:119:2"
},
{
"nodeType": "YulBlock",
"src": "5172:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5187:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5218:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5229:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5214:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5214:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5201:12:2"
},
"nodeType": "YulFunctionCall",
"src": "5201:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5191:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5279:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5281:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5281:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5281:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5251:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5259:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5248:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5248:30:2"
},
"nodeType": "YulIf",
"src": "5245:117:2"
},
{
"nodeType": "YulAssignment",
"src": "5376:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5421:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5432:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5417:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5417:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5441:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5386:30:2"
},
"nodeType": "YulFunctionCall",
"src": "5386:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5376:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5469:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5484:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5498:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5488:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5514:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5549:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5560:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5545:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5545:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5569:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5524:20:2"
},
"nodeType": "YulFunctionCall",
"src": "5524:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5514:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4995:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5006:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5018:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5026:6:2",
"type": ""
}
],
"src": "4940:654:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5676:433:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5722:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5724:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5724:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5724:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5697:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5706:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5693:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5693:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5718:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5689:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5689:32:2"
},
"nodeType": "YulIf",
"src": "5686:119:2"
},
{
"nodeType": "YulBlock",
"src": "5815:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5830:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5861:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5872:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5857:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5857:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5844:12:2"
},
"nodeType": "YulFunctionCall",
"src": "5844:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5834:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5922:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5924:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5924:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5924:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5894:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5902:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5891:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5891:30:2"
},
"nodeType": "YulIf",
"src": "5888:117:2"
},
{
"nodeType": "YulAssignment",
"src": "6019:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6064:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6075:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6060:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6060:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6084:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6029:30:2"
},
"nodeType": "YulFunctionCall",
"src": "6029:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6019:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5646:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5657:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5669:6:2",
"type": ""
}
],
"src": "5600:509:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6143:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6160:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6163:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6153:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6153:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "6153:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6257:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6260:4:2",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6250:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6250:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6250:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6281:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6284:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6274:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6274:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6274:15:2"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6115:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6352:269:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6362:22:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6376:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6382:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6372:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6372:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6362:6:2"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6393:38:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6423:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6429:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6419:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6419:12:2"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6397:18:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6470:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6484:27:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6498:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6506:4:2",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6494:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6494:17:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6484:6:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6450:18:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6443:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6443:26:2"
},
"nodeType": "YulIf",
"src": "6440:81:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6573:42:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6587:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6587:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6587:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6537:18:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6560:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6568:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6557:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6557:14:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6534:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6534:38:2"
},
"nodeType": "YulIf",
"src": "6531:84:2"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6336:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6345:6:2",
"type": ""
}
],
"src": "6301:320:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6655:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6672:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6675:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6665:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6665:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "6665:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6769:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6772:4:2",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6762:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6762:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6762:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6793:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6796:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6786:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6786:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6786:15:2"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6627:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6857:147:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6867:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6890:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6872:17:2"
},
"nodeType": "YulFunctionCall",
"src": "6872:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6867:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6901:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6924:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6906:17:2"
},
"nodeType": "YulFunctionCall",
"src": "6906:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6901:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6935:16:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6946:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6949:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6942:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6942:9:2"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6935:3:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6975:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6977:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6977:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6977:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6967:1:2"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6970:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6964:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6964:10:2"
},
"nodeType": "YulIf",
"src": "6961:36:2"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6844:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6847:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6853:3:2",
"type": ""
}
],
"src": "6813:191:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7064:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7074:11:2",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "7082:3:2"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7074:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7102:1:2",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "7105:3:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7095:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7095:14:2"
},
"nodeType": "YulExpressionStatement",
"src": "7095:14:2"
},
{
"nodeType": "YulAssignment",
"src": "7118:26:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7136:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7139:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "7126:9:2"
},
"nodeType": "YulFunctionCall",
"src": "7126:18:2"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7118:4:2"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "7051:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7059:4:2",
"type": ""
}
],
"src": "7010:141:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7201:49:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7211:33:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7229:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7236:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7225:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7225:14:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7241:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7221:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7221:23:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7211:6:2"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7184:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7194:6:2",
"type": ""
}
],
"src": "7157:93:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7309:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7319:37:2",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "7344:4:2"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7350:5:2"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "7340:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7340:16:2"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "7319:8:2"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "7284:4:2",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7290:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "7300:8:2",
"type": ""
}
],
"src": "7256:107:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7445:317:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7455:35:2",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "7476:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7488:1:2",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7472:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7472:18:2"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "7459:9:2",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7499:109:2",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "7530:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7541:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "7511:18:2"
},
"nodeType": "YulFunctionCall",
"src": "7511:97:2"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "7503:4:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7617:51:2",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "7648:9:2"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7659:8:2"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "7629:18:2"
},
"nodeType": "YulFunctionCall",
"src": "7629:39:2"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7617:8:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7677:30:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7690:5:2"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7701:4:2"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7697:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7697:9:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7686:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7686:21:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7677:5:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7716:40:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7729:5:2"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7740:8:2"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7750:4:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7736:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7736:19:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7726:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7726:30:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7716:6:2"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7406:5:2",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "7413:10:2",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "7425:8:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7438:6:2",
"type": ""
}
],
"src": "7369:393:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7800:28:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7810:12:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7817:5:2"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7810:3:2"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7786:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7796:3:2",
"type": ""
}
],
"src": "7768:60:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7894:82:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7904:66:2",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7962:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7944:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7944:24:2"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "7935:8:2"
},
"nodeType": "YulFunctionCall",
"src": "7935:34:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7917:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7917:53:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "7904:9:2"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7874:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "7884:9:2",
"type": ""
}
],
"src": "7834:142:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8029:28:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8039:12:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "8046:5:2"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "8039:3:2"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8015:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "8025:3:2",
"type": ""
}
],
"src": "7982:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8139:193:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8149:63:2",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "8204:7:2"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "8173:30:2"
},
"nodeType": "YulFunctionCall",
"src": "8173:39:2"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "8153:16:2",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8228:4:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8268:4:2"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "8262:5:2"
},
"nodeType": "YulFunctionCall",
"src": "8262:11:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8275:6:2"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "8307:16:2"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "8283:23:2"
},
"nodeType": "YulFunctionCall",
"src": "8283:41:2"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "8234:27:2"
},
"nodeType": "YulFunctionCall",
"src": "8234:91:2"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8221:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8221:105:2"
},
"nodeType": "YulExpressionStatement",
"src": "8221:105:2"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "8116:4:2",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8122:6:2",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "8130:7:2",
"type": ""
}
],
"src": "8063:269:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8387:24:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8397:8:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8404:1:2",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "8397:3:2"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "8383:3:2",
"type": ""
}
],
"src": "8338:73:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8470:136:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8480:46:2",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "8494:30:2"
},
"nodeType": "YulFunctionCall",
"src": "8494:32:2"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "8484:6:2",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8579:4:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8585:6:2"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "8593:6:2"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "8535:43:2"
},
"nodeType": "YulFunctionCall",
"src": "8535:65:2"
},
"nodeType": "YulExpressionStatement",
"src": "8535:65:2"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "8456:4:2",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8462:6:2",
"type": ""
}
],
"src": "8417:189:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8662:136:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8729:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8773:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8780:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "8743:29:2"
},
"nodeType": "YulFunctionCall",
"src": "8743:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "8743:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8682:5:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8689:3:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8679:2:2"
},
"nodeType": "YulFunctionCall",
"src": "8679:14:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "8694:26:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8696:22:2",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8709:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8716:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8705:3:2"
},
"nodeType": "YulFunctionCall",
"src": "8705:13:2"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8696:5:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "8676:2:2",
"statements": []
},
"src": "8672:120:2"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "8650:5:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8657:3:2",
"type": ""
}
],
"src": "8612:186:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8883:464:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8909:431:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8923:54:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8971:5:2"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "8939:31:2"
},
"nodeType": "YulFunctionCall",
"src": "8939:38:2"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "8927:8:2",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8990:63:2",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "9013:8:2"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "9041:10:2"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "9023:17:2"
},
"nodeType": "YulFunctionCall",
"src": "9023:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9009:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9009:44:2"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "8994:11:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9210:27:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9212:23:2",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "9227:8:2"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "9212:11:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "9194:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9206:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9191:2:2"
},
"nodeType": "YulFunctionCall",
"src": "9191:18:2"
},
"nodeType": "YulIf",
"src": "9188:49:2"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "9279:11:2"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "9296:8:2"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9324:3:2"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "9306:17:2"
},
"nodeType": "YulFunctionCall",
"src": "9306:22:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9292:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9292:37:2"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "9250:28:2"
},
"nodeType": "YulFunctionCall",
"src": "9250:80:2"
},
"nodeType": "YulExpressionStatement",
"src": "9250:80:2"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "8900:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8905:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8897:2:2"
},
"nodeType": "YulFunctionCall",
"src": "8897:11:2"
},
"nodeType": "YulIf",
"src": "8894:446:2"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8859:5:2",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "8866:3:2",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "8871:10:2",
"type": ""
}
],
"src": "8804:543:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9416:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9426:37:2",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "9451:4:2"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9457:5:2"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "9447:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9447:16:2"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "9426:8:2"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "9391:4:2",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9397:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "9407:8:2",
"type": ""
}
],
"src": "9353:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9527:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9537:68:2",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9586:1:2",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "9589:5:2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9582:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9582:13:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9601:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9597:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9597:6:2"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "9553:28:2"
},
"nodeType": "YulFunctionCall",
"src": "9553:51:2"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9549:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9549:56:2"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "9541:4:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9614:25:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9628:4:2"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "9634:4:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9624:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9624:15:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "9614:6:2"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9504:4:2",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "9510:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "9520:6:2",
"type": ""
}
],
"src": "9476:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9731:214:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9864:37:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9891:4:2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9897:3:2"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "9872:18:2"
},
"nodeType": "YulFunctionCall",
"src": "9872:29:2"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9864:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9910:29:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9921:4:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9931:1:2",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9934:3:2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9927:3:2"
},
"nodeType": "YulFunctionCall",
"src": "9927:11:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "9918:2:2"
},
"nodeType": "YulFunctionCall",
"src": "9918:21:2"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "9910:4:2"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9712:4:2",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "9718:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "9726:4:2",
"type": ""
}
],
"src": "9650:295:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10042:1303:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10053:51:2",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10100:3:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10067:32:2"
},
"nodeType": "YulFunctionCall",
"src": "10067:37:2"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "10057:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10189:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "10191:16:2"
},
"nodeType": "YulFunctionCall",
"src": "10191:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "10191:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10161:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10169:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10158:2:2"
},
"nodeType": "YulFunctionCall",
"src": "10158:30:2"
},
"nodeType": "YulIf",
"src": "10155:56:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10221:52:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10267:4:2"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "10261:5:2"
},
"nodeType": "YulFunctionCall",
"src": "10261:11:2"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "10235:25:2"
},
"nodeType": "YulFunctionCall",
"src": "10235:38:2"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "10225:6:2",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10366:4:2"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "10372:6:2"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10380:6:2"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "10320:45:2"
},
"nodeType": "YulFunctionCall",
"src": "10320:67:2"
},
"nodeType": "YulExpressionStatement",
"src": "10320:67:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10397:18:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10414:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "10401:9:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10425:17:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10438:4:2",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10425:9:2"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "10489:611:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10503:37:2",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10522:6:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10534:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10530:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10530:9:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10518:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10518:22:2"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "10507:7:2",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10554:51:2",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10600:4:2"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "10568:31:2"
},
"nodeType": "YulFunctionCall",
"src": "10568:37:2"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "10558:6:2",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10618:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10627:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10622:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10686:163:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10711:6:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10729:3:2"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10734:9:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10725:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10725:19:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10719:5:2"
},
"nodeType": "YulFunctionCall",
"src": "10719:26:2"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10704:6:2"
},
"nodeType": "YulFunctionCall",
"src": "10704:42:2"
},
"nodeType": "YulExpressionStatement",
"src": "10704:42:2"
},
{
"nodeType": "YulAssignment",
"src": "10763:24:2",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10777:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10785:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10773:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10773:14:2"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10763:6:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10804:31:2",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10821:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10832:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10817:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10817:18:2"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10804:9:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10652:1:2"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "10655:7:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10649:2:2"
},
"nodeType": "YulFunctionCall",
"src": "10649:14:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10664:21:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10666:17:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10675:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10678:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10671:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10671:12:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10666:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10645:3:2",
"statements": []
},
"src": "10641:208:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10885:156:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10903:43:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10930:3:2"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10935:9:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10926:3:2"
},
"nodeType": "YulFunctionCall",
"src": "10926:19:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10920:5:2"
},
"nodeType": "YulFunctionCall",
"src": "10920:26:2"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "10907:9:2",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10970:6:2"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "10997:9:2"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "11012:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11020:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11008:3:2"
},
"nodeType": "YulFunctionCall",
"src": "11008:17:2"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "10978:18:2"
},
"nodeType": "YulFunctionCall",
"src": "10978:48:2"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10963:6:2"
},
"nodeType": "YulFunctionCall",
"src": "10963:64:2"
},
"nodeType": "YulExpressionStatement",
"src": "10963:64:2"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "10868:7:2"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10877:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10865:2:2"
},
"nodeType": "YulFunctionCall",
"src": "10865:19:2"
},
"nodeType": "YulIf",
"src": "10862:179:2"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "11061:4:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "11075:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11083:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "11071:3:2"
},
"nodeType": "YulFunctionCall",
"src": "11071:14:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11087:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11067:3:2"
},
"nodeType": "YulFunctionCall",
"src": "11067:22:2"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "11054:6:2"
},
"nodeType": "YulFunctionCall",
"src": "11054:36:2"
},
"nodeType": "YulExpressionStatement",
"src": "11054:36:2"
}
]
},
"nodeType": "YulCase",
"src": "10482:618:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10487:1:2",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "11117:222:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11131:14:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11144:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11135:5:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11168:67:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11186:35:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "11205:3:2"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "11210:9:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11201:3:2"
},
"nodeType": "YulFunctionCall",
"src": "11201:19:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11195:5:2"
},
"nodeType": "YulFunctionCall",
"src": "11195:26:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11186:5:2"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "11161:6:2"
},
"nodeType": "YulIf",
"src": "11158:77:2"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "11255:4:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11314:5:2"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "11321:6:2"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "11261:52:2"
},
"nodeType": "YulFunctionCall",
"src": "11261:67:2"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "11248:6:2"
},
"nodeType": "YulFunctionCall",
"src": "11248:81:2"
},
"nodeType": "YulExpressionStatement",
"src": "11248:81:2"
}
]
},
"nodeType": "YulCase",
"src": "11109:230:2",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10462:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10470:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10459:2:2"
},
"nodeType": "YulFunctionCall",
"src": "10459:14:2"
},
"nodeType": "YulSwitch",
"src": "10452:887:2"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "10031:4:2",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10037:3:2",
"type": ""
}
],
"src": "9950:1395:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11465:34:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11475:18:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11490:3:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "11475:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11437:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11442:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "11453:11:2",
"type": ""
}
],
"src": "11351:148:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11615:280:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11625:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11672:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11639:32:2"
},
"nodeType": "YulFunctionCall",
"src": "11639:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11629:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11687:96:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11771:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11776:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11694:76:2"
},
"nodeType": "YulFunctionCall",
"src": "11694:89:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11687:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11831:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11838:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11827:3:2"
},
"nodeType": "YulFunctionCall",
"src": "11827:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11845:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11850:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "11792:34:2"
},
"nodeType": "YulFunctionCall",
"src": "11792:65:2"
},
"nodeType": "YulExpressionStatement",
"src": "11792:65:2"
},
{
"nodeType": "YulAssignment",
"src": "11866:23:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11877:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11882:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11873:3:2"
},
"nodeType": "YulFunctionCall",
"src": "11873:16:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11866:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11596:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11603:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11611:3:2",
"type": ""
}
],
"src": "11505:390:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12037:139:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12048:102:2",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12137:6:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12146:3:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12055:81:2"
},
"nodeType": "YulFunctionCall",
"src": "12055:95:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12048:3:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12160:10:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12167:3:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12160:3:2"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12016:3:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12022:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12033:3:2",
"type": ""
}
],
"src": "11901:275:2"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102be565b60405180910390f35b610094600480360381019061008f9190610319565b61011c565b6040516100a29291906103d6565b60405180910390f35b6100c560048036038101906100c09190610319565b6101d8565b005b6100e160048036038101906100dc919061053b565b6101ee565b005b6100fd60048036038101906100f89190610597565b610277565b60405161010a91906102be565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101559061060f565b80601f01602080910402602001604051908101604052809291908181526020018280546101819061060f565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b6005816101e5919061066f565b60008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024d919061084f565b50505080600283604051610261919061095d565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102b8816102a5565b82525050565b60006020820190506102d360008301846102af565b92915050565b6000604051905090565b600080fd5b600080fd5b6102f6816102a5565b811461030157600080fd5b50565b600081359050610313816102ed565b92915050565b60006020828403121561032f5761032e6102e3565b5b600061033d84828501610304565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610380578082015181840152602081019050610365565b60008484015250505050565b6000601f19601f8301169050919050565b60006103a882610346565b6103b28185610351565b93506103c2818560208601610362565b6103cb8161038c565b840191505092915050565b60006040820190506103eb60008301856102af565b81810360208301526103fd818461039d565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6104488261038c565b810181811067ffffffffffffffff8211171561046757610466610410565b5b80604052505050565b600061047a6102d9565b9050610486828261043f565b919050565b600067ffffffffffffffff8211156104a6576104a5610410565b5b6104af8261038c565b9050602081019050919050565b82818337600083830152505050565b60006104de6104d98461048b565b610470565b9050828152602081018484840111156104fa576104f961040b565b5b6105058482856104bc565b509392505050565b600082601f83011261052257610521610406565b5b81356105328482602086016104cb565b91505092915050565b60008060408385031215610552576105516102e3565b5b600083013567ffffffffffffffff8111156105705761056f6102e8565b5b61057c8582860161050d565b925050602061058d85828601610304565b9150509250929050565b6000602082840312156105ad576105ac6102e3565b5b600082013567ffffffffffffffff8111156105cb576105ca6102e8565b5b6105d78482850161050d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061062757607f821691505b60208210810361063a576106396105e0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061067a826102a5565b9150610685836102a5565b925082820190508082111561069d5761069c610640565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026107057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106c8565b61070f86836106c8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061074c610747610742846102a5565b610727565b6102a5565b9050919050565b6000819050919050565b61076683610731565b61077a61077282610753565b8484546106d5565b825550505050565b600090565b61078f610782565b61079a81848461075d565b505050565b5b818110156107be576107b3600082610787565b6001810190506107a0565b5050565b601f821115610803576107d4816106a3565b6107dd846106b8565b810160208510156107ec578190505b6108006107f8856106b8565b83018261079f565b50505b505050565b600082821c905092915050565b600061082660001984600802610808565b1980831691505092915050565b600061083f8383610815565b9150826002028217905092915050565b61085882610346565b67ffffffffffffffff81111561087157610870610410565b5b61087b825461060f565b6108868282856107c2565b600060209050601f8311600181146108b957600084156108a7578287015190505b6108b18582610833565b865550610919565b601f1984166108c7866106a3565b60005b828110156108ef578489015182556001820191506020850194506020810190506108ca565b8683101561090c5784890151610908601f891682610815565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600061093782610346565b6109418185610921565b9350610951818560208601610362565b80840191505092915050565b6000610969828461092c565b91508190509291505056fea2646970667358221220db4dde6a3f8041ffb87c0c021025ac3889fd42aa037e8cf2ce366ba20347470e64736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x319 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x319 JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x53B JUMP JUMPDEST PUSH2 0x1EE JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x597 JUMP JUMPDEST PUSH2 0x277 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x60F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x60F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x1E5 SWAP2 SWAP1 PUSH2 0x66F JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x24D SWAP2 SWAP1 PUSH2 0x84F JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x261 SWAP2 SWAP1 PUSH2 0x95D JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B8 DUP2 PUSH2 0x2A5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2AF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F6 DUP2 PUSH2 0x2A5 JUMP JUMPDEST DUP2 EQ PUSH2 0x301 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x313 DUP2 PUSH2 0x2ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x32F JUMPI PUSH2 0x32E PUSH2 0x2E3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33D DUP5 DUP3 DUP6 ADD PUSH2 0x304 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x380 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x365 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A8 DUP3 PUSH2 0x346 JUMP JUMPDEST PUSH2 0x3B2 DUP2 DUP6 PUSH2 0x351 JUMP JUMPDEST SWAP4 POP PUSH2 0x3C2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x362 JUMP JUMPDEST PUSH2 0x3CB DUP2 PUSH2 0x38C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3EB PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2AF JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3FD DUP2 DUP5 PUSH2 0x39D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x448 DUP3 PUSH2 0x38C JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x467 JUMPI PUSH2 0x466 PUSH2 0x410 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47A PUSH2 0x2D9 JUMP JUMPDEST SWAP1 POP PUSH2 0x486 DUP3 DUP3 PUSH2 0x43F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4A6 JUMPI PUSH2 0x4A5 PUSH2 0x410 JUMP JUMPDEST JUMPDEST PUSH2 0x4AF DUP3 PUSH2 0x38C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4DE PUSH2 0x4D9 DUP5 PUSH2 0x48B JUMP JUMPDEST PUSH2 0x470 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4FA JUMPI PUSH2 0x4F9 PUSH2 0x40B JUMP JUMPDEST JUMPDEST PUSH2 0x505 DUP5 DUP3 DUP6 PUSH2 0x4BC JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x522 JUMPI PUSH2 0x521 PUSH2 0x406 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x532 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4CB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x552 JUMPI PUSH2 0x551 PUSH2 0x2E3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x570 JUMPI PUSH2 0x56F PUSH2 0x2E8 JUMP JUMPDEST JUMPDEST PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x50D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x58D DUP6 DUP3 DUP7 ADD PUSH2 0x304 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5AD JUMPI PUSH2 0x5AC PUSH2 0x2E3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5CB JUMPI PUSH2 0x5CA PUSH2 0x2E8 JUMP JUMPDEST JUMPDEST PUSH2 0x5D7 DUP5 DUP3 DUP6 ADD PUSH2 0x50D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x627 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x63A JUMPI PUSH2 0x639 PUSH2 0x5E0 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x67A DUP3 PUSH2 0x2A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x685 DUP4 PUSH2 0x2A5 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x69D JUMPI PUSH2 0x69C PUSH2 0x640 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x705 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x6C8 JUMP JUMPDEST PUSH2 0x70F DUP7 DUP4 PUSH2 0x6C8 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x74C PUSH2 0x747 PUSH2 0x742 DUP5 PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x727 JUMP JUMPDEST PUSH2 0x2A5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x766 DUP4 PUSH2 0x731 JUMP JUMPDEST PUSH2 0x77A PUSH2 0x772 DUP3 PUSH2 0x753 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x6D5 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x78F PUSH2 0x782 JUMP JUMPDEST PUSH2 0x79A DUP2 DUP5 DUP5 PUSH2 0x75D JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7BE JUMPI PUSH2 0x7B3 PUSH1 0x0 DUP3 PUSH2 0x787 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x7A0 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x803 JUMPI PUSH2 0x7D4 DUP2 PUSH2 0x6A3 JUMP JUMPDEST PUSH2 0x7DD DUP5 PUSH2 0x6B8 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x7EC JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x800 PUSH2 0x7F8 DUP6 PUSH2 0x6B8 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x79F JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x826 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x808 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x83F DUP4 DUP4 PUSH2 0x815 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x858 DUP3 PUSH2 0x346 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x871 JUMPI PUSH2 0x870 PUSH2 0x410 JUMP JUMPDEST JUMPDEST PUSH2 0x87B DUP3 SLOAD PUSH2 0x60F JUMP JUMPDEST PUSH2 0x886 DUP3 DUP3 DUP6 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x8B9 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x8A7 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x8B1 DUP6 DUP3 PUSH2 0x833 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x919 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x8C7 DUP7 PUSH2 0x6A3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x8EF JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8CA JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x90C JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x908 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x815 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x937 DUP3 PUSH2 0x346 JUMP JUMPDEST PUSH2 0x941 DUP2 DUP6 PUSH2 0x921 JUMP JUMPDEST SWAP4 POP PUSH2 0x951 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x362 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x969 DUP3 DUP5 PUSH2 0x92C JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDB 0x4D 0xDE PUSH11 0x3F8041FFB87C0C021025AC CODESIZE DUP10 REVERT TIMESTAMP 0xAA SUB PUSH31 0x8CF2CE366BA20347470E64736F6C6343000813003300000000000000000000 ",
"sourceMap": "115:156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543:92:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;327:28;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;165:103:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;643:196:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;364:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;543:92;584:7;611:16;;604:23;;543:92;:::o;327:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;165:103:0:-;259:1;246:10;:14;;;;:::i;:::-;227:16;:33;;;;165:103;:::o;643:196:1:-;726:12;744:30;;;;;;;;751:15;744:30;;;;768:5;744:30;;;726:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;816:15;786:20;807:5;786:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;643:196;;:::o;364:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:2:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:99::-;1429:6;1463:5;1457:12;1447:22;;1377:99;;;:::o;1482:169::-;1566:11;1600:6;1595:3;1588:19;1640:4;1635:3;1631:14;1616:29;;1482:169;;;;:::o;1657:246::-;1738:1;1748:113;1762:6;1759:1;1756:13;1748:113;;;1847:1;1842:3;1838:11;1832:18;1828:1;1823:3;1819:11;1812:39;1784:2;1781:1;1777:10;1772:15;;1748:113;;;1895:1;1886:6;1881:3;1877:16;1870:27;1719:184;1657:246;;;:::o;1909:102::-;1950:6;2001:2;1997:7;1992:2;1985:5;1981:14;1977:28;1967:38;;1909:102;;;:::o;2017:377::-;2105:3;2133:39;2166:5;2133:39;:::i;:::-;2188:71;2252:6;2247:3;2188:71;:::i;:::-;2181:78;;2268:65;2326:6;2321:3;2314:4;2307:5;2303:16;2268:65;:::i;:::-;2358:29;2380:6;2358:29;:::i;:::-;2353:3;2349:39;2342:46;;2109:285;2017:377;;;;:::o;2400:423::-;2541:4;2579:2;2568:9;2564:18;2556:26;;2592:71;2660:1;2649:9;2645:17;2636:6;2592:71;:::i;:::-;2710:9;2704:4;2700:20;2695:2;2684:9;2680:18;2673:48;2738:78;2811:4;2802:6;2738:78;:::i;:::-;2730:86;;2400:423;;;;;:::o;2829:117::-;2938:1;2935;2928:12;2952:117;3061:1;3058;3051:12;3075:180;3123:77;3120:1;3113:88;3220:4;3217:1;3210:15;3244:4;3241:1;3234:15;3261:281;3344:27;3366:4;3344:27;:::i;:::-;3336:6;3332:40;3474:6;3462:10;3459:22;3438:18;3426:10;3423:34;3420:62;3417:88;;;3485:18;;:::i;:::-;3417:88;3525:10;3521:2;3514:22;3304:238;3261:281;;:::o;3548:129::-;3582:6;3609:20;;:::i;:::-;3599:30;;3638:33;3666:4;3658:6;3638:33;:::i;:::-;3548:129;;;:::o;3683:308::-;3745:4;3835:18;3827:6;3824:30;3821:56;;;3857:18;;:::i;:::-;3821:56;3895:29;3917:6;3895:29;:::i;:::-;3887:37;;3979:4;3973;3969:15;3961:23;;3683:308;;;:::o;3997:146::-;4094:6;4089:3;4084;4071:30;4135:1;4126:6;4121:3;4117:16;4110:27;3997:146;;;:::o;4149:425::-;4227:5;4252:66;4268:49;4310:6;4268:49;:::i;:::-;4252:66;:::i;:::-;4243:75;;4341:6;4334:5;4327:21;4379:4;4372:5;4368:16;4417:3;4408:6;4403:3;4399:16;4396:25;4393:112;;;4424:79;;:::i;:::-;4393:112;4514:54;4561:6;4556:3;4551;4514:54;:::i;:::-;4233:341;4149:425;;;;;:::o;4594:340::-;4650:5;4699:3;4692:4;4684:6;4680:17;4676:27;4666:122;;4707:79;;:::i;:::-;4666:122;4824:6;4811:20;4849:79;4924:3;4916:6;4909:4;4901:6;4897:17;4849:79;:::i;:::-;4840:88;;4656:278;4594:340;;;;:::o;4940:654::-;5018:6;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5229:1;5218:9;5214:17;5201:31;5259:18;5251:6;5248:30;5245:117;;;5281:79;;:::i;:::-;5245:117;5386:63;5441:7;5432:6;5421:9;5417:22;5386:63;:::i;:::-;5376:73;;5172:287;5498:2;5524:53;5569:7;5560:6;5549:9;5545:22;5524:53;:::i;:::-;5514:63;;5469:118;4940:654;;;;;:::o;5600:509::-;5669:6;5718:2;5706:9;5697:7;5693:23;5689:32;5686:119;;;5724:79;;:::i;:::-;5686:119;5872:1;5861:9;5857:17;5844:31;5902:18;5894:6;5891:30;5888:117;;;5924:79;;:::i;:::-;5888:117;6029:63;6084:7;6075:6;6064:9;6060:22;6029:63;:::i;:::-;6019:73;;5815:287;5600:509;;;;:::o;6115:180::-;6163:77;6160:1;6153:88;6260:4;6257:1;6250:15;6284:4;6281:1;6274:15;6301:320;6345:6;6382:1;6376:4;6372:12;6362:22;;6429:1;6423:4;6419:12;6450:18;6440:81;;6506:4;6498:6;6494:17;6484:27;;6440:81;6568:2;6560:6;6557:14;6537:18;6534:38;6531:84;;6587:18;;:::i;:::-;6531:84;6352:269;6301:320;;;:::o;6627:180::-;6675:77;6672:1;6665:88;6772:4;6769:1;6762:15;6796:4;6793:1;6786:15;6813:191;6853:3;6872:20;6890:1;6872:20;:::i;:::-;6867:25;;6906:20;6924:1;6906:20;:::i;:::-;6901:25;;6949:1;6946;6942:9;6935:16;;6970:3;6967:1;6964:10;6961:36;;;6977:18;;:::i;:::-;6961:36;6813:191;;;;:::o;7010:141::-;7059:4;7082:3;7074:11;;7105:3;7102:1;7095:14;7139:4;7136:1;7126:18;7118:26;;7010:141;;;:::o;7157:93::-;7194:6;7241:2;7236;7229:5;7225:14;7221:23;7211:33;;7157:93;;;:::o;7256:107::-;7300:8;7350:5;7344:4;7340:16;7319:37;;7256:107;;;;:::o;7369:393::-;7438:6;7488:1;7476:10;7472:18;7511:97;7541:66;7530:9;7511:97;:::i;:::-;7629:39;7659:8;7648:9;7629:39;:::i;:::-;7617:51;;7701:4;7697:9;7690:5;7686:21;7677:30;;7750:4;7740:8;7736:19;7729:5;7726:30;7716:40;;7445:317;;7369:393;;;;;:::o;7768:60::-;7796:3;7817:5;7810:12;;7768:60;;;:::o;7834:142::-;7884:9;7917:53;7935:34;7944:24;7962:5;7944:24;:::i;:::-;7935:34;:::i;:::-;7917:53;:::i;:::-;7904:66;;7834:142;;;:::o;7982:75::-;8025:3;8046:5;8039:12;;7982:75;;;:::o;8063:269::-;8173:39;8204:7;8173:39;:::i;:::-;8234:91;8283:41;8307:16;8283:41;:::i;:::-;8275:6;8268:4;8262:11;8234:91;:::i;:::-;8228:4;8221:105;8139:193;8063:269;;;:::o;8338:73::-;8383:3;8338:73;:::o;8417:189::-;8494:32;;:::i;:::-;8535:65;8593:6;8585;8579:4;8535:65;:::i;:::-;8470:136;8417:189;;:::o;8612:186::-;8672:120;8689:3;8682:5;8679:14;8672:120;;;8743:39;8780:1;8773:5;8743:39;:::i;:::-;8716:1;8709:5;8705:13;8696:22;;8672:120;;;8612:186;;:::o;8804:543::-;8905:2;8900:3;8897:11;8894:446;;;8939:38;8971:5;8939:38;:::i;:::-;9023:29;9041:10;9023:29;:::i;:::-;9013:8;9009:44;9206:2;9194:10;9191:18;9188:49;;;9227:8;9212:23;;9188:49;9250:80;9306:22;9324:3;9306:22;:::i;:::-;9296:8;9292:37;9279:11;9250:80;:::i;:::-;8909:431;;8894:446;8804:543;;;:::o;9353:117::-;9407:8;9457:5;9451:4;9447:16;9426:37;;9353:117;;;;:::o;9476:169::-;9520:6;9553:51;9601:1;9597:6;9589:5;9586:1;9582:13;9553:51;:::i;:::-;9549:56;9634:4;9628;9624:15;9614:25;;9527:118;9476:169;;;;:::o;9650:295::-;9726:4;9872:29;9897:3;9891:4;9872:29;:::i;:::-;9864:37;;9934:3;9931:1;9927:11;9921:4;9918:21;9910:29;;9650:295;;;;:::o;9950:1395::-;10067:37;10100:3;10067:37;:::i;:::-;10169:18;10161:6;10158:30;10155:56;;;10191:18;;:::i;:::-;10155:56;10235:38;10267:4;10261:11;10235:38;:::i;:::-;10320:67;10380:6;10372;10366:4;10320:67;:::i;:::-;10414:1;10438:4;10425:17;;10470:2;10462:6;10459:14;10487:1;10482:618;;;;11144:1;11161:6;11158:77;;;11210:9;11205:3;11201:19;11195:26;11186:35;;11158:77;11261:67;11321:6;11314:5;11261:67;:::i;:::-;11255:4;11248:81;11117:222;10452:887;;10482:618;10534:4;10530:9;10522:6;10518:22;10568:37;10600:4;10568:37;:::i;:::-;10627:1;10641:208;10655:7;10652:1;10649:14;10641:208;;;10734:9;10729:3;10725:19;10719:26;10711:6;10704:42;10785:1;10777:6;10773:14;10763:24;;10832:2;10821:9;10817:18;10804:31;;10678:4;10675:1;10671:12;10666:17;;10641:208;;;10877:6;10868:7;10865:19;10862:179;;;10935:9;10930:3;10926:19;10920:26;10978:48;11020:4;11012:6;11008:17;10997:9;10978:48;:::i;:::-;10970:6;10963:64;10885:156;10862:179;11087:1;11083;11075:6;11071:14;11067:22;11061:4;11054:36;10489:611;;;10452:887;;10042:1303;;;9950:1395;;:::o;11351:148::-;11453:11;11490:3;11475:18;;11351:148;;;;:::o;11505:390::-;11611:3;11639:39;11672:5;11639:39;:::i;:::-;11694:89;11776:6;11771:3;11694:89;:::i;:::-;11687:96;;11792:65;11850:6;11845:3;11838:4;11831:5;11827:16;11792:65;:::i;:::-;11882:6;11877:3;11873:16;11866:23;;11615:280;11505:390;;;;:::o;11901:275::-;12033:3;12055:95;12146:3;12137:6;12055:95;:::i;:::-;12048:102;;12167:3;12160:10;;11901:275;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "494800",
"executionCost": "530",
"totalCost": "495330"
},
"external": {
"addPerson(string,uint256)": "infinite",
"listOfPeople(uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"retrieve()": "2415",
"store(uint256)": "infinite"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"listOfPeople(uint256)": "2ebce631",
"nameToFavoriteNumber(string)": "8bab8dd5",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfPeople",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfPeople",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/AddFiveStorage.sol": "AddFiveStorage"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/AddFiveStorage.sol": {
"keccak256": "0x1c496d9956896552ae9fe2359e7073a4b72fffec70a470c9b84424896d80b489",
"license": "MIT",
"urls": [
"bzz-raw://85c4073c5331bea6da9bcebdd79f0142557203f66484d71ad926d6c4d521eaeb",
"dweb:/ipfs/QmSMDSr2Kafp5zu554bcqNsPPA9DkdSa7wyvxZs7DLwXZG"
]
},
"contracts/SimpleStorage.sol": {
"keccak256": "0x20474d78a30237c2ead44f083c7c6a87f0707f0fd484bce0d47487269be9247a",
"license": "MIT",
"urls": [
"bzz-raw://88bf73bc82fd9af62d2523cf53e873aff79a89c0a5d8427b6667efd0e15d750b",
"dweb:/ipfs/QmbEPr4H8apFQFig5H49zVudrzs1B6J3PC2aoRnJEYX5tw"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b506101f88061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610029575f3560e01c8063539340e91461002d575b5f80fd5b610047600480360381019061004291906100bb565b61005d565b6040516100549190610108565b60405180910390f35b5f818361006a919061014e565b836100759190610181565b5f819055505f54905092915050565b5f80fd5b5f819050919050565b61009a81610088565b81146100a4575f80fd5b50565b5f813590506100b581610091565b92915050565b5f80604083850312156100d1576100d0610084565b5b5f6100de858286016100a7565b92505060206100ef858286016100a7565b9150509250929050565b61010281610088565b82525050565b5f60208201905061011b5f8301846100f9565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61015882610088565b915061016383610088565b925082820190508082111561017b5761017a610121565b5b92915050565b5f61018b82610088565b915061019683610088565b92508282026101a481610088565b915082820484148315176101bb576101ba610121565b5b509291505056fea26469706673582212205ba0028268d88ea9837ebc0ef2ec687f099f25eec205c565e0a96c84d35dea6f64736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x539340E9 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x47 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x42 SWAP2 SWAP1 PUSH2 0xBB JUMP JUMPDEST PUSH2 0x5D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x54 SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP2 DUP4 PUSH2 0x6A SWAP2 SWAP1 PUSH2 0x14E JUMP JUMPDEST DUP4 PUSH2 0x75 SWAP2 SWAP1 PUSH2 0x181 JUMP JUMPDEST PUSH0 DUP2 SWAP1 SSTORE POP PUSH0 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9A DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xA4 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB5 DUP2 PUSH2 0x91 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD1 JUMPI PUSH2 0xD0 PUSH2 0x84 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xDE DUP6 DUP3 DUP7 ADD PUSH2 0xA7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xEF DUP6 DUP3 DUP7 ADD PUSH2 0xA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x102 DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11B PUSH0 DUP4 ADD DUP5 PUSH2 0xF9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x158 DUP3 PUSH2 0x88 JUMP JUMPDEST SWAP2 POP PUSH2 0x163 DUP4 PUSH2 0x88 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x17B JUMPI PUSH2 0x17A PUSH2 0x121 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x18B DUP3 PUSH2 0x88 JUMP JUMPDEST SWAP2 POP PUSH2 0x196 DUP4 PUSH2 0x88 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x1A4 DUP2 PUSH2 0x88 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x1BB JUMPI PUSH2 0x1BA PUSH2 0x121 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST LOG0 MUL DUP3 PUSH9 0xD88EA9837EBC0EF2EC PUSH9 0x7F099F25EEC205C565 0xE0 0xA9 PUSH13 0x84D35DEA6F64736F6C63430008 XOR STOP CALLER ",
"sourceMap": "61:168:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@crossMultiply_24": {
"entryPoint": 93,
"id": 24,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 167,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 187,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 249,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 264,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 334,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 385,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 289,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 132,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 145,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:2318:1",
"nodeType": "YulBlock",
"src": "0:2318:1",
"statements": [
{
"body": {
"nativeSrc": "47:35:1",
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nativeSrc": "57:19:1",
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:1",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:1",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nativeSrc": "67:9:1",
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:1",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:1",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nativeSrc": "177:28:1",
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:1",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:1",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:1",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:1",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nativeSrc": "300:28:1",
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:1",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:1",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:1",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:1",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nativeSrc": "379:32:1",
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nativeSrc": "389:16:1",
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nativeSrc": "400:5:1",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "389:7:1",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "334:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "361:5:1",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "371:7:1",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nativeSrc": "460:79:1",
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nativeSrc": "517:16:1",
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "526:1:1",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "529:1:1",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "519:6:1",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "483:5:1",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:1",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "490:17:1",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nativeSrc": "490:24:1",
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "480:2:1",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nativeSrc": "480:35:1",
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "473:6:1",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nativeSrc": "473:43:1",
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nativeSrc": "470:63:1",
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "417:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "453:5:1",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nativeSrc": "597:87:1",
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nativeSrc": "607:29:1",
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "629:6:1",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "616:12:1",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nativeSrc": "616:20:1",
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "607:5:1",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "672:5:1",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "645:26:1",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "545:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "575:6:1",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "583:3:1",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "591:5:1",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nativeSrc": "773:391:1",
"nodeType": "YulBlock",
"src": "773:391:1",
"statements": [
{
"body": {
"nativeSrc": "819:83:1",
"nodeType": "YulBlock",
"src": "819:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "821:77:1",
"nodeType": "YulIdentifier",
"src": "821:77:1"
},
"nativeSrc": "821:79:1",
"nodeType": "YulFunctionCall",
"src": "821:79:1"
},
"nativeSrc": "821:79:1",
"nodeType": "YulExpressionStatement",
"src": "821:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "794:7:1",
"nodeType": "YulIdentifier",
"src": "794:7:1"
},
{
"name": "headStart",
"nativeSrc": "803:9:1",
"nodeType": "YulIdentifier",
"src": "803:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "790:3:1",
"nodeType": "YulIdentifier",
"src": "790:3:1"
},
"nativeSrc": "790:23:1",
"nodeType": "YulFunctionCall",
"src": "790:23:1"
},
{
"kind": "number",
"nativeSrc": "815:2:1",
"nodeType": "YulLiteral",
"src": "815:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "786:3:1",
"nodeType": "YulIdentifier",
"src": "786:3:1"
},
"nativeSrc": "786:32:1",
"nodeType": "YulFunctionCall",
"src": "786:32:1"
},
"nativeSrc": "783:119:1",
"nodeType": "YulIf",
"src": "783:119:1"
},
{
"nativeSrc": "912:117:1",
"nodeType": "YulBlock",
"src": "912:117:1",
"statements": [
{
"nativeSrc": "927:15:1",
"nodeType": "YulVariableDeclaration",
"src": "927:15:1",
"value": {
"kind": "number",
"nativeSrc": "941:1:1",
"nodeType": "YulLiteral",
"src": "941:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "931:6:1",
"nodeType": "YulTypedName",
"src": "931:6:1",
"type": ""
}
]
},
{
"nativeSrc": "956:63:1",
"nodeType": "YulAssignment",
"src": "956:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "991:9:1",
"nodeType": "YulIdentifier",
"src": "991:9:1"
},
{
"name": "offset",
"nativeSrc": "1002:6:1",
"nodeType": "YulIdentifier",
"src": "1002:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "987:3:1",
"nodeType": "YulIdentifier",
"src": "987:3:1"
},
"nativeSrc": "987:22:1",
"nodeType": "YulFunctionCall",
"src": "987:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1011:7:1",
"nodeType": "YulIdentifier",
"src": "1011:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "966:20:1",
"nodeType": "YulIdentifier",
"src": "966:20:1"
},
"nativeSrc": "966:53:1",
"nodeType": "YulFunctionCall",
"src": "966:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "956:6:1",
"nodeType": "YulIdentifier",
"src": "956:6:1"
}
]
}
]
},
{
"nativeSrc": "1039:118:1",
"nodeType": "YulBlock",
"src": "1039:118:1",
"statements": [
{
"nativeSrc": "1054:16:1",
"nodeType": "YulVariableDeclaration",
"src": "1054:16:1",
"value": {
"kind": "number",
"nativeSrc": "1068:2:1",
"nodeType": "YulLiteral",
"src": "1068:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1058:6:1",
"nodeType": "YulTypedName",
"src": "1058:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1084:63:1",
"nodeType": "YulAssignment",
"src": "1084:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1119:9:1",
"nodeType": "YulIdentifier",
"src": "1119:9:1"
},
{
"name": "offset",
"nativeSrc": "1130:6:1",
"nodeType": "YulIdentifier",
"src": "1130:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1115:3:1",
"nodeType": "YulIdentifier",
"src": "1115:3:1"
},
"nativeSrc": "1115:22:1",
"nodeType": "YulFunctionCall",
"src": "1115:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1139:7:1",
"nodeType": "YulIdentifier",
"src": "1139:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "1094:20:1",
"nodeType": "YulIdentifier",
"src": "1094:20:1"
},
"nativeSrc": "1094:53:1",
"nodeType": "YulFunctionCall",
"src": "1094:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "1084:6:1",
"nodeType": "YulIdentifier",
"src": "1084:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nativeSrc": "690:474:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "735:9:1",
"nodeType": "YulTypedName",
"src": "735:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "746:7:1",
"nodeType": "YulTypedName",
"src": "746:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "758:6:1",
"nodeType": "YulTypedName",
"src": "758:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "766:6:1",
"nodeType": "YulTypedName",
"src": "766:6:1",
"type": ""
}
],
"src": "690:474:1"
},
{
"body": {
"nativeSrc": "1235:53:1",
"nodeType": "YulBlock",
"src": "1235:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1252:3:1",
"nodeType": "YulIdentifier",
"src": "1252:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1275:5:1",
"nodeType": "YulIdentifier",
"src": "1275:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1257:17:1",
"nodeType": "YulIdentifier",
"src": "1257:17:1"
},
"nativeSrc": "1257:24:1",
"nodeType": "YulFunctionCall",
"src": "1257:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1245:6:1",
"nodeType": "YulIdentifier",
"src": "1245:6:1"
},
"nativeSrc": "1245:37:1",
"nodeType": "YulFunctionCall",
"src": "1245:37:1"
},
"nativeSrc": "1245:37:1",
"nodeType": "YulExpressionStatement",
"src": "1245:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1170:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1223:5:1",
"nodeType": "YulTypedName",
"src": "1223:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1230:3:1",
"nodeType": "YulTypedName",
"src": "1230:3:1",
"type": ""
}
],
"src": "1170:118:1"
},
{
"body": {
"nativeSrc": "1392:124:1",
"nodeType": "YulBlock",
"src": "1392:124:1",
"statements": [
{
"nativeSrc": "1402:26:1",
"nodeType": "YulAssignment",
"src": "1402:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1414:9:1",
"nodeType": "YulIdentifier",
"src": "1414:9:1"
},
{
"kind": "number",
"nativeSrc": "1425:2:1",
"nodeType": "YulLiteral",
"src": "1425:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1410:3:1",
"nodeType": "YulIdentifier",
"src": "1410:3:1"
},
"nativeSrc": "1410:18:1",
"nodeType": "YulFunctionCall",
"src": "1410:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1402:4:1",
"nodeType": "YulIdentifier",
"src": "1402:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1482:6:1",
"nodeType": "YulIdentifier",
"src": "1482:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1495:9:1",
"nodeType": "YulIdentifier",
"src": "1495:9:1"
},
{
"kind": "number",
"nativeSrc": "1506:1:1",
"nodeType": "YulLiteral",
"src": "1506:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1491:3:1",
"nodeType": "YulIdentifier",
"src": "1491:3:1"
},
"nativeSrc": "1491:17:1",
"nodeType": "YulFunctionCall",
"src": "1491:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1438:43:1",
"nodeType": "YulIdentifier",
"src": "1438:43:1"
},
"nativeSrc": "1438:71:1",
"nodeType": "YulFunctionCall",
"src": "1438:71:1"
},
"nativeSrc": "1438:71:1",
"nodeType": "YulExpressionStatement",
"src": "1438:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "1294:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1364:9:1",
"nodeType": "YulTypedName",
"src": "1364:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1376:6:1",
"nodeType": "YulTypedName",
"src": "1376:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1387:4:1",
"nodeType": "YulTypedName",
"src": "1387:4:1",
"type": ""
}
],
"src": "1294:222:1"
},
{
"body": {
"nativeSrc": "1550:152:1",
"nodeType": "YulBlock",
"src": "1550:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1567:1:1",
"nodeType": "YulLiteral",
"src": "1567:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1570:77:1",
"nodeType": "YulLiteral",
"src": "1570:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1560:6:1",
"nodeType": "YulIdentifier",
"src": "1560:6:1"
},
"nativeSrc": "1560:88:1",
"nodeType": "YulFunctionCall",
"src": "1560:88:1"
},
"nativeSrc": "1560:88:1",
"nodeType": "YulExpressionStatement",
"src": "1560:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1664:1:1",
"nodeType": "YulLiteral",
"src": "1664:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1667:4:1",
"nodeType": "YulLiteral",
"src": "1667:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1657:6:1",
"nodeType": "YulIdentifier",
"src": "1657:6:1"
},
"nativeSrc": "1657:15:1",
"nodeType": "YulFunctionCall",
"src": "1657:15:1"
},
"nativeSrc": "1657:15:1",
"nodeType": "YulExpressionStatement",
"src": "1657:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1688:1:1",
"nodeType": "YulLiteral",
"src": "1688:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1691:4:1",
"nodeType": "YulLiteral",
"src": "1691:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1681:6:1",
"nodeType": "YulIdentifier",
"src": "1681:6:1"
},
"nativeSrc": "1681:15:1",
"nodeType": "YulFunctionCall",
"src": "1681:15:1"
},
"nativeSrc": "1681:15:1",
"nodeType": "YulExpressionStatement",
"src": "1681:15:1"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "1522:180:1",
"nodeType": "YulFunctionDefinition",
"src": "1522:180:1"
},
{
"body": {
"nativeSrc": "1752:147:1",
"nodeType": "YulBlock",
"src": "1752:147:1",
"statements": [
{
"nativeSrc": "1762:25:1",
"nodeType": "YulAssignment",
"src": "1762:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "1785:1:1",
"nodeType": "YulIdentifier",
"src": "1785:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1767:17:1",
"nodeType": "YulIdentifier",
"src": "1767:17:1"
},
"nativeSrc": "1767:20:1",
"nodeType": "YulFunctionCall",
"src": "1767:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "1762:1:1",
"nodeType": "YulIdentifier",
"src": "1762:1:1"
}
]
},
{
"nativeSrc": "1796:25:1",
"nodeType": "YulAssignment",
"src": "1796:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "1819:1:1",
"nodeType": "YulIdentifier",
"src": "1819:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1801:17:1",
"nodeType": "YulIdentifier",
"src": "1801:17:1"
},
"nativeSrc": "1801:20:1",
"nodeType": "YulFunctionCall",
"src": "1801:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "1796:1:1",
"nodeType": "YulIdentifier",
"src": "1796:1:1"
}
]
},
{
"nativeSrc": "1830:16:1",
"nodeType": "YulAssignment",
"src": "1830:16:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "1841:1:1",
"nodeType": "YulIdentifier",
"src": "1841:1:1"
},
{
"name": "y",
"nativeSrc": "1844:1:1",
"nodeType": "YulIdentifier",
"src": "1844:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1837:3:1",
"nodeType": "YulIdentifier",
"src": "1837:3:1"
},
"nativeSrc": "1837:9:1",
"nodeType": "YulFunctionCall",
"src": "1837:9:1"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "1830:3:1",
"nodeType": "YulIdentifier",
"src": "1830:3:1"
}
]
},
{
"body": {
"nativeSrc": "1870:22:1",
"nodeType": "YulBlock",
"src": "1870:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "1872:16:1",
"nodeType": "YulIdentifier",
"src": "1872:16:1"
},
"nativeSrc": "1872:18:1",
"nodeType": "YulFunctionCall",
"src": "1872:18:1"
},
"nativeSrc": "1872:18:1",
"nodeType": "YulExpressionStatement",
"src": "1872:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "1862:1:1",
"nodeType": "YulIdentifier",
"src": "1862:1:1"
},
{
"name": "sum",
"nativeSrc": "1865:3:1",
"nodeType": "YulIdentifier",
"src": "1865:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "1859:2:1",
"nodeType": "YulIdentifier",
"src": "1859:2:1"
},
"nativeSrc": "1859:10:1",
"nodeType": "YulFunctionCall",
"src": "1859:10:1"
},
"nativeSrc": "1856:36:1",
"nodeType": "YulIf",
"src": "1856:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "1708:191:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "1739:1:1",
"nodeType": "YulTypedName",
"src": "1739:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "1742:1:1",
"nodeType": "YulTypedName",
"src": "1742:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "1748:3:1",
"nodeType": "YulTypedName",
"src": "1748:3:1",
"type": ""
}
],
"src": "1708:191:1"
},
{
"body": {
"nativeSrc": "1953:362:1",
"nodeType": "YulBlock",
"src": "1953:362:1",
"statements": [
{
"nativeSrc": "1963:25:1",
"nodeType": "YulAssignment",
"src": "1963:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "1986:1:1",
"nodeType": "YulIdentifier",
"src": "1986:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1968:17:1",
"nodeType": "YulIdentifier",
"src": "1968:17:1"
},
"nativeSrc": "1968:20:1",
"nodeType": "YulFunctionCall",
"src": "1968:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "1963:1:1",
"nodeType": "YulIdentifier",
"src": "1963:1:1"
}
]
},
{
"nativeSrc": "1997:25:1",
"nodeType": "YulAssignment",
"src": "1997:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "2020:1:1",
"nodeType": "YulIdentifier",
"src": "2020:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2002:17:1",
"nodeType": "YulIdentifier",
"src": "2002:17:1"
},
"nativeSrc": "2002:20:1",
"nodeType": "YulFunctionCall",
"src": "2002:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "1997:1:1",
"nodeType": "YulIdentifier",
"src": "1997:1:1"
}
]
},
{
"nativeSrc": "2031:28:1",
"nodeType": "YulVariableDeclaration",
"src": "2031:28:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "2054:1:1",
"nodeType": "YulIdentifier",
"src": "2054:1:1"
},
{
"name": "y",
"nativeSrc": "2057:1:1",
"nodeType": "YulIdentifier",
"src": "2057:1:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "2050:3:1",
"nodeType": "YulIdentifier",
"src": "2050:3:1"
},
"nativeSrc": "2050:9:1",
"nodeType": "YulFunctionCall",
"src": "2050:9:1"
},
"variables": [
{
"name": "product_raw",
"nativeSrc": "2035:11:1",
"nodeType": "YulTypedName",
"src": "2035:11:1",
"type": ""
}
]
},
{
"nativeSrc": "2068:41:1",
"nodeType": "YulAssignment",
"src": "2068:41:1",
"value": {
"arguments": [
{
"name": "product_raw",
"nativeSrc": "2097:11:1",
"nodeType": "YulIdentifier",
"src": "2097:11:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2079:17:1",
"nodeType": "YulIdentifier",
"src": "2079:17:1"
},
"nativeSrc": "2079:30:1",
"nodeType": "YulFunctionCall",
"src": "2079:30:1"
},
"variableNames": [
{
"name": "product",
"nativeSrc": "2068:7:1",
"nodeType": "YulIdentifier",
"src": "2068:7:1"
}
]
},
{
"body": {
"nativeSrc": "2286:22:1",
"nodeType": "YulBlock",
"src": "2286:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "2288:16:1",
"nodeType": "YulIdentifier",
"src": "2288:16:1"
},
"nativeSrc": "2288:18:1",
"nodeType": "YulFunctionCall",
"src": "2288:18:1"
},
"nativeSrc": "2288:18:1",
"nodeType": "YulExpressionStatement",
"src": "2288:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nativeSrc": "2219:1:1",
"nodeType": "YulIdentifier",
"src": "2219:1:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2212:6:1",
"nodeType": "YulIdentifier",
"src": "2212:6:1"
},
"nativeSrc": "2212:9:1",
"nodeType": "YulFunctionCall",
"src": "2212:9:1"
},
{
"arguments": [
{
"name": "y",
"nativeSrc": "2242:1:1",
"nodeType": "YulIdentifier",
"src": "2242:1:1"
},
{
"arguments": [
{
"name": "product",
"nativeSrc": "2249:7:1",
"nodeType": "YulIdentifier",
"src": "2249:7:1"
},
{
"name": "x",
"nativeSrc": "2258:1:1",
"nodeType": "YulIdentifier",
"src": "2258:1:1"
}
],
"functionName": {
"name": "div",
"nativeSrc": "2245:3:1",
"nodeType": "YulIdentifier",
"src": "2245:3:1"
},
"nativeSrc": "2245:15:1",
"nodeType": "YulFunctionCall",
"src": "2245:15:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "2239:2:1",
"nodeType": "YulIdentifier",
"src": "2239:2:1"
},
"nativeSrc": "2239:22:1",
"nodeType": "YulFunctionCall",
"src": "2239:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "2192:2:1",
"nodeType": "YulIdentifier",
"src": "2192:2:1"
},
"nativeSrc": "2192:83:1",
"nodeType": "YulFunctionCall",
"src": "2192:83:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2172:6:1",
"nodeType": "YulIdentifier",
"src": "2172:6:1"
},
"nativeSrc": "2172:113:1",
"nodeType": "YulFunctionCall",
"src": "2172:113:1"
},
"nativeSrc": "2169:139:1",
"nodeType": "YulIf",
"src": "2169:139:1"
}
]
},
"name": "checked_mul_t_uint256",
"nativeSrc": "1905:410:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "1936:1:1",
"nodeType": "YulTypedName",
"src": "1936:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "1939:1:1",
"nodeType": "YulTypedName",
"src": "1939:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nativeSrc": "1945:7:1",
"nodeType": "YulTypedName",
"src": "1945:7:1",
"type": ""
}
],
"src": "1905:410:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610029575f3560e01c8063539340e91461002d575b5f80fd5b610047600480360381019061004291906100bb565b61005d565b6040516100549190610108565b60405180910390f35b5f818361006a919061014e565b836100759190610181565b5f819055505f54905092915050565b5f80fd5b5f819050919050565b61009a81610088565b81146100a4575f80fd5b50565b5f813590506100b581610091565b92915050565b5f80604083850312156100d1576100d0610084565b5b5f6100de858286016100a7565b92505060206100ef858286016100a7565b9150509250929050565b61010281610088565b82525050565b5f60208201905061011b5f8301846100f9565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61015882610088565b915061016383610088565b925082820190508082111561017b5761017a610121565b5b92915050565b5f61018b82610088565b915061019683610088565b92508282026101a481610088565b915082820484148315176101bb576101ba610121565b5b509291505056fea26469706673582212205ba0028268d88ea9837ebc0ef2ec687f099f25eec205c565e0a96c84d35dea6f64736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x539340E9 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x47 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x42 SWAP2 SWAP1 PUSH2 0xBB JUMP JUMPDEST PUSH2 0x5D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x54 SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP2 DUP4 PUSH2 0x6A SWAP2 SWAP1 PUSH2 0x14E JUMP JUMPDEST DUP4 PUSH2 0x75 SWAP2 SWAP1 PUSH2 0x181 JUMP JUMPDEST PUSH0 DUP2 SWAP1 SSTORE POP PUSH0 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9A DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xA4 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB5 DUP2 PUSH2 0x91 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD1 JUMPI PUSH2 0xD0 PUSH2 0x84 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xDE DUP6 DUP3 DUP7 ADD PUSH2 0xA7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xEF DUP6 DUP3 DUP7 ADD PUSH2 0xA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x102 DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11B PUSH0 DUP4 ADD DUP5 PUSH2 0xF9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x158 DUP3 PUSH2 0x88 JUMP JUMPDEST SWAP2 POP PUSH2 0x163 DUP4 PUSH2 0x88 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x17B JUMPI PUSH2 0x17A PUSH2 0x121 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x18B DUP3 PUSH2 0x88 JUMP JUMPDEST SWAP2 POP PUSH2 0x196 DUP4 PUSH2 0x88 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x1A4 DUP2 PUSH2 0x88 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x1BB JUMPI PUSH2 0x1BA PUSH2 0x121 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST LOG0 MUL DUP3 PUSH9 0xD88EA9837EBC0EF2EC PUSH9 0x7F099F25EEC205C565 0xE0 0xA9 PUSH13 0x84D35DEA6F64736F6C63430008 XOR STOP CALLER ",
"sourceMap": "61:168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;157:4;191:1;187;:5;;;;:::i;:::-;182:1;:11;;;;:::i;:::-;174:5;:19;;;;213:5;;206:12;;103:123;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:180::-;1570:77;1567:1;1560:88;1667:4;1664:1;1657:15;1691:4;1688:1;1681:15;1708:191;1748:3;1767:20;1785:1;1767:20;:::i;:::-;1762:25;;1801:20;1819:1;1801:20;:::i;:::-;1796:25;;1844:1;1841;1837:9;1830:16;;1865:3;1862:1;1859:10;1856:36;;;1872:18;;:::i;:::-;1856:36;1708:191;;;;:::o;1905:410::-;1945:7;1968:20;1986:1;1968:20;:::i;:::-;1963:25;;2002:20;2020:1;2002:20;:::i;:::-;1997:25;;2057:1;2054;2050:9;2079:30;2097:11;2079:30;:::i;:::-;2068:41;;2258:1;2249:7;2245:15;2242:1;2239:22;2219:1;2212:9;2192:83;2169:139;;2288:18;;:::i;:::-;2169:139;1953:362;1905:410;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "100800",
"executionCost": "145",
"totalCost": "100945"
},
"external": {
"crossMultiply(uint256,uint256)": "infinite"
}
},
"methodIdentifiers": {
"crossMultiply(uint256,uint256)": "539340e9"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "x",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "y",
"type": "uint256"
}
],
"name": "crossMultiply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "x",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "y",
"type": "uint256"
}
],
"name": "crossMultiply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/SimpleContract.sol": "Simple"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleContract.sol": {
"keccak256": "0x69c4aeedd71a64f0663278ae06375e1343aa23c8ba53e089b2139f43c71daa4f",
"license": "MIT",
"urls": [
"bzz-raw://04fe9c712bc57b75c98ff532f25fbf438b67ba06674cdd16f58e97e5e81ca357",
"dweb:/ipfs/QmQx22SwoC8C3xjhQtZdmJcAFbi5zhvFrf32Z7EDksPGLK"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061093b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102b2565b60405180910390f35b610094600480360381019061008f919061030d565b61011c565b6040516100a29291906103ca565b60405180910390f35b6100c560048036038101906100c0919061030d565b6101d8565b005b6100e160048036038101906100dc919061052f565b6101e2565b005b6100fd60048036038101906100f8919061058b565b61026b565b60405161010a91906102b2565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b906000526020600020906002020160009150905080600001549080600101805461015590610603565b80601f016020809104026020016040519081016040528092919081815260200182805461018190610603565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024191906107e0565b5050508060028360405161025591906108ee565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102ac81610299565b82525050565b60006020820190506102c760008301846102a3565b92915050565b6000604051905090565b600080fd5b600080fd5b6102ea81610299565b81146102f557600080fd5b50565b600081359050610307816102e1565b92915050565b600060208284031215610323576103226102d7565b5b6000610331848285016102f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610374578082015181840152602081019050610359565b60008484015250505050565b6000601f19601f8301169050919050565b600061039c8261033a565b6103a68185610345565b93506103b6818560208601610356565b6103bf81610380565b840191505092915050565b60006040820190506103df60008301856102a3565b81810360208301526103f18184610391565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61043c82610380565b810181811067ffffffffffffffff8211171561045b5761045a610404565b5b80604052505050565b600061046e6102cd565b905061047a8282610433565b919050565b600067ffffffffffffffff82111561049a57610499610404565b5b6104a382610380565b9050602081019050919050565b82818337600083830152505050565b60006104d26104cd8461047f565b610464565b9050828152602081018484840111156104ee576104ed6103ff565b5b6104f98482856104b0565b509392505050565b600082601f830112610516576105156103fa565b5b81356105268482602086016104bf565b91505092915050565b60008060408385031215610546576105456102d7565b5b600083013567ffffffffffffffff811115610564576105636102dc565b5b61057085828601610501565b9250506020610581858286016102f8565b9150509250929050565b6000602082840312156105a1576105a06102d7565b5b600082013567ffffffffffffffff8111156105bf576105be6102dc565b5b6105cb84828501610501565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061061b57607f821691505b60208210810361062e5761062d6105d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610659565b6106a08683610659565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106dd6106d86106d384610299565b6106b8565b610299565b9050919050565b6000819050919050565b6106f7836106c2565b61070b610703826106e4565b848454610666565b825550505050565b600090565b610720610713565b61072b8184846106ee565b505050565b5b8181101561074f57610744600082610718565b600181019050610731565b5050565b601f8211156107945761076581610634565b61076e84610649565b8101602085101561077d578190505b61079161078985610649565b830182610730565b50505b505050565b600082821c905092915050565b60006107b760001984600802610799565b1980831691505092915050565b60006107d083836107a6565b9150826002028217905092915050565b6107e98261033a565b67ffffffffffffffff81111561080257610801610404565b5b61080c8254610603565b610817828285610753565b600060209050601f83116001811461084a5760008415610838578287015190505b61084285826107c4565b8655506108aa565b601f19841661085886610634565b60005b828110156108805784890151825560018201915060208501945060208101905061085b565b8683101561089d5784890151610899601f8916826107a6565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006108c88261033a565b6108d281856108b2565b93506108e2818560208601610356565b80840191505092915050565b60006108fa82846108bd565b91508190509291505056fea264697066735822122063d4d91414b587e6d2950da341372bede9d97e064d5e5b2e13f681871074c89164736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x93B DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x52F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH2 0x26B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x7E0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x8EE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AC DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EA DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x307 DUP2 PUSH2 0x2E1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x323 JUMPI PUSH2 0x322 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x331 DUP5 DUP3 DUP6 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x374 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x359 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x3A6 DUP2 DUP6 PUSH2 0x345 JUMP JUMPDEST SWAP4 POP PUSH2 0x3B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x380 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3DF PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2A3 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3F1 DUP2 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x43C DUP3 PUSH2 0x380 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x45B JUMPI PUSH2 0x45A PUSH2 0x404 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46E PUSH2 0x2CD JUMP JUMPDEST SWAP1 POP PUSH2 0x47A DUP3 DUP3 PUSH2 0x433 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x49A JUMPI PUSH2 0x499 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x4A3 DUP3 PUSH2 0x380 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D2 PUSH2 0x4CD DUP5 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x464 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4EE JUMPI PUSH2 0x4ED PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x4F9 DUP5 DUP3 DUP6 PUSH2 0x4B0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x516 JUMPI PUSH2 0x515 PUSH2 0x3FA JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x526 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x546 JUMPI PUSH2 0x545 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x564 JUMPI PUSH2 0x563 PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP6 DUP3 DUP7 ADD PUSH2 0x501 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x581 DUP6 DUP3 DUP7 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A1 JUMPI PUSH2 0x5A0 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BF JUMPI PUSH2 0x5BE PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x5CB DUP5 DUP3 DUP6 ADD PUSH2 0x501 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x61B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x62E JUMPI PUSH2 0x62D PUSH2 0x5D4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x696 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x659 JUMP JUMPDEST PUSH2 0x6A0 DUP7 DUP4 PUSH2 0x659 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DD PUSH2 0x6D8 PUSH2 0x6D3 DUP5 PUSH2 0x299 JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH2 0x299 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6F7 DUP4 PUSH2 0x6C2 JUMP JUMPDEST PUSH2 0x70B PUSH2 0x703 DUP3 PUSH2 0x6E4 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x666 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x720 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x72B DUP2 DUP5 DUP5 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x74F JUMPI PUSH2 0x744 PUSH1 0x0 DUP3 PUSH2 0x718 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x731 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x794 JUMPI PUSH2 0x765 DUP2 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x76E DUP5 PUSH2 0x649 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x77D JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x791 PUSH2 0x789 DUP6 PUSH2 0x649 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x730 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7B7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x799 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D0 DUP4 DUP4 PUSH2 0x7A6 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7E9 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x802 JUMPI PUSH2 0x801 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x80C DUP3 SLOAD PUSH2 0x603 JUMP JUMPDEST PUSH2 0x817 DUP3 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x84A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x838 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x842 DUP6 DUP3 PUSH2 0x7C4 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x8AA JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x858 DUP7 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x880 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x85B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x89D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x899 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x7A6 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C8 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x8D2 DUP2 DUP6 PUSH2 0x8B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x8E2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FA DUP3 DUP5 PUSH2 0x8BD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xD4D91414 0xB5 DUP8 0xE6 0xD2 SWAP6 0xD LOG3 COINBASE CALLDATACOPY 0x2B 0xED 0xE9 0xD9 PUSH31 0x64D5E5B2E13F681871074C89164736F6C6343000813003300000000000000 ",
"sourceMap": "147:695:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_57": {
"entryPoint": 482,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"@listOfPeople_12": {
"entryPoint": 284,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@nameToFavoriteNumber_16": {
"entryPoint": 619,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 275,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 472,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1215,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 760,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1419,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1327,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 781,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 913,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2237,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 675,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2286,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 690,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 970,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1124,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 717,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1151,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1588,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 826,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 837,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2226,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1875,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1840,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2016,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 1200,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 854,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1609,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1539,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1988,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1075,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1720,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1492,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1028,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1764,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1023,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 732,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 727,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 896,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1625,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1945,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1816,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1638,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1774,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 737,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1811,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11796:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1436:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1447:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1463:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1457:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1457:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1447:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1419:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1429:6:1",
"type": ""
}
],
"src": "1377:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1578:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1595:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1600:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1588:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1588:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1588:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1616:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1635:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1640:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1631:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1631:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1616:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1550:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1555:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1566:11:1",
"type": ""
}
],
"src": "1482:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:184:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1729:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1738:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1733:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1798:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1823:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1828:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1819:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1819:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1842:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1847:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1838:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1838:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1832:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1832:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1812:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1812:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1812:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1759:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1762:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1756:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1756:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1770:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1772:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1781:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1784:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1777:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1777:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1772:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1752:3:1",
"statements": []
},
"src": "1748:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1881:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1886:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1877:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1877:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1870:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1870:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1870:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1701:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1706:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1711:6:1",
"type": ""
}
],
"src": "1657:246:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1957:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1967:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1985:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1981:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2001:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1997:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1997:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1977:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1977:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1967:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1940:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1950:6:1",
"type": ""
}
],
"src": "1909:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2109:285:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2119:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2166:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2133:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2133:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2123:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2181:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2247:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2252:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2188:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2188:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2181:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2307:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2303:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2303:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2321:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2326:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2268:34:1"
},
"nodeType": "YulFunctionCall",
"src": "2268:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "2268:65:1"
},
{
"nodeType": "YulAssignment",
"src": "2342:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2353:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2380:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2358:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2358:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2349:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2349:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2342:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2090:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2097:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2105:3:1",
"type": ""
}
],
"src": "2017:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2546:277:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2556:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2568:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2564:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2564:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2556:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2636:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2649:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2660:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2645:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2645:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2592:43:1"
},
"nodeType": "YulFunctionCall",
"src": "2592:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "2592:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2684:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2695:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2680:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2680:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2704:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2710:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2700:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2700:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2673:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2673:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "2673:48:1"
},
{
"nodeType": "YulAssignment",
"src": "2730:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2802:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2811:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2738:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2738:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2730:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2510:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2522:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2530:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2541:4:1",
"type": ""
}
],
"src": "2400:423:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2918:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2935:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2938:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2928:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2928:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2928:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "2829:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3041:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3061:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3051:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3051:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3051:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "2952:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3103:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3120:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3123:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3113:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3113:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3113:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3217:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3220:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3210:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3210:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3210:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3241:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3234:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3234:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3234:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3075:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3304:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3314:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3336:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3366:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3344:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3344:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3332:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3332:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3318:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3483:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3485:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3485:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3485:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3426:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3438:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3423:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3423:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3462:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3474:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3459:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3459:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3420:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3420:62:1"
},
"nodeType": "YulIf",
"src": "3417:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3521:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3525:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3514:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3514:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3290:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3298:4:1",
"type": ""
}
],
"src": "3261:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3589:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3599:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3609:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3609:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3599:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3658:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3666:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3638:19:1"
},
"nodeType": "YulFunctionCall",
"src": "3638:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3638:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3573:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3582:6:1",
"type": ""
}
],
"src": "3548:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3750:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3855:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3857:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3857:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3857:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3827:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3835:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3824:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3824:30:1"
},
"nodeType": "YulIf",
"src": "3821:56:1"
},
{
"nodeType": "YulAssignment",
"src": "3887:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3917:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3895:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3895:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3887:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3961:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3973:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3979:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3969:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3969:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3961:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3734:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3745:4:1",
"type": ""
}
],
"src": "3683:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4061:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4084:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4089:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4094:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "4071:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4071:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "4071:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4121:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4126:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4117:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4117:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4135:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4110:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4110:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4110:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4043:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4048:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4053:6:1",
"type": ""
}
],
"src": "3997:146:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4233:341:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4243:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4310:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4268:41:1"
},
"nodeType": "YulFunctionCall",
"src": "4268:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "4252:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4252:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4243:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4334:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4341:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4327:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4327:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "4327:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4357:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4372:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4379:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4368:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4361:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4422:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "4424:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4424:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4424:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4403:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4408:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4399:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4399:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4417:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4396:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4396:25:1"
},
"nodeType": "YulIf",
"src": "4393:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4551:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4556:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4561:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "4514:36:1"
},
"nodeType": "YulFunctionCall",
"src": "4514:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "4514:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4206:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4211:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4219:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4227:5:1",
"type": ""
}
],
"src": "4149:425:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4656:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4705:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "4707:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4707:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4707:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4684:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4692:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4680:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4680:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4699:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4676:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4669:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4669:35:1"
},
"nodeType": "YulIf",
"src": "4666:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4797:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4824:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4811:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4811:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4801:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4840:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4901:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4909:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4897:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4897:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4916:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4924:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4849:47:1"
},
"nodeType": "YulFunctionCall",
"src": "4849:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4840:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4634:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4642:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4650:5:1",
"type": ""
}
],
"src": "4594:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5033:561:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5079:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5081:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5081:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5081:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5054:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5063:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5050:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5075:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5046:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5046:32:1"
},
"nodeType": "YulIf",
"src": "5043:119:1"
},
{
"nodeType": "YulBlock",
"src": "5172:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5187:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5218:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5229:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5214:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5201:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5201:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5191:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5279:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5281:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5281:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5281:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5251:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5259:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5248:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5248:30:1"
},
"nodeType": "YulIf",
"src": "5245:117:1"
},
{
"nodeType": "YulAssignment",
"src": "5376:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5421:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5432:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5417:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5417:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5441:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5386:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5386:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5376:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5469:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5484:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5498:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5488:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5514:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5549:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5560:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5545:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5545:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5569:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5524:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5524:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5514:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4995:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5006:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5018:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5026:6:1",
"type": ""
}
],
"src": "4940:654:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5676:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5722:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5724:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5724:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5724:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5697:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5706:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5693:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5693:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5718:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5689:32:1"
},
"nodeType": "YulIf",
"src": "5686:119:1"
},
{
"nodeType": "YulBlock",
"src": "5815:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5830:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5861:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5872:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5857:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5857:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5844:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5844:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5834:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5922:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5924:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5924:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5924:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5894:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5902:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5891:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5891:30:1"
},
"nodeType": "YulIf",
"src": "5888:117:1"
},
{
"nodeType": "YulAssignment",
"src": "6019:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6064:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6075:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6060:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6060:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6084:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6029:30:1"
},
"nodeType": "YulFunctionCall",
"src": "6029:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6019:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5646:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5657:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5669:6:1",
"type": ""
}
],
"src": "5600:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6143:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6160:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6163:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6153:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6153:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6153:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6257:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6260:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6250:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6250:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6250:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6281:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6284:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6274:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6274:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6274:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6115:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6352:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6362:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6376:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6382:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6372:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6372:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6362:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6393:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6423:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6429:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6419:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6419:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6397:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6470:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6484:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6498:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6506:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6494:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6494:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6484:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6450:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6443:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6443:26:1"
},
"nodeType": "YulIf",
"src": "6440:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6573:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6587:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6587:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6587:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6537:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6560:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6568:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6557:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6557:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6534:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6534:38:1"
},
"nodeType": "YulIf",
"src": "6531:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6336:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6345:6:1",
"type": ""
}
],
"src": "6301:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6681:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6691:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6699:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6691:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6719:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6722:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6712:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6712:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "6712:14:1"
},
{
"nodeType": "YulAssignment",
"src": "6735:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6753:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6756:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "6743:9:1"
},
"nodeType": "YulFunctionCall",
"src": "6743:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6735:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "6668:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6676:4:1",
"type": ""
}
],
"src": "6627:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6818:49:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6828:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6846:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6853:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6842:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6842:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6858:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6838:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6838:23:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6828:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6801:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6811:6:1",
"type": ""
}
],
"src": "6774:93:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6926:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6936:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "6961:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6967:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6957:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6957:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "6936:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6901:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6907:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "6917:8:1",
"type": ""
}
],
"src": "6873:107:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7062:317:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7072:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "7093:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7105:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7089:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7089:18:1"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "7076:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7116:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "7147:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7158:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "7128:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7128:97:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "7120:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7234:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "7265:9:1"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7276:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "7246:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7246:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7234:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7294:30:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7307:5:1"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7318:4:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7314:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7314:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7303:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7303:21:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7294:5:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7333:40:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7346:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7357:8:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7367:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7353:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7353:19:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7343:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7343:30:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7333:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7023:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "7030:10:1",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "7042:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7055:6:1",
"type": ""
}
],
"src": "6986:393:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7417:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7427:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7434:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7427:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7403:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7413:3:1",
"type": ""
}
],
"src": "7385:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7511:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7521:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7579:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7561:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7561:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "7552:8:1"
},
"nodeType": "YulFunctionCall",
"src": "7552:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7534:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7534:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "7521:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7491:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "7501:9:1",
"type": ""
}
],
"src": "7451:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7646:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7656:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7663:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7656:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7632:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7642:3:1",
"type": ""
}
],
"src": "7599:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7756:193:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7766:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "7821:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7790:30:1"
},
"nodeType": "YulFunctionCall",
"src": "7790:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "7770:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7845:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7885:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "7879:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7879:11:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7892:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "7924:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "7900:23:1"
},
"nodeType": "YulFunctionCall",
"src": "7900:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "7851:27:1"
},
"nodeType": "YulFunctionCall",
"src": "7851:91:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "7838:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7838:105:1"
},
"nodeType": "YulExpressionStatement",
"src": "7838:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "7733:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7739:6:1",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "7747:7:1",
"type": ""
}
],
"src": "7680:269:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8004:24:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8014:8:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8021:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "8014:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "8000:3:1",
"type": ""
}
],
"src": "7955:73:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8087:136:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8097:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "8111:30:1"
},
"nodeType": "YulFunctionCall",
"src": "8111:32:1"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "8101:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8196:4:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8202:6:1"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "8210:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "8152:43:1"
},
"nodeType": "YulFunctionCall",
"src": "8152:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "8152:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "8073:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8079:6:1",
"type": ""
}
],
"src": "8034:189:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8279:136:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8346:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8390:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8397:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "8360:29:1"
},
"nodeType": "YulFunctionCall",
"src": "8360:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "8360:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8299:5:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8306:3:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8296:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8296:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "8311:26:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8313:22:1",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8326:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8333:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8322:13:1"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8313:5:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "8293:2:1",
"statements": []
},
"src": "8289:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "8267:5:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8274:3:1",
"type": ""
}
],
"src": "8229:186:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8500:464:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8526:431:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8540:54:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8588:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "8556:31:1"
},
"nodeType": "YulFunctionCall",
"src": "8556:38:1"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "8544:8:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8607:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8630:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "8658:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "8640:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8640:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8626:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8626:44:1"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "8611:11:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8827:27:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8829:23:1",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8844:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "8829:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "8811:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8823:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8808:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8808:18:1"
},
"nodeType": "YulIf",
"src": "8805:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "8896:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8913:8:1"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "8941:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "8923:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8923:22:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8909:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8909:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "8867:28:1"
},
"nodeType": "YulFunctionCall",
"src": "8867:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "8867:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "8517:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8522:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8514:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8514:11:1"
},
"nodeType": "YulIf",
"src": "8511:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8476:5:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "8483:3:1",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "8488:10:1",
"type": ""
}
],
"src": "8421:543:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9033:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9043:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "9068:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9074:5:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "9064:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9064:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "9043:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "9008:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9014:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "9024:8:1",
"type": ""
}
],
"src": "8970:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9144:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9154:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9203:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "9206:5:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9199:13:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9218:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9214:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "9170:28:1"
},
"nodeType": "YulFunctionCall",
"src": "9170:51:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9166:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9166:56:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "9158:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9231:25:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9245:4:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "9251:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9241:15:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "9231:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9121:4:1",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "9127:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "9137:6:1",
"type": ""
}
],
"src": "9093:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9348:214:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9481:37:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9508:4:1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9514:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "9489:18:1"
},
"nodeType": "YulFunctionCall",
"src": "9489:29:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9481:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9527:29:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9538:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9548:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9551:3:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9544:11:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "9535:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9535:21:1"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "9527:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9329:4:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "9335:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "9343:4:1",
"type": ""
}
],
"src": "9267:295:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9659:1303:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9670:51:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9717:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9684:32:1"
},
"nodeType": "YulFunctionCall",
"src": "9684:37:1"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "9674:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9806:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9808:16:1"
},
"nodeType": "YulFunctionCall",
"src": "9808:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "9808:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9778:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9786:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9775:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9775:30:1"
},
"nodeType": "YulIf",
"src": "9772:56:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "9838:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9884:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "9878:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9878:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "9852:25:1"
},
"nodeType": "YulFunctionCall",
"src": "9852:38:1"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "9842:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9983:4:1"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "9989:6:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9997:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "9937:45:1"
},
"nodeType": "YulFunctionCall",
"src": "9937:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "9937:67:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10014:18:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10031:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "10018:9:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10042:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10055:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10042:9:1"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "10106:611:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10120:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10139:6:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10151:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10147:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10147:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10135:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10135:22:1"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "10124:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10171:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10217:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "10185:31:1"
},
"nodeType": "YulFunctionCall",
"src": "10185:37:1"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "10175:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10235:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10244:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10239:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10303:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10328:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10346:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10351:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10342:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10342:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10336:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10336:26:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10321:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10321:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "10321:42:1"
},
{
"nodeType": "YulAssignment",
"src": "10380:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10394:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10402:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10390:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10390:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10380:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10421:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10438:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10449:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10434:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10434:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10421:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10269:1:1"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "10272:7:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10266:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10266:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10281:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10283:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10292:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10295:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10288:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10283:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10262:3:1",
"statements": []
},
"src": "10258:208:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10502:156:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10520:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10547:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10552:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10543:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10543:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10537:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10537:26:1"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "10524:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10587:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "10614:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10629:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10637:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10625:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10625:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "10595:18:1"
},
"nodeType": "YulFunctionCall",
"src": "10595:48:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10580:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10580:64:1"
},
"nodeType": "YulExpressionStatement",
"src": "10580:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "10485:7:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10494:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10482:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10482:19:1"
},
"nodeType": "YulIf",
"src": "10479:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10678:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10692:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10700:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "10688:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10688:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10704:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10684:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10684:22:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10671:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10671:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "10671:36:1"
}
]
},
"nodeType": "YulCase",
"src": "10099:618:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10104:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "10734:222:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10748:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10761:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10752:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10785:67:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10803:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10822:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10827:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10818:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10818:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10812:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10812:26:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10803:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10778:6:1"
},
"nodeType": "YulIf",
"src": "10775:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10872:4:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10931:5:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10938:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "10878:52:1"
},
"nodeType": "YulFunctionCall",
"src": "10878:67:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10865:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10865:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "10865:81:1"
}
]
},
"nodeType": "YulCase",
"src": "10726:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10079:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10087:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10076:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10076:14:1"
},
"nodeType": "YulSwitch",
"src": "10069:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "9648:4:1",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9654:3:1",
"type": ""
}
],
"src": "9567:1395:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11082:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11092:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11107:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "11092:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11054:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11059:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "11070:11:1",
"type": ""
}
],
"src": "10968:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11232:280:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11242:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11289:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11256:32:1"
},
"nodeType": "YulFunctionCall",
"src": "11256:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11246:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11304:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11388:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11393:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11311:76:1"
},
"nodeType": "YulFunctionCall",
"src": "11311:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11304:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11448:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11455:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11444:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11462:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11467:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "11409:34:1"
},
"nodeType": "YulFunctionCall",
"src": "11409:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "11409:65:1"
},
{
"nodeType": "YulAssignment",
"src": "11483:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11494:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11499:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11490:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11490:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11483:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11213:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11220:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11228:3:1",
"type": ""
}
],
"src": "11122:390:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11654:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11665:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11754:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11763:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11672:81:1"
},
"nodeType": "YulFunctionCall",
"src": "11672:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11665:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11777:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11784:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11777:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11633:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11639:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11650:3:1",
"type": ""
}
],
"src": "11518:275:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102b2565b60405180910390f35b610094600480360381019061008f919061030d565b61011c565b6040516100a29291906103ca565b60405180910390f35b6100c560048036038101906100c0919061030d565b6101d8565b005b6100e160048036038101906100dc919061052f565b6101e2565b005b6100fd60048036038101906100f8919061058b565b61026b565b60405161010a91906102b2565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b906000526020600020906002020160009150905080600001549080600101805461015590610603565b80601f016020809104026020016040519081016040528092919081815260200182805461018190610603565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024191906107e0565b5050508060028360405161025591906108ee565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102ac81610299565b82525050565b60006020820190506102c760008301846102a3565b92915050565b6000604051905090565b600080fd5b600080fd5b6102ea81610299565b81146102f557600080fd5b50565b600081359050610307816102e1565b92915050565b600060208284031215610323576103226102d7565b5b6000610331848285016102f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610374578082015181840152602081019050610359565b60008484015250505050565b6000601f19601f8301169050919050565b600061039c8261033a565b6103a68185610345565b93506103b6818560208601610356565b6103bf81610380565b840191505092915050565b60006040820190506103df60008301856102a3565b81810360208301526103f18184610391565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61043c82610380565b810181811067ffffffffffffffff8211171561045b5761045a610404565b5b80604052505050565b600061046e6102cd565b905061047a8282610433565b919050565b600067ffffffffffffffff82111561049a57610499610404565b5b6104a382610380565b9050602081019050919050565b82818337600083830152505050565b60006104d26104cd8461047f565b610464565b9050828152602081018484840111156104ee576104ed6103ff565b5b6104f98482856104b0565b509392505050565b600082601f830112610516576105156103fa565b5b81356105268482602086016104bf565b91505092915050565b60008060408385031215610546576105456102d7565b5b600083013567ffffffffffffffff811115610564576105636102dc565b5b61057085828601610501565b9250506020610581858286016102f8565b9150509250929050565b6000602082840312156105a1576105a06102d7565b5b600082013567ffffffffffffffff8111156105bf576105be6102dc565b5b6105cb84828501610501565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061061b57607f821691505b60208210810361062e5761062d6105d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610659565b6106a08683610659565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106dd6106d86106d384610299565b6106b8565b610299565b9050919050565b6000819050919050565b6106f7836106c2565b61070b610703826106e4565b848454610666565b825550505050565b600090565b610720610713565b61072b8184846106ee565b505050565b5b8181101561074f57610744600082610718565b600181019050610731565b5050565b601f8211156107945761076581610634565b61076e84610649565b8101602085101561077d578190505b61079161078985610649565b830182610730565b50505b505050565b600082821c905092915050565b60006107b760001984600802610799565b1980831691505092915050565b60006107d083836107a6565b9150826002028217905092915050565b6107e98261033a565b67ffffffffffffffff81111561080257610801610404565b5b61080c8254610603565b610817828285610753565b600060209050601f83116001811461084a5760008415610838578287015190505b61084285826107c4565b8655506108aa565b601f19841661085886610634565b60005b828110156108805784890151825560018201915060208501945060208101905061085b565b8683101561089d5784890151610899601f8916826107a6565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006108c88261033a565b6108d281856108b2565b93506108e2818560208601610356565b80840191505092915050565b60006108fa82846108bd565b91508190509291505056fea264697066735822122063d4d91414b587e6d2950da341372bede9d97e064d5e5b2e13f681871074c89164736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x52F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH2 0x26B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x7E0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x8EE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AC DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EA DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x307 DUP2 PUSH2 0x2E1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x323 JUMPI PUSH2 0x322 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x331 DUP5 DUP3 DUP6 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x374 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x359 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x3A6 DUP2 DUP6 PUSH2 0x345 JUMP JUMPDEST SWAP4 POP PUSH2 0x3B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x380 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3DF PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2A3 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3F1 DUP2 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x43C DUP3 PUSH2 0x380 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x45B JUMPI PUSH2 0x45A PUSH2 0x404 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46E PUSH2 0x2CD JUMP JUMPDEST SWAP1 POP PUSH2 0x47A DUP3 DUP3 PUSH2 0x433 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x49A JUMPI PUSH2 0x499 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x4A3 DUP3 PUSH2 0x380 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D2 PUSH2 0x4CD DUP5 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x464 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4EE JUMPI PUSH2 0x4ED PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x4F9 DUP5 DUP3 DUP6 PUSH2 0x4B0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x516 JUMPI PUSH2 0x515 PUSH2 0x3FA JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x526 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x546 JUMPI PUSH2 0x545 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x564 JUMPI PUSH2 0x563 PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP6 DUP3 DUP7 ADD PUSH2 0x501 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x581 DUP6 DUP3 DUP7 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A1 JUMPI PUSH2 0x5A0 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BF JUMPI PUSH2 0x5BE PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x5CB DUP5 DUP3 DUP6 ADD PUSH2 0x501 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x61B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x62E JUMPI PUSH2 0x62D PUSH2 0x5D4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x696 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x659 JUMP JUMPDEST PUSH2 0x6A0 DUP7 DUP4 PUSH2 0x659 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DD PUSH2 0x6D8 PUSH2 0x6D3 DUP5 PUSH2 0x299 JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH2 0x299 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6F7 DUP4 PUSH2 0x6C2 JUMP JUMPDEST PUSH2 0x70B PUSH2 0x703 DUP3 PUSH2 0x6E4 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x666 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x720 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x72B DUP2 DUP5 DUP5 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x74F JUMPI PUSH2 0x744 PUSH1 0x0 DUP3 PUSH2 0x718 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x731 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x794 JUMPI PUSH2 0x765 DUP2 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x76E DUP5 PUSH2 0x649 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x77D JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x791 PUSH2 0x789 DUP6 PUSH2 0x649 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x730 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7B7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x799 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D0 DUP4 DUP4 PUSH2 0x7A6 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7E9 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x802 JUMPI PUSH2 0x801 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x80C DUP3 SLOAD PUSH2 0x603 JUMP JUMPDEST PUSH2 0x817 DUP3 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x84A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x838 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x842 DUP6 DUP3 PUSH2 0x7C4 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x8AA JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x858 DUP7 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x880 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x85B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x89D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x899 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x7A6 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C8 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x8D2 DUP2 DUP6 PUSH2 0x8B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x8E2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FA DUP3 DUP5 PUSH2 0x8BD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xD4D91414 0xB5 DUP8 0xE6 0xD2 SWAP6 0xD LOG3 COINBASE CALLDATACOPY 0x2B 0xED 0xE9 0xD9 PUSH31 0x64D5E5B2E13F681871074C89164736F6C6343000813003300000000000000 ",
"sourceMap": "147:695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;327:28;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;427:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;643:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;364:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;543:92;584:7;611:16;;604:23;;543:92;:::o;327:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;427:108::-;512:15;493:16;:34;;;;427:108;:::o;643:196::-;726:12;744:30;;;;;;;;751:15;744:30;;;;768:5;744:30;;;726:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;816:15;786:20;807:5;786:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;643:196;;:::o;364:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:99::-;1429:6;1463:5;1457:12;1447:22;;1377:99;;;:::o;1482:169::-;1566:11;1600:6;1595:3;1588:19;1640:4;1635:3;1631:14;1616:29;;1482:169;;;;:::o;1657:246::-;1738:1;1748:113;1762:6;1759:1;1756:13;1748:113;;;1847:1;1842:3;1838:11;1832:18;1828:1;1823:3;1819:11;1812:39;1784:2;1781:1;1777:10;1772:15;;1748:113;;;1895:1;1886:6;1881:3;1877:16;1870:27;1719:184;1657:246;;;:::o;1909:102::-;1950:6;2001:2;1997:7;1992:2;1985:5;1981:14;1977:28;1967:38;;1909:102;;;:::o;2017:377::-;2105:3;2133:39;2166:5;2133:39;:::i;:::-;2188:71;2252:6;2247:3;2188:71;:::i;:::-;2181:78;;2268:65;2326:6;2321:3;2314:4;2307:5;2303:16;2268:65;:::i;:::-;2358:29;2380:6;2358:29;:::i;:::-;2353:3;2349:39;2342:46;;2109:285;2017:377;;;;:::o;2400:423::-;2541:4;2579:2;2568:9;2564:18;2556:26;;2592:71;2660:1;2649:9;2645:17;2636:6;2592:71;:::i;:::-;2710:9;2704:4;2700:20;2695:2;2684:9;2680:18;2673:48;2738:78;2811:4;2802:6;2738:78;:::i;:::-;2730:86;;2400:423;;;;;:::o;2829:117::-;2938:1;2935;2928:12;2952:117;3061:1;3058;3051:12;3075:180;3123:77;3120:1;3113:88;3220:4;3217:1;3210:15;3244:4;3241:1;3234:15;3261:281;3344:27;3366:4;3344:27;:::i;:::-;3336:6;3332:40;3474:6;3462:10;3459:22;3438:18;3426:10;3423:34;3420:62;3417:88;;;3485:18;;:::i;:::-;3417:88;3525:10;3521:2;3514:22;3304:238;3261:281;;:::o;3548:129::-;3582:6;3609:20;;:::i;:::-;3599:30;;3638:33;3666:4;3658:6;3638:33;:::i;:::-;3548:129;;;:::o;3683:308::-;3745:4;3835:18;3827:6;3824:30;3821:56;;;3857:18;;:::i;:::-;3821:56;3895:29;3917:6;3895:29;:::i;:::-;3887:37;;3979:4;3973;3969:15;3961:23;;3683:308;;;:::o;3997:146::-;4094:6;4089:3;4084;4071:30;4135:1;4126:6;4121:3;4117:16;4110:27;3997:146;;;:::o;4149:425::-;4227:5;4252:66;4268:49;4310:6;4268:49;:::i;:::-;4252:66;:::i;:::-;4243:75;;4341:6;4334:5;4327:21;4379:4;4372:5;4368:16;4417:3;4408:6;4403:3;4399:16;4396:25;4393:112;;;4424:79;;:::i;:::-;4393:112;4514:54;4561:6;4556:3;4551;4514:54;:::i;:::-;4233:341;4149:425;;;;;:::o;4594:340::-;4650:5;4699:3;4692:4;4684:6;4680:17;4676:27;4666:122;;4707:79;;:::i;:::-;4666:122;4824:6;4811:20;4849:79;4924:3;4916:6;4909:4;4901:6;4897:17;4849:79;:::i;:::-;4840:88;;4656:278;4594:340;;;;:::o;4940:654::-;5018:6;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5229:1;5218:9;5214:17;5201:31;5259:18;5251:6;5248:30;5245:117;;;5281:79;;:::i;:::-;5245:117;5386:63;5441:7;5432:6;5421:9;5417:22;5386:63;:::i;:::-;5376:73;;5172:287;5498:2;5524:53;5569:7;5560:6;5549:9;5545:22;5524:53;:::i;:::-;5514:63;;5469:118;4940:654;;;;;:::o;5600:509::-;5669:6;5718:2;5706:9;5697:7;5693:23;5689:32;5686:119;;;5724:79;;:::i;:::-;5686:119;5872:1;5861:9;5857:17;5844:31;5902:18;5894:6;5891:30;5888:117;;;5924:79;;:::i;:::-;5888:117;6029:63;6084:7;6075:6;6064:9;6060:22;6029:63;:::i;:::-;6019:73;;5815:287;5600:509;;;;:::o;6115:180::-;6163:77;6160:1;6153:88;6260:4;6257:1;6250:15;6284:4;6281:1;6274:15;6301:320;6345:6;6382:1;6376:4;6372:12;6362:22;;6429:1;6423:4;6419:12;6450:18;6440:81;;6506:4;6498:6;6494:17;6484:27;;6440:81;6568:2;6560:6;6557:14;6537:18;6534:38;6531:84;;6587:18;;:::i;:::-;6531:84;6352:269;6301:320;;;:::o;6627:141::-;6676:4;6699:3;6691:11;;6722:3;6719:1;6712:14;6756:4;6753:1;6743:18;6735:26;;6627:141;;;:::o;6774:93::-;6811:6;6858:2;6853;6846:5;6842:14;6838:23;6828:33;;6774:93;;;:::o;6873:107::-;6917:8;6967:5;6961:4;6957:16;6936:37;;6873:107;;;;:::o;6986:393::-;7055:6;7105:1;7093:10;7089:18;7128:97;7158:66;7147:9;7128:97;:::i;:::-;7246:39;7276:8;7265:9;7246:39;:::i;:::-;7234:51;;7318:4;7314:9;7307:5;7303:21;7294:30;;7367:4;7357:8;7353:19;7346:5;7343:30;7333:40;;7062:317;;6986:393;;;;;:::o;7385:60::-;7413:3;7434:5;7427:12;;7385:60;;;:::o;7451:142::-;7501:9;7534:53;7552:34;7561:24;7579:5;7561:24;:::i;:::-;7552:34;:::i;:::-;7534:53;:::i;:::-;7521:66;;7451:142;;;:::o;7599:75::-;7642:3;7663:5;7656:12;;7599:75;;;:::o;7680:269::-;7790:39;7821:7;7790:39;:::i;:::-;7851:91;7900:41;7924:16;7900:41;:::i;:::-;7892:6;7885:4;7879:11;7851:91;:::i;:::-;7845:4;7838:105;7756:193;7680:269;;;:::o;7955:73::-;8000:3;7955:73;:::o;8034:189::-;8111:32;;:::i;:::-;8152:65;8210:6;8202;8196:4;8152:65;:::i;:::-;8087:136;8034:189;;:::o;8229:186::-;8289:120;8306:3;8299:5;8296:14;8289:120;;;8360:39;8397:1;8390:5;8360:39;:::i;:::-;8333:1;8326:5;8322:13;8313:22;;8289:120;;;8229:186;;:::o;8421:543::-;8522:2;8517:3;8514:11;8511:446;;;8556:38;8588:5;8556:38;:::i;:::-;8640:29;8658:10;8640:29;:::i;:::-;8630:8;8626:44;8823:2;8811:10;8808:18;8805:49;;;8844:8;8829:23;;8805:49;8867:80;8923:22;8941:3;8923:22;:::i;:::-;8913:8;8909:37;8896:11;8867:80;:::i;:::-;8526:431;;8511:446;8421:543;;;:::o;8970:117::-;9024:8;9074:5;9068:4;9064:16;9043:37;;8970:117;;;;:::o;9093:169::-;9137:6;9170:51;9218:1;9214:6;9206:5;9203:1;9199:13;9170:51;:::i;:::-;9166:56;9251:4;9245;9241:15;9231:25;;9144:118;9093:169;;;;:::o;9267:295::-;9343:4;9489:29;9514:3;9508:4;9489:29;:::i;:::-;9481:37;;9551:3;9548:1;9544:11;9538:4;9535:21;9527:29;;9267:295;;;;:::o;9567:1395::-;9684:37;9717:3;9684:37;:::i;:::-;9786:18;9778:6;9775:30;9772:56;;;9808:18;;:::i;:::-;9772:56;9852:38;9884:4;9878:11;9852:38;:::i;:::-;9937:67;9997:6;9989;9983:4;9937:67;:::i;:::-;10031:1;10055:4;10042:17;;10087:2;10079:6;10076:14;10104:1;10099:618;;;;10761:1;10778:6;10775:77;;;10827:9;10822:3;10818:19;10812:26;10803:35;;10775:77;10878:67;10938:6;10931:5;10878:67;:::i;:::-;10872:4;10865:81;10734:222;10069:887;;10099:618;10151:4;10147:9;10139:6;10135:22;10185:37;10217:4;10185:37;:::i;:::-;10244:1;10258:208;10272:7;10269:1;10266:14;10258:208;;;10351:9;10346:3;10342:19;10336:26;10328:6;10321:42;10402:1;10394:6;10390:14;10380:24;;10449:2;10438:9;10434:18;10421:31;;10295:4;10292:1;10288:12;10283:17;;10258:208;;;10494:6;10485:7;10482:19;10479:179;;;10552:9;10547:3;10543:19;10537:26;10595:48;10637:4;10629:6;10625:17;10614:9;10595:48;:::i;:::-;10587:6;10580:64;10502:156;10479:179;10704:1;10700;10692:6;10688:14;10684:22;10678:4;10671:36;10106:611;;;10069:887;;9659:1303;;;9567:1395;;:::o;10968:148::-;11070:11;11107:3;11092:18;;10968:148;;;;:::o;11122:390::-;11228:3;11256:39;11289:5;11256:39;:::i;:::-;11311:89;11393:6;11388:3;11311:89;:::i;:::-;11304:96;;11409:65;11467:6;11462:3;11455:4;11448:5;11444:16;11409:65;:::i;:::-;11499:6;11494:3;11490:16;11483:23;;11232:280;11122:390;;;;:::o;11518:275::-;11650:3;11672:95;11763:3;11754:6;11672:95;:::i;:::-;11665:102;;11784:3;11777:10;;11518:275;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "472600",
"executionCost": "505",
"totalCost": "473105"
},
"external": {
"addPerson(string,uint256)": "infinite",
"listOfPeople(uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"retrieve()": "2415",
"store(uint256)": "22542"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"listOfPeople(uint256)": "2ebce631",
"nameToFavoriteNumber(string)": "8bab8dd5",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfPeople",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfPeople",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/SimpleStorage.sol": "SimpleStorage"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0x20474d78a30237c2ead44f083c7c6a87f0707f0fd484bce0d47487269be9247a",
"license": "MIT",
"urls": [
"bzz-raw://88bf73bc82fd9af62d2523cf53e873aff79a89c0a5d8427b6667efd0e15d750b",
"dweb:/ipfs/QmbEPr4H8apFQFig5H49zVudrzs1B6J3PC2aoRnJEYX5tw"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610e91806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80631563700f146100515780631dda65411461006d578063c5f19c2014610077578063f39f3035146100a7575b600080fd5b61006b6004803603810190610066919061035e565b6100d7565b005b610075610189565b005b610091600480360381019061008c919061039e565b61021c565b60405161009e91906103da565b60405180910390f35b6100c160048036038101906100bc919061039e565b6102d7565b6040516100ce9190610474565b60405180910390f35b60008083815481106100ec576100eb61048f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636057361d836040518263ffffffff1660e01b815260040161015291906103da565b600060405180830381600087803b15801561016c57600080fd5b505af1158015610180573d6000803e3d6000fd5b50505050505050565b600060405161019790610316565b604051809103906000f0801580156101b3573d6000803e3d6000fd5b5090506000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600083815481106102335761023261048f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16632e64cec16040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cf91906104d3565b915050919050565b600081815481106102e757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61095b8061050183390190565b600080fd5b6000819050919050565b61033b81610328565b811461034657600080fd5b50565b60008135905061035881610332565b92915050565b6000806040838503121561037557610374610323565b5b600061038385828601610349565b925050602061039485828601610349565b9150509250929050565b6000602082840312156103b4576103b3610323565b5b60006103c284828501610349565b91505092915050565b6103d481610328565b82525050565b60006020820190506103ef60008301846103cb565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061043a610435610430846103f5565b610415565b6103f5565b9050919050565b600061044c8261041f565b9050919050565b600061045e82610441565b9050919050565b61046e81610453565b82525050565b60006020820190506104896000830184610465565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506104cd81610332565b92915050565b6000602082840312156104e9576104e8610323565b5b60006104f7848285016104be565b9150509291505056fe608060405234801561001057600080fd5b5061093b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102b2565b60405180910390f35b610094600480360381019061008f919061030d565b61011c565b6040516100a29291906103ca565b60405180910390f35b6100c560048036038101906100c0919061030d565b6101d8565b005b6100e160048036038101906100dc919061052f565b6101e2565b005b6100fd60048036038101906100f8919061058b565b61026b565b60405161010a91906102b2565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b906000526020600020906002020160009150905080600001549080600101805461015590610603565b80601f016020809104026020016040519081016040528092919081815260200182805461018190610603565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024191906107e0565b5050508060028360405161025591906108ee565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102ac81610299565b82525050565b60006020820190506102c760008301846102a3565b92915050565b6000604051905090565b600080fd5b600080fd5b6102ea81610299565b81146102f557600080fd5b50565b600081359050610307816102e1565b92915050565b600060208284031215610323576103226102d7565b5b6000610331848285016102f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610374578082015181840152602081019050610359565b60008484015250505050565b6000601f19601f8301169050919050565b600061039c8261033a565b6103a68185610345565b93506103b6818560208601610356565b6103bf81610380565b840191505092915050565b60006040820190506103df60008301856102a3565b81810360208301526103f18184610391565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61043c82610380565b810181811067ffffffffffffffff8211171561045b5761045a610404565b5b80604052505050565b600061046e6102cd565b905061047a8282610433565b919050565b600067ffffffffffffffff82111561049a57610499610404565b5b6104a382610380565b9050602081019050919050565b82818337600083830152505050565b60006104d26104cd8461047f565b610464565b9050828152602081018484840111156104ee576104ed6103ff565b5b6104f98482856104b0565b509392505050565b600082601f830112610516576105156103fa565b5b81356105268482602086016104bf565b91505092915050565b60008060408385031215610546576105456102d7565b5b600083013567ffffffffffffffff811115610564576105636102dc565b5b61057085828601610501565b9250506020610581858286016102f8565b9150509250929050565b6000602082840312156105a1576105a06102d7565b5b600082013567ffffffffffffffff8111156105bf576105be6102dc565b5b6105cb84828501610501565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061061b57607f821691505b60208210810361062e5761062d6105d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610659565b6106a08683610659565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106dd6106d86106d384610299565b6106b8565b610299565b9050919050565b6000819050919050565b6106f7836106c2565b61070b610703826106e4565b848454610666565b825550505050565b600090565b610720610713565b61072b8184846106ee565b505050565b5b8181101561074f57610744600082610718565b600181019050610731565b5050565b601f8211156107945761076581610634565b61076e84610649565b8101602085101561077d578190505b61079161078985610649565b830182610730565b50505b505050565b600082821c905092915050565b60006107b760001984600802610799565b1980831691505092915050565b60006107d083836107a6565b9150826002028217905092915050565b6107e98261033a565b67ffffffffffffffff81111561080257610801610404565b5b61080c8254610603565b610817828285610753565b600060209050601f83116001811461084a5760008415610838578287015190505b61084285826107c4565b8655506108aa565b601f19841661085886610634565b60005b828110156108805784890151825560018201915060208501945060208101905061085b565b8683101561089d5784890151610899601f8916826107a6565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006108c88261033a565b6108d281856108b2565b93506108e2818560208601610356565b80840191505092915050565b60006108fa82846108bd565b91508190509291505056fea2646970667358221220389c67cd7e5ec182442e16e74f8df9fa9c3fdc7e9530328e3fba9bd4bfb650be64736f6c63430008130033a264697066735822122002b608c110c28d3c71eb7ababb76678c3809eec7edaa7c3a6cf76db626b25c1864736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE91 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1563700F EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x1DDA6541 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0xC5F19C20 EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0xF39F3035 EQ PUSH2 0xA7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x35E JUMP JUMPDEST PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x189 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x21C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9E SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x474 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xEC JUMPI PUSH2 0xEB PUSH2 0x48F JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6057361D DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x197 SWAP1 PUSH2 0x316 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x1B3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x233 JUMPI PUSH2 0x232 PUSH2 0x48F JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2E64CEC1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2AB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2CF SWAP2 SWAP1 PUSH2 0x4D3 JUMP JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x2E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x95B DUP1 PUSH2 0x501 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x33B DUP2 PUSH2 0x328 JUMP JUMPDEST DUP2 EQ PUSH2 0x346 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x358 DUP2 PUSH2 0x332 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x375 JUMPI PUSH2 0x374 PUSH2 0x323 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x383 DUP6 DUP3 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x394 DUP6 DUP3 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3B4 JUMPI PUSH2 0x3B3 PUSH2 0x323 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3C2 DUP5 DUP3 DUP6 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3D4 DUP2 PUSH2 0x328 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3EF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43A PUSH2 0x435 PUSH2 0x430 DUP5 PUSH2 0x3F5 JUMP JUMPDEST PUSH2 0x415 JUMP JUMPDEST PUSH2 0x3F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x44C DUP3 PUSH2 0x41F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x45E DUP3 PUSH2 0x441 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x46E DUP2 PUSH2 0x453 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x489 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x465 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x4CD DUP2 PUSH2 0x332 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x323 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4F7 DUP5 DUP3 DUP6 ADD PUSH2 0x4BE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x93B DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x52F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH2 0x26B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x7E0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x8EE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AC DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EA DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x307 DUP2 PUSH2 0x2E1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x323 JUMPI PUSH2 0x322 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x331 DUP5 DUP3 DUP6 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x374 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x359 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x3A6 DUP2 DUP6 PUSH2 0x345 JUMP JUMPDEST SWAP4 POP PUSH2 0x3B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x380 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3DF PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2A3 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3F1 DUP2 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x43C DUP3 PUSH2 0x380 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x45B JUMPI PUSH2 0x45A PUSH2 0x404 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46E PUSH2 0x2CD JUMP JUMPDEST SWAP1 POP PUSH2 0x47A DUP3 DUP3 PUSH2 0x433 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x49A JUMPI PUSH2 0x499 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x4A3 DUP3 PUSH2 0x380 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D2 PUSH2 0x4CD DUP5 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x464 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4EE JUMPI PUSH2 0x4ED PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x4F9 DUP5 DUP3 DUP6 PUSH2 0x4B0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x516 JUMPI PUSH2 0x515 PUSH2 0x3FA JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x526 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x546 JUMPI PUSH2 0x545 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x564 JUMPI PUSH2 0x563 PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP6 DUP3 DUP7 ADD PUSH2 0x501 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x581 DUP6 DUP3 DUP7 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A1 JUMPI PUSH2 0x5A0 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BF JUMPI PUSH2 0x5BE PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x5CB DUP5 DUP3 DUP6 ADD PUSH2 0x501 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x61B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x62E JUMPI PUSH2 0x62D PUSH2 0x5D4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x696 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x659 JUMP JUMPDEST PUSH2 0x6A0 DUP7 DUP4 PUSH2 0x659 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DD PUSH2 0x6D8 PUSH2 0x6D3 DUP5 PUSH2 0x299 JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH2 0x299 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6F7 DUP4 PUSH2 0x6C2 JUMP JUMPDEST PUSH2 0x70B PUSH2 0x703 DUP3 PUSH2 0x6E4 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x666 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x720 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x72B DUP2 DUP5 DUP5 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x74F JUMPI PUSH2 0x744 PUSH1 0x0 DUP3 PUSH2 0x718 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x731 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x794 JUMPI PUSH2 0x765 DUP2 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x76E DUP5 PUSH2 0x649 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x77D JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x791 PUSH2 0x789 DUP6 PUSH2 0x649 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x730 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7B7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x799 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D0 DUP4 DUP4 PUSH2 0x7A6 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7E9 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x802 JUMPI PUSH2 0x801 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x80C DUP3 SLOAD PUSH2 0x603 JUMP JUMPDEST PUSH2 0x817 DUP3 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x84A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x838 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x842 DUP6 DUP3 PUSH2 0x7C4 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x8AA JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x858 DUP7 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x880 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x85B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x89D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x899 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x7A6 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C8 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x8D2 DUP2 DUP6 PUSH2 0x8B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x8E2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FA DUP3 DUP5 PUSH2 0x8BD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODESIZE SWAP13 PUSH8 0xCD7E5EC182442E16 0xE7 0x4F DUP14 0xF9 STATICCALL SWAP13 EXTCODEHASH 0xDC PUSH31 0x9530328E3FBA9BD4BFB650BE64736F6C63430008130033A264697066735822 SLT KECCAK256 MUL 0xB6 ADDMOD 0xC1 LT 0xC2 DUP14 EXTCODECOPY PUSH18 0xEB7ABABB76678C3809EEC7EDAA7C3A6CF76D 0xB6 0x26 0xB2 0x5C XOR PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ",
"sourceMap": "114:766:1:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@createSimpleStorageContract_84": {
"entryPoint": 393,
"id": 84,
"parameterSlots": 0,
"returnSlots": 0
},
"@listOfSimpleStorageContracts_66": {
"entryPoint": 727,
"id": 66,
"parameterSlots": 0,
"returnSlots": 0
},
"@sfGet_124": {
"entryPoint": 540,
"id": 124,
"parameterSlots": 1,
"returnSlots": 1
},
"@sfStore_105": {
"entryPoint": 215,
"id": 105,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 841,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 1214,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 926,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 1235,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 862,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack": {
"entryPoint": 1125,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 971,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_contract$_SimpleStorage_$58__to_t_address__fromStack_reversed": {
"entryPoint": 1140,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 986,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1013,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 808,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_SimpleStorage_$58_to_t_address": {
"entryPoint": 1107,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 1089,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 1055,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 1045,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 1167,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 803,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 818,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3621:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:2"
},
"nodeType": "YulFunctionCall",
"src": "67:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:2",
"type": ""
}
],
"src": "7:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:2"
},
"nodeType": "YulFunctionCall",
"src": "187:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:2"
},
"nodeType": "YulFunctionCall",
"src": "310:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:2",
"type": ""
}
],
"src": "334:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:2"
},
"nodeType": "YulFunctionCall",
"src": "519:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:2"
},
"nodeType": "YulFunctionCall",
"src": "490:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:2"
},
"nodeType": "YulFunctionCall",
"src": "480:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:2"
},
"nodeType": "YulFunctionCall",
"src": "473:43:2"
},
"nodeType": "YulIf",
"src": "470:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:2",
"type": ""
}
],
"src": "417:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:2"
},
"nodeType": "YulFunctionCall",
"src": "616:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:2"
},
"nodeType": "YulFunctionCall",
"src": "645:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:2",
"type": ""
}
],
"src": "545:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "773:391:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "819:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "821:77:2"
},
"nodeType": "YulFunctionCall",
"src": "821:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "821:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "794:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "803:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "790:3:2"
},
"nodeType": "YulFunctionCall",
"src": "790:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "815:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "786:3:2"
},
"nodeType": "YulFunctionCall",
"src": "786:32:2"
},
"nodeType": "YulIf",
"src": "783:119:2"
},
{
"nodeType": "YulBlock",
"src": "912:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "941:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "931:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "956:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "991:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1002:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "987:3:2"
},
"nodeType": "YulFunctionCall",
"src": "987:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1011:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "966:20:2"
},
"nodeType": "YulFunctionCall",
"src": "966:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "956:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1039:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1054:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1068:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1058:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1084:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1119:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1130:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1115:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1115:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1139:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1094:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1094:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1084:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "735:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "746:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "758:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "766:6:2",
"type": ""
}
],
"src": "690:474:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1236:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1282:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1284:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1284:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1284:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1257:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1266:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1253:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1253:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1278:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1249:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1249:32:2"
},
"nodeType": "YulIf",
"src": "1246:119:2"
},
{
"nodeType": "YulBlock",
"src": "1375:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1390:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1404:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1394:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1419:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1454:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1465:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1450:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1450:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1474:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1429:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1429:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1419:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1206:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1217:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1229:6:2",
"type": ""
}
],
"src": "1170:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1570:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1587:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1610:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1592:17:2"
},
"nodeType": "YulFunctionCall",
"src": "1592:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1580:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1580:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "1580:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1558:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1565:3:2",
"type": ""
}
],
"src": "1505:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1727:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1737:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1749:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1760:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1745:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1745:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1737:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1817:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1830:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1841:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1826:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1826:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1773:43:2"
},
"nodeType": "YulFunctionCall",
"src": "1773:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "1773:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1699:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1711:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1722:4:2",
"type": ""
}
],
"src": "1629:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1902:81:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1912:65:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1927:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1934:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1923:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1923:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1912:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1884:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1894:7:2",
"type": ""
}
],
"src": "1857:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2021:28:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2031:12:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2038:5:2"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2031:3:2"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2007:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2017:3:2",
"type": ""
}
],
"src": "1989:60:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2115:82:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2125:66:2",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2183:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2165:17:2"
},
"nodeType": "YulFunctionCall",
"src": "2165:24:2"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "2156:8:2"
},
"nodeType": "YulFunctionCall",
"src": "2156:34:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2138:17:2"
},
"nodeType": "YulFunctionCall",
"src": "2138:53:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2125:9:2"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2095:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2105:9:2",
"type": ""
}
],
"src": "2055:142:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2263:66:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2273:50:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2317:5:2"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "2286:30:2"
},
"nodeType": "YulFunctionCall",
"src": "2286:37:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2273:9:2"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2243:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2253:9:2",
"type": ""
}
],
"src": "2203:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2415:66:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2425:50:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2469:5:2"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "2438:30:2"
},
"nodeType": "YulFunctionCall",
"src": "2438:37:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2425:9:2"
}
]
}
]
},
"name": "convert_t_contract$_SimpleStorage_$58_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2395:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2405:9:2",
"type": ""
}
],
"src": "2335:146:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2572:86:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2589:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2645:5:2"
}
],
"functionName": {
"name": "convert_t_contract$_SimpleStorage_$58_to_t_address",
"nodeType": "YulIdentifier",
"src": "2594:50:2"
},
"nodeType": "YulFunctionCall",
"src": "2594:57:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2582:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2582:70:2"
},
"nodeType": "YulExpressionStatement",
"src": "2582:70:2"
}
]
},
"name": "abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2560:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2567:3:2",
"type": ""
}
],
"src": "2487:171:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2782:144:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2792:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2804:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2815:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2800:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2800:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2792:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2892:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2905:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2916:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2901:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2901:17:2"
}
],
"functionName": {
"name": "abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2828:63:2"
},
"nodeType": "YulFunctionCall",
"src": "2828:91:2"
},
"nodeType": "YulExpressionStatement",
"src": "2828:91:2"
}
]
},
"name": "abi_encode_tuple_t_contract$_SimpleStorage_$58__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2754:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2766:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2777:4:2",
"type": ""
}
],
"src": "2664:262:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2960:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2977:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2980:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2970:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2970:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "2970:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3074:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3077:4:2",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3067:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3067:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3067:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3098:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3101:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3091:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3091:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3091:15:2"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "2932:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3181:80:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3191:22:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3206:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3200:5:2"
},
"nodeType": "YulFunctionCall",
"src": "3200:13:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3191:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3249:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3222:26:2"
},
"nodeType": "YulFunctionCall",
"src": "3222:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "3222:33:2"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3159:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3167:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3175:5:2",
"type": ""
}
],
"src": "3118:143:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3344:274:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3390:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3392:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3392:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3392:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3365:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3374:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3361:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3361:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3386:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3357:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3357:32:2"
},
"nodeType": "YulIf",
"src": "3354:119:2"
},
{
"nodeType": "YulBlock",
"src": "3483:128:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3498:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3512:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3502:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3527:74:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3573:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3584:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3569:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3569:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3593:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "3537:31:2"
},
"nodeType": "YulFunctionCall",
"src": "3537:64:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3527:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3314:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3325:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3337:6:2",
"type": ""
}
],
"src": "3267:351:2"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_contract$_SimpleStorage_$58_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_SimpleStorage_$58_to_t_address(value))\n }\n\n function abi_encode_tuple_t_contract$_SimpleStorage_$58__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c80631563700f146100515780631dda65411461006d578063c5f19c2014610077578063f39f3035146100a7575b600080fd5b61006b6004803603810190610066919061035e565b6100d7565b005b610075610189565b005b610091600480360381019061008c919061039e565b61021c565b60405161009e91906103da565b60405180910390f35b6100c160048036038101906100bc919061039e565b6102d7565b6040516100ce9190610474565b60405180910390f35b60008083815481106100ec576100eb61048f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636057361d836040518263ffffffff1660e01b815260040161015291906103da565b600060405180830381600087803b15801561016c57600080fd5b505af1158015610180573d6000803e3d6000fd5b50505050505050565b600060405161019790610316565b604051809103906000f0801580156101b3573d6000803e3d6000fd5b5090506000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600083815481106102335761023261048f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16632e64cec16040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cf91906104d3565b915050919050565b600081815481106102e757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61095b8061050183390190565b600080fd5b6000819050919050565b61033b81610328565b811461034657600080fd5b50565b60008135905061035881610332565b92915050565b6000806040838503121561037557610374610323565b5b600061038385828601610349565b925050602061039485828601610349565b9150509250929050565b6000602082840312156103b4576103b3610323565b5b60006103c284828501610349565b91505092915050565b6103d481610328565b82525050565b60006020820190506103ef60008301846103cb565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061043a610435610430846103f5565b610415565b6103f5565b9050919050565b600061044c8261041f565b9050919050565b600061045e82610441565b9050919050565b61046e81610453565b82525050565b60006020820190506104896000830184610465565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506104cd81610332565b92915050565b6000602082840312156104e9576104e8610323565b5b60006104f7848285016104be565b9150509291505056fe608060405234801561001057600080fd5b5061093b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102b2565b60405180910390f35b610094600480360381019061008f919061030d565b61011c565b6040516100a29291906103ca565b60405180910390f35b6100c560048036038101906100c0919061030d565b6101d8565b005b6100e160048036038101906100dc919061052f565b6101e2565b005b6100fd60048036038101906100f8919061058b565b61026b565b60405161010a91906102b2565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b906000526020600020906002020160009150905080600001549080600101805461015590610603565b80601f016020809104026020016040519081016040528092919081815260200182805461018190610603565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024191906107e0565b5050508060028360405161025591906108ee565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102ac81610299565b82525050565b60006020820190506102c760008301846102a3565b92915050565b6000604051905090565b600080fd5b600080fd5b6102ea81610299565b81146102f557600080fd5b50565b600081359050610307816102e1565b92915050565b600060208284031215610323576103226102d7565b5b6000610331848285016102f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610374578082015181840152602081019050610359565b60008484015250505050565b6000601f19601f8301169050919050565b600061039c8261033a565b6103a68185610345565b93506103b6818560208601610356565b6103bf81610380565b840191505092915050565b60006040820190506103df60008301856102a3565b81810360208301526103f18184610391565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61043c82610380565b810181811067ffffffffffffffff8211171561045b5761045a610404565b5b80604052505050565b600061046e6102cd565b905061047a8282610433565b919050565b600067ffffffffffffffff82111561049a57610499610404565b5b6104a382610380565b9050602081019050919050565b82818337600083830152505050565b60006104d26104cd8461047f565b610464565b9050828152602081018484840111156104ee576104ed6103ff565b5b6104f98482856104b0565b509392505050565b600082601f830112610516576105156103fa565b5b81356105268482602086016104bf565b91505092915050565b60008060408385031215610546576105456102d7565b5b600083013567ffffffffffffffff811115610564576105636102dc565b5b61057085828601610501565b9250506020610581858286016102f8565b9150509250929050565b6000602082840312156105a1576105a06102d7565b5b600082013567ffffffffffffffff8111156105bf576105be6102dc565b5b6105cb84828501610501565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061061b57607f821691505b60208210810361062e5761062d6105d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610659565b6106a08683610659565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106dd6106d86106d384610299565b6106b8565b610299565b9050919050565b6000819050919050565b6106f7836106c2565b61070b610703826106e4565b848454610666565b825550505050565b600090565b610720610713565b61072b8184846106ee565b505050565b5b8181101561074f57610744600082610718565b600181019050610731565b5050565b601f8211156107945761076581610634565b61076e84610649565b8101602085101561077d578190505b61079161078985610649565b830182610730565b50505b505050565b600082821c905092915050565b60006107b760001984600802610799565b1980831691505092915050565b60006107d083836107a6565b9150826002028217905092915050565b6107e98261033a565b67ffffffffffffffff81111561080257610801610404565b5b61080c8254610603565b610817828285610753565b600060209050601f83116001811461084a5760008415610838578287015190505b61084285826107c4565b8655506108aa565b601f19841661085886610634565b60005b828110156108805784890151825560018201915060208501945060208101905061085b565b8683101561089d5784890151610899601f8916826107a6565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006108c88261033a565b6108d281856108b2565b93506108e2818560208601610356565b80840191505092915050565b60006108fa82846108bd565b91508190509291505056fea2646970667358221220389c67cd7e5ec182442e16e74f8df9fa9c3fdc7e9530328e3fba9bd4bfb650be64736f6c63430008130033a264697066735822122002b608c110c28d3c71eb7ababb76678c3809eec7edaa7c3a6cf76db626b25c1864736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1563700F EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x1DDA6541 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0xC5F19C20 EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0xF39F3035 EQ PUSH2 0xA7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x35E JUMP JUMPDEST PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x189 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x21C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9E SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x474 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xEC JUMPI PUSH2 0xEB PUSH2 0x48F JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6057361D DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x197 SWAP1 PUSH2 0x316 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x1B3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x233 JUMPI PUSH2 0x232 PUSH2 0x48F JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2E64CEC1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2AB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2CF SWAP2 SWAP1 PUSH2 0x4D3 JUMP JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x2E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x95B DUP1 PUSH2 0x501 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x33B DUP2 PUSH2 0x328 JUMP JUMPDEST DUP2 EQ PUSH2 0x346 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x358 DUP2 PUSH2 0x332 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x375 JUMPI PUSH2 0x374 PUSH2 0x323 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x383 DUP6 DUP3 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x394 DUP6 DUP3 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3B4 JUMPI PUSH2 0x3B3 PUSH2 0x323 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3C2 DUP5 DUP3 DUP6 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3D4 DUP2 PUSH2 0x328 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3EF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43A PUSH2 0x435 PUSH2 0x430 DUP5 PUSH2 0x3F5 JUMP JUMPDEST PUSH2 0x415 JUMP JUMPDEST PUSH2 0x3F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x44C DUP3 PUSH2 0x41F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x45E DUP3 PUSH2 0x441 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x46E DUP2 PUSH2 0x453 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x489 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x465 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x4CD DUP2 PUSH2 0x332 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x323 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4F7 DUP5 DUP3 DUP6 ADD PUSH2 0x4BE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x93B DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x52F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH2 0x26B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x7E0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x8EE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AC DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EA DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x307 DUP2 PUSH2 0x2E1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x323 JUMPI PUSH2 0x322 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x331 DUP5 DUP3 DUP6 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x374 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x359 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x3A6 DUP2 DUP6 PUSH2 0x345 JUMP JUMPDEST SWAP4 POP PUSH2 0x3B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x380 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3DF PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2A3 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3F1 DUP2 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x43C DUP3 PUSH2 0x380 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x45B JUMPI PUSH2 0x45A PUSH2 0x404 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46E PUSH2 0x2CD JUMP JUMPDEST SWAP1 POP PUSH2 0x47A DUP3 DUP3 PUSH2 0x433 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x49A JUMPI PUSH2 0x499 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x4A3 DUP3 PUSH2 0x380 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D2 PUSH2 0x4CD DUP5 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x464 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4EE JUMPI PUSH2 0x4ED PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x4F9 DUP5 DUP3 DUP6 PUSH2 0x4B0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x516 JUMPI PUSH2 0x515 PUSH2 0x3FA JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x526 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x546 JUMPI PUSH2 0x545 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x564 JUMPI PUSH2 0x563 PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP6 DUP3 DUP7 ADD PUSH2 0x501 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x581 DUP6 DUP3 DUP7 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A1 JUMPI PUSH2 0x5A0 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BF JUMPI PUSH2 0x5BE PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x5CB DUP5 DUP3 DUP6 ADD PUSH2 0x501 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x61B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x62E JUMPI PUSH2 0x62D PUSH2 0x5D4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x696 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x659 JUMP JUMPDEST PUSH2 0x6A0 DUP7 DUP4 PUSH2 0x659 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DD PUSH2 0x6D8 PUSH2 0x6D3 DUP5 PUSH2 0x299 JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH2 0x299 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6F7 DUP4 PUSH2 0x6C2 JUMP JUMPDEST PUSH2 0x70B PUSH2 0x703 DUP3 PUSH2 0x6E4 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x666 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x720 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x72B DUP2 DUP5 DUP5 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x74F JUMPI PUSH2 0x744 PUSH1 0x0 DUP3 PUSH2 0x718 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x731 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x794 JUMPI PUSH2 0x765 DUP2 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x76E DUP5 PUSH2 0x649 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x77D JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x791 PUSH2 0x789 DUP6 PUSH2 0x649 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x730 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7B7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x799 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D0 DUP4 DUP4 PUSH2 0x7A6 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7E9 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x802 JUMPI PUSH2 0x801 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x80C DUP3 SLOAD PUSH2 0x603 JUMP JUMPDEST PUSH2 0x817 DUP3 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x84A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x838 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x842 DUP6 DUP3 PUSH2 0x7C4 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x8AA JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x858 DUP7 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x880 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x85B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x89D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x899 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x7A6 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C8 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x8D2 DUP2 DUP6 PUSH2 0x8B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x8E2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FA DUP3 DUP5 PUSH2 0x8BD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODESIZE SWAP13 PUSH8 0xCD7E5EC182442E16 0xE7 0x4F DUP14 0xF9 STATICCALL SWAP13 EXTCODEHASH 0xDC PUSH31 0x9530328E3FBA9BD4BFB650BE64736F6C63430008130033A264697066735822 SLT KECCAK256 MUL 0xB6 ADDMOD 0xC1 LT 0xC2 DUP14 EXTCODECOPY PUSH18 0xEB7ABABB76678C3809EEC7EDAA7C3A6CF76D 0xB6 0x26 0xB2 0x5C XOR PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ",
"sourceMap": "114:766:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;205:195;;;:::i;:::-;;659:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;145:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;408:243;505:29;537:28;566:19;537:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;505:81;;597:15;:21;;;619:23;597:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494:157;408:243;;:::o;205:195::-;262:38;303:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;262:60;;333:28;367:24;333:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251:149;205:195::o;659:218::-;723:7;744:29;776:28;805:19;776:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;744:81;;843:15;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;836:33;;;659:218;;;:::o;145:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;88:117:2:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:329::-;1229:6;1278:2;1266:9;1257:7;1253:23;1249:32;1246:119;;;1284:79;;:::i;:::-;1246:119;1404:1;1429:53;1474:7;1465:6;1454:9;1450:22;1429:53;:::i;:::-;1419:63;;1375:117;1170:329;;;;:::o;1505:118::-;1592:24;1610:5;1592:24;:::i;:::-;1587:3;1580:37;1505:118;;:::o;1629:222::-;1722:4;1760:2;1749:9;1745:18;1737:26;;1773:71;1841:1;1830:9;1826:17;1817:6;1773:71;:::i;:::-;1629:222;;;;:::o;1857:126::-;1894:7;1934:42;1927:5;1923:54;1912:65;;1857:126;;;:::o;1989:60::-;2017:3;2038:5;2031:12;;1989:60;;;:::o;2055:142::-;2105:9;2138:53;2156:34;2165:24;2183:5;2165:24;:::i;:::-;2156:34;:::i;:::-;2138:53;:::i;:::-;2125:66;;2055:142;;;:::o;2203:126::-;2253:9;2286:37;2317:5;2286:37;:::i;:::-;2273:50;;2203:126;;;:::o;2335:146::-;2405:9;2438:37;2469:5;2438:37;:::i;:::-;2425:50;;2335:146;;;:::o;2487:171::-;2594:57;2645:5;2594:57;:::i;:::-;2589:3;2582:70;2487:171;;:::o;2664:262::-;2777:4;2815:2;2804:9;2800:18;2792:26;;2828:91;2916:1;2905:9;2901:17;2892:6;2828:91;:::i;:::-;2664:262;;;;:::o;2932:180::-;2980:77;2977:1;2970:88;3077:4;3074:1;3067:15;3101:4;3098:1;3091:15;3118:143;3175:5;3206:6;3200:13;3191:22;;3222:33;3249:5;3222:33;:::i;:::-;3118:143;;;;:::o;3267:351::-;3337:6;3386:2;3374:9;3365:7;3361:23;3357:32;3354:119;;;3392:79;;:::i;:::-;3354:119;3512:1;3537:64;3593:7;3584:6;3573:9;3569:22;3537:64;:::i;:::-;3527:74;;3483:128;3267:351;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "745800",
"executionCost": "779",
"totalCost": "746579"
},
"external": {
"createSimpleStorageContract()": "infinite",
"listOfSimpleStorageContracts(uint256)": "infinite",
"sfGet(uint256)": "infinite",
"sfStore(uint256,uint256)": "infinite"
}
},
"methodIdentifiers": {
"createSimpleStorageContract()": "1dda6541",
"listOfSimpleStorageContracts(uint256)": "f39f3035",
"sfGet(uint256)": "c5f19c20",
"sfStore(uint256,uint256)": "1563700f"
}
},
"abi": [
{
"inputs": [],
"name": "createSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfSimpleStorageContracts",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_newSimpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "createSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfSimpleStorageContracts",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_newSimpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/StorageFactory.sol": "StorageFactory"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0xffe37a92ce2646d5666775a9c168b3b2d87caa7a80044280436b3e12845e82a3",
"license": "MIT",
"urls": [
"bzz-raw://03faa7a1067bb672b7bda274fbfa0e14c34c29d53fac05aa7cec52ecc956c0b0",
"dweb:/ipfs/QmZ8wYUi332UreeUjzckvSMT9Nn8aSxXQ1hvVie2hVX8Yz"
]
},
"contracts/StorageFactory.sol": {
"keccak256": "0x8d79acd6d96df7f623507c9bd6f780c3b7c47a88ee58daef09ff87faf3b0fd0d",
"license": "MIT",
"urls": [
"bzz-raw://a4cb81e0de534ff32bb6646c74f9b2336a308fce4970b278cec520b40e63ad48",
"dweb:/ipfs/Qmc9NztNH3DBT64bBHt38YS1ZPWkLp9FHzp6LqbhSJm4tJ"
]
}
},
"version": 1
}
// I'm a comment!
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
// pragma solidity ^0.8.0;
// pragma solidity >=0.8.0 <0.9.0;
contract SimpleStorage {
uint256 myFavoriteNumber;
struct Person {
uint256 favoriteNumber;
string name;
}
// uint256[] public anArray;
Person[] public listOfPeople;
mapping(string => uint256) public nameToFavoriteNumber;
function store(uint256 _favoriteNumber) public virtual {
myFavoriteNumber = _favoriteNumber;
}
function retrieve() public view returns (uint256) {
return myFavoriteNumber;
}
function addPerson(string memory _name, uint256 _favoriteNumber) public {
listOfPeople.push(Person(_favoriteNumber, _name));
nameToFavoriteNumber[_name] = _favoriteNumber;
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
import {SimpleStorage} from "./SimpleStorage.sol";
contract StorageFactory {
SimpleStorage[] public listOfSimpleStorageContracts;
function createSimpleStorageContract() public {
SimpleStorage newSimpleStorageContract = new SimpleStorage();
listOfSimpleStorageContracts.push(newSimpleStorageContract);
}
function sfStore(uint256 _simpleStorageIndex, uint256 _newSimpleStorageNumber) public {
SimpleStorage mySimpleStorage = listOfSimpleStorageContracts[_simpleStorageIndex];
mySimpleStorage.store(_newSimpleStorageNumber);
}
function sfGet(uint256 _simpleStorageIndex) public view returns(uint256) {
SimpleStorage mySimpleStorage = listOfSimpleStorageContracts[_simpleStorageIndex];
return mySimpleStorage.retrieve();
}
}
This file has been truncated, but you can view the full file.
{
"id": "0c30b0bca68b9143831a8ac79d387da1",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.19",
"solcLongVersion": "0.8.19+commit.7dd6d404",
"input": {
"language": "Solidity",
"sources": {
"contracts/StorageFactory.sol": {
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity 0.8.19;\r\n\r\nimport {SimpleStorage} from \"./SimpleStorage.sol\";\r\n\r\ncontract StorageFactory {\r\n SimpleStorage[] public listOfSimpleStorageContracts;\r\n\r\n function createSimpleStorageContract() public {\r\n SimpleStorage newSimpleStorageContract = new SimpleStorage();\r\n listOfSimpleStorageContracts.push(newSimpleStorageContract);\r\n }\r\n\r\n function sfStore(uint256 _simpleStorageIndex, uint256 _newSimpleStorageNumber) public {\r\n SimpleStorage mySimpleStorage = listOfSimpleStorageContracts[_simpleStorageIndex];\r\n mySimpleStorage.store(_newSimpleStorageNumber);\r\n }\r\n\r\n function sfGet(uint256 _simpleStorageIndex) public view returns(uint256) {\r\n SimpleStorage mySimpleStorage = listOfSimpleStorageContracts[_simpleStorageIndex];\r\n return mySimpleStorage.retrieve();\r\n }\r\n}"
},
"contracts/SimpleStorage.sol": {
"content": "// I'm a comment!\r\n// SPDX-License-Identifier: MIT\r\n\r\npragma solidity 0.8.19;\r\n\r\n// pragma solidity ^0.8.0;\r\n// pragma solidity >=0.8.0 <0.9.0;\r\n\r\ncontract SimpleStorage {\r\n uint256 myFavoriteNumber;\r\n\r\n struct Person {\r\n uint256 favoriteNumber;\r\n string name;\r\n }\r\n // uint256[] public anArray;\r\n Person[] public listOfPeople;\r\n\r\n mapping(string => uint256) public nameToFavoriteNumber;\r\n\r\n function store(uint256 _favoriteNumber) public {\r\n myFavoriteNumber = _favoriteNumber;\r\n }\r\n\r\n function retrieve() public view returns (uint256) {\r\n return myFavoriteNumber;\r\n }\r\n\r\n function addPerson(string memory _name, uint256 _favoriteNumber) public {\r\n listOfPeople.push(Person(_favoriteNumber, _name));\r\n nameToFavoriteNumber[_name] = _favoriteNumber;\r\n }\r\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"contracts/SimpleStorage.sol": {
"SimpleStorage": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "listOfPeople",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/SimpleStorage.sol\":147:834 contract SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/SimpleStorage.sol\":147:834 contract SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x2ebce631\n eq\n tag_4\n jumpi\n dup1\n 0x6057361d\n eq\n tag_5\n jumpi\n dup1\n 0x6f760f41\n eq\n tag_6\n jumpi\n dup1\n 0x8bab8dd5\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/SimpleStorage.sol\":535:627 function retrieve() public view returns (uint256) {... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":327:355 Person[] public listOfPeople */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n mload(0x40)\n tag_16\n swap3\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":427:527 function store(uint256 _favoriteNumber) public {... */\n tag_5:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_14\n jump\t// in\n tag_19:\n tag_20\n jump\t// in\n tag_18:\n stop\n /* \"contracts/SimpleStorage.sol\":635:831 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_6:\n tag_21\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n tag_24\n jump\t// in\n tag_21:\n stop\n /* \"contracts/SimpleStorage.sol\":364:418 mapping(string => uint256) public nameToFavoriteNumber */\n tag_7:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n tag_28\n jump\t// in\n tag_25:\n mload(0x40)\n tag_29\n swap2\n swap1\n tag_11\n jump\t// in\n tag_29:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":535:627 function retrieve() public view returns (uint256) {... */\n tag_9:\n /* \"contracts/SimpleStorage.sol\":576:583 uint256 */\n 0x00\n /* \"contracts/SimpleStorage.sol\":603:619 myFavoriteNumber */\n dup1\n sload\n /* \"contracts/SimpleStorage.sol\":596:619 return myFavoriteNumber */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":535:627 function retrieve() public view returns (uint256) {... */\n swap1\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":327:355 Person[] public listOfPeople */\n tag_15:\n 0x01\n dup2\n dup2\n sload\n dup2\n lt\n tag_31\n jumpi\n 0x00\n dup1\n revert\n tag_31:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_33\n swap1\n tag_34\n jump\t// in\n tag_33:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_35\n swap1\n tag_34\n jump\t// in\n tag_35:\n dup1\n iszero\n tag_36\n jumpi\n dup1\n 0x1f\n lt\n tag_37\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_36)\n tag_37:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_38:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_38\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_36:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup3\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":427:527 function store(uint256 _favoriteNumber) public {... */\n tag_20:\n /* \"contracts/SimpleStorage.sol\":504:519 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":485:501 myFavoriteNumber */\n 0x00\n /* \"contracts/SimpleStorage.sol\":485:519 myFavoriteNumber = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":427:527 function store(uint256 _favoriteNumber) public {... */\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":635:831 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_24:\n /* \"contracts/SimpleStorage.sol\":718:730 listOfPeople */\n 0x01\n /* \"contracts/SimpleStorage.sol\":736:766 Person(_favoriteNumber, _name) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/SimpleStorage.sol\":743:758 _favoriteNumber */\n dup4\n /* \"contracts/SimpleStorage.sol\":736:766 Person(_favoriteNumber, _name) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/SimpleStorage.sol\":760:765 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":736:766 Person(_favoriteNumber, _name) */\n dup2\n mstore\n pop\n /* \"contracts/SimpleStorage.sol\":718:767 listOfPeople.push(Person(_favoriteNumber, _name)) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup2\n tag_42\n swap2\n swap1\n tag_43\n jump\t// in\n tag_42:\n pop\n pop\n pop\n /* \"contracts/SimpleStorage.sol\":808:823 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":778:798 nameToFavoriteNumber */\n 0x02\n /* \"contracts/SimpleStorage.sol\":799:804 _name */\n dup4\n /* \"contracts/SimpleStorage.sol\":778:805 nameToFavoriteNumber[_name] */\n mload(0x40)\n tag_44\n swap2\n swap1\n tag_45\n jump\t// in\n tag_44:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"contracts/SimpleStorage.sol\":778:823 nameToFavoriteNumber[_name] = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":635:831 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":364:418 mapping(string => uint256) public nameToFavoriteNumber */\n tag_28:\n 0x02\n dup2\n dup1\n mload\n 0x20\n dup2\n add\n dup3\n add\n dup1\n mload\n dup5\n dup3\n mstore\n 0x20\n dup4\n add\n 0x20\n dup6\n add\n keccak256\n dup2\n dup4\n mstore\n dup1\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"#utility.yul\":7:84 */\n tag_46:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":73:78 */\n dup2\n /* \"#utility.yul\":62:78 */\n swap1\n pop\n /* \"#utility.yul\":7:84 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":90:208 */\n tag_47:\n /* \"#utility.yul\":177:201 */\n tag_88\n /* \"#utility.yul\":195:200 */\n dup2\n /* \"#utility.yul\":177:201 */\n tag_46\n jump\t// in\n tag_88:\n /* \"#utility.yul\":172:175 */\n dup3\n /* \"#utility.yul\":165:202 */\n mstore\n /* \"#utility.yul\":90:208 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":214:436 */\n tag_11:\n /* \"#utility.yul\":307:311 */\n 0x00\n /* \"#utility.yul\":345:347 */\n 0x20\n /* \"#utility.yul\":334:343 */\n dup3\n /* \"#utility.yul\":330:348 */\n add\n /* \"#utility.yul\":322:348 */\n swap1\n pop\n /* \"#utility.yul\":358:429 */\n tag_90\n /* \"#utility.yul\":426:427 */\n 0x00\n /* \"#utility.yul\":415:424 */\n dup4\n /* \"#utility.yul\":411:428 */\n add\n /* \"#utility.yul\":402:408 */\n dup5\n /* \"#utility.yul\":358:429 */\n tag_47\n jump\t// in\n tag_90:\n /* \"#utility.yul\":214:436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":442:517 */\n tag_48:\n /* \"#utility.yul\":475:481 */\n 0x00\n /* \"#utility.yul\":508:510 */\n 0x40\n /* \"#utility.yul\":502:511 */\n mload\n /* \"#utility.yul\":492:511 */\n swap1\n pop\n /* \"#utility.yul\":442:517 */\n swap1\n jump\t// out\n /* \"#utility.yul\":523:640 */\n tag_49:\n /* \"#utility.yul\":632:633 */\n 0x00\n /* \"#utility.yul\":629:630 */\n dup1\n /* \"#utility.yul\":622:634 */\n revert\n /* \"#utility.yul\":646:763 */\n tag_50:\n /* \"#utility.yul\":755:756 */\n 0x00\n /* \"#utility.yul\":752:753 */\n dup1\n /* \"#utility.yul\":745:757 */\n revert\n /* \"#utility.yul\":769:891 */\n tag_51:\n /* \"#utility.yul\":842:866 */\n tag_95\n /* \"#utility.yul\":860:865 */\n dup2\n /* \"#utility.yul\":842:866 */\n tag_46\n jump\t// in\n tag_95:\n /* \"#utility.yul\":835:840 */\n dup2\n /* \"#utility.yul\":832:867 */\n eq\n /* \"#utility.yul\":822:885 */\n tag_96\n jumpi\n /* \"#utility.yul\":881:882 */\n 0x00\n /* \"#utility.yul\":878:879 */\n dup1\n /* \"#utility.yul\":871:883 */\n revert\n /* \"#utility.yul\":822:885 */\n tag_96:\n /* \"#utility.yul\":769:891 */\n pop\n jump\t// out\n /* \"#utility.yul\":897:1036 */\n tag_52:\n /* \"#utility.yul\":943:948 */\n 0x00\n /* \"#utility.yul\":981:987 */\n dup2\n /* \"#utility.yul\":968:988 */\n calldataload\n /* \"#utility.yul\":959:988 */\n swap1\n pop\n /* \"#utility.yul\":997:1030 */\n tag_98\n /* \"#utility.yul\":1024:1029 */\n dup2\n /* \"#utility.yul\":997:1030 */\n tag_51\n jump\t// in\n tag_98:\n /* \"#utility.yul\":897:1036 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1042:1371 */\n tag_14:\n /* \"#utility.yul\":1101:1107 */\n 0x00\n /* \"#utility.yul\":1150:1152 */\n 0x20\n /* \"#utility.yul\":1138:1147 */\n dup3\n /* \"#utility.yul\":1129:1136 */\n dup5\n /* \"#utility.yul\":1125:1148 */\n sub\n /* \"#utility.yul\":1121:1153 */\n slt\n /* \"#utility.yul\":1118:1237 */\n iszero\n tag_100\n jumpi\n /* \"#utility.yul\":1156:1235 */\n tag_101\n tag_49\n jump\t// in\n tag_101:\n /* \"#utility.yul\":1118:1237 */\n tag_100:\n /* \"#utility.yul\":1276:1277 */\n 0x00\n /* \"#utility.yul\":1301:1354 */\n tag_102\n /* \"#utility.yul\":1346:1353 */\n dup5\n /* \"#utility.yul\":1337:1343 */\n dup3\n /* \"#utility.yul\":1326:1335 */\n dup6\n /* \"#utility.yul\":1322:1344 */\n add\n /* \"#utility.yul\":1301:1354 */\n tag_52\n jump\t// in\n tag_102:\n /* \"#utility.yul\":1291:1354 */\n swap2\n pop\n /* \"#utility.yul\":1247:1364 */\n pop\n /* \"#utility.yul\":1042:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1476 */\n tag_53:\n /* \"#utility.yul\":1429:1435 */\n 0x00\n /* \"#utility.yul\":1463:1468 */\n dup2\n /* \"#utility.yul\":1457:1469 */\n mload\n /* \"#utility.yul\":1447:1469 */\n swap1\n pop\n /* \"#utility.yul\":1377:1476 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1482:1651 */\n tag_54:\n /* \"#utility.yul\":1566:1577 */\n 0x00\n /* \"#utility.yul\":1600:1606 */\n dup3\n /* \"#utility.yul\":1595:1598 */\n dup3\n /* \"#utility.yul\":1588:1607 */\n mstore\n /* \"#utility.yul\":1640:1644 */\n 0x20\n /* \"#utility.yul\":1635:1638 */\n dup3\n /* \"#utility.yul\":1631:1645 */\n add\n /* \"#utility.yul\":1616:1645 */\n swap1\n pop\n /* \"#utility.yul\":1482:1651 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1657:1903 */\n tag_55:\n /* \"#utility.yul\":1738:1739 */\n 0x00\n /* \"#utility.yul\":1748:1861 */\n tag_106:\n /* \"#utility.yul\":1762:1768 */\n dup4\n /* \"#utility.yul\":1759:1760 */\n dup2\n /* \"#utility.yul\":1756:1769 */\n lt\n /* \"#utility.yul\":1748:1861 */\n iszero\n tag_108\n jumpi\n /* \"#utility.yul\":1847:1848 */\n dup1\n /* \"#utility.yul\":1842:1845 */\n dup3\n /* \"#utility.yul\":1838:1849 */\n add\n /* \"#utility.yul\":1832:1850 */\n mload\n /* \"#utility.yul\":1828:1829 */\n dup2\n /* \"#utility.yul\":1823:1826 */\n dup5\n /* \"#utility.yul\":1819:1830 */\n add\n /* \"#utility.yul\":1812:1851 */\n mstore\n /* \"#utility.yul\":1784:1786 */\n 0x20\n /* \"#utility.yul\":1781:1782 */\n dup2\n /* \"#utility.yul\":1777:1787 */\n add\n /* \"#utility.yul\":1772:1787 */\n swap1\n pop\n /* \"#utility.yul\":1748:1861 */\n jump(tag_106)\n tag_108:\n /* \"#utility.yul\":1895:1896 */\n 0x00\n /* \"#utility.yul\":1886:1892 */\n dup5\n /* \"#utility.yul\":1881:1884 */\n dup5\n /* \"#utility.yul\":1877:1893 */\n add\n /* \"#utility.yul\":1870:1897 */\n mstore\n /* \"#utility.yul\":1719:1903 */\n pop\n /* \"#utility.yul\":1657:1903 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1909:2011 */\n tag_56:\n /* \"#utility.yul\":1950:1956 */\n 0x00\n /* \"#utility.yul\":2001:2003 */\n 0x1f\n /* \"#utility.yul\":1997:2004 */\n not\n /* \"#utility.yul\":1992:1994 */\n 0x1f\n /* \"#utility.yul\":1985:1990 */\n dup4\n /* \"#utility.yul\":1981:1995 */\n add\n /* \"#utility.yul\":1977:2005 */\n and\n /* \"#utility.yul\":1967:2005 */\n swap1\n pop\n /* \"#utility.yul\":1909:2011 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2017:2394 */\n tag_57:\n /* \"#utility.yul\":2105:2108 */\n 0x00\n /* \"#utility.yul\":2133:2172 */\n tag_111\n /* \"#utility.yul\":2166:2171 */\n dup3\n /* \"#utility.yul\":2133:2172 */\n tag_53\n jump\t// in\n tag_111:\n /* \"#utility.yul\":2188:2259 */\n tag_112\n /* \"#utility.yul\":2252:2258 */\n dup2\n /* \"#utility.yul\":2247:2250 */\n dup6\n /* \"#utility.yul\":2188:2259 */\n tag_54\n jump\t// in\n tag_112:\n /* \"#utility.yul\":2181:2259 */\n swap4\n pop\n /* \"#utility.yul\":2268:2333 */\n tag_113\n /* \"#utility.yul\":2326:2332 */\n dup2\n /* \"#utility.yul\":2321:2324 */\n dup6\n /* \"#utility.yul\":2314:2318 */\n 0x20\n /* \"#utility.yul\":2307:2312 */\n dup7\n /* \"#utility.yul\":2303:2319 */\n add\n /* \"#utility.yul\":2268:2333 */\n tag_55\n jump\t// in\n tag_113:\n /* \"#utility.yul\":2358:2387 */\n tag_114\n /* \"#utility.yul\":2380:2386 */\n dup2\n /* \"#utility.yul\":2358:2387 */\n tag_56\n jump\t// in\n tag_114:\n /* \"#utility.yul\":2353:2356 */\n dup5\n /* \"#utility.yul\":2349:2388 */\n add\n /* \"#utility.yul\":2342:2388 */\n swap2\n pop\n /* \"#utility.yul\":2109:2394 */\n pop\n /* \"#utility.yul\":2017:2394 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2400:2823 */\n tag_17:\n /* \"#utility.yul\":2541:2545 */\n 0x00\n /* \"#utility.yul\":2579:2581 */\n 0x40\n /* \"#utility.yul\":2568:2577 */\n dup3\n /* \"#utility.yul\":2564:2582 */\n add\n /* \"#utility.yul\":2556:2582 */\n swap1\n pop\n /* \"#utility.yul\":2592:2663 */\n tag_116\n /* \"#utility.yul\":2660:2661 */\n 0x00\n /* \"#utility.yul\":2649:2658 */\n dup4\n /* \"#utility.yul\":2645:2662 */\n add\n /* \"#utility.yul\":2636:2642 */\n dup6\n /* \"#utility.yul\":2592:2663 */\n tag_47\n jump\t// in\n tag_116:\n /* \"#utility.yul\":2710:2719 */\n dup2\n /* \"#utility.yul\":2704:2708 */\n dup2\n /* \"#utility.yul\":2700:2720 */\n sub\n /* \"#utility.yul\":2695:2697 */\n 0x20\n /* \"#utility.yul\":2684:2693 */\n dup4\n /* \"#utility.yul\":2680:2698 */\n add\n /* \"#utility.yul\":2673:2721 */\n mstore\n /* \"#utility.yul\":2738:2816 */\n tag_117\n /* \"#utility.yul\":2811:2815 */\n dup2\n /* \"#utility.yul\":2802:2808 */\n dup5\n /* \"#utility.yul\":2738:2816 */\n tag_57\n jump\t// in\n tag_117:\n /* \"#utility.yul\":2730:2816 */\n swap1\n pop\n /* \"#utility.yul\":2400:2823 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2829:2946 */\n tag_58:\n /* \"#utility.yul\":2938:2939 */\n 0x00\n /* \"#utility.yul\":2935:2936 */\n dup1\n /* \"#utility.yul\":2928:2940 */\n revert\n /* \"#utility.yul\":2952:3069 */\n tag_59:\n /* \"#utility.yul\":3061:3062 */\n 0x00\n /* \"#utility.yul\":3058:3059 */\n dup1\n /* \"#utility.yul\":3051:3063 */\n revert\n /* \"#utility.yul\":3075:3255 */\n tag_60:\n /* \"#utility.yul\":3123:3200 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3120:3121 */\n 0x00\n /* \"#utility.yul\":3113:3201 */\n mstore\n /* \"#utility.yul\":3220:3224 */\n 0x41\n /* \"#utility.yul\":3217:3218 */\n 0x04\n /* \"#utility.yul\":3210:3225 */\n mstore\n /* \"#utility.yul\":3244:3248 */\n 0x24\n /* \"#utility.yul\":3241:3242 */\n 0x00\n /* \"#utility.yul\":3234:3249 */\n revert\n /* \"#utility.yul\":3261:3542 */\n tag_61:\n /* \"#utility.yul\":3344:3371 */\n tag_122\n /* \"#utility.yul\":3366:3370 */\n dup3\n /* \"#utility.yul\":3344:3371 */\n tag_56\n jump\t// in\n tag_122:\n /* \"#utility.yul\":3336:3342 */\n dup2\n /* \"#utility.yul\":3332:3372 */\n add\n /* \"#utility.yul\":3474:3480 */\n dup2\n /* \"#utility.yul\":3462:3472 */\n dup2\n /* \"#utility.yul\":3459:3481 */\n lt\n /* \"#utility.yul\":3438:3456 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3426:3436 */\n dup3\n /* \"#utility.yul\":3423:3457 */\n gt\n /* \"#utility.yul\":3420:3482 */\n or\n /* \"#utility.yul\":3417:3505 */\n iszero\n tag_123\n jumpi\n /* \"#utility.yul\":3485:3503 */\n tag_124\n tag_60\n jump\t// in\n tag_124:\n /* \"#utility.yul\":3417:3505 */\n tag_123:\n /* \"#utility.yul\":3525:3535 */\n dup1\n /* \"#utility.yul\":3521:3523 */\n 0x40\n /* \"#utility.yul\":3514:3536 */\n mstore\n /* \"#utility.yul\":3304:3542 */\n pop\n /* \"#utility.yul\":3261:3542 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3548:3677 */\n tag_62:\n /* \"#utility.yul\":3582:3588 */\n 0x00\n /* \"#utility.yul\":3609:3629 */\n tag_126\n tag_48\n jump\t// in\n tag_126:\n /* \"#utility.yul\":3599:3629 */\n swap1\n pop\n /* \"#utility.yul\":3638:3671 */\n tag_127\n /* \"#utility.yul\":3666:3670 */\n dup3\n /* \"#utility.yul\":3658:3664 */\n dup3\n /* \"#utility.yul\":3638:3671 */\n tag_61\n jump\t// in\n tag_127:\n /* \"#utility.yul\":3548:3677 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3683:3991 */\n tag_63:\n /* \"#utility.yul\":3745:3749 */\n 0x00\n /* \"#utility.yul\":3835:3853 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3827:3833 */\n dup3\n /* \"#utility.yul\":3824:3854 */\n gt\n /* \"#utility.yul\":3821:3877 */\n iszero\n tag_129\n jumpi\n /* \"#utility.yul\":3857:3875 */\n tag_130\n tag_60\n jump\t// in\n tag_130:\n /* \"#utility.yul\":3821:3877 */\n tag_129:\n /* \"#utility.yul\":3895:3924 */\n tag_131\n /* \"#utility.yul\":3917:3923 */\n dup3\n /* \"#utility.yul\":3895:3924 */\n tag_56\n jump\t// in\n tag_131:\n /* \"#utility.yul\":3887:3924 */\n swap1\n pop\n /* \"#utility.yul\":3979:3983 */\n 0x20\n /* \"#utility.yul\":3973:3977 */\n dup2\n /* \"#utility.yul\":3969:3984 */\n add\n /* \"#utility.yul\":3961:3984 */\n swap1\n pop\n /* \"#utility.yul\":3683:3991 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3997:4143 */\n tag_64:\n /* \"#utility.yul\":4094:4100 */\n dup3\n /* \"#utility.yul\":4089:4092 */\n dup2\n /* \"#utility.yul\":4084:4087 */\n dup4\n /* \"#utility.yul\":4071:4101 */\n calldatacopy\n /* \"#utility.yul\":4135:4136 */\n 0x00\n /* \"#utility.yul\":4126:4132 */\n dup4\n /* \"#utility.yul\":4121:4124 */\n dup4\n /* \"#utility.yul\":4117:4133 */\n add\n /* \"#utility.yul\":4110:4137 */\n mstore\n /* \"#utility.yul\":3997:4143 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4149:4574 */\n tag_65:\n /* \"#utility.yul\":4227:4232 */\n 0x00\n /* \"#utility.yul\":4252:4318 */\n tag_134\n /* \"#utility.yul\":4268:4317 */\n tag_135\n /* \"#utility.yul\":4310:4316 */\n dup5\n /* \"#utility.yul\":4268:4317 */\n tag_63\n jump\t// in\n tag_135:\n /* \"#utility.yul\":4252:4318 */\n tag_62\n jump\t// in\n tag_134:\n /* \"#utility.yul\":4243:4318 */\n swap1\n pop\n /* \"#utility.yul\":4341:4347 */\n dup3\n /* \"#utility.yul\":4334:4339 */\n dup2\n /* \"#utility.yul\":4327:4348 */\n mstore\n /* \"#utility.yul\":4379:4383 */\n 0x20\n /* \"#utility.yul\":4372:4377 */\n dup2\n /* \"#utility.yul\":4368:4384 */\n add\n /* \"#utility.yul\":4417:4420 */\n dup5\n /* \"#utility.yul\":4408:4414 */\n dup5\n /* \"#utility.yul\":4403:4406 */\n dup5\n /* \"#utility.yul\":4399:4415 */\n add\n /* \"#utility.yul\":4396:4421 */\n gt\n /* \"#utility.yul\":4393:4505 */\n iszero\n tag_136\n jumpi\n /* \"#utility.yul\":4424:4503 */\n tag_137\n tag_59\n jump\t// in\n tag_137:\n /* \"#utility.yul\":4393:4505 */\n tag_136:\n /* \"#utility.yul\":4514:4568 */\n tag_138\n /* \"#utility.yul\":4561:4567 */\n dup5\n /* \"#utility.yul\":4556:4559 */\n dup3\n /* \"#utility.yul\":4551:4554 */\n dup6\n /* \"#utility.yul\":4514:4568 */\n tag_64\n jump\t// in\n tag_138:\n /* \"#utility.yul\":4233:4574 */\n pop\n /* \"#utility.yul\":4149:4574 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4594:4934 */\n tag_66:\n /* \"#utility.yul\":4650:4655 */\n 0x00\n /* \"#utility.yul\":4699:4702 */\n dup3\n /* \"#utility.yul\":4692:4696 */\n 0x1f\n /* \"#utility.yul\":4684:4690 */\n dup4\n /* \"#utility.yul\":4680:4697 */\n add\n /* \"#utility.yul\":4676:4703 */\n slt\n /* \"#utility.yul\":4666:4788 */\n tag_140\n jumpi\n /* \"#utility.yul\":4707:4786 */\n tag_141\n tag_58\n jump\t// in\n tag_141:\n /* \"#utility.yul\":4666:4788 */\n tag_140:\n /* \"#utility.yul\":4824:4830 */\n dup2\n /* \"#utility.yul\":4811:4831 */\n calldataload\n /* \"#utility.yul\":4849:4928 */\n tag_142\n /* \"#utility.yul\":4924:4927 */\n dup5\n /* \"#utility.yul\":4916:4922 */\n dup3\n /* \"#utility.yul\":4909:4913 */\n 0x20\n /* \"#utility.yul\":4901:4907 */\n dup7\n /* \"#utility.yul\":4897:4914 */\n add\n /* \"#utility.yul\":4849:4928 */\n tag_65\n jump\t// in\n tag_142:\n /* \"#utility.yul\":4840:4928 */\n swap2\n pop\n /* \"#utility.yul\":4656:4934 */\n pop\n /* \"#utility.yul\":4594:4934 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4940:5594 */\n tag_23:\n /* \"#utility.yul\":5018:5024 */\n 0x00\n /* \"#utility.yul\":5026:5032 */\n dup1\n /* \"#utility.yul\":5075:5077 */\n 0x40\n /* \"#utility.yul\":5063:5072 */\n dup4\n /* \"#utility.yul\":5054:5061 */\n dup6\n /* \"#utility.yul\":5050:5073 */\n sub\n /* \"#utility.yul\":5046:5078 */\n slt\n /* \"#utility.yul\":5043:5162 */\n iszero\n tag_144\n jumpi\n /* \"#utility.yul\":5081:5160 */\n tag_145\n tag_49\n jump\t// in\n tag_145:\n /* \"#utility.yul\":5043:5162 */\n tag_144:\n /* \"#utility.yul\":5229:5230 */\n 0x00\n /* \"#utility.yul\":5218:5227 */\n dup4\n /* \"#utility.yul\":5214:5231 */\n add\n /* \"#utility.yul\":5201:5232 */\n calldataload\n /* \"#utility.yul\":5259:5277 */\n 0xffffffffffffffff\n /* \"#utility.yul\":5251:5257 */\n dup2\n /* \"#utility.yul\":5248:5278 */\n gt\n /* \"#utility.yul\":5245:5362 */\n iszero\n tag_146\n jumpi\n /* \"#utility.yul\":5281:5360 */\n tag_147\n tag_50\n jump\t// in\n tag_147:\n /* \"#utility.yul\":5245:5362 */\n tag_146:\n /* \"#utility.yul\":5386:5449 */\n tag_148\n /* \"#utility.yul\":5441:5448 */\n dup6\n /* \"#utility.yul\":5432:5438 */\n dup3\n /* \"#utility.yul\":5421:5430 */\n dup7\n /* \"#utility.yul\":5417:5439 */\n add\n /* \"#utility.yul\":5386:5449 */\n tag_66\n jump\t// in\n tag_148:\n /* \"#utility.yul\":5376:5449 */\n swap3\n pop\n /* \"#utility.yul\":5172:5459 */\n pop\n /* \"#utility.yul\":5498:5500 */\n 0x20\n /* \"#utility.yul\":5524:5577 */\n tag_149\n /* \"#utility.yul\":5569:5576 */\n dup6\n /* \"#utility.yul\":5560:5566 */\n dup3\n /* \"#utility.yul\":5549:5558 */\n dup7\n /* \"#utility.yul\":5545:5567 */\n add\n /* \"#utility.yul\":5524:5577 */\n tag_52\n jump\t// in\n tag_149:\n /* \"#utility.yul\":5514:5577 */\n swap2\n pop\n /* \"#utility.yul\":5469:5587 */\n pop\n /* \"#utility.yul\":4940:5594 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5600:6109 */\n tag_27:\n /* \"#utility.yul\":5669:5675 */\n 0x00\n /* \"#utility.yul\":5718:5720 */\n 0x20\n /* \"#utility.yul\":5706:5715 */\n dup3\n /* \"#utility.yul\":5697:5704 */\n dup5\n /* \"#utility.yul\":5693:5716 */\n sub\n /* \"#utility.yul\":5689:5721 */\n slt\n /* \"#utility.yul\":5686:5805 */\n iszero\n tag_151\n jumpi\n /* \"#utility.yul\":5724:5803 */\n tag_152\n tag_49\n jump\t// in\n tag_152:\n /* \"#utility.yul\":5686:5805 */\n tag_151:\n /* \"#utility.yul\":5872:5873 */\n 0x00\n /* \"#utility.yul\":5861:5870 */\n dup3\n /* \"#utility.yul\":5857:5874 */\n add\n /* \"#utility.yul\":5844:5875 */\n calldataload\n /* \"#utility.yul\":5902:5920 */\n 0xffffffffffffffff\n /* \"#utility.yul\":5894:5900 */\n dup2\n /* \"#utility.yul\":5891:5921 */\n gt\n /* \"#utility.yul\":5888:6005 */\n iszero\n tag_153\n jumpi\n /* \"#utility.yul\":5924:6003 */\n tag_154\n tag_50\n jump\t// in\n tag_154:\n /* \"#utility.yul\":5888:6005 */\n tag_153:\n /* \"#utility.yul\":6029:6092 */\n tag_155\n /* \"#utility.yul\":6084:6091 */\n dup5\n /* \"#utility.yul\":6075:6081 */\n dup3\n /* \"#utility.yul\":6064:6073 */\n dup6\n /* \"#utility.yul\":6060:6082 */\n add\n /* \"#utility.yul\":6029:6092 */\n tag_66\n jump\t// in\n tag_155:\n /* \"#utility.yul\":6019:6092 */\n swap2\n pop\n /* \"#utility.yul\":5815:6102 */\n pop\n /* \"#utility.yul\":5600:6109 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6115:6295 */\n tag_67:\n /* \"#utility.yul\":6163:6240 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6160:6161 */\n 0x00\n /* \"#utility.yul\":6153:6241 */\n mstore\n /* \"#utility.yul\":6260:6264 */\n 0x22\n /* \"#utility.yul\":6257:6258 */\n 0x04\n /* \"#utility.yul\":6250:6265 */\n mstore\n /* \"#utility.yul\":6284:6288 */\n 0x24\n /* \"#utility.yul\":6281:6282 */\n 0x00\n /* \"#utility.yul\":6274:6289 */\n revert\n /* \"#utility.yul\":6301:6621 */\n tag_34:\n /* \"#utility.yul\":6345:6351 */\n 0x00\n /* \"#utility.yul\":6382:6383 */\n 0x02\n /* \"#utility.yul\":6376:6380 */\n dup3\n /* \"#utility.yul\":6372:6384 */\n div\n /* \"#utility.yul\":6362:6384 */\n swap1\n pop\n /* \"#utility.yul\":6429:6430 */\n 0x01\n /* \"#utility.yul\":6423:6427 */\n dup3\n /* \"#utility.yul\":6419:6431 */\n and\n /* \"#utility.yul\":6450:6468 */\n dup1\n /* \"#utility.yul\":6440:6521 */\n tag_158\n jumpi\n /* \"#utility.yul\":6506:6510 */\n 0x7f\n /* \"#utility.yul\":6498:6504 */\n dup3\n /* \"#utility.yul\":6494:6511 */\n and\n /* \"#utility.yul\":6484:6511 */\n swap2\n pop\n /* \"#utility.yul\":6440:6521 */\n tag_158:\n /* \"#utility.yul\":6568:6570 */\n 0x20\n /* \"#utility.yul\":6560:6566 */\n dup3\n /* \"#utility.yul\":6557:6571 */\n lt\n /* \"#utility.yul\":6537:6555 */\n dup2\n /* \"#utility.yul\":6534:6572 */\n sub\n /* \"#utility.yul\":6531:6615 */\n tag_159\n jumpi\n /* \"#utility.yul\":6587:6605 */\n tag_160\n tag_67\n jump\t// in\n tag_160:\n /* \"#utility.yul\":6531:6615 */\n tag_159:\n /* \"#utility.yul\":6352:6621 */\n pop\n /* \"#utility.yul\":6301:6621 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6627:6768 */\n tag_68:\n /* \"#utility.yul\":6676:6680 */\n 0x00\n /* \"#utility.yul\":6699:6702 */\n dup2\n /* \"#utility.yul\":6691:6702 */\n swap1\n pop\n /* \"#utility.yul\":6722:6725 */\n dup2\n /* \"#utility.yul\":6719:6720 */\n 0x00\n /* \"#utility.yul\":6712:6726 */\n mstore\n /* \"#utility.yul\":6756:6760 */\n 0x20\n /* \"#utility.yul\":6753:6754 */\n 0x00\n /* \"#utility.yul\":6743:6761 */\n keccak256\n /* \"#utility.yul\":6735:6761 */\n swap1\n pop\n /* \"#utility.yul\":6627:6768 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6774:6867 */\n tag_69:\n /* \"#utility.yul\":6811:6817 */\n 0x00\n /* \"#utility.yul\":6858:6860 */\n 0x20\n /* \"#utility.yul\":6853:6855 */\n 0x1f\n /* \"#utility.yul\":6846:6851 */\n dup4\n /* \"#utility.yul\":6842:6856 */\n add\n /* \"#utility.yul\":6838:6861 */\n div\n /* \"#utility.yul\":6828:6861 */\n swap1\n pop\n /* \"#utility.yul\":6774:6867 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6873:6980 */\n tag_70:\n /* \"#utility.yul\":6917:6925 */\n 0x00\n /* \"#utility.yul\":6967:6972 */\n dup3\n /* \"#utility.yul\":6961:6965 */\n dup3\n /* \"#utility.yul\":6957:6973 */\n shl\n /* \"#utility.yul\":6936:6973 */\n swap1\n pop\n /* \"#utility.yul\":6873:6980 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6986:7379 */\n tag_71:\n /* \"#utility.yul\":7055:7061 */\n 0x00\n /* \"#utility.yul\":7105:7106 */\n 0x08\n /* \"#utility.yul\":7093:7103 */\n dup4\n /* \"#utility.yul\":7089:7107 */\n mul\n /* \"#utility.yul\":7128:7225 */\n tag_165\n /* \"#utility.yul\":7158:7224 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":7147:7156 */\n dup3\n /* \"#utility.yul\":7128:7225 */\n tag_70\n jump\t// in\n tag_165:\n /* \"#utility.yul\":7246:7285 */\n tag_166\n /* \"#utility.yul\":7276:7284 */\n dup7\n /* \"#utility.yul\":7265:7274 */\n dup4\n /* \"#utility.yul\":7246:7285 */\n tag_70\n jump\t// in\n tag_166:\n /* \"#utility.yul\":7234:7285 */\n swap6\n pop\n /* \"#utility.yul\":7318:7322 */\n dup1\n /* \"#utility.yul\":7314:7323 */\n not\n /* \"#utility.yul\":7307:7312 */\n dup5\n /* \"#utility.yul\":7303:7324 */\n and\n /* \"#utility.yul\":7294:7324 */\n swap4\n pop\n /* \"#utility.yul\":7367:7371 */\n dup1\n /* \"#utility.yul\":7357:7365 */\n dup7\n /* \"#utility.yul\":7353:7372 */\n and\n /* \"#utility.yul\":7346:7351 */\n dup5\n /* \"#utility.yul\":7343:7373 */\n or\n /* \"#utility.yul\":7333:7373 */\n swap3\n pop\n /* \"#utility.yul\":7062:7379 */\n pop\n pop\n /* \"#utility.yul\":6986:7379 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7385:7445 */\n tag_72:\n /* \"#utility.yul\":7413:7416 */\n 0x00\n /* \"#utility.yul\":7434:7439 */\n dup2\n /* \"#utility.yul\":7427:7439 */\n swap1\n pop\n /* \"#utility.yul\":7385:7445 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7451:7593 */\n tag_73:\n /* \"#utility.yul\":7501:7510 */\n 0x00\n /* \"#utility.yul\":7534:7587 */\n tag_169\n /* \"#utility.yul\":7552:7586 */\n tag_170\n /* \"#utility.yul\":7561:7585 */\n tag_171\n /* \"#utility.yul\":7579:7584 */\n dup5\n /* \"#utility.yul\":7561:7585 */\n tag_46\n jump\t// in\n tag_171:\n /* \"#utility.yul\":7552:7586 */\n tag_72\n jump\t// in\n tag_170:\n /* \"#utility.yul\":7534:7587 */\n tag_46\n jump\t// in\n tag_169:\n /* \"#utility.yul\":7521:7587 */\n swap1\n pop\n /* \"#utility.yul\":7451:7593 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7599:7674 */\n tag_74:\n /* \"#utility.yul\":7642:7645 */\n 0x00\n /* \"#utility.yul\":7663:7668 */\n dup2\n /* \"#utility.yul\":7656:7668 */\n swap1\n pop\n /* \"#utility.yul\":7599:7674 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7680:7949 */\n tag_75:\n /* \"#utility.yul\":7790:7829 */\n tag_174\n /* \"#utility.yul\":7821:7828 */\n dup4\n /* \"#utility.yul\":7790:7829 */\n tag_73\n jump\t// in\n tag_174:\n /* \"#utility.yul\":7851:7942 */\n tag_175\n /* \"#utility.yul\":7900:7941 */\n tag_176\n /* \"#utility.yul\":7924:7940 */\n dup3\n /* \"#utility.yul\":7900:7941 */\n tag_74\n jump\t// in\n tag_176:\n /* \"#utility.yul\":7892:7898 */\n dup5\n /* \"#utility.yul\":7885:7889 */\n dup5\n /* \"#utility.yul\":7879:7890 */\n sload\n /* \"#utility.yul\":7851:7942 */\n tag_71\n jump\t// in\n tag_175:\n /* \"#utility.yul\":7845:7849 */\n dup3\n /* \"#utility.yul\":7838:7943 */\n sstore\n /* \"#utility.yul\":7756:7949 */\n pop\n /* \"#utility.yul\":7680:7949 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7955:8028 */\n tag_76:\n /* \"#utility.yul\":8000:8003 */\n 0x00\n /* \"#utility.yul\":7955:8028 */\n swap1\n jump\t// out\n /* \"#utility.yul\":8034:8223 */\n tag_77:\n /* \"#utility.yul\":8111:8143 */\n tag_179\n tag_76\n jump\t// in\n tag_179:\n /* \"#utility.yul\":8152:8217 */\n tag_180\n /* \"#utility.yul\":8210:8216 */\n dup2\n /* \"#utility.yul\":8202:8208 */\n dup5\n /* \"#utility.yul\":8196:8200 */\n dup5\n /* \"#utility.yul\":8152:8217 */\n tag_75\n jump\t// in\n tag_180:\n /* \"#utility.yul\":8087:8223 */\n pop\n /* \"#utility.yul\":8034:8223 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8229:8415 */\n tag_78:\n /* \"#utility.yul\":8289:8409 */\n tag_182:\n /* \"#utility.yul\":8306:8309 */\n dup2\n /* \"#utility.yul\":8299:8304 */\n dup2\n /* \"#utility.yul\":8296:8310 */\n lt\n /* \"#utility.yul\":8289:8409 */\n iszero\n tag_184\n jumpi\n /* \"#utility.yul\":8360:8399 */\n tag_185\n /* \"#utility.yul\":8397:8398 */\n 0x00\n /* \"#utility.yul\":8390:8395 */\n dup3\n /* \"#utility.yul\":8360:8399 */\n tag_77\n jump\t// in\n tag_185:\n /* \"#utility.yul\":8333:8334 */\n 0x01\n /* \"#utility.yul\":8326:8331 */\n dup2\n /* \"#utility.yul\":8322:8335 */\n add\n /* \"#utility.yul\":8313:8335 */\n swap1\n pop\n /* \"#utility.yul\":8289:8409 */\n jump(tag_182)\n tag_184:\n /* \"#utility.yul\":8229:8415 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8421:8964 */\n tag_79:\n /* \"#utility.yul\":8522:8524 */\n 0x1f\n /* \"#utility.yul\":8517:8520 */\n dup3\n /* \"#utility.yul\":8514:8525 */\n gt\n /* \"#utility.yul\":8511:8957 */\n iszero\n tag_187\n jumpi\n /* \"#utility.yul\":8556:8594 */\n tag_188\n /* \"#utility.yul\":8588:8593 */\n dup2\n /* \"#utility.yul\":8556:8594 */\n tag_68\n jump\t// in\n tag_188:\n /* \"#utility.yul\":8640:8669 */\n tag_189\n /* \"#utility.yul\":8658:8668 */\n dup5\n /* \"#utility.yul\":8640:8669 */\n tag_69\n jump\t// in\n tag_189:\n /* \"#utility.yul\":8630:8638 */\n dup2\n /* \"#utility.yul\":8626:8670 */\n add\n /* \"#utility.yul\":8823:8825 */\n 0x20\n /* \"#utility.yul\":8811:8821 */\n dup6\n /* \"#utility.yul\":8808:8826 */\n lt\n /* \"#utility.yul\":8805:8854 */\n iszero\n tag_190\n jumpi\n /* \"#utility.yul\":8844:8852 */\n dup2\n /* \"#utility.yul\":8829:8852 */\n swap1\n pop\n /* \"#utility.yul\":8805:8854 */\n tag_190:\n /* \"#utility.yul\":8867:8947 */\n tag_191\n /* \"#utility.yul\":8923:8945 */\n tag_192\n /* \"#utility.yul\":8941:8944 */\n dup6\n /* \"#utility.yul\":8923:8945 */\n tag_69\n jump\t// in\n tag_192:\n /* \"#utility.yul\":8913:8921 */\n dup4\n /* \"#utility.yul\":8909:8946 */\n add\n /* \"#utility.yul\":8896:8907 */\n dup3\n /* \"#utility.yul\":8867:8947 */\n tag_78\n jump\t// in\n tag_191:\n /* \"#utility.yul\":8526:8957 */\n pop\n pop\n /* \"#utility.yul\":8511:8957 */\n tag_187:\n /* \"#utility.yul\":8421:8964 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8970:9087 */\n tag_80:\n /* \"#utility.yul\":9024:9032 */\n 0x00\n /* \"#utility.yul\":9074:9079 */\n dup3\n /* \"#utility.yul\":9068:9072 */\n dup3\n /* \"#utility.yul\":9064:9080 */\n shr\n /* \"#utility.yul\":9043:9080 */\n swap1\n pop\n /* \"#utility.yul\":8970:9087 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9093:9262 */\n tag_81:\n /* \"#utility.yul\":9137:9143 */\n 0x00\n /* \"#utility.yul\":9170:9221 */\n tag_195\n /* \"#utility.yul\":9218:9219 */\n 0x00\n /* \"#utility.yul\":9214:9220 */\n not\n /* \"#utility.yul\":9206:9211 */\n dup5\n /* \"#utility.yul\":9203:9204 */\n 0x08\n /* \"#utility.yul\":9199:9212 */\n mul\n /* \"#utility.yul\":9170:9221 */\n tag_80\n jump\t// in\n tag_195:\n /* \"#utility.yul\":9166:9222 */\n not\n /* \"#utility.yul\":9251:9255 */\n dup1\n /* \"#utility.yul\":9245:9249 */\n dup4\n /* \"#utility.yul\":9241:9256 */\n and\n /* \"#utility.yul\":9231:9256 */\n swap2\n pop\n /* \"#utility.yul\":9144:9262 */\n pop\n /* \"#utility.yul\":9093:9262 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9267:9562 */\n tag_82:\n /* \"#utility.yul\":9343:9347 */\n 0x00\n /* \"#utility.yul\":9489:9518 */\n tag_197\n /* \"#utility.yul\":9514:9517 */\n dup4\n /* \"#utility.yul\":9508:9512 */\n dup4\n /* \"#utility.yul\":9489:9518 */\n tag_81\n jump\t// in\n tag_197:\n /* \"#utility.yul\":9481:9518 */\n swap2\n pop\n /* \"#utility.yul\":9551:9554 */\n dup3\n /* \"#utility.yul\":9548:9549 */\n 0x02\n /* \"#utility.yul\":9544:9555 */\n mul\n /* \"#utility.yul\":9538:9542 */\n dup3\n /* \"#utility.yul\":9535:9556 */\n or\n /* \"#utility.yul\":9527:9556 */\n swap1\n pop\n /* \"#utility.yul\":9267:9562 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9567:10962 */\n tag_43:\n /* \"#utility.yul\":9684:9721 */\n tag_199\n /* \"#utility.yul\":9717:9720 */\n dup3\n /* \"#utility.yul\":9684:9721 */\n tag_53\n jump\t// in\n tag_199:\n /* \"#utility.yul\":9786:9804 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9778:9784 */\n dup2\n /* \"#utility.yul\":9775:9805 */\n gt\n /* \"#utility.yul\":9772:9828 */\n iszero\n tag_200\n jumpi\n /* \"#utility.yul\":9808:9826 */\n tag_201\n tag_60\n jump\t// in\n tag_201:\n /* \"#utility.yul\":9772:9828 */\n tag_200:\n /* \"#utility.yul\":9852:9890 */\n tag_202\n /* \"#utility.yul\":9884:9888 */\n dup3\n /* \"#utility.yul\":9878:9889 */\n sload\n /* \"#utility.yul\":9852:9890 */\n tag_34\n jump\t// in\n tag_202:\n /* \"#utility.yul\":9937:10004 */\n tag_203\n /* \"#utility.yul\":9997:10003 */\n dup3\n /* \"#utility.yul\":9989:9995 */\n dup3\n /* \"#utility.yul\":9983:9987 */\n dup6\n /* \"#utility.yul\":9937:10004 */\n tag_79\n jump\t// in\n tag_203:\n /* \"#utility.yul\":10031:10032 */\n 0x00\n /* \"#utility.yul\":10055:10059 */\n 0x20\n /* \"#utility.yul\":10042:10059 */\n swap1\n pop\n /* \"#utility.yul\":10087:10089 */\n 0x1f\n /* \"#utility.yul\":10079:10085 */\n dup4\n /* \"#utility.yul\":10076:10090 */\n gt\n /* \"#utility.yul\":10104:10105 */\n 0x01\n /* \"#utility.yul\":10099:10717 */\n dup2\n eq\n tag_205\n jumpi\n /* \"#utility.yul\":10761:10762 */\n 0x00\n /* \"#utility.yul\":10778:10784 */\n dup5\n /* \"#utility.yul\":10775:10852 */\n iszero\n tag_206\n jumpi\n /* \"#utility.yul\":10827:10836 */\n dup3\n /* \"#utility.yul\":10822:10825 */\n dup8\n /* \"#utility.yul\":10818:10837 */\n add\n /* \"#utility.yul\":10812:10838 */\n mload\n /* \"#utility.yul\":10803:10838 */\n swap1\n pop\n /* \"#utility.yul\":10775:10852 */\n tag_206:\n /* \"#utility.yul\":10878:10945 */\n tag_207\n /* \"#utility.yul\":10938:10944 */\n dup6\n /* \"#utility.yul\":10931:10936 */\n dup3\n /* \"#utility.yul\":10878:10945 */\n tag_82\n jump\t// in\n tag_207:\n /* \"#utility.yul\":10872:10876 */\n dup7\n /* \"#utility.yul\":10865:10946 */\n sstore\n /* \"#utility.yul\":10734:10956 */\n pop\n /* \"#utility.yul\":10069:10956 */\n jump(tag_204)\n /* \"#utility.yul\":10099:10717 */\n tag_205:\n /* \"#utility.yul\":10151:10155 */\n 0x1f\n /* \"#utility.yul\":10147:10156 */\n not\n /* \"#utility.yul\":10139:10145 */\n dup5\n /* \"#utility.yul\":10135:10157 */\n and\n /* \"#utility.yul\":10185:10222 */\n tag_208\n /* \"#utility.yul\":10217:10221 */\n dup7\n /* \"#utility.yul\":10185:10222 */\n tag_68\n jump\t// in\n tag_208:\n /* \"#utility.yul\":10244:10245 */\n 0x00\n /* \"#utility.yul\":10258:10466 */\n tag_209:\n /* \"#utility.yul\":10272:10279 */\n dup3\n /* \"#utility.yul\":10269:10270 */\n dup2\n /* \"#utility.yul\":10266:10280 */\n lt\n /* \"#utility.yul\":10258:10466 */\n iszero\n tag_211\n jumpi\n /* \"#utility.yul\":10351:10360 */\n dup5\n /* \"#utility.yul\":10346:10349 */\n dup10\n /* \"#utility.yul\":10342:10361 */\n add\n /* \"#utility.yul\":10336:10362 */\n mload\n /* \"#utility.yul\":10328:10334 */\n dup3\n /* \"#utility.yul\":10321:10363 */\n sstore\n /* \"#utility.yul\":10402:10403 */\n 0x01\n /* \"#utility.yul\":10394:10400 */\n dup3\n /* \"#utility.yul\":10390:10404 */\n add\n /* \"#utility.yul\":10380:10404 */\n swap2\n pop\n /* \"#utility.yul\":10449:10451 */\n 0x20\n /* \"#utility.yul\":10438:10447 */\n dup6\n /* \"#utility.yul\":10434:10452 */\n add\n /* \"#utility.yul\":10421:10452 */\n swap5\n pop\n /* \"#utility.yul\":10295:10299 */\n 0x20\n /* \"#utility.yul\":10292:10293 */\n dup2\n /* \"#utility.yul\":10288:10300 */\n add\n /* \"#utility.yul\":10283:10300 */\n swap1\n pop\n /* \"#utility.yul\":10258:10466 */\n jump(tag_209)\n tag_211:\n /* \"#utility.yul\":10494:10500 */\n dup7\n /* \"#utility.yul\":10485:10492 */\n dup4\n /* \"#utility.yul\":10482:10501 */\n lt\n /* \"#utility.yul\":10479:10658 */\n iszero\n tag_212\n jumpi\n /* \"#utility.yul\":10552:10561 */\n dup5\n /* \"#utility.yul\":10547:10550 */\n dup10\n /* \"#utility.yul\":10543:10562 */\n add\n /* \"#utility.yul\":10537:10563 */\n mload\n /* \"#utility.yul\":10595:10643 */\n tag_213\n /* \"#utility.yul\":10637:10641 */\n 0x1f\n /* \"#utility.yul\":10629:10635 */\n dup10\n /* \"#utility.yul\":10625:10642 */\n and\n /* \"#utility.yul\":10614:10623 */\n dup3\n /* \"#utility.yul\":10595:10643 */\n tag_81\n jump\t// in\n tag_213:\n /* \"#utility.yul\":10587:10593 */\n dup4\n /* \"#utility.yul\":10580:10644 */\n sstore\n /* \"#utility.yul\":10502:10658 */\n pop\n /* \"#utility.yul\":10479:10658 */\n tag_212:\n /* \"#utility.yul\":10704:10705 */\n 0x01\n /* \"#utility.yul\":10700:10701 */\n 0x02\n /* \"#utility.yul\":10692:10698 */\n dup9\n /* \"#utility.yul\":10688:10702 */\n mul\n /* \"#utility.yul\":10684:10706 */\n add\n /* \"#utility.yul\":10678:10682 */\n dup9\n /* \"#utility.yul\":10671:10707 */\n sstore\n /* \"#utility.yul\":10106:10717 */\n pop\n pop\n pop\n /* \"#utility.yul\":10069:10956 */\n tag_204:\n pop\n /* \"#utility.yul\":9659:10962 */\n pop\n pop\n pop\n /* \"#utility.yul\":9567:10962 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10968:11116 */\n tag_83:\n /* \"#utility.yul\":11070:11081 */\n 0x00\n /* \"#utility.yul\":11107:11110 */\n dup2\n /* \"#utility.yul\":11092:11110 */\n swap1\n pop\n /* \"#utility.yul\":10968:11116 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11122:11512 */\n tag_84:\n /* \"#utility.yul\":11228:11231 */\n 0x00\n /* \"#utility.yul\":11256:11295 */\n tag_216\n /* \"#utility.yul\":11289:11294 */\n dup3\n /* \"#utility.yul\":11256:11295 */\n tag_53\n jump\t// in\n tag_216:\n /* \"#utility.yul\":11311:11400 */\n tag_217\n /* \"#utility.yul\":11393:11399 */\n dup2\n /* \"#utility.yul\":11388:11391 */\n dup6\n /* \"#utility.yul\":11311:11400 */\n tag_83\n jump\t// in\n tag_217:\n /* \"#utility.yul\":11304:11400 */\n swap4\n pop\n /* \"#utility.yul\":11409:11474 */\n tag_218\n /* \"#utility.yul\":11467:11473 */\n dup2\n /* \"#utility.yul\":11462:11465 */\n dup6\n /* \"#utility.yul\":11455:11459 */\n 0x20\n /* \"#utility.yul\":11448:11453 */\n dup7\n /* \"#utility.yul\":11444:11460 */\n add\n /* \"#utility.yul\":11409:11474 */\n tag_55\n jump\t// in\n tag_218:\n /* \"#utility.yul\":11499:11505 */\n dup1\n /* \"#utility.yul\":11494:11497 */\n dup5\n /* \"#utility.yul\":11490:11506 */\n add\n /* \"#utility.yul\":11483:11506 */\n swap2\n pop\n /* \"#utility.yul\":11232:11512 */\n pop\n /* \"#utility.yul\":11122:11512 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11518:11793 */\n tag_45:\n /* \"#utility.yul\":11650:11653 */\n 0x00\n /* \"#utility.yul\":11672:11767 */\n tag_220\n /* \"#utility.yul\":11763:11766 */\n dup3\n /* \"#utility.yul\":11754:11760 */\n dup5\n /* \"#utility.yul\":11672:11767 */\n tag_84\n jump\t// in\n tag_220:\n /* \"#utility.yul\":11665:11767 */\n swap2\n pop\n /* \"#utility.yul\":11784:11787 */\n dup2\n /* \"#utility.yul\":11777:11787 */\n swap1\n pop\n /* \"#utility.yul\":11518:11793 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220389c67cd7e5ec182442e16e74f8df9fa9c3fdc7e9530328e3fba9bd4bfb650be64736f6c63430008130033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061093b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780632ebce6311461007a5780636057361d146100ab5780636f760f41146100c75780638bab8dd5146100e3575b600080fd5b610064610113565b60405161007191906102b2565b60405180910390f35b610094600480360381019061008f919061030d565b61011c565b6040516100a29291906103ca565b60405180910390f35b6100c560048036038101906100c0919061030d565b6101d8565b005b6100e160048036038101906100dc919061052f565b6101e2565b005b6100fd60048036038101906100f8919061058b565b61026b565b60405161010a91906102b2565b60405180910390f35b60008054905090565b6001818154811061012c57600080fd5b906000526020600020906002020160009150905080600001549080600101805461015590610603565b80601f016020809104026020016040519081016040528092919081815260200182805461018190610603565b80156101ce5780601f106101a3576101008083540402835291602001916101ce565b820191906000526020600020905b8154815290600101906020018083116101b157829003601f168201915b5050505050905082565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908161024191906107e0565b5050508060028360405161025591906108ee565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6000819050919050565b6102ac81610299565b82525050565b60006020820190506102c760008301846102a3565b92915050565b6000604051905090565b600080fd5b600080fd5b6102ea81610299565b81146102f557600080fd5b50565b600081359050610307816102e1565b92915050565b600060208284031215610323576103226102d7565b5b6000610331848285016102f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610374578082015181840152602081019050610359565b60008484015250505050565b6000601f19601f8301169050919050565b600061039c8261033a565b6103a68185610345565b93506103b6818560208601610356565b6103bf81610380565b840191505092915050565b60006040820190506103df60008301856102a3565b81810360208301526103f18184610391565b90509392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61043c82610380565b810181811067ffffffffffffffff8211171561045b5761045a610404565b5b80604052505050565b600061046e6102cd565b905061047a8282610433565b919050565b600067ffffffffffffffff82111561049a57610499610404565b5b6104a382610380565b9050602081019050919050565b82818337600083830152505050565b60006104d26104cd8461047f565b610464565b9050828152602081018484840111156104ee576104ed6103ff565b5b6104f98482856104b0565b509392505050565b600082601f830112610516576105156103fa565b5b81356105268482602086016104bf565b91505092915050565b60008060408385031215610546576105456102d7565b5b600083013567ffffffffffffffff811115610564576105636102dc565b5b61057085828601610501565b9250506020610581858286016102f8565b9150509250929050565b6000602082840312156105a1576105a06102d7565b5b600082013567ffffffffffffffff8111156105bf576105be6102dc565b5b6105cb84828501610501565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061061b57607f821691505b60208210810361062e5761062d6105d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610659565b6106a08683610659565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106dd6106d86106d384610299565b6106b8565b610299565b9050919050565b6000819050919050565b6106f7836106c2565b61070b610703826106e4565b848454610666565b825550505050565b600090565b610720610713565b61072b8184846106ee565b505050565b5b8181101561074f57610744600082610718565b600181019050610731565b5050565b601f8211156107945761076581610634565b61076e84610649565b8101602085101561077d578190505b61079161078985610649565b830182610730565b50505b505050565b600082821c905092915050565b60006107b760001984600802610799565b1980831691505092915050565b60006107d083836107a6565b9150826002028217905092915050565b6107e98261033a565b67ffffffffffffffff81111561080257610801610404565b5b61080c8254610603565b610817828285610753565b600060209050601f83116001811461084a5760008415610838578287015190505b61084285826107c4565b8655506108aa565b601f19841661085886610634565b60005b828110156108805784890151825560018201915060208501945060208101905061085b565b8683101561089d5784890151610899601f8916826107a6565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006108c88261033a565b6108d281856108b2565b93506108e2818560208601610356565b80840191505092915050565b60006108fa82846108bd565b91508190509291505056fea2646970667358221220389c67cd7e5ec182442e16e74f8df9fa9c3fdc7e9530328e3fba9bd4bfb650be64736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x93B DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x2EBCE631 EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0xC7 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP3 SWAP2 SWAP1 PUSH2 0x3CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x30D JUMP JUMPDEST PUSH2 0x1D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDC SWAP2 SWAP1 PUSH2 0x52F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH2 0x26B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x155 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x181 SWAP1 PUSH2 0x603 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x7E0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x8EE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AC DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EA DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x307 DUP2 PUSH2 0x2E1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x323 JUMPI PUSH2 0x322 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x331 DUP5 DUP3 DUP6 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x374 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x359 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x3A6 DUP2 DUP6 PUSH2 0x345 JUMP JUMPDEST SWAP4 POP PUSH2 0x3B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x380 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3DF PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2A3 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3F1 DUP2 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x43C DUP3 PUSH2 0x380 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x45B JUMPI PUSH2 0x45A PUSH2 0x404 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46E PUSH2 0x2CD JUMP JUMPDEST SWAP1 POP PUSH2 0x47A DUP3 DUP3 PUSH2 0x433 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x49A JUMPI PUSH2 0x499 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x4A3 DUP3 PUSH2 0x380 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D2 PUSH2 0x4CD DUP5 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x464 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4EE JUMPI PUSH2 0x4ED PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x4F9 DUP5 DUP3 DUP6 PUSH2 0x4B0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x516 JUMPI PUSH2 0x515 PUSH2 0x3FA JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x526 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x546 JUMPI PUSH2 0x545 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x564 JUMPI PUSH2 0x563 PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP6 DUP3 DUP7 ADD PUSH2 0x501 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x581 DUP6 DUP3 DUP7 ADD PUSH2 0x2F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A1 JUMPI PUSH2 0x5A0 PUSH2 0x2D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BF JUMPI PUSH2 0x5BE PUSH2 0x2DC JUMP JUMPDEST JUMPDEST PUSH2 0x5CB DUP5 DUP3 DUP6 ADD PUSH2 0x501 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x61B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x62E JUMPI PUSH2 0x62D PUSH2 0x5D4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x696 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x659 JUMP JUMPDEST PUSH2 0x6A0 DUP7 DUP4 PUSH2 0x659 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DD PUSH2 0x6D8 PUSH2 0x6D3 DUP5 PUSH2 0x299 JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH2 0x299 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6F7 DUP4 PUSH2 0x6C2 JUMP JUMPDEST PUSH2 0x70B PUSH2 0x703 DUP3 PUSH2 0x6E4 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x666 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x720 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x72B DUP2 DUP5 DUP5 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x74F JUMPI PUSH2 0x744 PUSH1 0x0 DUP3 PUSH2 0x718 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x731 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x794 JUMPI PUSH2 0x765 DUP2 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x76E DUP5 PUSH2 0x649 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x77D JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x791 PUSH2 0x789 DUP6 PUSH2 0x649 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x730 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7B7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x799 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D0 DUP4 DUP4 PUSH2 0x7A6 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7E9 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x802 JUMPI PUSH2 0x801 PUSH2 0x404 JUMP JUMPDEST JUMPDEST PUSH2 0x80C DUP3 SLOAD PUSH2 0x603 JUMP JUMPDEST PUSH2 0x817 DUP3 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x84A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x838 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x842 DUP6 DUP3 PUSH2 0x7C4 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x8AA JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x858 DUP7 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x880 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x85B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x89D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x899 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x7A6 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C8 DUP3 PUSH2 0x33A JUMP JUMPDEST PUSH2 0x8D2 DUP2 DUP6 PUSH2 0x8B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x8E2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x356 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FA DUP3 DUP5 PUSH2 0x8BD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODESIZE SWAP13 PUSH8 0xCD7E5EC182442E16 0xE7 0x4F DUP14 0xF9 STATICCALL SWAP13 EXTCODEHASH 0xDC PUSH31 0x9530328E3FBA9BD4BFB650BE64736F6C634300081300330000000000000000 ",
"sourceMap": "147:687:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_57": {
"entryPoint": 482,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"@listOfPeople_12": {
"entryPoint": 284,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@nameToFavoriteNumber_16": {
"entryPoint": 619,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 275,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 472,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1215,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 760,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1419,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1327,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 781,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 913,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2237,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 675,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2286,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 690,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 970,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1124,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 717,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1151,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1588,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 826,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 837,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2226,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1875,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1840,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2016,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 1200,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 854,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1609,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1539,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1988,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1075,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1720,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1492,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1028,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1764,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1023,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 732,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 727,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 896,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1625,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1945,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1816,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1638,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1774,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 737,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1811,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11796:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:2",
"type": ""
}
],
"src": "7:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:2"
},
"nodeType": "YulFunctionCall",
"src": "177:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:2"
},
"nodeType": "YulFunctionCall",
"src": "165:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:2",
"type": ""
}
],
"src": "90:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:2"
},
"nodeType": "YulFunctionCall",
"src": "330:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:2"
},
"nodeType": "YulFunctionCall",
"src": "411:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:2"
},
"nodeType": "YulFunctionCall",
"src": "358:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:2",
"type": ""
}
],
"src": "214:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:2"
},
"nodeType": "YulFunctionCall",
"src": "502:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:2",
"type": ""
}
],
"src": "442:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:2"
},
"nodeType": "YulFunctionCall",
"src": "622:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:2"
},
"nodeType": "YulFunctionCall",
"src": "745:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:2"
},
"nodeType": "YulFunctionCall",
"src": "871:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:2"
},
"nodeType": "YulFunctionCall",
"src": "842:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:2"
},
"nodeType": "YulFunctionCall",
"src": "832:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:2"
},
"nodeType": "YulFunctionCall",
"src": "825:43:2"
},
"nodeType": "YulIf",
"src": "822:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:2",
"type": ""
}
],
"src": "769:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:2"
},
"nodeType": "YulFunctionCall",
"src": "968:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:2"
},
"nodeType": "YulFunctionCall",
"src": "997:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:2",
"type": ""
}
],
"src": "897:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:2"
},
"nodeType": "YulIf",
"src": "1118:119:2"
},
{
"nodeType": "YulBlock",
"src": "1247:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:2",
"type": ""
}
],
"src": "1042:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1436:40:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1447:22:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1463:5:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1457:5:2"
},
"nodeType": "YulFunctionCall",
"src": "1457:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1447:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1419:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1429:6:2",
"type": ""
}
],
"src": "1377:99:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1578:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1595:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1600:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1588:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1588:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "1588:19:2"
},
{
"nodeType": "YulAssignment",
"src": "1616:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1635:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1640:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1631:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1631:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1616:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1550:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1555:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1566:11:2",
"type": ""
}
],
"src": "1482:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:184:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1729:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1738:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1733:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1798:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1823:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1828:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1819:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1819:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1842:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1847:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1838:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1838:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1832:5:2"
},
"nodeType": "YulFunctionCall",
"src": "1832:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1812:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1812:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "1812:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1759:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1762:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1756:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1756:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1770:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1772:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1781:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1784:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1777:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1777:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1772:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1752:3:2",
"statements": []
},
"src": "1748:113:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1881:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1886:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1877:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1877:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1870:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1870:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "1870:27:2"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1701:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1706:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1711:6:2",
"type": ""
}
],
"src": "1657:246:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1957:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1967:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1985:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1981:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1981:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2001:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1997:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1997:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1977:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1977:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1967:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1940:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1950:6:2",
"type": ""
}
],
"src": "1909:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2109:285:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2119:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2166:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2133:32:2"
},
"nodeType": "YulFunctionCall",
"src": "2133:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2123:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2181:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2247:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2252:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2188:58:2"
},
"nodeType": "YulFunctionCall",
"src": "2188:71:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2181:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2307:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2314:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2303:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2303:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2321:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2326:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2268:34:2"
},
"nodeType": "YulFunctionCall",
"src": "2268:65:2"
},
"nodeType": "YulExpressionStatement",
"src": "2268:65:2"
},
{
"nodeType": "YulAssignment",
"src": "2342:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2353:3:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2380:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2358:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2358:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2349:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2349:39:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2342:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2090:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2097:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2105:3:2",
"type": ""
}
],
"src": "2017:377:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2546:277:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2556:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2568:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2564:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2564:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2556:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2636:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2649:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2660:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2645:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2645:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2592:43:2"
},
"nodeType": "YulFunctionCall",
"src": "2592:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "2592:71:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2684:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2695:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2680:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2680:18:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2704:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2710:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2700:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2700:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2673:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2673:48:2"
},
"nodeType": "YulExpressionStatement",
"src": "2673:48:2"
},
{
"nodeType": "YulAssignment",
"src": "2730:86:2",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2802:6:2"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2811:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2738:63:2"
},
"nodeType": "YulFunctionCall",
"src": "2738:78:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2730:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2510:9:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2522:6:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2530:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2541:4:2",
"type": ""
}
],
"src": "2400:423:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2918:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2935:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2938:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2928:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2928:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "2928:12:2"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "2829:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3041:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3061:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3051:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3051:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "3051:12:2"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "2952:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3103:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3120:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3123:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3113:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3113:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "3113:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3217:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3220:4:2",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3210:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3210:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3210:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3241:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3234:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3234:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3234:15:2"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3075:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3304:238:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3314:58:2",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3336:6:2"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3366:4:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3344:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3344:27:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3332:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3332:40:2"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3318:10:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3483:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3485:16:2"
},
"nodeType": "YulFunctionCall",
"src": "3485:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "3485:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3426:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3438:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3423:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3423:34:2"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3462:10:2"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3474:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3459:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3459:22:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3420:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3420:62:2"
},
"nodeType": "YulIf",
"src": "3417:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3521:2:2",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3525:10:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3514:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3514:22:2"
},
"nodeType": "YulExpressionStatement",
"src": "3514:22:2"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3290:6:2",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3298:4:2",
"type": ""
}
],
"src": "3261:281:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3589:88:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3599:30:2",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3609:18:2"
},
"nodeType": "YulFunctionCall",
"src": "3609:20:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3599:6:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3658:6:2"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3666:4:2"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3638:19:2"
},
"nodeType": "YulFunctionCall",
"src": "3638:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "3638:33:2"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3573:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3582:6:2",
"type": ""
}
],
"src": "3548:129:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3750:241:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3855:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3857:16:2"
},
"nodeType": "YulFunctionCall",
"src": "3857:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "3857:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3827:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3835:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3824:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3824:30:2"
},
"nodeType": "YulIf",
"src": "3821:56:2"
},
{
"nodeType": "YulAssignment",
"src": "3887:37:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3917:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3895:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3895:29:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3887:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3961:23:2",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3973:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3979:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3969:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3969:15:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3961:4:2"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3734:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3745:4:2",
"type": ""
}
],
"src": "3683:308:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4061:82:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4084:3:2"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4089:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4094:6:2"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "4071:12:2"
},
"nodeType": "YulFunctionCall",
"src": "4071:30:2"
},
"nodeType": "YulExpressionStatement",
"src": "4071:30:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4121:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4126:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4117:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4117:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4135:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4110:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4110:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "4110:27:2"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4043:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4048:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4053:6:2",
"type": ""
}
],
"src": "3997:146:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4233:341:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4243:75:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4310:6:2"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4268:41:2"
},
"nodeType": "YulFunctionCall",
"src": "4268:49:2"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "4252:15:2"
},
"nodeType": "YulFunctionCall",
"src": "4252:66:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4243:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4334:5:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4341:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4327:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4327:21:2"
},
"nodeType": "YulExpressionStatement",
"src": "4327:21:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4357:27:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4372:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4379:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4368:16:2"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4361:3:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4422:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "4424:77:2"
},
"nodeType": "YulFunctionCall",
"src": "4424:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "4424:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4403:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4408:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4399:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4399:16:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4417:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4396:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4396:25:2"
},
"nodeType": "YulIf",
"src": "4393:112:2"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4551:3:2"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4556:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4561:6:2"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "4514:36:2"
},
"nodeType": "YulFunctionCall",
"src": "4514:54:2"
},
"nodeType": "YulExpressionStatement",
"src": "4514:54:2"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4206:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4211:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4219:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4227:5:2",
"type": ""
}
],
"src": "4149:425:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4656:278:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4705:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "4707:77:2"
},
"nodeType": "YulFunctionCall",
"src": "4707:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "4707:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4684:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4692:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4680:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4680:17:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4699:3:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4676:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4676:27:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4669:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4669:35:2"
},
"nodeType": "YulIf",
"src": "4666:122:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4797:34:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4824:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4811:12:2"
},
"nodeType": "YulFunctionCall",
"src": "4811:20:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4801:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4840:88:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4901:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4909:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4897:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4897:17:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4916:6:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4924:3:2"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4849:47:2"
},
"nodeType": "YulFunctionCall",
"src": "4849:79:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4840:5:2"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4634:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4642:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4650:5:2",
"type": ""
}
],
"src": "4594:340:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5033:561:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5079:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5081:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5081:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5081:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5054:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5063:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5050:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5050:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5075:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5046:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5046:32:2"
},
"nodeType": "YulIf",
"src": "5043:119:2"
},
{
"nodeType": "YulBlock",
"src": "5172:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5187:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5218:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5229:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5214:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5214:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5201:12:2"
},
"nodeType": "YulFunctionCall",
"src": "5201:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5191:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5279:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5281:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5281:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5281:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5251:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5259:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5248:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5248:30:2"
},
"nodeType": "YulIf",
"src": "5245:117:2"
},
{
"nodeType": "YulAssignment",
"src": "5376:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5421:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5432:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5417:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5417:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5441:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5386:30:2"
},
"nodeType": "YulFunctionCall",
"src": "5386:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5376:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5469:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5484:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5498:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5488:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5514:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5549:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5560:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5545:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5545:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5569:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5524:20:2"
},
"nodeType": "YulFunctionCall",
"src": "5524:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5514:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4995:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5006:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5018:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5026:6:2",
"type": ""
}
],
"src": "4940:654:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5676:433:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5722:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5724:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5724:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5724:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5697:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5706:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5693:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5693:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5718:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5689:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5689:32:2"
},
"nodeType": "YulIf",
"src": "5686:119:2"
},
{
"nodeType": "YulBlock",
"src": "5815:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5830:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5861:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5872:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5857:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5857:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5844:12:2"
},
"nodeType": "YulFunctionCall",
"src": "5844:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5834:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5922:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5924:77:2"
},
"nodeType": "YulFunctionCall",
"src": "5924:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "5924:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5894:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5902:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5891:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5891:30:2"
},
"nodeType": "YulIf",
"src": "5888:117:2"
},
{
"nodeType": "YulAssignment",
"src": "6019:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6064:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6075:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6060:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6060:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6084:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6029:30:2"
},
"nodeType": "YulFunctionCall",
"src": "6029:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6019:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5646:9:2",
"type": ""
},
{
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment