Skip to content

Instantly share code, notes, and snippets.

@SEEDALTAR
Created September 28, 2025 16:19
Show Gist options
  • Select an option

  • Save SEEDALTAR/e8344dd88274b9e7df6496cfe370e023 to your computer and use it in GitHub Desktop.

Select an option

Save SEEDALTAR/e8344dd88274b9e7df6496cfe370e023 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.30+commit.73712a01.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));
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRCh��*��h��*���� �iSL˥Q���n3GQ#Χ��artifacts/Owner_metadata.json{ ����߾�h �+�:�-�
x��U�n�6���+> �x��Z�-p��q���4F�%y9�X��,����,��K�6(�$���܅<����0����!BU��!3���q� �:�%���&��I���aĞ�#��`��E l-�u���nH�Ѝ�;�����i�8N��8$+��֭���NR[�x�X�Y�F����e�9���n�.��emM#�6����ņR��B7mxy�sv��y���FIf�5Mo݉-��y��4X�dgPB�)t.[�hF�}�r'�=�����g������ݹ��}H.�`i�� }�K�b ���S��c��R�vП����o���;>�@x���yl�ޟH��Z���Z���_���ˮ!��lG�u�%ڥ�����͋���;��,G��;��@1�k�Fe$���-qջ�3��ս��d��Х5 �+���� �~�!����r��1坧;��Cd:�=H��0O������ď�ٛ������thW+ܯ�'��Fk�r1�ݿ Ў���.��b=�?w�:���7���1� ,��-$y� � Ǫ�2A��]��(��wP/[��R�[W6+����r���{w����O���`U�#�t5�׍��i�=�(\�,��5�}�<?dQ�AB��� ���@*PA"$� a�L��p/�<�"�y
��Qy&�������������!|�}e`5�N�0���4�~,�JW��}�E%a+d�,aQ0�F�U�i�A��p5�
�l��;=-N�OL����:^�N����?��W�Uǧ����ps�����˳n~�v�.��%�i��:��(�� Y�� x,)2I��I)%��cE�P�����q���OhJ��Sv���o�
Ӏ1'��4LC�ITQ/aI�0d��O�@�B�4�ʋҔшIAʞ��|�>:b����O/ϓ_}��;^�����V�ma�Y-Y}v�t�C����oy�
{
"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 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.
{
"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": {
"@_49": {
"entryPoint": null,
"id": 49,
"parameterSlots": 0,
"returnSlots": 0
},
"@_castToPure_120": {
"entryPoint": 504,
"id": 120,
"parameterSlots": 1,
"returnSlots": 1
},
"@_sendLogPayloadImplementation_103": {
"entryPoint": 473,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_sendLogPayload_132": {
"entryPoint": 437,
"id": 132,
"parameterSlots": 1,
"returnSlots": 0
},
"@log_867": {
"entryPoint": 275,
"id": 867,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 692,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 588,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed": {
"entryPoint": 707,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 532,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 542,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 675,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 644,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 558,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"panic_error_0x51": {
"entryPoint": 753,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 572,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:1893:2",
"nodeType": "YulBlock",
"src": "0:1893:2",
"statements": [
{
"body": {
"nativeSrc": "66:40:2",
"nodeType": "YulBlock",
"src": "66:40:2",
"statements": [
{
"nativeSrc": "77:22:2",
"nodeType": "YulAssignment",
"src": "77:22:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:2",
"nodeType": "YulIdentifier",
"src": "93:5:2"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:2",
"nodeType": "YulIdentifier",
"src": "87:5:2"
},
"nativeSrc": "87:12:2",
"nodeType": "YulFunctionCall",
"src": "87:12:2"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:2",
"nodeType": "YulIdentifier",
"src": "77:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:2",
"nodeType": "YulTypedName",
"src": "49:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:2",
"nodeType": "YulTypedName",
"src": "59:6:2",
"type": ""
}
],
"src": "7:99:2"
},
{
"body": {
"nativeSrc": "208:73:2",
"nodeType": "YulBlock",
"src": "208:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "225:3:2",
"nodeType": "YulIdentifier",
"src": "225:3:2"
},
{
"name": "length",
"nativeSrc": "230:6:2",
"nodeType": "YulIdentifier",
"src": "230:6:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "218:6:2",
"nodeType": "YulIdentifier",
"src": "218:6:2"
},
"nativeSrc": "218:19:2",
"nodeType": "YulFunctionCall",
"src": "218:19:2"
},
"nativeSrc": "218:19:2",
"nodeType": "YulExpressionStatement",
"src": "218:19:2"
},
{
"nativeSrc": "246:29:2",
"nodeType": "YulAssignment",
"src": "246:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "265:3:2",
"nodeType": "YulIdentifier",
"src": "265:3:2"
},
{
"kind": "number",
"nativeSrc": "270:4:2",
"nodeType": "YulLiteral",
"src": "270:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "261:3:2",
"nodeType": "YulIdentifier",
"src": "261:3:2"
},
"nativeSrc": "261:14:2",
"nodeType": "YulFunctionCall",
"src": "261:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "246:11:2",
"nodeType": "YulIdentifier",
"src": "246:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "112:169:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "180:3:2",
"nodeType": "YulTypedName",
"src": "180:3:2",
"type": ""
},
{
"name": "length",
"nativeSrc": "185:6:2",
"nodeType": "YulTypedName",
"src": "185:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "196:11:2",
"nodeType": "YulTypedName",
"src": "196:11:2",
"type": ""
}
],
"src": "112:169:2"
},
{
"body": {
"nativeSrc": "349:77:2",
"nodeType": "YulBlock",
"src": "349:77:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "366:3:2",
"nodeType": "YulIdentifier",
"src": "366:3:2"
},
{
"name": "src",
"nativeSrc": "371:3:2",
"nodeType": "YulIdentifier",
"src": "371:3:2"
},
{
"name": "length",
"nativeSrc": "376:6:2",
"nodeType": "YulIdentifier",
"src": "376:6:2"
}
],
"functionName": {
"name": "mcopy",
"nativeSrc": "360:5:2",
"nodeType": "YulIdentifier",
"src": "360:5:2"
},
"nativeSrc": "360:23:2",
"nodeType": "YulFunctionCall",
"src": "360:23:2"
},
"nativeSrc": "360:23:2",
"nodeType": "YulExpressionStatement",
"src": "360:23:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "403:3:2",
"nodeType": "YulIdentifier",
"src": "403:3:2"
},
{
"name": "length",
"nativeSrc": "408:6:2",
"nodeType": "YulIdentifier",
"src": "408:6:2"
}
],
"functionName": {
"name": "add",
"nativeSrc": "399:3:2",
"nodeType": "YulIdentifier",
"src": "399:3:2"
},
"nativeSrc": "399:16:2",
"nodeType": "YulFunctionCall",
"src": "399:16:2"
},
{
"kind": "number",
"nativeSrc": "417:1:2",
"nodeType": "YulLiteral",
"src": "417:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "392:6:2",
"nodeType": "YulIdentifier",
"src": "392:6:2"
},
"nativeSrc": "392:27:2",
"nodeType": "YulFunctionCall",
"src": "392:27:2"
},
"nativeSrc": "392:27:2",
"nodeType": "YulExpressionStatement",
"src": "392:27:2"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "287:139:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "331:3:2",
"nodeType": "YulTypedName",
"src": "331:3:2",
"type": ""
},
{
"name": "dst",
"nativeSrc": "336:3:2",
"nodeType": "YulTypedName",
"src": "336:3:2",
"type": ""
},
{
"name": "length",
"nativeSrc": "341:6:2",
"nodeType": "YulTypedName",
"src": "341:6:2",
"type": ""
}
],
"src": "287:139:2"
},
{
"body": {
"nativeSrc": "480:54:2",
"nodeType": "YulBlock",
"src": "480:54:2",
"statements": [
{
"nativeSrc": "490:38:2",
"nodeType": "YulAssignment",
"src": "490:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:2",
"nodeType": "YulIdentifier",
"src": "508:5:2"
},
{
"kind": "number",
"nativeSrc": "515:2:2",
"nodeType": "YulLiteral",
"src": "515:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "504:3:2",
"nodeType": "YulIdentifier",
"src": "504:3:2"
},
"nativeSrc": "504:14:2",
"nodeType": "YulFunctionCall",
"src": "504:14:2"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "524:2:2",
"nodeType": "YulLiteral",
"src": "524:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "520:3:2",
"nodeType": "YulIdentifier",
"src": "520:3:2"
},
"nativeSrc": "520:7:2",
"nodeType": "YulFunctionCall",
"src": "520:7:2"
}
],
"functionName": {
"name": "and",
"nativeSrc": "500:3:2",
"nodeType": "YulIdentifier",
"src": "500:3:2"
},
"nativeSrc": "500:28:2",
"nodeType": "YulFunctionCall",
"src": "500:28:2"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "490:6:2",
"nodeType": "YulIdentifier",
"src": "490:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "432:102:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "463:5:2",
"nodeType": "YulTypedName",
"src": "463:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "473:6:2",
"nodeType": "YulTypedName",
"src": "473:6:2",
"type": ""
}
],
"src": "432:102:2"
},
{
"body": {
"nativeSrc": "632:285:2",
"nodeType": "YulBlock",
"src": "632:285:2",
"statements": [
{
"nativeSrc": "642:53:2",
"nodeType": "YulVariableDeclaration",
"src": "642:53:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "689:5:2",
"nodeType": "YulIdentifier",
"src": "689:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "656:32:2",
"nodeType": "YulIdentifier",
"src": "656:32:2"
},
"nativeSrc": "656:39:2",
"nodeType": "YulFunctionCall",
"src": "656:39:2"
},
"variables": [
{
"name": "length",
"nativeSrc": "646:6:2",
"nodeType": "YulTypedName",
"src": "646:6:2",
"type": ""
}
]
},
{
"nativeSrc": "704:78:2",
"nodeType": "YulAssignment",
"src": "704:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "770:3:2",
"nodeType": "YulIdentifier",
"src": "770:3:2"
},
{
"name": "length",
"nativeSrc": "775:6:2",
"nodeType": "YulIdentifier",
"src": "775:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "711:58:2",
"nodeType": "YulIdentifier",
"src": "711:58:2"
},
"nativeSrc": "711:71:2",
"nodeType": "YulFunctionCall",
"src": "711:71:2"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "704:3:2",
"nodeType": "YulIdentifier",
"src": "704:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "830:5:2",
"nodeType": "YulIdentifier",
"src": "830:5:2"
},
{
"kind": "number",
"nativeSrc": "837:4:2",
"nodeType": "YulLiteral",
"src": "837:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "826:3:2",
"nodeType": "YulIdentifier",
"src": "826:3:2"
},
"nativeSrc": "826:16:2",
"nodeType": "YulFunctionCall",
"src": "826:16:2"
},
{
"name": "pos",
"nativeSrc": "844:3:2",
"nodeType": "YulIdentifier",
"src": "844:3:2"
},
{
"name": "length",
"nativeSrc": "849:6:2",
"nodeType": "YulIdentifier",
"src": "849:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "791:34:2",
"nodeType": "YulIdentifier",
"src": "791:34:2"
},
"nativeSrc": "791:65:2",
"nodeType": "YulFunctionCall",
"src": "791:65:2"
},
"nativeSrc": "791:65:2",
"nodeType": "YulExpressionStatement",
"src": "791:65:2"
},
{
"nativeSrc": "865:46:2",
"nodeType": "YulAssignment",
"src": "865:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "876:3:2",
"nodeType": "YulIdentifier",
"src": "876:3:2"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "903:6:2",
"nodeType": "YulIdentifier",
"src": "903:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "881:21:2",
"nodeType": "YulIdentifier",
"src": "881:21:2"
},
"nativeSrc": "881:29:2",
"nodeType": "YulFunctionCall",
"src": "881:29:2"
}
],
"functionName": {
"name": "add",
"nativeSrc": "872:3:2",
"nodeType": "YulIdentifier",
"src": "872:3:2"
},
"nativeSrc": "872:39:2",
"nodeType": "YulFunctionCall",
"src": "872:39:2"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "865:3:2",
"nodeType": "YulIdentifier",
"src": "865:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "540:377:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "613:5:2",
"nodeType": "YulTypedName",
"src": "613:5:2",
"type": ""
},
{
"name": "pos",
"nativeSrc": "620:3:2",
"nodeType": "YulTypedName",
"src": "620:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "628:3:2",
"nodeType": "YulTypedName",
"src": "628:3:2",
"type": ""
}
],
"src": "540:377:2"
},
{
"body": {
"nativeSrc": "968:81:2",
"nodeType": "YulBlock",
"src": "968:81:2",
"statements": [
{
"nativeSrc": "978:65:2",
"nodeType": "YulAssignment",
"src": "978:65:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "993:5:2",
"nodeType": "YulIdentifier",
"src": "993:5:2"
},
{
"kind": "number",
"nativeSrc": "1000:42:2",
"nodeType": "YulLiteral",
"src": "1000:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "989:3:2",
"nodeType": "YulIdentifier",
"src": "989:3:2"
},
"nativeSrc": "989:54:2",
"nodeType": "YulFunctionCall",
"src": "989:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "978:7:2",
"nodeType": "YulIdentifier",
"src": "978:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "923:126:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "950:5:2",
"nodeType": "YulTypedName",
"src": "950:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "960:7:2",
"nodeType": "YulTypedName",
"src": "960:7:2",
"type": ""
}
],
"src": "923:126:2"
},
{
"body": {
"nativeSrc": "1100:51:2",
"nodeType": "YulBlock",
"src": "1100:51:2",
"statements": [
{
"nativeSrc": "1110:35:2",
"nodeType": "YulAssignment",
"src": "1110:35:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1139:5:2",
"nodeType": "YulIdentifier",
"src": "1139:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1121:17:2",
"nodeType": "YulIdentifier",
"src": "1121:17:2"
},
"nativeSrc": "1121:24:2",
"nodeType": "YulFunctionCall",
"src": "1121:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1110:7:2",
"nodeType": "YulIdentifier",
"src": "1110:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1055:96:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1082:5:2",
"nodeType": "YulTypedName",
"src": "1082:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1092:7:2",
"nodeType": "YulTypedName",
"src": "1092:7:2",
"type": ""
}
],
"src": "1055:96:2"
},
{
"body": {
"nativeSrc": "1222:53:2",
"nodeType": "YulBlock",
"src": "1222:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1239:3:2",
"nodeType": "YulIdentifier",
"src": "1239:3:2"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1262:5:2",
"nodeType": "YulIdentifier",
"src": "1262:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1244:17:2",
"nodeType": "YulIdentifier",
"src": "1244:17:2"
},
"nativeSrc": "1244:24:2",
"nodeType": "YulFunctionCall",
"src": "1244:24:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1232:6:2",
"nodeType": "YulIdentifier",
"src": "1232:6:2"
},
"nativeSrc": "1232:37:2",
"nodeType": "YulFunctionCall",
"src": "1232:37:2"
},
"nativeSrc": "1232:37:2",
"nodeType": "YulExpressionStatement",
"src": "1232:37:2"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1157:118:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1210:5:2",
"nodeType": "YulTypedName",
"src": "1210:5:2",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1217:3:2",
"nodeType": "YulTypedName",
"src": "1217:3:2",
"type": ""
}
],
"src": "1157:118:2"
},
{
"body": {
"nativeSrc": "1427:277:2",
"nodeType": "YulBlock",
"src": "1427:277:2",
"statements": [
{
"nativeSrc": "1437:26:2",
"nodeType": "YulAssignment",
"src": "1437:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1449:9:2",
"nodeType": "YulIdentifier",
"src": "1449:9:2"
},
{
"kind": "number",
"nativeSrc": "1460:2:2",
"nodeType": "YulLiteral",
"src": "1460:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1445:3:2",
"nodeType": "YulIdentifier",
"src": "1445:3:2"
},
"nativeSrc": "1445:18:2",
"nodeType": "YulFunctionCall",
"src": "1445:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1437:4:2",
"nodeType": "YulIdentifier",
"src": "1437:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1484:9:2",
"nodeType": "YulIdentifier",
"src": "1484:9:2"
},
{
"kind": "number",
"nativeSrc": "1495:1:2",
"nodeType": "YulLiteral",
"src": "1495:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1480:3:2",
"nodeType": "YulIdentifier",
"src": "1480:3:2"
},
"nativeSrc": "1480:17:2",
"nodeType": "YulFunctionCall",
"src": "1480:17:2"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "1503:4:2",
"nodeType": "YulIdentifier",
"src": "1503:4:2"
},
{
"name": "headStart",
"nativeSrc": "1509:9:2",
"nodeType": "YulIdentifier",
"src": "1509:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1499:3:2",
"nodeType": "YulIdentifier",
"src": "1499:3:2"
},
"nativeSrc": "1499:20:2",
"nodeType": "YulFunctionCall",
"src": "1499:20:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1473:6:2",
"nodeType": "YulIdentifier",
"src": "1473:6:2"
},
"nativeSrc": "1473:47:2",
"nodeType": "YulFunctionCall",
"src": "1473:47:2"
},
"nativeSrc": "1473:47:2",
"nodeType": "YulExpressionStatement",
"src": "1473:47:2"
},
{
"nativeSrc": "1529:86:2",
"nodeType": "YulAssignment",
"src": "1529:86:2",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1601:6:2",
"nodeType": "YulIdentifier",
"src": "1601:6:2"
},
{
"name": "tail",
"nativeSrc": "1610:4:2",
"nodeType": "YulIdentifier",
"src": "1610:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1537:63:2",
"nodeType": "YulIdentifier",
"src": "1537:63:2"
},
"nativeSrc": "1537:78:2",
"nodeType": "YulFunctionCall",
"src": "1537:78:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1529:4:2",
"nodeType": "YulIdentifier",
"src": "1529:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "1669:6:2",
"nodeType": "YulIdentifier",
"src": "1669:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1682:9:2",
"nodeType": "YulIdentifier",
"src": "1682:9:2"
},
{
"kind": "number",
"nativeSrc": "1693:2:2",
"nodeType": "YulLiteral",
"src": "1693:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1678:3:2",
"nodeType": "YulIdentifier",
"src": "1678:3:2"
},
"nativeSrc": "1678:18:2",
"nodeType": "YulFunctionCall",
"src": "1678:18:2"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1625:43:2",
"nodeType": "YulIdentifier",
"src": "1625:43:2"
},
"nativeSrc": "1625:72:2",
"nodeType": "YulFunctionCall",
"src": "1625:72:2"
},
"nativeSrc": "1625:72:2",
"nodeType": "YulExpressionStatement",
"src": "1625:72:2"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed",
"nativeSrc": "1281:423:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1391:9:2",
"nodeType": "YulTypedName",
"src": "1391:9:2",
"type": ""
},
{
"name": "value1",
"nativeSrc": "1403:6:2",
"nodeType": "YulTypedName",
"src": "1403:6:2",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1411:6:2",
"nodeType": "YulTypedName",
"src": "1411:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1422:4:2",
"nodeType": "YulTypedName",
"src": "1422:4:2",
"type": ""
}
],
"src": "1281:423:2"
},
{
"body": {
"nativeSrc": "1738:152:2",
"nodeType": "YulBlock",
"src": "1738:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1755:1:2",
"nodeType": "YulLiteral",
"src": "1755:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1758:77:2",
"nodeType": "YulLiteral",
"src": "1758:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1748:6:2",
"nodeType": "YulIdentifier",
"src": "1748:6:2"
},
"nativeSrc": "1748:88:2",
"nodeType": "YulFunctionCall",
"src": "1748:88:2"
},
"nativeSrc": "1748:88:2",
"nodeType": "YulExpressionStatement",
"src": "1748:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1852:1:2",
"nodeType": "YulLiteral",
"src": "1852:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1855:4:2",
"nodeType": "YulLiteral",
"src": "1855:4:2",
"type": "",
"value": "0x51"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1845:6:2",
"nodeType": "YulIdentifier",
"src": "1845:6:2"
},
"nativeSrc": "1845:15:2",
"nodeType": "YulFunctionCall",
"src": "1845:15:2"
},
"nativeSrc": "1845:15:2",
"nodeType": "YulExpressionStatement",
"src": "1845:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1876:1:2",
"nodeType": "YulLiteral",
"src": "1876:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1879:4:2",
"nodeType": "YulLiteral",
"src": "1879:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1869:6:2",
"nodeType": "YulIdentifier",
"src": "1869:6:2"
},
"nativeSrc": "1869:15:2",
"nodeType": "YulFunctionCall",
"src": "1869:15:2"
},
"nativeSrc": "1869:15:2",
"nodeType": "YulExpressionStatement",
"src": "1869:15:2"
}
]
},
"name": "panic_error_0x51",
"nativeSrc": "1710:180:2",
"nodeType": "YulFunctionDefinition",
"src": "1710:180:2"
}
]
},
"contents": "{\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\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801561000f575f5ffd5b506100556040518060400160405280601b81526020017f4f776e657220636f6e7472616374206465706c6f7965642062793a00000000008152503361011360201b60201c565b335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a361031e565b6101b182826040516024016101299291906102c3565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506101b560201b60201c565b5050565b6101d6816101d16101d960201b610251176101f860201b60201c565b60201c565b50565b5f6a636f6e736f6c652e6c6f6790505f5f835160208501845afa505050565b61020a60201b61027017819050919050565b6102126102f1565b565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61025682610214565b610260818561021e565b935061027081856020860161022e565b6102798161023c565b840191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102ad82610284565b9050919050565b6102bd816102a3565b82525050565b5f6040820190508181035f8301526102db818561024c565b90506102ea60208301846102b4565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52605160045260245ffd5b6104948061032b5f395ff3fe608060405234801561000f575f5ffd5b5060043610610034575f3560e01c8063893d20e814610038578063a6f9dae114610056575b5f5ffd5b610040610072565b60405161004d91906102b9565b60405180910390f35b610070600480360381019061006b9190610300565b610099565b005b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011e90610385565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018c90610413565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6a636f6e736f6c652e6c6f6790505f5f835160208501845afa505050565b610278610431565b565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102a38261027a565b9050919050565b6102b381610299565b82525050565b5f6020820190506102cc5f8301846102aa565b92915050565b5f5ffd5b6102df81610299565b81146102e9575f5ffd5b50565b5f813590506102fa816102d6565b92915050565b5f60208284031215610315576103146102d2565b5b5f610322848285016102ec565b91505092915050565b5f82825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e6572000000000000000000000000005f82015250565b5f61036f60138361032b565b915061037a8261033b565b602082019050919050565b5f6020820190508181035f83015261039c81610363565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f5f8201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b5f6103fd60288361032b565b9150610408826103a3565b604082019050919050565b5f6020820190508181035f83015261042a816103f1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52605160045260245ffdfea2646970667358221220523d1a04cb484ceecf188b2a9bd9c1473eddd3af5a091583b8a69e41b6d4c58364736f6c634300081e0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x55 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4F776E657220636F6E7472616374206465706C6F7965642062793A0000000000 DUP2 MSTORE POP CALLER PUSH2 0x113 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST CALLER PUSH0 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x31E JUMP JUMPDEST PUSH2 0x1B1 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x129 SWAP3 SWAP2 SWAP1 PUSH2 0x2C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x1B5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1D6 DUP2 PUSH2 0x1D1 PUSH2 0x1D9 PUSH1 0x20 SHL PUSH2 0x251 OR PUSH2 0x1F8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x20 SHR JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x20A PUSH1 0x20 SHL PUSH2 0x270 OR DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x212 PUSH2 0x2F1 JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x256 DUP3 PUSH2 0x214 JUMP JUMPDEST PUSH2 0x260 DUP2 DUP6 PUSH2 0x21E JUMP JUMPDEST SWAP4 POP PUSH2 0x270 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x22E JUMP JUMPDEST PUSH2 0x279 DUP2 PUSH2 0x23C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2AD DUP3 PUSH2 0x284 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BD DUP2 PUSH2 0x2A3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2DB DUP2 DUP6 PUSH2 0x24C JUMP JUMPDEST SWAP1 POP PUSH2 0x2EA PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2B4 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x494 DUP1 PUSH2 0x32B PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x300 JUMP JUMPDEST PUSH2 0x99 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x127 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E SWAP1 PUSH2 0x385 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x195 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18C SWAP1 PUSH2 0x413 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH0 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x278 PUSH2 0x431 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2A3 DUP3 PUSH2 0x27A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B3 DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CC PUSH0 DUP4 ADD DUP5 PUSH2 0x2AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2DF DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FA DUP2 PUSH2 0x2D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x315 JUMPI PUSH2 0x314 PUSH2 0x2D2 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x322 DUP5 DUP3 DUP6 ADD PUSH2 0x2EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x36F PUSH1 0x13 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x37A DUP3 PUSH2 0x33B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x39C DUP2 PUSH2 0x363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3FD PUSH1 0x28 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x408 DUP3 PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x42A DUP2 PUSH2 0x3F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE RETURNDATASIZE BYTE DIV 0xCB BASEFEE 0x4C RETURNCONTRACT 0xCF XOR DUP12 0x2A SWAP12 0xD9 0xC1 SELFBALANCE RETURNDATACOPY 0xDD 0xD3 0xAF GAS MULMOD ISZERO DUP4 0xB8 0xA6 SWAP15 COINBASE 0xB6 0xD4 0xC5 DUP4 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ",
"sourceMap": "152:1498:0:-:0;;;942:234;;;;;;;;;;966:54;;;;;;;;;;;;;;;;;;1009:10;966:11;;;:54;;:::i;:::-;1038:10;1030:5;;:18;;;;;;;;;;;;;;;;;;1163:5;;;;;;;;;;;1142:27;;1159:1;1142:27;;;;;;;;;;;;152:1498;;7470:145:1;7537:71;7600:2;7604;7553:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7537:15;;;:71;;:::i;:::-;7470:145;;:::o;851:129::-;922:51;965:7;922:42;934:29;;;;;922:11;;;:42;;:::i;:::-;:51;;:::i;:::-;851:129;:::o;180:463::-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;649:196::-;748:33;;;;;825:4;816:13;;649:196;;;:::o;152:1498:0:-;;;:::i;:::-;:::o;7:99:2:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:126::-;960:7;1000:42;993:5;989:54;978:65;;923:126;;;:::o;1055:96::-;1092:7;1121:24;1139:5;1121:24;:::i;:::-;1110:35;;1055:96;;;:::o;1157:118::-;1244:24;1262:5;1244:24;:::i;:::-;1239:3;1232:37;1157:118;;:::o;1281:423::-;1422:4;1460:2;1449:9;1445:18;1437:26;;1509:9;1503:4;1499:20;1495:1;1484:9;1480:17;1473:47;1537:78;1610:4;1601:6;1537:78;:::i;:::-;1529:86;;1625:72;1693:2;1682:9;1678:18;1669:6;1625:72;:::i;:::-;1281:423;;;;;:::o;1710:180::-;1758:77;1755:1;1748:88;1855:4;1852:1;1845:15;1879:4;1876:1;1869:15;152:1498:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_sendLogPayloadImplementation_103": {
"entryPoint": 593,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@changeOwner_77": {
"entryPoint": 153,
"id": 77,
"parameterSlots": 1,
"returnSlots": 0
},
"@getOwner_86": {
"entryPoint": 114,
"id": 86,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 748,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 768,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 682,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 867,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 697,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 901,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1043,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 811,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 634,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x51": {
"entryPoint": 1073,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 722,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d": {
"entryPoint": 827,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42": {
"entryPoint": 931,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 726,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:3888:2",
"nodeType": "YulBlock",
"src": "0:3888:2",
"statements": [
{
"body": {
"nativeSrc": "52:81:2",
"nodeType": "YulBlock",
"src": "52:81:2",
"statements": [
{
"nativeSrc": "62:65:2",
"nodeType": "YulAssignment",
"src": "62:65:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "77:5:2",
"nodeType": "YulIdentifier",
"src": "77:5:2"
},
{
"kind": "number",
"nativeSrc": "84:42:2",
"nodeType": "YulLiteral",
"src": "84:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "73:3:2",
"nodeType": "YulIdentifier",
"src": "73:3:2"
},
"nativeSrc": "73:54:2",
"nodeType": "YulFunctionCall",
"src": "73:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:2",
"nodeType": "YulIdentifier",
"src": "62:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "7:126:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:2",
"nodeType": "YulTypedName",
"src": "34:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:2",
"nodeType": "YulTypedName",
"src": "44:7:2",
"type": ""
}
],
"src": "7:126:2"
},
{
"body": {
"nativeSrc": "184:51:2",
"nodeType": "YulBlock",
"src": "184:51:2",
"statements": [
{
"nativeSrc": "194:35:2",
"nodeType": "YulAssignment",
"src": "194:35:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "223:5:2",
"nodeType": "YulIdentifier",
"src": "223:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "205:17:2",
"nodeType": "YulIdentifier",
"src": "205:17:2"
},
"nativeSrc": "205:24:2",
"nodeType": "YulFunctionCall",
"src": "205:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "194:7:2",
"nodeType": "YulIdentifier",
"src": "194:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "139:96:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "166:5:2",
"nodeType": "YulTypedName",
"src": "166:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "176:7:2",
"nodeType": "YulTypedName",
"src": "176:7:2",
"type": ""
}
],
"src": "139:96:2"
},
{
"body": {
"nativeSrc": "306:53:2",
"nodeType": "YulBlock",
"src": "306:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "323:3:2",
"nodeType": "YulIdentifier",
"src": "323:3:2"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "346:5:2",
"nodeType": "YulIdentifier",
"src": "346:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "328:17:2",
"nodeType": "YulIdentifier",
"src": "328:17:2"
},
"nativeSrc": "328:24:2",
"nodeType": "YulFunctionCall",
"src": "328:24:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "316:6:2",
"nodeType": "YulIdentifier",
"src": "316:6:2"
},
"nativeSrc": "316:37:2",
"nodeType": "YulFunctionCall",
"src": "316:37:2"
},
"nativeSrc": "316:37:2",
"nodeType": "YulExpressionStatement",
"src": "316:37:2"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "241:118:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "294:5:2",
"nodeType": "YulTypedName",
"src": "294:5:2",
"type": ""
},
{
"name": "pos",
"nativeSrc": "301:3:2",
"nodeType": "YulTypedName",
"src": "301:3:2",
"type": ""
}
],
"src": "241:118:2"
},
{
"body": {
"nativeSrc": "463:124:2",
"nodeType": "YulBlock",
"src": "463:124:2",
"statements": [
{
"nativeSrc": "473:26:2",
"nodeType": "YulAssignment",
"src": "473:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "485:9:2",
"nodeType": "YulIdentifier",
"src": "485:9:2"
},
{
"kind": "number",
"nativeSrc": "496:2:2",
"nodeType": "YulLiteral",
"src": "496:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "481:3:2",
"nodeType": "YulIdentifier",
"src": "481:3:2"
},
"nativeSrc": "481:18:2",
"nodeType": "YulFunctionCall",
"src": "481:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "473:4:2",
"nodeType": "YulIdentifier",
"src": "473:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "553:6:2",
"nodeType": "YulIdentifier",
"src": "553:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "566:9:2",
"nodeType": "YulIdentifier",
"src": "566:9:2"
},
{
"kind": "number",
"nativeSrc": "577:1:2",
"nodeType": "YulLiteral",
"src": "577:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "562:3:2",
"nodeType": "YulIdentifier",
"src": "562:3:2"
},
"nativeSrc": "562:17:2",
"nodeType": "YulFunctionCall",
"src": "562:17:2"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "509:43:2",
"nodeType": "YulIdentifier",
"src": "509:43:2"
},
"nativeSrc": "509:71:2",
"nodeType": "YulFunctionCall",
"src": "509:71:2"
},
"nativeSrc": "509:71:2",
"nodeType": "YulExpressionStatement",
"src": "509:71:2"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "365:222:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "435:9:2",
"nodeType": "YulTypedName",
"src": "435:9:2",
"type": ""
},
{
"name": "value0",
"nativeSrc": "447:6:2",
"nodeType": "YulTypedName",
"src": "447:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "458:4:2",
"nodeType": "YulTypedName",
"src": "458:4:2",
"type": ""
}
],
"src": "365:222:2"
},
{
"body": {
"nativeSrc": "633:35:2",
"nodeType": "YulBlock",
"src": "633:35:2",
"statements": [
{
"nativeSrc": "643:19:2",
"nodeType": "YulAssignment",
"src": "643:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "659:2:2",
"nodeType": "YulLiteral",
"src": "659:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "653:5:2",
"nodeType": "YulIdentifier",
"src": "653:5:2"
},
"nativeSrc": "653:9:2",
"nodeType": "YulFunctionCall",
"src": "653:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "643:6:2",
"nodeType": "YulIdentifier",
"src": "643:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "593:75:2",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "626:6:2",
"nodeType": "YulTypedName",
"src": "626:6:2",
"type": ""
}
],
"src": "593:75:2"
},
{
"body": {
"nativeSrc": "763:28:2",
"nodeType": "YulBlock",
"src": "763:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "780:1:2",
"nodeType": "YulLiteral",
"src": "780:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "783:1:2",
"nodeType": "YulLiteral",
"src": "783:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "773:6:2",
"nodeType": "YulIdentifier",
"src": "773:6:2"
},
"nativeSrc": "773:12:2",
"nodeType": "YulFunctionCall",
"src": "773:12:2"
},
"nativeSrc": "773:12:2",
"nodeType": "YulExpressionStatement",
"src": "773:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "674:117:2",
"nodeType": "YulFunctionDefinition",
"src": "674:117:2"
},
{
"body": {
"nativeSrc": "886:28:2",
"nodeType": "YulBlock",
"src": "886:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "903:1:2",
"nodeType": "YulLiteral",
"src": "903:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "906:1:2",
"nodeType": "YulLiteral",
"src": "906:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "896:6:2",
"nodeType": "YulIdentifier",
"src": "896:6:2"
},
"nativeSrc": "896:12:2",
"nodeType": "YulFunctionCall",
"src": "896:12:2"
},
"nativeSrc": "896:12:2",
"nodeType": "YulExpressionStatement",
"src": "896:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "797:117:2",
"nodeType": "YulFunctionDefinition",
"src": "797:117:2"
},
{
"body": {
"nativeSrc": "963:79:2",
"nodeType": "YulBlock",
"src": "963:79:2",
"statements": [
{
"body": {
"nativeSrc": "1020:16:2",
"nodeType": "YulBlock",
"src": "1020:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1029:1:2",
"nodeType": "YulLiteral",
"src": "1029:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1032:1:2",
"nodeType": "YulLiteral",
"src": "1032:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1022:6:2",
"nodeType": "YulIdentifier",
"src": "1022:6:2"
},
"nativeSrc": "1022:12:2",
"nodeType": "YulFunctionCall",
"src": "1022:12:2"
},
"nativeSrc": "1022:12:2",
"nodeType": "YulExpressionStatement",
"src": "1022:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "986:5:2",
"nodeType": "YulIdentifier",
"src": "986:5:2"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1011:5:2",
"nodeType": "YulIdentifier",
"src": "1011:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "993:17:2",
"nodeType": "YulIdentifier",
"src": "993:17:2"
},
"nativeSrc": "993:24:2",
"nodeType": "YulFunctionCall",
"src": "993:24:2"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "983:2:2",
"nodeType": "YulIdentifier",
"src": "983:2:2"
},
"nativeSrc": "983:35:2",
"nodeType": "YulFunctionCall",
"src": "983:35:2"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "976:6:2",
"nodeType": "YulIdentifier",
"src": "976:6:2"
},
"nativeSrc": "976:43:2",
"nodeType": "YulFunctionCall",
"src": "976:43:2"
},
"nativeSrc": "973:63:2",
"nodeType": "YulIf",
"src": "973:63:2"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "920:122:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "956:5:2",
"nodeType": "YulTypedName",
"src": "956:5:2",
"type": ""
}
],
"src": "920:122:2"
},
{
"body": {
"nativeSrc": "1100:87:2",
"nodeType": "YulBlock",
"src": "1100:87:2",
"statements": [
{
"nativeSrc": "1110:29:2",
"nodeType": "YulAssignment",
"src": "1110:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "1132:6:2",
"nodeType": "YulIdentifier",
"src": "1132:6:2"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "1119:12:2",
"nodeType": "YulIdentifier",
"src": "1119:12:2"
},
"nativeSrc": "1119:20:2",
"nodeType": "YulFunctionCall",
"src": "1119:20:2"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1110:5:2",
"nodeType": "YulIdentifier",
"src": "1110:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1175:5:2",
"nodeType": "YulIdentifier",
"src": "1175:5:2"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "1148:26:2",
"nodeType": "YulIdentifier",
"src": "1148:26:2"
},
"nativeSrc": "1148:33:2",
"nodeType": "YulFunctionCall",
"src": "1148:33:2"
},
"nativeSrc": "1148:33:2",
"nodeType": "YulExpressionStatement",
"src": "1148:33:2"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "1048:139:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1078:6:2",
"nodeType": "YulTypedName",
"src": "1078:6:2",
"type": ""
},
{
"name": "end",
"nativeSrc": "1086:3:2",
"nodeType": "YulTypedName",
"src": "1086:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1094:5:2",
"nodeType": "YulTypedName",
"src": "1094:5:2",
"type": ""
}
],
"src": "1048:139:2"
},
{
"body": {
"nativeSrc": "1259:263:2",
"nodeType": "YulBlock",
"src": "1259:263:2",
"statements": [
{
"body": {
"nativeSrc": "1305:83:2",
"nodeType": "YulBlock",
"src": "1305:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1307:77:2",
"nodeType": "YulIdentifier",
"src": "1307:77:2"
},
"nativeSrc": "1307:79:2",
"nodeType": "YulFunctionCall",
"src": "1307:79:2"
},
"nativeSrc": "1307:79:2",
"nodeType": "YulExpressionStatement",
"src": "1307:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1280:7:2",
"nodeType": "YulIdentifier",
"src": "1280:7:2"
},
{
"name": "headStart",
"nativeSrc": "1289:9:2",
"nodeType": "YulIdentifier",
"src": "1289:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1276:3:2",
"nodeType": "YulIdentifier",
"src": "1276:3:2"
},
"nativeSrc": "1276:23:2",
"nodeType": "YulFunctionCall",
"src": "1276:23:2"
},
{
"kind": "number",
"nativeSrc": "1301:2:2",
"nodeType": "YulLiteral",
"src": "1301:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1272:3:2",
"nodeType": "YulIdentifier",
"src": "1272:3:2"
},
"nativeSrc": "1272:32:2",
"nodeType": "YulFunctionCall",
"src": "1272:32:2"
},
"nativeSrc": "1269:119:2",
"nodeType": "YulIf",
"src": "1269:119:2"
},
{
"nativeSrc": "1398:117:2",
"nodeType": "YulBlock",
"src": "1398:117:2",
"statements": [
{
"nativeSrc": "1413:15:2",
"nodeType": "YulVariableDeclaration",
"src": "1413:15:2",
"value": {
"kind": "number",
"nativeSrc": "1427:1:2",
"nodeType": "YulLiteral",
"src": "1427:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1417:6:2",
"nodeType": "YulTypedName",
"src": "1417:6:2",
"type": ""
}
]
},
{
"nativeSrc": "1442:63:2",
"nodeType": "YulAssignment",
"src": "1442:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1477:9:2",
"nodeType": "YulIdentifier",
"src": "1477:9:2"
},
{
"name": "offset",
"nativeSrc": "1488:6:2",
"nodeType": "YulIdentifier",
"src": "1488:6:2"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1473:3:2",
"nodeType": "YulIdentifier",
"src": "1473:3:2"
},
"nativeSrc": "1473:22:2",
"nodeType": "YulFunctionCall",
"src": "1473:22:2"
},
{
"name": "dataEnd",
"nativeSrc": "1497:7:2",
"nodeType": "YulIdentifier",
"src": "1497:7:2"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "1452:20:2",
"nodeType": "YulIdentifier",
"src": "1452:20:2"
},
"nativeSrc": "1452:53:2",
"nodeType": "YulFunctionCall",
"src": "1452:53:2"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1442:6:2",
"nodeType": "YulIdentifier",
"src": "1442:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "1193:329:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1229:9:2",
"nodeType": "YulTypedName",
"src": "1229:9:2",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1240:7:2",
"nodeType": "YulTypedName",
"src": "1240:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1252:6:2",
"nodeType": "YulTypedName",
"src": "1252:6:2",
"type": ""
}
],
"src": "1193:329:2"
},
{
"body": {
"nativeSrc": "1624:73:2",
"nodeType": "YulBlock",
"src": "1624:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1641:3:2",
"nodeType": "YulIdentifier",
"src": "1641:3:2"
},
{
"name": "length",
"nativeSrc": "1646:6:2",
"nodeType": "YulIdentifier",
"src": "1646:6:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1634:6:2",
"nodeType": "YulIdentifier",
"src": "1634:6:2"
},
"nativeSrc": "1634:19:2",
"nodeType": "YulFunctionCall",
"src": "1634:19:2"
},
"nativeSrc": "1634:19:2",
"nodeType": "YulExpressionStatement",
"src": "1634:19:2"
},
{
"nativeSrc": "1662:29:2",
"nodeType": "YulAssignment",
"src": "1662:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1681:3:2",
"nodeType": "YulIdentifier",
"src": "1681:3:2"
},
{
"kind": "number",
"nativeSrc": "1686:4:2",
"nodeType": "YulLiteral",
"src": "1686:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1677:3:2",
"nodeType": "YulIdentifier",
"src": "1677:3:2"
},
"nativeSrc": "1677:14:2",
"nodeType": "YulFunctionCall",
"src": "1677:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "1662:11:2",
"nodeType": "YulIdentifier",
"src": "1662:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "1528:169:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "1596:3:2",
"nodeType": "YulTypedName",
"src": "1596:3:2",
"type": ""
},
{
"name": "length",
"nativeSrc": "1601:6:2",
"nodeType": "YulTypedName",
"src": "1601:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "1612:11:2",
"nodeType": "YulTypedName",
"src": "1612:11:2",
"type": ""
}
],
"src": "1528:169:2"
},
{
"body": {
"nativeSrc": "1809:63:2",
"nodeType": "YulBlock",
"src": "1809:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1831:6:2",
"nodeType": "YulIdentifier",
"src": "1831:6:2"
},
{
"kind": "number",
"nativeSrc": "1839:1:2",
"nodeType": "YulLiteral",
"src": "1839:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1827:3:2",
"nodeType": "YulIdentifier",
"src": "1827:3:2"
},
"nativeSrc": "1827:14:2",
"nodeType": "YulFunctionCall",
"src": "1827:14:2"
},
{
"hexValue": "43616c6c6572206973206e6f74206f776e6572",
"kind": "string",
"nativeSrc": "1843:21:2",
"nodeType": "YulLiteral",
"src": "1843:21:2",
"type": "",
"value": "Caller is not owner"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1820:6:2",
"nodeType": "YulIdentifier",
"src": "1820:6:2"
},
"nativeSrc": "1820:45:2",
"nodeType": "YulFunctionCall",
"src": "1820:45:2"
},
"nativeSrc": "1820:45:2",
"nodeType": "YulExpressionStatement",
"src": "1820:45:2"
}
]
},
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nativeSrc": "1703:169:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1801:6:2",
"nodeType": "YulTypedName",
"src": "1801:6:2",
"type": ""
}
],
"src": "1703:169:2"
},
{
"body": {
"nativeSrc": "2024:220:2",
"nodeType": "YulBlock",
"src": "2024:220:2",
"statements": [
{
"nativeSrc": "2034:74:2",
"nodeType": "YulAssignment",
"src": "2034:74:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2100:3:2",
"nodeType": "YulIdentifier",
"src": "2100:3:2"
},
{
"kind": "number",
"nativeSrc": "2105:2:2",
"nodeType": "YulLiteral",
"src": "2105:2:2",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "2041:58:2",
"nodeType": "YulIdentifier",
"src": "2041:58:2"
},
"nativeSrc": "2041:67:2",
"nodeType": "YulFunctionCall",
"src": "2041:67:2"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "2034:3:2",
"nodeType": "YulIdentifier",
"src": "2034:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2206:3:2",
"nodeType": "YulIdentifier",
"src": "2206:3:2"
}
],
"functionName": {
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nativeSrc": "2117:88:2",
"nodeType": "YulIdentifier",
"src": "2117:88:2"
},
"nativeSrc": "2117:93:2",
"nodeType": "YulFunctionCall",
"src": "2117:93:2"
},
"nativeSrc": "2117:93:2",
"nodeType": "YulExpressionStatement",
"src": "2117:93:2"
},
{
"nativeSrc": "2219:19:2",
"nodeType": "YulAssignment",
"src": "2219:19:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2230:3:2",
"nodeType": "YulIdentifier",
"src": "2230:3:2"
},
{
"kind": "number",
"nativeSrc": "2235:2:2",
"nodeType": "YulLiteral",
"src": "2235:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2226:3:2",
"nodeType": "YulIdentifier",
"src": "2226:3:2"
},
"nativeSrc": "2226:12:2",
"nodeType": "YulFunctionCall",
"src": "2226:12:2"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "2219:3:2",
"nodeType": "YulIdentifier",
"src": "2219:3:2"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1878:366:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "2012:3:2",
"nodeType": "YulTypedName",
"src": "2012:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "2020:3:2",
"nodeType": "YulTypedName",
"src": "2020:3:2",
"type": ""
}
],
"src": "1878:366:2"
},
{
"body": {
"nativeSrc": "2421:248:2",
"nodeType": "YulBlock",
"src": "2421:248:2",
"statements": [
{
"nativeSrc": "2431:26:2",
"nodeType": "YulAssignment",
"src": "2431:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2443:9:2",
"nodeType": "YulIdentifier",
"src": "2443:9:2"
},
{
"kind": "number",
"nativeSrc": "2454:2:2",
"nodeType": "YulLiteral",
"src": "2454:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2439:3:2",
"nodeType": "YulIdentifier",
"src": "2439:3:2"
},
"nativeSrc": "2439:18:2",
"nodeType": "YulFunctionCall",
"src": "2439:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2431:4:2",
"nodeType": "YulIdentifier",
"src": "2431:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2478:9:2",
"nodeType": "YulIdentifier",
"src": "2478:9:2"
},
{
"kind": "number",
"nativeSrc": "2489:1:2",
"nodeType": "YulLiteral",
"src": "2489:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2474:3:2",
"nodeType": "YulIdentifier",
"src": "2474:3:2"
},
"nativeSrc": "2474:17:2",
"nodeType": "YulFunctionCall",
"src": "2474:17:2"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "2497:4:2",
"nodeType": "YulIdentifier",
"src": "2497:4:2"
},
{
"name": "headStart",
"nativeSrc": "2503:9:2",
"nodeType": "YulIdentifier",
"src": "2503:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "2493:3:2",
"nodeType": "YulIdentifier",
"src": "2493:3:2"
},
"nativeSrc": "2493:20:2",
"nodeType": "YulFunctionCall",
"src": "2493:20:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2467:6:2",
"nodeType": "YulIdentifier",
"src": "2467:6:2"
},
"nativeSrc": "2467:47:2",
"nodeType": "YulFunctionCall",
"src": "2467:47:2"
},
"nativeSrc": "2467:47:2",
"nodeType": "YulExpressionStatement",
"src": "2467:47:2"
},
{
"nativeSrc": "2523:139:2",
"nodeType": "YulAssignment",
"src": "2523:139:2",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "2657:4:2",
"nodeType": "YulIdentifier",
"src": "2657:4:2"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "2531:124:2",
"nodeType": "YulIdentifier",
"src": "2531:124:2"
},
"nativeSrc": "2531:131:2",
"nodeType": "YulFunctionCall",
"src": "2531:131:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2523:4:2",
"nodeType": "YulIdentifier",
"src": "2523:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "2250:419:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2401:9:2",
"nodeType": "YulTypedName",
"src": "2401:9:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2416:4:2",
"nodeType": "YulTypedName",
"src": "2416:4:2",
"type": ""
}
],
"src": "2250:419:2"
},
{
"body": {
"nativeSrc": "2781:121:2",
"nodeType": "YulBlock",
"src": "2781:121:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2803:6:2",
"nodeType": "YulIdentifier",
"src": "2803:6:2"
},
{
"kind": "number",
"nativeSrc": "2811:1:2",
"nodeType": "YulLiteral",
"src": "2811:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2799:3:2",
"nodeType": "YulIdentifier",
"src": "2799:3:2"
},
"nativeSrc": "2799:14:2",
"nodeType": "YulFunctionCall",
"src": "2799:14:2"
},
{
"hexValue": "4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f",
"kind": "string",
"nativeSrc": "2815:34:2",
"nodeType": "YulLiteral",
"src": "2815:34:2",
"type": "",
"value": "New owner should not be the zero"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2792:6:2",
"nodeType": "YulIdentifier",
"src": "2792:6:2"
},
"nativeSrc": "2792:58:2",
"nodeType": "YulFunctionCall",
"src": "2792:58:2"
},
"nativeSrc": "2792:58:2",
"nodeType": "YulExpressionStatement",
"src": "2792:58:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2871:6:2",
"nodeType": "YulIdentifier",
"src": "2871:6:2"
},
{
"kind": "number",
"nativeSrc": "2879:2:2",
"nodeType": "YulLiteral",
"src": "2879:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2867:3:2",
"nodeType": "YulIdentifier",
"src": "2867:3:2"
},
"nativeSrc": "2867:15:2",
"nodeType": "YulFunctionCall",
"src": "2867:15:2"
},
{
"hexValue": "2061646472657373",
"kind": "string",
"nativeSrc": "2884:10:2",
"nodeType": "YulLiteral",
"src": "2884:10:2",
"type": "",
"value": " address"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2860:6:2",
"nodeType": "YulIdentifier",
"src": "2860:6:2"
},
"nativeSrc": "2860:35:2",
"nodeType": "YulFunctionCall",
"src": "2860:35:2"
},
"nativeSrc": "2860:35:2",
"nodeType": "YulExpressionStatement",
"src": "2860:35:2"
}
]
},
"name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42",
"nativeSrc": "2675:227:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "2773:6:2",
"nodeType": "YulTypedName",
"src": "2773:6:2",
"type": ""
}
],
"src": "2675:227:2"
},
{
"body": {
"nativeSrc": "3054:220:2",
"nodeType": "YulBlock",
"src": "3054:220:2",
"statements": [
{
"nativeSrc": "3064:74:2",
"nodeType": "YulAssignment",
"src": "3064:74:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3130:3:2",
"nodeType": "YulIdentifier",
"src": "3130:3:2"
},
{
"kind": "number",
"nativeSrc": "3135:2:2",
"nodeType": "YulLiteral",
"src": "3135:2:2",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "3071:58:2",
"nodeType": "YulIdentifier",
"src": "3071:58:2"
},
"nativeSrc": "3071:67:2",
"nodeType": "YulFunctionCall",
"src": "3071:67:2"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "3064:3:2",
"nodeType": "YulIdentifier",
"src": "3064:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3236:3:2",
"nodeType": "YulIdentifier",
"src": "3236:3:2"
}
],
"functionName": {
"name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42",
"nativeSrc": "3147:88:2",
"nodeType": "YulIdentifier",
"src": "3147:88:2"
},
"nativeSrc": "3147:93:2",
"nodeType": "YulFunctionCall",
"src": "3147:93:2"
},
"nativeSrc": "3147:93:2",
"nodeType": "YulExpressionStatement",
"src": "3147:93:2"
},
{
"nativeSrc": "3249:19:2",
"nodeType": "YulAssignment",
"src": "3249:19:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3260:3:2",
"nodeType": "YulIdentifier",
"src": "3260:3:2"
},
{
"kind": "number",
"nativeSrc": "3265:2:2",
"nodeType": "YulLiteral",
"src": "3265:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3256:3:2",
"nodeType": "YulIdentifier",
"src": "3256:3:2"
},
"nativeSrc": "3256:12:2",
"nodeType": "YulFunctionCall",
"src": "3256:12:2"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "3249:3:2",
"nodeType": "YulIdentifier",
"src": "3249:3:2"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack",
"nativeSrc": "2908:366:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "3042:3:2",
"nodeType": "YulTypedName",
"src": "3042:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "3050:3:2",
"nodeType": "YulTypedName",
"src": "3050:3:2",
"type": ""
}
],
"src": "2908:366:2"
},
{
"body": {
"nativeSrc": "3451:248:2",
"nodeType": "YulBlock",
"src": "3451:248:2",
"statements": [
{
"nativeSrc": "3461:26:2",
"nodeType": "YulAssignment",
"src": "3461:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3473:9:2",
"nodeType": "YulIdentifier",
"src": "3473:9:2"
},
{
"kind": "number",
"nativeSrc": "3484:2:2",
"nodeType": "YulLiteral",
"src": "3484:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3469:3:2",
"nodeType": "YulIdentifier",
"src": "3469:3:2"
},
"nativeSrc": "3469:18:2",
"nodeType": "YulFunctionCall",
"src": "3469:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3461:4:2",
"nodeType": "YulIdentifier",
"src": "3461:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3508:9:2",
"nodeType": "YulIdentifier",
"src": "3508:9:2"
},
{
"kind": "number",
"nativeSrc": "3519:1:2",
"nodeType": "YulLiteral",
"src": "3519:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3504:3:2",
"nodeType": "YulIdentifier",
"src": "3504:3:2"
},
"nativeSrc": "3504:17:2",
"nodeType": "YulFunctionCall",
"src": "3504:17:2"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "3527:4:2",
"nodeType": "YulIdentifier",
"src": "3527:4:2"
},
{
"name": "headStart",
"nativeSrc": "3533:9:2",
"nodeType": "YulIdentifier",
"src": "3533:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3523:3:2",
"nodeType": "YulIdentifier",
"src": "3523:3:2"
},
"nativeSrc": "3523:20:2",
"nodeType": "YulFunctionCall",
"src": "3523:20:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3497:6:2",
"nodeType": "YulIdentifier",
"src": "3497:6:2"
},
"nativeSrc": "3497:47:2",
"nodeType": "YulFunctionCall",
"src": "3497:47:2"
},
"nativeSrc": "3497:47:2",
"nodeType": "YulExpressionStatement",
"src": "3497:47:2"
},
{
"nativeSrc": "3553:139:2",
"nodeType": "YulAssignment",
"src": "3553:139:2",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "3687:4:2",
"nodeType": "YulIdentifier",
"src": "3687:4:2"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack",
"nativeSrc": "3561:124:2",
"nodeType": "YulIdentifier",
"src": "3561:124:2"
},
"nativeSrc": "3561:131:2",
"nodeType": "YulFunctionCall",
"src": "3561:131:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3553:4:2",
"nodeType": "YulIdentifier",
"src": "3553:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "3280:419:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3431:9:2",
"nodeType": "YulTypedName",
"src": "3431:9:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3446:4:2",
"nodeType": "YulTypedName",
"src": "3446:4:2",
"type": ""
}
],
"src": "3280:419:2"
},
{
"body": {
"nativeSrc": "3733:152:2",
"nodeType": "YulBlock",
"src": "3733:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3750:1:2",
"nodeType": "YulLiteral",
"src": "3750:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3753:77:2",
"nodeType": "YulLiteral",
"src": "3753:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3743:6:2",
"nodeType": "YulIdentifier",
"src": "3743:6:2"
},
"nativeSrc": "3743:88:2",
"nodeType": "YulFunctionCall",
"src": "3743:88:2"
},
"nativeSrc": "3743:88:2",
"nodeType": "YulExpressionStatement",
"src": "3743:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3847:1:2",
"nodeType": "YulLiteral",
"src": "3847:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "3850:4:2",
"nodeType": "YulLiteral",
"src": "3850:4:2",
"type": "",
"value": "0x51"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3840:6:2",
"nodeType": "YulIdentifier",
"src": "3840:6:2"
},
"nativeSrc": "3840:15:2",
"nodeType": "YulFunctionCall",
"src": "3840:15:2"
},
"nativeSrc": "3840:15:2",
"nodeType": "YulExpressionStatement",
"src": "3840:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3871:1:2",
"nodeType": "YulLiteral",
"src": "3871:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3874:4:2",
"nodeType": "YulLiteral",
"src": "3874:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3864:6:2",
"nodeType": "YulIdentifier",
"src": "3864:6:2"
},
"nativeSrc": "3864:15:2",
"nodeType": "YulFunctionCall",
"src": "3864:15:2"
},
"nativeSrc": "3864:15:2",
"nodeType": "YulExpressionStatement",
"src": "3864:15:2"
}
]
},
"name": "panic_error_0x51",
"nativeSrc": "3705:180:2",
"nodeType": "YulFunctionDefinition",
"src": "3705:180:2"
}
]
},
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_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_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(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_address(add(headStart, offset), dataEnd)\n }\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 store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not owner\")\n\n }\n\n function abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(memPtr) {\n\n mstore(add(memPtr, 0), \"New owner should not be the zero\")\n\n mstore(add(memPtr, 32), \" address\")\n\n }\n\n function abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f5ffd5b5060043610610034575f3560e01c8063893d20e814610038578063a6f9dae114610056575b5f5ffd5b610040610072565b60405161004d91906102b9565b60405180910390f35b610070600480360381019061006b9190610300565b610099565b005b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011e90610385565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018c90610413565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6a636f6e736f6c652e6c6f6790505f5f835160208501845afa505050565b610278610431565b565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102a38261027a565b9050919050565b6102b381610299565b82525050565b5f6020820190506102cc5f8301846102aa565b92915050565b5f5ffd5b6102df81610299565b81146102e9575f5ffd5b50565b5f813590506102fa816102d6565b92915050565b5f60208284031215610315576103146102d2565b5b5f610322848285016102ec565b91505092915050565b5f82825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e6572000000000000000000000000005f82015250565b5f61036f60138361032b565b915061037a8261033b565b602082019050919050565b5f6020820190508181035f83015261039c81610363565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f5f8201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b5f6103fd60288361032b565b9150610408826103a3565b604082019050919050565b5f6020820190508181035f83015261042a816103f1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52605160045260245ffdfea2646970667358221220523d1a04cb484ceecf188b2a9bd9c1473eddd3af5a091583b8a69e41b6d4c58364736f6c634300081e0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x300 JUMP JUMPDEST PUSH2 0x99 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x127 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E SWAP1 PUSH2 0x385 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x195 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18C SWAP1 PUSH2 0x413 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH0 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x278 PUSH2 0x431 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2A3 DUP3 PUSH2 0x27A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B3 DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CC PUSH0 DUP4 ADD DUP5 PUSH2 0x2AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2DF DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FA DUP2 PUSH2 0x2D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x315 JUMPI PUSH2 0x314 PUSH2 0x2D2 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x322 DUP5 DUP3 DUP6 ADD PUSH2 0x2EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x36F PUSH1 0x13 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x37A DUP3 PUSH2 0x33B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x39C DUP2 PUSH2 0x363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3FD PUSH1 0x28 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x408 DUP3 PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x42A DUP2 PUSH2 0x3F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE RETURNDATASIZE BYTE DIV 0xCB BASEFEE 0x4C RETURNCONTRACT 0xCF XOR DUP12 0x2A SWAP12 0xD9 0xC1 SELFBALANCE RETURNDATACOPY 0xDD 0xD3 0xAF GAS MULMOD ISZERO DUP4 0xB8 0xA6 SWAP15 COINBASE 0xB6 0xD4 0xC5 DUP4 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ",
"sourceMap": "152:1498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1267:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1567:81;1610:7;1636:5;;;;;;;;;;;1629:12;;1567:81;:::o;1267:212::-;830:5;;;;;;;;;;;816:19;;:10;:19;;;808:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:1:::1;1339:22;;:8;:22;;::::0;1331:75:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1437:8;1421:25;;1430:5;;;;;;;;;;;1421:25;;;;;;;;;;;;1464:8;1456:5;;:16;;;;;;;;;;;;;;;;;;1267:212:::0;:::o;180:463:1:-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;-1:-1:-1:-;;;:::i;:::-;:::o;7:126:2:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;674:117::-;783:1;780;773:12;920:122;993:24;1011:5;993:24;:::i;:::-;986:5;983:35;973:63;;1032:1;1029;1022:12;973:63;920:122;:::o;1048:139::-;1094:5;1132:6;1119:20;1110:29;;1148:33;1175:5;1148:33;:::i;:::-;1048:139;;;;:::o;1193:329::-;1252:6;1301:2;1289:9;1280:7;1276:23;1272:32;1269:119;;;1307:79;;:::i;:::-;1269:119;1427:1;1452:53;1497:7;1488:6;1477:9;1473:22;1452:53;:::i;:::-;1442:63;;1398:117;1193:329;;;;:::o;1528:169::-;1612:11;1646:6;1641:3;1634:19;1686:4;1681:3;1677:14;1662:29;;1528:169;;;;:::o;1703:::-;1843:21;1839:1;1831:6;1827:14;1820:45;1703:169;:::o;1878:366::-;2020:3;2041:67;2105:2;2100:3;2041:67;:::i;:::-;2034:74;;2117:93;2206:3;2117:93;:::i;:::-;2235:2;2230:3;2226:12;2219:19;;1878:366;;;:::o;2250:419::-;2416:4;2454:2;2443:9;2439:18;2431:26;;2503:9;2497:4;2493:20;2489:1;2478:9;2474:17;2467:47;2531:131;2657:4;2531:131;:::i;:::-;2523:139;;2250:419;;;:::o;2675:227::-;2815:34;2811:1;2803:6;2799:14;2792:58;2884:10;2879:2;2871:6;2867:15;2860:35;2675:227;:::o;2908:366::-;3050:3;3071:67;3135:2;3130:3;3071:67;:::i;:::-;3064:74;;3147:93;3236:3;3147:93;:::i;:::-;3265:2;3260:3;3256:12;3249:19;;2908:366;;;:::o;3280:419::-;3446:4;3484:2;3473:9;3469:18;3461:26;;3533:9;3527:4;3523:20;3519:1;3508:9;3504:17;3497:47;3561:131;3687:4;3561:131;:::i;:::-;3553:139;;3280:419;;;:::o;3705:180::-;3753:77;3750:1;3743:88;3850:4;3847:1;3840:15;3874:4;3871:1;3864:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "234400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"changeOwner(address)": "30595",
"getOwner()": "2492"
}
},
"methodIdentifiers": {
"changeOwner(address)": "a6f9dae1",
"getOwner()": "893d20e8"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "oldOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnerSet",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "changeOwner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.30+commit.73712a01"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "oldOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnerSet",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "changeOwner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Set & change owner",
"kind": "dev",
"methods": {
"changeOwner(address)": {
"details": "Change owner",
"params": {
"newOwner": "address of new owner"
}
},
"constructor": {
"details": "Set contract deployer as owner"
},
"getOwner()": {
"details": "Return owner address ",
"returns": {
"_0": "address of owner"
}
}
},
"title": "Owner",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/2_Owner.sol": "Owner"
},
"evmVersion": "prague",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/2_Owner.sol": {
"keccak256": "0x072df1245681a805f673875fa3dfaf38cd5e37c49625fa19aab1761a66c11fe8",
"license": "GPL-3.0",
"urls": [
"bzz-raw://34809dd07b27dcf9fbf1a9eb20bc668447faae5ee58567351067c4f8b06bac94",
"dweb:/ipfs/QmQSMr8jWFx7xA8T1ZADVd9NfzfKQ7fthkC4yZHamTWJZR"
]
},
"hardhat/console.sol": {
"keccak256": "0x7434453e6d3b7d0e5d0eb7846ffdbc27f0ccf3b163591263739b628074dc103a",
"license": "MIT",
"urls": [
"bzz-raw://49355f780520494d1d5a0f01858385e51bb5280ce0ecfb960f16995065dca395",
"dweb:/ipfs/QmSwJ6C5QLz6xKeQZS8wbwjU1KxRFTYfwbGmtzisd5sRW4"
]
}
},
"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": "6080604052348015600e575f5ffd5b506101298061001c5f395ff3fe6080604052348015600e575f5ffd5b50600436106030575f3560e01c80632e64cec11460345780636057361d14604e575b5f5ffd5b603a6066565b60405160459190608d565b60405180910390f35b606460048036038101906060919060cd565b606e565b005b5f5f54905090565b805f8190555050565b5f819050919050565b6087816077565b82525050565b5f602082019050609e5f8301846080565b92915050565b5f5ffd5b60af816077565b811460b8575f5ffd5b50565b5f8135905060c78160a8565b92915050565b5f6020828403121560df5760de60a4565b5b5f60ea8482850160bb565b9150509291505056fea264697066735822122063f96a57b86a37af1ac0fbf522233470beb0ae3e330dcafa317cb897259fa87364736f6c634300081e0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x129 DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x30 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH1 0x34 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH1 0x4E JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x3A PUSH1 0x66 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x45 SWAP2 SWAP1 PUSH1 0x8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x64 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH1 0x60 SWAP2 SWAP1 PUSH1 0xCD JUMP JUMPDEST PUSH1 0x6E JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x87 DUP2 PUSH1 0x77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x9E PUSH0 DUP4 ADD DUP5 PUSH1 0x80 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xAF DUP2 PUSH1 0x77 JUMP JUMPDEST DUP2 EQ PUSH1 0xB8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH1 0xC7 DUP2 PUSH1 0xA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0xDF JUMPI PUSH1 0xDE PUSH1 0xA4 JUMP JUMPDEST JUMPDEST PUSH0 PUSH1 0xEA DUP5 DUP3 DUP6 ADD PUSH1 0xBB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xF96A57B8 PUSH11 0x37AF1AC0FBF522233470BE 0xB0 0xAE RETURNDATACOPY CALLER 0xD 0xCA STATICCALL BALANCE PUSH29 0xB897259FA87364736F6C634300081E0033000000000000000000000000 ",
"sourceMap": "199:356:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@retrieve_24": {
"entryPoint": 102,
"id": 24,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_15": {
"entryPoint": 110,
"id": 15,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 187,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 205,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 128,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 141,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 119,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 164,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 168,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:1374:1",
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nativeSrc": "52:32:1",
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nativeSrc": "62:16:1",
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nativeSrc": "73:5:1",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:1",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "7:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:1",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:1",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nativeSrc": "155:53:1",
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "172:3:1",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "195:5:1",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "177:17:1",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nativeSrc": "177:24:1",
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "165:6:1",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "90:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "143:5:1",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "150:3:1",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nativeSrc": "312:124:1",
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nativeSrc": "322:26:1",
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "334:9:1",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nativeSrc": "345:2:1",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "330:3:1",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nativeSrc": "330:18:1",
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "322:4:1",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "402:6:1",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "415:9:1",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nativeSrc": "426:1:1",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "411:3:1",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nativeSrc": "411:17:1",
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "358:43:1",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "214:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "284:9:1",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "296:6:1",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "307:4:1",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nativeSrc": "482:35:1",
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nativeSrc": "492:19:1",
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "508:2:1",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "502:5:1",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nativeSrc": "502:9:1",
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "492:6:1",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "442:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "475:6:1",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nativeSrc": "612:28:1",
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "629:1:1",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "632:1:1",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "622:6:1",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "523:117:1",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nativeSrc": "735:28:1",
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "752:1:1",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "755:1:1",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "745:6:1",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "646:117:1",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nativeSrc": "812:79:1",
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nativeSrc": "869:16:1",
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "878:1:1",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "881:1:1",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "871:6:1",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "835:5:1",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "860:5:1",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "842:17:1",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nativeSrc": "842:24:1",
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "832:2:1",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nativeSrc": "832:35:1",
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "825:6:1",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nativeSrc": "825:43:1",
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nativeSrc": "822:63:1",
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "769:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "805:5:1",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nativeSrc": "949:87:1",
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nativeSrc": "959:29:1",
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "981:6:1",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "968:12:1",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nativeSrc": "968:20:1",
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "959:5:1",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1024:5:1",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "997:26:1",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "897:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "927:6:1",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "935:3:1",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "943:5:1",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nativeSrc": "1108:263:1",
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nativeSrc": "1154:83:1",
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1156:77:1",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1129:7:1",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nativeSrc": "1138:9:1",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1125:3:1",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nativeSrc": "1125:23:1",
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nativeSrc": "1150:2:1",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1121:3:1",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nativeSrc": "1121:32:1",
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nativeSrc": "1118:119:1",
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nativeSrc": "1247:117:1",
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nativeSrc": "1262:15:1",
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nativeSrc": "1276:1:1",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1266:6:1",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1291:63:1",
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1326:9:1",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1322:3:1",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nativeSrc": "1322:22:1",
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1346:7:1",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "1301:20:1",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nativeSrc": "1301:53:1",
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1291:6:1",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "1042:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1078:9:1",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1089:7:1",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1101:6:1",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329: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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052348015600e575f5ffd5b50600436106030575f3560e01c80632e64cec11460345780636057361d14604e575b5f5ffd5b603a6066565b60405160459190608d565b60405180910390f35b606460048036038101906060919060cd565b606e565b005b5f5f54905090565b805f8190555050565b5f819050919050565b6087816077565b82525050565b5f602082019050609e5f8301846080565b92915050565b5f5ffd5b60af816077565b811460b8575f5ffd5b50565b5f8135905060c78160a8565b92915050565b5f6020828403121560df5760de60a4565b5b5f60ea8482850160bb565b9150509291505056fea264697066735822122063f96a57b86a37af1ac0fbf522233470beb0ae3e330dcafa317cb897259fa87364736f6c634300081e0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x30 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH1 0x34 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH1 0x4E JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x3A PUSH1 0x66 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x45 SWAP2 SWAP1 PUSH1 0x8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x64 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH1 0x60 SWAP2 SWAP1 PUSH1 0xCD JUMP JUMPDEST PUSH1 0x6E JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x87 DUP2 PUSH1 0x77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x9E PUSH0 DUP4 ADD DUP5 PUSH1 0x80 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xAF DUP2 PUSH1 0x77 JUMP JUMPDEST DUP2 EQ PUSH1 0xB8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH1 0xC7 DUP2 PUSH1 0xA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0xDF JUMPI PUSH1 0xDE PUSH1 0xA4 JUMP JUMPDEST JUMPDEST PUSH0 PUSH1 0xEA DUP5 DUP3 DUP6 ADD PUSH1 0xBB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xF96A57B8 PUSH11 0x37AF1AC0FBF522233470BE 0xB0 0xAE RETURNDATACOPY CALLER 0xD 0xCA STATICCALL BALANCE PUSH29 0xB897259FA87364736F6C634300081E0033000000000000000000000000 ",
"sourceMap": "199:356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;474:79;515:7;540:6;;533:13;;474:79;:::o;329:64::-;383:3;374:6;:12;;;;329:64;:::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;523:117::-;632:1;629;622: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"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "59400",
"executionCost": "109",
"totalCost": "59509"
},
"external": {
"retrieve()": "2409",
"store(uint256)": "22514"
}
},
"methodIdentifiers": {
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "num",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.30+commit.73712a01"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "num",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"custom:dev-run-script": "./scripts/deploy_with_ethers.ts",
"details": "Store & retrieve value in a variable",
"kind": "dev",
"methods": {
"retrieve()": {
"details": "Return value ",
"returns": {
"_0": "value of 'number'"
}
},
"store(uint256)": {
"details": "Store value in variable",
"params": {
"num": "value to store"
}
}
},
"title": "Storage",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/1_Storage.sol": "Storage"
},
"evmVersion": "prague",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/1_Storage.sol": {
"keccak256": "0xa3de51030e5784d1fc25677298a0bd61bf7eac541ca2fc94232f1b7dc5a89e21",
"license": "GPL-3.0",
"urls": [
"bzz-raw://aac95d61b7ce356e2da8d93eb66abfabbeadebb4f44d3d78fd14414e7ac918ba",
"dweb:/ipfs/QmZ6otiNvDfrWzEiQJBAdWUurwEvsemrbBZgD9hj6qSki1"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "5107720255a676e7dc6919607d3929d8",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.30",
"solcLongVersion": "0.8.30+commit.73712a01",
"input": {
"language": "Solidity",
"sources": {
"contracts/2_Owner.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"hardhat/console.sol\";\n\n/**\n * @title Owner\n * @dev Set & change owner\n */\ncontract Owner {\n\n address private owner;\n\n // event for EVM logging\n event OwnerSet(address indexed oldOwner, address indexed newOwner);\n\n // modifier to check if caller is owner\n modifier isOwner() {\n // If the first argument of 'require' evaluates to 'false', execution terminates and all\n // changes to the state and to Ether balances are reverted.\n // This used to consume all gas in old EVM versions, but not anymore.\n // It is often a good idea to use 'require' to check if functions are called correctly.\n // As a second argument, you can also provide an explanation about what went wrong.\n require(msg.sender == owner, \"Caller is not owner\");\n _;\n }\n\n /**\n * @dev Set contract deployer as owner\n */\n constructor() {\n console.log(\"Owner contract deployed by:\", msg.sender);\n owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor\n emit OwnerSet(address(0), owner);\n }\n\n /**\n * @dev Change owner\n * @param newOwner address of new owner\n */\n function changeOwner(address newOwner) public isOwner {\n require(newOwner != address(0), \"New owner should not be the zero address\");\n emit OwnerSet(owner, newOwner);\n owner = newOwner;\n }\n\n /**\n * @dev Return owner address \n * @return address of owner\n */\n function getOwner() external view returns (address) {\n return owner;\n }\n} \n"
},
"hardhat/console.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity >=0.4.22 <0.9.0;\n\nlibrary console {\n address constant CONSOLE_ADDRESS =\n 0x000000000000000000636F6e736F6c652e6c6f67;\n\n function _sendLogPayloadImplementation(bytes memory payload) internal view {\n address consoleAddress = CONSOLE_ADDRESS;\n /// @solidity memory-safe-assembly\n assembly {\n pop(\n staticcall(\n gas(),\n consoleAddress,\n add(payload, 32),\n mload(payload),\n 0,\n 0\n )\n )\n }\n }\n\n function _castToPure(\n function(bytes memory) internal view fnIn\n ) internal pure returns (function(bytes memory) pure fnOut) {\n assembly {\n fnOut := fnIn\n }\n }\n\n function _sendLogPayload(bytes memory payload) internal pure {\n _castToPure(_sendLogPayloadImplementation)(payload);\n }\n\n function log() internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log()\"));\n }\n function logInt(int256 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(int256)\", p0));\n }\n\n function logUint(uint256 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256)\", p0));\n }\n\n function logString(string memory p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string)\", p0));\n }\n\n function logBool(bool p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool)\", p0));\n }\n\n function logAddress(address p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address)\", p0));\n }\n\n function logBytes(bytes memory p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes)\", p0));\n }\n\n function logBytes1(bytes1 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes1)\", p0));\n }\n\n function logBytes2(bytes2 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes2)\", p0));\n }\n\n function logBytes3(bytes3 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes3)\", p0));\n }\n\n function logBytes4(bytes4 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes4)\", p0));\n }\n\n function logBytes5(bytes5 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes5)\", p0));\n }\n\n function logBytes6(bytes6 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes6)\", p0));\n }\n\n function logBytes7(bytes7 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes7)\", p0));\n }\n\n function logBytes8(bytes8 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes8)\", p0));\n }\n\n function logBytes9(bytes9 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes9)\", p0));\n }\n\n function logBytes10(bytes10 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes10)\", p0));\n }\n\n function logBytes11(bytes11 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes11)\", p0));\n }\n\n function logBytes12(bytes12 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes12)\", p0));\n }\n\n function logBytes13(bytes13 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes13)\", p0));\n }\n\n function logBytes14(bytes14 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes14)\", p0));\n }\n\n function logBytes15(bytes15 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes15)\", p0));\n }\n\n function logBytes16(bytes16 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes16)\", p0));\n }\n\n function logBytes17(bytes17 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes17)\", p0));\n }\n\n function logBytes18(bytes18 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes18)\", p0));\n }\n\n function logBytes19(bytes19 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes19)\", p0));\n }\n\n function logBytes20(bytes20 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes20)\", p0));\n }\n\n function logBytes21(bytes21 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes21)\", p0));\n }\n\n function logBytes22(bytes22 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes22)\", p0));\n }\n\n function logBytes23(bytes23 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes23)\", p0));\n }\n\n function logBytes24(bytes24 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes24)\", p0));\n }\n\n function logBytes25(bytes25 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes25)\", p0));\n }\n\n function logBytes26(bytes26 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes26)\", p0));\n }\n\n function logBytes27(bytes27 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes27)\", p0));\n }\n\n function logBytes28(bytes28 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes28)\", p0));\n }\n\n function logBytes29(bytes29 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes29)\", p0));\n }\n\n function logBytes30(bytes30 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes30)\", p0));\n }\n\n function logBytes31(bytes31 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes31)\", p0));\n }\n\n function logBytes32(bytes32 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes32)\", p0));\n }\n\n function log(uint256 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256)\", p0));\n }\n\n function log(string memory p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string)\", p0));\n }\n\n function log(bool p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool)\", p0));\n }\n\n function log(address p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address)\", p0));\n }\n\n function log(uint256 p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256)\", p0, p1));\n }\n\n function log(uint256 p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string)\", p0, p1));\n }\n\n function log(uint256 p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool)\", p0, p1));\n }\n\n function log(uint256 p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address)\", p0, p1));\n }\n\n function log(string memory p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256)\", p0, p1));\n }\n\n function log(string memory p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string)\", p0, p1));\n }\n\n function log(string memory p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool)\", p0, p1));\n }\n\n function log(string memory p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1));\n }\n\n function log(bool p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256)\", p0, p1));\n }\n\n function log(bool p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string)\", p0, p1));\n }\n\n function log(bool p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool)\", p0, p1));\n }\n\n function log(bool p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address)\", p0, p1));\n }\n\n function log(address p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256)\", p0, p1));\n }\n\n function log(address p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string)\", p0, p1));\n }\n\n function log(address p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool)\", p0, p1));\n }\n\n function log(address p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address)\", p0, p1));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,address)\", p0, p1, p2, p3));\n }\n\n}\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/2_Owner.sol": {
"Owner": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "oldOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnerSet",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "changeOwner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Set & change owner",
"kind": "dev",
"methods": {
"changeOwner(address)": {
"details": "Change owner",
"params": {
"newOwner": "address of new owner"
}
},
"constructor": {
"details": "Set contract deployer as owner"
},
"getOwner()": {
"details": "Return owner address ",
"returns": {
"_0": "address of owner"
}
}
},
"title": "Owner",
"version": 1
},
"evm": {
"assembly": " /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\n mstore(0x40, 0x80)\n /* \"contracts/2_Owner.sol\":942:1176 constructor() {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n revert(0x00, 0x00)\ntag_1:\n pop\n /* \"contracts/2_Owner.sol\":966:1020 console.log(\"Owner contract deployed by:\", msg.sender) */\n tag_4\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x1b\n dup2\n mstore\n 0x20\n add\n 0x4f776e657220636f6e7472616374206465706c6f7965642062793a0000000000\n dup2\n mstore\n pop\n /* \"contracts/2_Owner.sol\":1009:1019 msg.sender */\n caller\n /* \"contracts/2_Owner.sol\":966:977 console.log */\n shl(0x20, tag_5)\n /* \"contracts/2_Owner.sol\":966:1020 console.log(\"Owner contract deployed by:\", msg.sender) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/2_Owner.sol\":1038:1048 msg.sender */\n caller\n /* \"contracts/2_Owner.sol\":1030:1035 owner */\n 0x00\n 0x00\n /* \"contracts/2_Owner.sol\":1030:1048 owner = msg.sender */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/2_Owner.sol\":1163:1168 owner */\n 0x00\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1142:1169 OwnerSet(address(0), owner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1159:1160 0 */\n 0x00\n /* \"contracts/2_Owner.sol\":1142:1169 OwnerSet(address(0), owner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\n jump(tag_6)\n /* \"hardhat/console.sol\":7470:7615 function log(string memory p0, address p1) internal pure {... */\ntag_5:\n /* \"hardhat/console.sol\":7537:7608 _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1)) */\n tag_8\n /* \"hardhat/console.sol\":7600:7602 p0 */\n dup3\n /* \"hardhat/console.sol\":7604:7606 p1 */\n dup3\n /* \"hardhat/console.sol\":7553:7607 abi.encodeWithSignature(\"log(string,address)\", p0, p1) */\n add(0x24, mload(0x40))\n tag_9\n swap3\n swap2\n swap1\n tag_10\n jump\t// in\ntag_9:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n and(not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff), 0x319af33300000000000000000000000000000000000000000000000000000000)\n 0x20\n dup3\n add\n dup1\n mload\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n dup4\n dup2\n dup4\n and\n or\n dup4\n mstore\n pop\n pop\n pop\n pop\n /* \"hardhat/console.sol\":7537:7552 _sendLogPayload */\n shl(0x20, tag_11)\n /* \"hardhat/console.sol\":7537:7608 _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1)) */\n 0x20\n shr\n jump\t// in\ntag_8:\n /* \"hardhat/console.sol\":7470:7615 function log(string memory p0, address p1) internal pure {... */\n pop\n pop\n jump\t// out\n /* \"hardhat/console.sol\":851:980 function _sendLogPayload(bytes memory payload) internal pure {... */\ntag_11:\n /* \"hardhat/console.sol\":922:973 _castToPure(_sendLogPayloadImplementation)(payload) */\n tag_13\n /* \"hardhat/console.sol\":965:972 payload */\n dup2\n /* \"hardhat/console.sol\":922:964 _castToPure(_sendLogPayloadImplementation) */\n tag_14\n /* \"hardhat/console.sol\":934:963 _sendLogPayloadImplementation */\n or(tag_0_13, shl(0x20, tag_15))\n /* \"hardhat/console.sol\":922:933 _castToPure */\n shl(0x20, tag_16)\n /* \"hardhat/console.sol\":922:964 _castToPure(_sendLogPayloadImplementation) */\n 0x20\n shr\n jump\t// in\ntag_14:\n /* \"hardhat/console.sol\":922:973 _castToPure(_sendLogPayloadImplementation)(payload) */\n 0x20\n shr\n jump\t// in\ntag_13:\n /* \"hardhat/console.sol\":851:980 function _sendLogPayload(bytes memory payload) internal pure {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\ntag_15:\n /* \"hardhat/console.sol\":265:287 address consoleAddress */\n 0x00\n /* \"hardhat/console.sol\":131:173 0x000000000000000000636F6e736F6c652e6c6f67 */\n 0x636f6e736f6c652e6c6f67\n /* \"hardhat/console.sol\":265:305 address consoleAddress = CONSOLE_ADDRESS */\n swap1\n pop\n /* \"hardhat/console.sol\":594:595 0 */\n 0x00\n /* \"hardhat/console.sol\":571:572 0 */\n 0x00\n /* \"hardhat/console.sol\":541:548 payload */\n dup4\n /* \"hardhat/console.sol\":535:549 mload(payload) */\n mload\n /* \"hardhat/console.sol\":510:512 32 */\n 0x20\n /* \"hardhat/console.sol\":501:508 payload */\n dup6\n /* \"hardhat/console.sol\":497:513 add(payload, 32) */\n add\n /* \"hardhat/console.sol\":461:475 consoleAddress */\n dup5\n /* \"hardhat/console.sol\":434:439 gas() */\n gas\n /* \"hardhat/console.sol\":402:613 staticcall(... */\n staticcall\n /* \"hardhat/console.sol\":381:627 pop(... */\n pop\n /* \"hardhat/console.sol\":367:637 {... */\n pop\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":649:845 function _castToPure(... */\ntag_16:\n /* \"hardhat/console.sol\":748:781 function(bytes memory) pure fnOut */\n or(tag_0_14, shl(0x20, tag_18))\n /* \"hardhat/console.sol\":825:829 fnIn */\n dup2\n /* \"hardhat/console.sol\":816:829 fnOut := fnIn */\n swap1\n pop\n /* \"hardhat/console.sol\":649:845 function _castToPure(... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\ntag_18:\n tag_20\n tag_21\n jump\t// in\ntag_20:\n jump\t// out\n /* \"#utility.yul\":7:106 */\ntag_22:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\ntag_23:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:426 */\ntag_24:\n /* \"#utility.yul\":376:382 */\n dup3\n /* \"#utility.yul\":371:374 */\n dup2\n /* \"#utility.yul\":366:369 */\n dup4\n /* \"#utility.yul\":360:383 */\n mcopy\n /* \"#utility.yul\":417:418 */\n 0x00\n /* \"#utility.yul\":408:414 */\n dup4\n /* \"#utility.yul\":403:406 */\n dup4\n /* \"#utility.yul\":399:415 */\n add\n /* \"#utility.yul\":392:419 */\n mstore\n /* \"#utility.yul\":287:426 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":432:534 */\ntag_25:\n /* \"#utility.yul\":473:479 */\n 0x00\n /* \"#utility.yul\":524:526 */\n 0x1f\n /* \"#utility.yul\":520:527 */\n not\n /* \"#utility.yul\":515:517 */\n 0x1f\n /* \"#utility.yul\":508:513 */\n dup4\n /* \"#utility.yul\":504:518 */\n add\n /* \"#utility.yul\":500:528 */\n and\n /* \"#utility.yul\":490:528 */\n swap1\n pop\n /* \"#utility.yul\":432:534 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":540:917 */\ntag_26:\n /* \"#utility.yul\":628:631 */\n 0x00\n /* \"#utility.yul\":656:695 */\n tag_36\n /* \"#utility.yul\":689:694 */\n dup3\n /* \"#utility.yul\":656:695 */\n tag_22\n jump\t// in\ntag_36:\n /* \"#utility.yul\":711:782 */\n tag_37\n /* \"#utility.yul\":775:781 */\n dup2\n /* \"#utility.yul\":770:773 */\n dup6\n /* \"#utility.yul\":711:782 */\n tag_23\n jump\t// in\ntag_37:\n /* \"#utility.yul\":704:782 */\n swap4\n pop\n /* \"#utility.yul\":791:856 */\n tag_38\n /* \"#utility.yul\":849:855 */\n dup2\n /* \"#utility.yul\":844:847 */\n dup6\n /* \"#utility.yul\":837:841 */\n 0x20\n /* \"#utility.yul\":830:835 */\n dup7\n /* \"#utility.yul\":826:842 */\n add\n /* \"#utility.yul\":791:856 */\n tag_24\n jump\t// in\ntag_38:\n /* \"#utility.yul\":881:910 */\n tag_39\n /* \"#utility.yul\":903:909 */\n dup2\n /* \"#utility.yul\":881:910 */\n tag_25\n jump\t// in\ntag_39:\n /* \"#utility.yul\":876:879 */\n dup5\n /* \"#utility.yul\":872:911 */\n add\n /* \"#utility.yul\":865:911 */\n swap2\n pop\n /* \"#utility.yul\":632:917 */\n pop\n /* \"#utility.yul\":540:917 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":923:1049 */\ntag_27:\n /* \"#utility.yul\":960:967 */\n 0x00\n /* \"#utility.yul\":1000:1042 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":993:998 */\n dup3\n /* \"#utility.yul\":989:1043 */\n and\n /* \"#utility.yul\":978:1043 */\n swap1\n pop\n /* \"#utility.yul\":923:1049 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1055:1151 */\ntag_28:\n /* \"#utility.yul\":1092:1099 */\n 0x00\n /* \"#utility.yul\":1121:1145 */\n tag_42\n /* \"#utility.yul\":1139:1144 */\n dup3\n /* \"#utility.yul\":1121:1145 */\n tag_27\n jump\t// in\ntag_42:\n /* \"#utility.yul\":1110:1145 */\n swap1\n pop\n /* \"#utility.yul\":1055:1151 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1157:1275 */\ntag_29:\n /* \"#utility.yul\":1244:1268 */\n tag_44\n /* \"#utility.yul\":1262:1267 */\n dup2\n /* \"#utility.yul\":1244:1268 */\n tag_28\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1239:1242 */\n dup3\n /* \"#utility.yul\":1232:1269 */\n mstore\n /* \"#utility.yul\":1157:1275 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1281:1704 */\ntag_10:\n /* \"#utility.yul\":1422:1426 */\n 0x00\n /* \"#utility.yul\":1460:1462 */\n 0x40\n /* \"#utility.yul\":1449:1458 */\n dup3\n /* \"#utility.yul\":1445:1463 */\n add\n /* \"#utility.yul\":1437:1463 */\n swap1\n pop\n /* \"#utility.yul\":1509:1518 */\n dup2\n /* \"#utility.yul\":1503:1507 */\n dup2\n /* \"#utility.yul\":1499:1519 */\n sub\n /* \"#utility.yul\":1495:1496 */\n 0x00\n /* \"#utility.yul\":1484:1493 */\n dup4\n /* \"#utility.yul\":1480:1497 */\n add\n /* \"#utility.yul\":1473:1520 */\n mstore\n /* \"#utility.yul\":1537:1615 */\n tag_46\n /* \"#utility.yul\":1610:1614 */\n dup2\n /* \"#utility.yul\":1601:1607 */\n dup6\n /* \"#utility.yul\":1537:1615 */\n tag_26\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1529:1615 */\n swap1\n pop\n /* \"#utility.yul\":1625:1697 */\n tag_47\n /* \"#utility.yul\":1693:1695 */\n 0x20\n /* \"#utility.yul\":1682:1691 */\n dup4\n /* \"#utility.yul\":1678:1696 */\n add\n /* \"#utility.yul\":1669:1675 */\n dup5\n /* \"#utility.yul\":1625:1697 */\n tag_29\n jump\t// in\ntag_47:\n /* \"#utility.yul\":1281:1704 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1710:1890 */\ntag_21:\n /* \"#utility.yul\":1758:1835 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1755:1756 */\n 0x00\n /* \"#utility.yul\":1748:1836 */\n mstore\n /* \"#utility.yul\":1855:1859 */\n 0x51\n /* \"#utility.yul\":1852:1853 */\n 0x04\n /* \"#utility.yul\":1845:1860 */\n mstore\n /* \"#utility.yul\":1879:1883 */\n 0x24\n /* \"#utility.yul\":1876:1877 */\n 0x00\n /* \"#utility.yul\":1869:1884 */\n revert\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\ntag_6:\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/2_Owner.sol\":152:1650 contract Owner {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n revert(0x00, 0x00)\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x893d20e8\n eq\n tag_3\n jumpi\n dup1\n 0xa6f9dae1\n eq\n tag_4\n jumpi\n tag_2:\n revert(0x00, 0x00)\n /* \"contracts/2_Owner.sol\":1567:1648 function getOwner() external view returns (address) {... */\n tag_3:\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/2_Owner.sol\":1267:1479 function changeOwner(address newOwner) public isOwner {... */\n tag_4:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n stop\n /* \"contracts/2_Owner.sol\":1567:1648 function getOwner() external view returns (address) {... */\n tag_6:\n /* \"contracts/2_Owner.sol\":1610:1617 address */\n 0x00\n /* \"contracts/2_Owner.sol\":1636:1641 owner */\n 0x00\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1629:1641 return owner */\n swap1\n pop\n /* \"contracts/2_Owner.sol\":1567:1648 function getOwner() external view returns (address) {... */\n swap1\n jump\t// out\n /* \"contracts/2_Owner.sol\":1267:1479 function changeOwner(address newOwner) public isOwner {... */\n tag_12:\n /* \"contracts/2_Owner.sol\":830:835 owner */\n 0x00\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":816:835 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":816:826 msg.sender */\n caller\n /* \"contracts/2_Owner.sol\":816:835 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/2_Owner.sol\":808:859 require(msg.sender == owner, \"Caller is not owner\") */\n tag_17\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_18\n swap1\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_17:\n /* \"contracts/2_Owner.sol\":1359:1360 0 */\n 0x00\n /* \"contracts/2_Owner.sol\":1339:1361 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1339:1347 newOwner */\n dup2\n /* \"contracts/2_Owner.sol\":1339:1361 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/2_Owner.sol\":1331:1406 require(newOwner != address(0), \"New owner should not be the zero address\") */\n tag_21\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_22\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_21:\n /* \"contracts/2_Owner.sol\":1437:1445 newOwner */\n dup1\n /* \"contracts/2_Owner.sol\":1421:1446 OwnerSet(owner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1430:1435 owner */\n 0x00\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1421:1446 OwnerSet(owner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/2_Owner.sol\":1464:1472 newOwner */\n dup1\n /* \"contracts/2_Owner.sol\":1456:1461 owner */\n 0x00\n 0x00\n /* \"contracts/2_Owner.sol\":1456:1472 owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/2_Owner.sol\":1267:1479 function changeOwner(address newOwner) public isOwner {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\n tag_13:\n /* \"hardhat/console.sol\":265:287 address consoleAddress */\n 0x00\n /* \"hardhat/console.sol\":131:173 0x000000000000000000636F6e736F6c652e6c6f67 */\n 0x636f6e736f6c652e6c6f67\n /* \"hardhat/console.sol\":265:305 address consoleAddress = CONSOLE_ADDRESS */\n swap1\n pop\n /* \"hardhat/console.sol\":594:595 0 */\n 0x00\n /* \"hardhat/console.sol\":571:572 0 */\n 0x00\n /* \"hardhat/console.sol\":541:548 payload */\n dup4\n /* \"hardhat/console.sol\":535:549 mload(payload) */\n mload\n /* \"hardhat/console.sol\":510:512 32 */\n 0x20\n /* \"hardhat/console.sol\":501:508 payload */\n dup6\n /* \"hardhat/console.sol\":497:513 add(payload, 32) */\n add\n /* \"hardhat/console.sol\":461:475 consoleAddress */\n dup5\n /* \"hardhat/console.sol\":434:439 gas() */\n gas\n /* \"hardhat/console.sol\":402:613 staticcall(... */\n staticcall\n /* \"hardhat/console.sol\":381:627 pop(... */\n pop\n /* \"hardhat/console.sol\":367:637 {... */\n pop\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\n pop\n jump\t// out\n tag_14:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n jump\t// out\n /* \"#utility.yul\":7:133 */\n tag_27:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":84:126 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":77:82 */\n dup3\n /* \"#utility.yul\":73:127 */\n and\n /* \"#utility.yul\":62:127 */\n swap1\n pop\n /* \"#utility.yul\":7:133 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":139:235 */\n tag_28:\n /* \"#utility.yul\":176:183 */\n 0x00\n /* \"#utility.yul\":205:229 */\n tag_43\n /* \"#utility.yul\":223:228 */\n dup3\n /* \"#utility.yul\":205:229 */\n tag_27\n jump\t// in\n tag_43:\n /* \"#utility.yul\":194:229 */\n swap1\n pop\n /* \"#utility.yul\":139:235 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":241:359 */\n tag_29:\n /* \"#utility.yul\":328:352 */\n tag_45\n /* \"#utility.yul\":346:351 */\n dup2\n /* \"#utility.yul\":328:352 */\n tag_28\n jump\t// in\n tag_45:\n /* \"#utility.yul\":323:326 */\n dup3\n /* \"#utility.yul\":316:353 */\n mstore\n /* \"#utility.yul\":241:359 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":365:587 */\n tag_8:\n /* \"#utility.yul\":458:462 */\n 0x00\n /* \"#utility.yul\":496:498 */\n 0x20\n /* \"#utility.yul\":485:494 */\n dup3\n /* \"#utility.yul\":481:499 */\n add\n /* \"#utility.yul\":473:499 */\n swap1\n pop\n /* \"#utility.yul\":509:580 */\n tag_47\n /* \"#utility.yul\":577:578 */\n 0x00\n /* \"#utility.yul\":566:575 */\n dup4\n /* \"#utility.yul\":562:579 */\n add\n /* \"#utility.yul\":553:559 */\n dup5\n /* \"#utility.yul\":509:580 */\n tag_29\n jump\t// in\n tag_47:\n /* \"#utility.yul\":365:587 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":674:791 */\n tag_31:\n /* \"#utility.yul\":783:784 */\n 0x00\n /* \"#utility.yul\":780:781 */\n 0x00\n /* \"#utility.yul\":773:785 */\n revert\n /* \"#utility.yul\":920:1042 */\n tag_33:\n /* \"#utility.yul\":993:1017 */\n tag_52\n /* \"#utility.yul\":1011:1016 */\n dup2\n /* \"#utility.yul\":993:1017 */\n tag_28\n jump\t// in\n tag_52:\n /* \"#utility.yul\":986:991 */\n dup2\n /* \"#utility.yul\":983:1018 */\n eq\n /* \"#utility.yul\":973:1036 */\n tag_53\n jumpi\n /* \"#utility.yul\":1032:1033 */\n 0x00\n /* \"#utility.yul\":1029:1030 */\n 0x00\n /* \"#utility.yul\":1022:1034 */\n revert\n /* \"#utility.yul\":973:1036 */\n tag_53:\n /* \"#utility.yul\":920:1042 */\n pop\n jump\t// out\n /* \"#utility.yul\":1048:1187 */\n tag_34:\n /* \"#utility.yul\":1094:1099 */\n 0x00\n /* \"#utility.yul\":1132:1138 */\n dup2\n /* \"#utility.yul\":1119:1139 */\n calldataload\n /* \"#utility.yul\":1110:1139 */\n swap1\n pop\n /* \"#utility.yul\":1148:1181 */\n tag_55\n /* \"#utility.yul\":1175:1180 */\n dup2\n /* \"#utility.yul\":1148:1181 */\n tag_33\n jump\t// in\n tag_55:\n /* \"#utility.yul\":1048:1187 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1193:1522 */\n tag_11:\n /* \"#utility.yul\":1252:1258 */\n 0x00\n /* \"#utility.yul\":1301:1303 */\n 0x20\n /* \"#utility.yul\":1289:1298 */\n dup3\n /* \"#utility.yul\":1280:1287 */\n dup5\n /* \"#utility.yul\":1276:1299 */\n sub\n /* \"#utility.yul\":1272:1304 */\n slt\n /* \"#utility.yul\":1269:1388 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":1307:1386 */\n tag_58\n tag_31\n jump\t// in\n tag_58:\n /* \"#utility.yul\":1269:1388 */\n tag_57:\n /* \"#utility.yul\":1427:1428 */\n 0x00\n /* \"#utility.yul\":1452:1505 */\n tag_59\n /* \"#utility.yul\":1497:1504 */\n dup5\n /* \"#utility.yul\":1488:1494 */\n dup3\n /* \"#utility.yul\":1477:1486 */\n dup6\n /* \"#utility.yul\":1473:1495 */\n add\n /* \"#utility.yul\":1452:1505 */\n tag_34\n jump\t// in\n tag_59:\n /* \"#utility.yul\":1442:1505 */\n swap2\n pop\n /* \"#utility.yul\":1398:1515 */\n pop\n /* \"#utility.yul\":1193:1522 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1528:1697 */\n tag_35:\n /* \"#utility.yul\":1612:1623 */\n 0x00\n /* \"#utility.yul\":1646:1652 */\n dup3\n /* \"#utility.yul\":1641:1644 */\n dup3\n /* \"#utility.yul\":1634:1653 */\n mstore\n /* \"#utility.yul\":1686:1690 */\n 0x20\n /* \"#utility.yul\":1681:1684 */\n dup3\n /* \"#utility.yul\":1677:1691 */\n add\n /* \"#utility.yul\":1662:1691 */\n swap1\n pop\n /* \"#utility.yul\":1528:1697 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1703:1872 */\n tag_36:\n /* \"#utility.yul\":1843:1864 */\n 0x43616c6c6572206973206e6f74206f776e657200000000000000000000000000\n /* \"#utility.yul\":1839:1840 */\n 0x00\n /* \"#utility.yul\":1831:1837 */\n dup3\n /* \"#utility.yul\":1827:1841 */\n add\n /* \"#utility.yul\":1820:1865 */\n mstore\n /* \"#utility.yul\":1703:1872 */\n pop\n jump\t// out\n /* \"#utility.yul\":1878:2244 */\n tag_37:\n /* \"#utility.yul\":2020:2023 */\n 0x00\n /* \"#utility.yul\":2041:2108 */\n tag_63\n /* \"#utility.yul\":2105:2107 */\n 0x13\n /* \"#utility.yul\":2100:2103 */\n dup4\n /* \"#utility.yul\":2041:2108 */\n tag_35\n jump\t// in\n tag_63:\n /* \"#utility.yul\":2034:2108 */\n swap2\n pop\n /* \"#utility.yul\":2117:2210 */\n tag_64\n /* \"#utility.yul\":2206:2209 */\n dup3\n /* \"#utility.yul\":2117:2210 */\n tag_36\n jump\t// in\n tag_64:\n /* \"#utility.yul\":2235:2237 */\n 0x20\n /* \"#utility.yul\":2230:2233 */\n dup3\n /* \"#utility.yul\":2226:2238 */\n add\n /* \"#utility.yul\":2219:2238 */\n swap1\n pop\n /* \"#utility.yul\":1878:2244 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2250:2669 */\n tag_19:\n /* \"#utility.yul\":2416:2420 */\n 0x00\n /* \"#utility.yul\":2454:2456 */\n 0x20\n /* \"#utility.yul\":2443:2452 */\n dup3\n /* \"#utility.yul\":2439:2457 */\n add\n /* \"#utility.yul\":2431:2457 */\n swap1\n pop\n /* \"#utility.yul\":2503:2512 */\n dup2\n /* \"#utility.yul\":2497:2501 */\n dup2\n /* \"#utility.yul\":2493:2513 */\n sub\n /* \"#utility.yul\":2489:2490 */\n 0x00\n /* \"#utility.yul\":2478:2487 */\n dup4\n /* \"#utility.yul\":2474:2491 */\n add\n /* \"#utility.yul\":2467:2514 */\n mstore\n /* \"#utility.yul\":2531:2662 */\n tag_66\n /* \"#utility.yul\":2657:2661 */\n dup2\n /* \"#utility.yul\":2531:2662 */\n tag_37\n jump\t// in\n tag_66:\n /* \"#utility.yul\":2523:2662 */\n swap1\n pop\n /* \"#utility.yul\":2250:2669 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2675:2902 */\n tag_38:\n /* \"#utility.yul\":2815:2849 */\n 0x4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f\n /* \"#utility.yul\":2811:2812 */\n 0x00\n /* \"#utility.yul\":2803:2809 */\n dup3\n /* \"#utility.yul\":2799:2813 */\n add\n /* \"#utility.yul\":2792:2850 */\n mstore\n /* \"#utility.yul\":2884:2894 */\n 0x2061646472657373000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2879:2881 */\n 0x20\n /* \"#utility.yul\":2871:2877 */\n dup3\n /* \"#utility.yul\":2867:2882 */\n add\n /* \"#utility.yul\":2860:2895 */\n mstore\n /* \"#utility.yul\":2675:2902 */\n pop\n jump\t// out\n /* \"#utility.yul\":2908:3274 */\n tag_39:\n /* \"#utility.yul\":3050:3053 */\n 0x00\n /* \"#utility.yul\":3071:3138 */\n tag_69\n /* \"#utility.yul\":3135:3137 */\n 0x28\n /* \"#utility.yul\":3130:3133 */\n dup4\n /* \"#utility.yul\":3071:3138 */\n tag_35\n jump\t// in\n tag_69:\n /* \"#utility.yul\":3064:3138 */\n swap2\n pop\n /* \"#utility.yul\":3147:3240 */\n tag_70\n /* \"#utility.yul\":3236:3239 */\n dup3\n /* \"#utility.yul\":3147:3240 */\n tag_38\n jump\t// in\n tag_70:\n /* \"#utility.yul\":3265:3267 */\n 0x40\n /* \"#utility.yul\":3260:3263 */\n dup3\n /* \"#utility.yul\":3256:3268 */\n add\n /* \"#utility.yul\":3249:3268 */\n swap1\n pop\n /* \"#utility.yul\":2908:3274 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3280:3699 */\n tag_23:\n /* \"#utility.yul\":3446:3450 */\n 0x00\n /* \"#utility.yul\":3484:3486 */\n 0x20\n /* \"#utility.yul\":3473:3482 */\n dup3\n /* \"#utility.yul\":3469:3487 */\n add\n /* \"#utility.yul\":3461:3487 */\n swap1\n pop\n /* \"#utility.yul\":3533:3542 */\n dup2\n /* \"#utility.yul\":3527:3531 */\n dup2\n /* \"#utility.yul\":3523:3543 */\n sub\n /* \"#utility.yul\":3519:3520 */\n 0x00\n /* \"#utility.yul\":3508:3517 */\n dup4\n /* \"#utility.yul\":3504:3521 */\n add\n /* \"#utility.yul\":3497:3544 */\n mstore\n /* \"#utility.yul\":3561:3692 */\n tag_72\n /* \"#utility.yul\":3687:3691 */\n dup2\n /* \"#utility.yul\":3561:3692 */\n tag_39\n jump\t// in\n tag_72:\n /* \"#utility.yul\":3553:3692 */\n swap1\n pop\n /* \"#utility.yul\":3280:3699 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3705:3885 */\n tag_26:\n /* \"#utility.yul\":3753:3830 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3750:3751 */\n 0x00\n /* \"#utility.yul\":3743:3831 */\n mstore\n /* \"#utility.yul\":3850:3854 */\n 0x51\n /* \"#utility.yul\":3847:3848 */\n 0x04\n /* \"#utility.yul\":3840:3855 */\n mstore\n /* \"#utility.yul\":3874:3878 */\n 0x24\n /* \"#utility.yul\":3871:3872 */\n 0x00\n /* \"#utility.yul\":3864:3879 */\n revert\n\n auxdata: 0xa2646970667358221220523d1a04cb484ceecf188b2a9bd9c1473eddd3af5a091583b8a69e41b6d4c58364736f6c634300081e0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_49": {
"entryPoint": null,
"id": 49,
"parameterSlots": 0,
"returnSlots": 0
},
"@_castToPure_120": {
"entryPoint": 504,
"id": 120,
"parameterSlots": 1,
"returnSlots": 1
},
"@_sendLogPayloadImplementation_103": {
"entryPoint": 473,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_sendLogPayload_132": {
"entryPoint": 437,
"id": 132,
"parameterSlots": 1,
"returnSlots": 0
},
"@log_867": {
"entryPoint": 275,
"id": 867,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 692,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 588,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed": {
"entryPoint": 707,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 532,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 542,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 675,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 644,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 558,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"panic_error_0x51": {
"entryPoint": 753,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 572,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:1893:2",
"nodeType": "YulBlock",
"src": "0:1893:2",
"statements": [
{
"body": {
"nativeSrc": "66:40:2",
"nodeType": "YulBlock",
"src": "66:40:2",
"statements": [
{
"nativeSrc": "77:22:2",
"nodeType": "YulAssignment",
"src": "77:22:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:2",
"nodeType": "YulIdentifier",
"src": "93:5:2"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:2",
"nodeType": "YulIdentifier",
"src": "87:5:2"
},
"nativeSrc": "87:12:2",
"nodeType": "YulFunctionCall",
"src": "87:12:2"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:2",
"nodeType": "YulIdentifier",
"src": "77:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:2",
"nodeType": "YulTypedName",
"src": "49:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:2",
"nodeType": "YulTypedName",
"src": "59:6:2",
"type": ""
}
],
"src": "7:99:2"
},
{
"body": {
"nativeSrc": "208:73:2",
"nodeType": "YulBlock",
"src": "208:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "225:3:2",
"nodeType": "YulIdentifier",
"src": "225:3:2"
},
{
"name": "length",
"nativeSrc": "230:6:2",
"nodeType": "YulIdentifier",
"src": "230:6:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "218:6:2",
"nodeType": "YulIdentifier",
"src": "218:6:2"
},
"nativeSrc": "218:19:2",
"nodeType": "YulFunctionCall",
"src": "218:19:2"
},
"nativeSrc": "218:19:2",
"nodeType": "YulExpressionStatement",
"src": "218:19:2"
},
{
"nativeSrc": "246:29:2",
"nodeType": "YulAssignment",
"src": "246:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "265:3:2",
"nodeType": "YulIdentifier",
"src": "265:3:2"
},
{
"kind": "number",
"nativeSrc": "270:4:2",
"nodeType": "YulLiteral",
"src": "270:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "261:3:2",
"nodeType": "YulIdentifier",
"src": "261:3:2"
},
"nativeSrc": "261:14:2",
"nodeType": "YulFunctionCall",
"src": "261:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "246:11:2",
"nodeType": "YulIdentifier",
"src": "246:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "112:169:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "180:3:2",
"nodeType": "YulTypedName",
"src": "180:3:2",
"type": ""
},
{
"name": "length",
"nativeSrc": "185:6:2",
"nodeType": "YulTypedName",
"src": "185:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "196:11:2",
"nodeType": "YulTypedName",
"src": "196:11:2",
"type": ""
}
],
"src": "112:169:2"
},
{
"body": {
"nativeSrc": "349:77:2",
"nodeType": "YulBlock",
"src": "349:77:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "366:3:2",
"nodeType": "YulIdentifier",
"src": "366:3:2"
},
{
"name": "src",
"nativeSrc": "371:3:2",
"nodeType": "YulIdentifier",
"src": "371:3:2"
},
{
"name": "length",
"nativeSrc": "376:6:2",
"nodeType": "YulIdentifier",
"src": "376:6:2"
}
],
"functionName": {
"name": "mcopy",
"nativeSrc": "360:5:2",
"nodeType": "YulIdentifier",
"src": "360:5:2"
},
"nativeSrc": "360:23:2",
"nodeType": "YulFunctionCall",
"src": "360:23:2"
},
"nativeSrc": "360:23:2",
"nodeType": "YulExpressionStatement",
"src": "360:23:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "403:3:2",
"nodeType": "YulIdentifier",
"src": "403:3:2"
},
{
"name": "length",
"nativeSrc": "408:6:2",
"nodeType": "YulIdentifier",
"src": "408:6:2"
}
],
"functionName": {
"name": "add",
"nativeSrc": "399:3:2",
"nodeType": "YulIdentifier",
"src": "399:3:2"
},
"nativeSrc": "399:16:2",
"nodeType": "YulFunctionCall",
"src": "399:16:2"
},
{
"kind": "number",
"nativeSrc": "417:1:2",
"nodeType": "YulLiteral",
"src": "417:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "392:6:2",
"nodeType": "YulIdentifier",
"src": "392:6:2"
},
"nativeSrc": "392:27:2",
"nodeType": "YulFunctionCall",
"src": "392:27:2"
},
"nativeSrc": "392:27:2",
"nodeType": "YulExpressionStatement",
"src": "392:27:2"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "287:139:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "331:3:2",
"nodeType": "YulTypedName",
"src": "331:3:2",
"type": ""
},
{
"name": "dst",
"nativeSrc": "336:3:2",
"nodeType": "YulTypedName",
"src": "336:3:2",
"type": ""
},
{
"name": "length",
"nativeSrc": "341:6:2",
"nodeType": "YulTypedName",
"src": "341:6:2",
"type": ""
}
],
"src": "287:139:2"
},
{
"body": {
"nativeSrc": "480:54:2",
"nodeType": "YulBlock",
"src": "480:54:2",
"statements": [
{
"nativeSrc": "490:38:2",
"nodeType": "YulAssignment",
"src": "490:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:2",
"nodeType": "YulIdentifier",
"src": "508:5:2"
},
{
"kind": "number",
"nativeSrc": "515:2:2",
"nodeType": "YulLiteral",
"src": "515:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "504:3:2",
"nodeType": "YulIdentifier",
"src": "504:3:2"
},
"nativeSrc": "504:14:2",
"nodeType": "YulFunctionCall",
"src": "504:14:2"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "524:2:2",
"nodeType": "YulLiteral",
"src": "524:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "520:3:2",
"nodeType": "YulIdentifier",
"src": "520:3:2"
},
"nativeSrc": "520:7:2",
"nodeType": "YulFunctionCall",
"src": "520:7:2"
}
],
"functionName": {
"name": "and",
"nativeSrc": "500:3:2",
"nodeType": "YulIdentifier",
"src": "500:3:2"
},
"nativeSrc": "500:28:2",
"nodeType": "YulFunctionCall",
"src": "500:28:2"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "490:6:2",
"nodeType": "YulIdentifier",
"src": "490:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "432:102:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "463:5:2",
"nodeType": "YulTypedName",
"src": "463:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "473:6:2",
"nodeType": "YulTypedName",
"src": "473:6:2",
"type": ""
}
],
"src": "432:102:2"
},
{
"body": {
"nativeSrc": "632:285:2",
"nodeType": "YulBlock",
"src": "632:285:2",
"statements": [
{
"nativeSrc": "642:53:2",
"nodeType": "YulVariableDeclaration",
"src": "642:53:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "689:5:2",
"nodeType": "YulIdentifier",
"src": "689:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "656:32:2",
"nodeType": "YulIdentifier",
"src": "656:32:2"
},
"nativeSrc": "656:39:2",
"nodeType": "YulFunctionCall",
"src": "656:39:2"
},
"variables": [
{
"name": "length",
"nativeSrc": "646:6:2",
"nodeType": "YulTypedName",
"src": "646:6:2",
"type": ""
}
]
},
{
"nativeSrc": "704:78:2",
"nodeType": "YulAssignment",
"src": "704:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "770:3:2",
"nodeType": "YulIdentifier",
"src": "770:3:2"
},
{
"name": "length",
"nativeSrc": "775:6:2",
"nodeType": "YulIdentifier",
"src": "775:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "711:58:2",
"nodeType": "YulIdentifier",
"src": "711:58:2"
},
"nativeSrc": "711:71:2",
"nodeType": "YulFunctionCall",
"src": "711:71:2"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "704:3:2",
"nodeType": "YulIdentifier",
"src": "704:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "830:5:2",
"nodeType": "YulIdentifier",
"src": "830:5:2"
},
{
"kind": "number",
"nativeSrc": "837:4:2",
"nodeType": "YulLiteral",
"src": "837:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "826:3:2",
"nodeType": "YulIdentifier",
"src": "826:3:2"
},
"nativeSrc": "826:16:2",
"nodeType": "YulFunctionCall",
"src": "826:16:2"
},
{
"name": "pos",
"nativeSrc": "844:3:2",
"nodeType": "YulIdentifier",
"src": "844:3:2"
},
{
"name": "length",
"nativeSrc": "849:6:2",
"nodeType": "YulIdentifier",
"src": "849:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "791:34:2",
"nodeType": "YulIdentifier",
"src": "791:34:2"
},
"nativeSrc": "791:65:2",
"nodeType": "YulFunctionCall",
"src": "791:65:2"
},
"nativeSrc": "791:65:2",
"nodeType": "YulExpressionStatement",
"src": "791:65:2"
},
{
"nativeSrc": "865:46:2",
"nodeType": "YulAssignment",
"src": "865:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "876:3:2",
"nodeType": "YulIdentifier",
"src": "876:3:2"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "903:6:2",
"nodeType": "YulIdentifier",
"src": "903:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "881:21:2",
"nodeType": "YulIdentifier",
"src": "881:21:2"
},
"nativeSrc": "881:29:2",
"nodeType": "YulFunctionCall",
"src": "881:29:2"
}
],
"functionName": {
"name": "add",
"nativeSrc": "872:3:2",
"nodeType": "YulIdentifier",
"src": "872:3:2"
},
"nativeSrc": "872:39:2",
"nodeType": "YulFunctionCall",
"src": "872:39:2"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "865:3:2",
"nodeType": "YulIdentifier",
"src": "865:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "540:377:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "613:5:2",
"nodeType": "YulTypedName",
"src": "613:5:2",
"type": ""
},
{
"name": "pos",
"nativeSrc": "620:3:2",
"nodeType": "YulTypedName",
"src": "620:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "628:3:2",
"nodeType": "YulTypedName",
"src": "628:3:2",
"type": ""
}
],
"src": "540:377:2"
},
{
"body": {
"nativeSrc": "968:81:2",
"nodeType": "YulBlock",
"src": "968:81:2",
"statements": [
{
"nativeSrc": "978:65:2",
"nodeType": "YulAssignment",
"src": "978:65:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "993:5:2",
"nodeType": "YulIdentifier",
"src": "993:5:2"
},
{
"kind": "number",
"nativeSrc": "1000:42:2",
"nodeType": "YulLiteral",
"src": "1000:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "989:3:2",
"nodeType": "YulIdentifier",
"src": "989:3:2"
},
"nativeSrc": "989:54:2",
"nodeType": "YulFunctionCall",
"src": "989:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "978:7:2",
"nodeType": "YulIdentifier",
"src": "978:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "923:126:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "950:5:2",
"nodeType": "YulTypedName",
"src": "950:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "960:7:2",
"nodeType": "YulTypedName",
"src": "960:7:2",
"type": ""
}
],
"src": "923:126:2"
},
{
"body": {
"nativeSrc": "1100:51:2",
"nodeType": "YulBlock",
"src": "1100:51:2",
"statements": [
{
"nativeSrc": "1110:35:2",
"nodeType": "YulAssignment",
"src": "1110:35:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1139:5:2",
"nodeType": "YulIdentifier",
"src": "1139:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1121:17:2",
"nodeType": "YulIdentifier",
"src": "1121:17:2"
},
"nativeSrc": "1121:24:2",
"nodeType": "YulFunctionCall",
"src": "1121:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1110:7:2",
"nodeType": "YulIdentifier",
"src": "1110:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1055:96:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1082:5:2",
"nodeType": "YulTypedName",
"src": "1082:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1092:7:2",
"nodeType": "YulTypedName",
"src": "1092:7:2",
"type": ""
}
],
"src": "1055:96:2"
},
{
"body": {
"nativeSrc": "1222:53:2",
"nodeType": "YulBlock",
"src": "1222:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1239:3:2",
"nodeType": "YulIdentifier",
"src": "1239:3:2"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1262:5:2",
"nodeType": "YulIdentifier",
"src": "1262:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1244:17:2",
"nodeType": "YulIdentifier",
"src": "1244:17:2"
},
"nativeSrc": "1244:24:2",
"nodeType": "YulFunctionCall",
"src": "1244:24:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1232:6:2",
"nodeType": "YulIdentifier",
"src": "1232:6:2"
},
"nativeSrc": "1232:37:2",
"nodeType": "YulFunctionCall",
"src": "1232:37:2"
},
"nativeSrc": "1232:37:2",
"nodeType": "YulExpressionStatement",
"src": "1232:37:2"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1157:118:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1210:5:2",
"nodeType": "YulTypedName",
"src": "1210:5:2",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1217:3:2",
"nodeType": "YulTypedName",
"src": "1217:3:2",
"type": ""
}
],
"src": "1157:118:2"
},
{
"body": {
"nativeSrc": "1427:277:2",
"nodeType": "YulBlock",
"src": "1427:277:2",
"statements": [
{
"nativeSrc": "1437:26:2",
"nodeType": "YulAssignment",
"src": "1437:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1449:9:2",
"nodeType": "YulIdentifier",
"src": "1449:9:2"
},
{
"kind": "number",
"nativeSrc": "1460:2:2",
"nodeType": "YulLiteral",
"src": "1460:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1445:3:2",
"nodeType": "YulIdentifier",
"src": "1445:3:2"
},
"nativeSrc": "1445:18:2",
"nodeType": "YulFunctionCall",
"src": "1445:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1437:4:2",
"nodeType": "YulIdentifier",
"src": "1437:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1484:9:2",
"nodeType": "YulIdentifier",
"src": "1484:9:2"
},
{
"kind": "number",
"nativeSrc": "1495:1:2",
"nodeType": "YulLiteral",
"src": "1495:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1480:3:2",
"nodeType": "YulIdentifier",
"src": "1480:3:2"
},
"nativeSrc": "1480:17:2",
"nodeType": "YulFunctionCall",
"src": "1480:17:2"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "1503:4:2",
"nodeType": "YulIdentifier",
"src": "1503:4:2"
},
{
"name": "headStart",
"nativeSrc": "1509:9:2",
"nodeType": "YulIdentifier",
"src": "1509:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1499:3:2",
"nodeType": "YulIdentifier",
"src": "1499:3:2"
},
"nativeSrc": "1499:20:2",
"nodeType": "YulFunctionCall",
"src": "1499:20:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1473:6:2",
"nodeType": "YulIdentifier",
"src": "1473:6:2"
},
"nativeSrc": "1473:47:2",
"nodeType": "YulFunctionCall",
"src": "1473:47:2"
},
"nativeSrc": "1473:47:2",
"nodeType": "YulExpressionStatement",
"src": "1473:47:2"
},
{
"nativeSrc": "1529:86:2",
"nodeType": "YulAssignment",
"src": "1529:86:2",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1601:6:2",
"nodeType": "YulIdentifier",
"src": "1601:6:2"
},
{
"name": "tail",
"nativeSrc": "1610:4:2",
"nodeType": "YulIdentifier",
"src": "1610:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1537:63:2",
"nodeType": "YulIdentifier",
"src": "1537:63:2"
},
"nativeSrc": "1537:78:2",
"nodeType": "YulFunctionCall",
"src": "1537:78:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1529:4:2",
"nodeType": "YulIdentifier",
"src": "1529:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "1669:6:2",
"nodeType": "YulIdentifier",
"src": "1669:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1682:9:2",
"nodeType": "YulIdentifier",
"src": "1682:9:2"
},
{
"kind": "number",
"nativeSrc": "1693:2:2",
"nodeType": "YulLiteral",
"src": "1693:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1678:3:2",
"nodeType": "YulIdentifier",
"src": "1678:3:2"
},
"nativeSrc": "1678:18:2",
"nodeType": "YulFunctionCall",
"src": "1678:18:2"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1625:43:2",
"nodeType": "YulIdentifier",
"src": "1625:43:2"
},
"nativeSrc": "1625:72:2",
"nodeType": "YulFunctionCall",
"src": "1625:72:2"
},
"nativeSrc": "1625:72:2",
"nodeType": "YulExpressionStatement",
"src": "1625:72:2"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed",
"nativeSrc": "1281:423:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1391:9:2",
"nodeType": "YulTypedName",
"src": "1391:9:2",
"type": ""
},
{
"name": "value1",
"nativeSrc": "1403:6:2",
"nodeType": "YulTypedName",
"src": "1403:6:2",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1411:6:2",
"nodeType": "YulTypedName",
"src": "1411:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1422:4:2",
"nodeType": "YulTypedName",
"src": "1422:4:2",
"type": ""
}
],
"src": "1281:423:2"
},
{
"body": {
"nativeSrc": "1738:152:2",
"nodeType": "YulBlock",
"src": "1738:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1755:1:2",
"nodeType": "YulLiteral",
"src": "1755:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1758:77:2",
"nodeType": "YulLiteral",
"src": "1758:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1748:6:2",
"nodeType": "YulIdentifier",
"src": "1748:6:2"
},
"nativeSrc": "1748:88:2",
"nodeType": "YulFunctionCall",
"src": "1748:88:2"
},
"nativeSrc": "1748:88:2",
"nodeType": "YulExpressionStatement",
"src": "1748:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1852:1:2",
"nodeType": "YulLiteral",
"src": "1852:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1855:4:2",
"nodeType": "YulLiteral",
"src": "1855:4:2",
"type": "",
"value": "0x51"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1845:6:2",
"nodeType": "YulIdentifier",
"src": "1845:6:2"
},
"nativeSrc": "1845:15:2",
"nodeType": "YulFunctionCall",
"src": "1845:15:2"
},
"nativeSrc": "1845:15:2",
"nodeType": "YulExpressionStatement",
"src": "1845:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1876:1:2",
"nodeType": "YulLiteral",
"src": "1876:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1879:4:2",
"nodeType": "YulLiteral",
"src": "1879:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1869:6:2",
"nodeType": "YulIdentifier",
"src": "1869:6:2"
},
"nativeSrc": "1869:15:2",
"nodeType": "YulFunctionCall",
"src": "1869:15:2"
},
"nativeSrc": "1869:15:2",
"nodeType": "YulExpressionStatement",
"src": "1869:15:2"
}
]
},
"name": "panic_error_0x51",
"nativeSrc": "1710:180:2",
"nodeType": "YulFunctionDefinition",
"src": "1710:180:2"
}
]
},
"contents": "{\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\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801561000f575f5ffd5b506100556040518060400160405280601b81526020017f4f776e657220636f6e7472616374206465706c6f7965642062793a00000000008152503361011360201b60201c565b335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a361031e565b6101b182826040516024016101299291906102c3565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506101b560201b60201c565b5050565b6101d6816101d16101d960201b610251176101f860201b60201c565b60201c565b50565b5f6a636f6e736f6c652e6c6f6790505f5f835160208501845afa505050565b61020a60201b61027017819050919050565b6102126102f1565b565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61025682610214565b610260818561021e565b935061027081856020860161022e565b6102798161023c565b840191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102ad82610284565b9050919050565b6102bd816102a3565b82525050565b5f6040820190508181035f8301526102db818561024c565b90506102ea60208301846102b4565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52605160045260245ffd5b6104948061032b5f395ff3fe608060405234801561000f575f5ffd5b5060043610610034575f3560e01c8063893d20e814610038578063a6f9dae114610056575b5f5ffd5b610040610072565b60405161004d91906102b9565b60405180910390f35b610070600480360381019061006b9190610300565b610099565b005b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011e90610385565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018c90610413565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6a636f6e736f6c652e6c6f6790505f5f835160208501845afa505050565b610278610431565b565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102a38261027a565b9050919050565b6102b381610299565b82525050565b5f6020820190506102cc5f8301846102aa565b92915050565b5f5ffd5b6102df81610299565b81146102e9575f5ffd5b50565b5f813590506102fa816102d6565b92915050565b5f60208284031215610315576103146102d2565b5b5f610322848285016102ec565b91505092915050565b5f82825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e6572000000000000000000000000005f82015250565b5f61036f60138361032b565b915061037a8261033b565b602082019050919050565b5f6020820190508181035f83015261039c81610363565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f5f8201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b5f6103fd60288361032b565b9150610408826103a3565b604082019050919050565b5f6020820190508181035f83015261042a816103f1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52605160045260245ffdfea2646970667358221220523d1a04cb484ceecf188b2a9bd9c1473eddd3af5a091583b8a69e41b6d4c58364736f6c634300081e0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x55 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4F776E657220636F6E7472616374206465706C6F7965642062793A0000000000 DUP2 MSTORE POP CALLER PUSH2 0x113 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST CALLER PUSH0 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x31E JUMP JUMPDEST PUSH2 0x1B1 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x129 SWAP3 SWAP2 SWAP1 PUSH2 0x2C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x1B5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1D6 DUP2 PUSH2 0x1D1 PUSH2 0x1D9 PUSH1 0x20 SHL PUSH2 0x251 OR PUSH2 0x1F8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x20 SHR JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x20A PUSH1 0x20 SHL PUSH2 0x270 OR DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x212 PUSH2 0x2F1 JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x256 DUP3 PUSH2 0x214 JUMP JUMPDEST PUSH2 0x260 DUP2 DUP6 PUSH2 0x21E JUMP JUMPDEST SWAP4 POP PUSH2 0x270 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x22E JUMP JUMPDEST PUSH2 0x279 DUP2 PUSH2 0x23C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2AD DUP3 PUSH2 0x284 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BD DUP2 PUSH2 0x2A3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2DB DUP2 DUP6 PUSH2 0x24C JUMP JUMPDEST SWAP1 POP PUSH2 0x2EA PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2B4 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x494 DUP1 PUSH2 0x32B PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x300 JUMP JUMPDEST PUSH2 0x99 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x127 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E SWAP1 PUSH2 0x385 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x195 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18C SWAP1 PUSH2 0x413 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH0 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x278 PUSH2 0x431 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2A3 DUP3 PUSH2 0x27A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B3 DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CC PUSH0 DUP4 ADD DUP5 PUSH2 0x2AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2DF DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FA DUP2 PUSH2 0x2D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x315 JUMPI PUSH2 0x314 PUSH2 0x2D2 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x322 DUP5 DUP3 DUP6 ADD PUSH2 0x2EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x36F PUSH1 0x13 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x37A DUP3 PUSH2 0x33B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x39C DUP2 PUSH2 0x363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3FD PUSH1 0x28 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x408 DUP3 PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x42A DUP2 PUSH2 0x3F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE RETURNDATASIZE BYTE DIV 0xCB BASEFEE 0x4C RETURNCONTRACT 0xCF XOR DUP12 0x2A SWAP12 0xD9 0xC1 SELFBALANCE RETURNDATACOPY 0xDD 0xD3 0xAF GAS MULMOD ISZERO DUP4 0xB8 0xA6 SWAP15 COINBASE 0xB6 0xD4 0xC5 DUP4 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ",
"sourceMap": "152:1498:0:-:0;;;942:234;;;;;;;;;;966:54;;;;;;;;;;;;;;;;;;1009:10;966:11;;;:54;;:::i;:::-;1038:10;1030:5;;:18;;;;;;;;;;;;;;;;;;1163:5;;;;;;;;;;;1142:27;;1159:1;1142:27;;;;;;;;;;;;152:1498;;7470:145:1;7537:71;7600:2;7604;7553:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7537:15;;;:71;;:::i;:::-;7470:145;;:::o;851:129::-;922:51;965:7;922:42;934:29;;;;;922:11;;;:42;;:::i;:::-;:51;;:::i;:::-;851:129;:::o;180:463::-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;649:196::-;748:33;;;;;825:4;816:13;;649:196;;;:::o;152:1498:0:-;;;:::i;:::-;:::o;7:99:2:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:126::-;960:7;1000:42;993:5;989:54;978:65;;923:126;;;:::o;1055:96::-;1092:7;1121:24;1139:5;1121:24;:::i;:::-;1110:35;;1055:96;;;:::o;1157:118::-;1244:24;1262:5;1244:24;:::i;:::-;1239:3;1232:37;1157:118;;:::o;1281:423::-;1422:4;1460:2;1449:9;1445:18;1437:26;;1509:9;1503:4;1499:20;1495:1;1484:9;1480:17;1473:47;1537:78;1610:4;1601:6;1537:78;:::i;:::-;1529:86;;1625:72;1693:2;1682:9;1678:18;1669:6;1625:72;:::i;:::-;1281:423;;;;;:::o;1710:180::-;1758:77;1755:1;1748:88;1855:4;1852:1;1845:15;1879:4;1876:1;1869:15;152:1498:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_sendLogPayloadImplementation_103": {
"entryPoint": 593,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@changeOwner_77": {
"entryPoint": 153,
"id": 77,
"parameterSlots": 1,
"returnSlots": 0
},
"@getOwner_86": {
"entryPoint": 114,
"id": 86,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 748,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 768,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 682,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 867,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 697,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 901,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1043,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 811,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 634,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x51": {
"entryPoint": 1073,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 722,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d": {
"entryPoint": 827,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42": {
"entryPoint": 931,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 726,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:3888:2",
"nodeType": "YulBlock",
"src": "0:3888:2",
"statements": [
{
"body": {
"nativeSrc": "52:81:2",
"nodeType": "YulBlock",
"src": "52:81:2",
"statements": [
{
"nativeSrc": "62:65:2",
"nodeType": "YulAssignment",
"src": "62:65:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "77:5:2",
"nodeType": "YulIdentifier",
"src": "77:5:2"
},
{
"kind": "number",
"nativeSrc": "84:42:2",
"nodeType": "YulLiteral",
"src": "84:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "73:3:2",
"nodeType": "YulIdentifier",
"src": "73:3:2"
},
"nativeSrc": "73:54:2",
"nodeType": "YulFunctionCall",
"src": "73:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:2",
"nodeType": "YulIdentifier",
"src": "62:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "7:126:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:2",
"nodeType": "YulTypedName",
"src": "34:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:2",
"nodeType": "YulTypedName",
"src": "44:7:2",
"type": ""
}
],
"src": "7:126:2"
},
{
"body": {
"nativeSrc": "184:51:2",
"nodeType": "YulBlock",
"src": "184:51:2",
"statements": [
{
"nativeSrc": "194:35:2",
"nodeType": "YulAssignment",
"src": "194:35:2",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "223:5:2",
"nodeType": "YulIdentifier",
"src": "223:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "205:17:2",
"nodeType": "YulIdentifier",
"src": "205:17:2"
},
"nativeSrc": "205:24:2",
"nodeType": "YulFunctionCall",
"src": "205:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "194:7:2",
"nodeType": "YulIdentifier",
"src": "194:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "139:96:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "166:5:2",
"nodeType": "YulTypedName",
"src": "166:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "176:7:2",
"nodeType": "YulTypedName",
"src": "176:7:2",
"type": ""
}
],
"src": "139:96:2"
},
{
"body": {
"nativeSrc": "306:53:2",
"nodeType": "YulBlock",
"src": "306:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "323:3:2",
"nodeType": "YulIdentifier",
"src": "323:3:2"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "346:5:2",
"nodeType": "YulIdentifier",
"src": "346:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "328:17:2",
"nodeType": "YulIdentifier",
"src": "328:17:2"
},
"nativeSrc": "328:24:2",
"nodeType": "YulFunctionCall",
"src": "328:24:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "316:6:2",
"nodeType": "YulIdentifier",
"src": "316:6:2"
},
"nativeSrc": "316:37:2",
"nodeType": "YulFunctionCall",
"src": "316:37:2"
},
"nativeSrc": "316:37:2",
"nodeType": "YulExpressionStatement",
"src": "316:37:2"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "241:118:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "294:5:2",
"nodeType": "YulTypedName",
"src": "294:5:2",
"type": ""
},
{
"name": "pos",
"nativeSrc": "301:3:2",
"nodeType": "YulTypedName",
"src": "301:3:2",
"type": ""
}
],
"src": "241:118:2"
},
{
"body": {
"nativeSrc": "463:124:2",
"nodeType": "YulBlock",
"src": "463:124:2",
"statements": [
{
"nativeSrc": "473:26:2",
"nodeType": "YulAssignment",
"src": "473:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "485:9:2",
"nodeType": "YulIdentifier",
"src": "485:9:2"
},
{
"kind": "number",
"nativeSrc": "496:2:2",
"nodeType": "YulLiteral",
"src": "496:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "481:3:2",
"nodeType": "YulIdentifier",
"src": "481:3:2"
},
"nativeSrc": "481:18:2",
"nodeType": "YulFunctionCall",
"src": "481:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "473:4:2",
"nodeType": "YulIdentifier",
"src": "473:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "553:6:2",
"nodeType": "YulIdentifier",
"src": "553:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "566:9:2",
"nodeType": "YulIdentifier",
"src": "566:9:2"
},
{
"kind": "number",
"nativeSrc": "577:1:2",
"nodeType": "YulLiteral",
"src": "577:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "562:3:2",
"nodeType": "YulIdentifier",
"src": "562:3:2"
},
"nativeSrc": "562:17:2",
"nodeType": "YulFunctionCall",
"src": "562:17:2"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "509:43:2",
"nodeType": "YulIdentifier",
"src": "509:43:2"
},
"nativeSrc": "509:71:2",
"nodeType": "YulFunctionCall",
"src": "509:71:2"
},
"nativeSrc": "509:71:2",
"nodeType": "YulExpressionStatement",
"src": "509:71:2"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "365:222:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "435:9:2",
"nodeType": "YulTypedName",
"src": "435:9:2",
"type": ""
},
{
"name": "value0",
"nativeSrc": "447:6:2",
"nodeType": "YulTypedName",
"src": "447:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "458:4:2",
"nodeType": "YulTypedName",
"src": "458:4:2",
"type": ""
}
],
"src": "365:222:2"
},
{
"body": {
"nativeSrc": "633:35:2",
"nodeType": "YulBlock",
"src": "633:35:2",
"statements": [
{
"nativeSrc": "643:19:2",
"nodeType": "YulAssignment",
"src": "643:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "659:2:2",
"nodeType": "YulLiteral",
"src": "659:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "653:5:2",
"nodeType": "YulIdentifier",
"src": "653:5:2"
},
"nativeSrc": "653:9:2",
"nodeType": "YulFunctionCall",
"src": "653:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "643:6:2",
"nodeType": "YulIdentifier",
"src": "643:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "593:75:2",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "626:6:2",
"nodeType": "YulTypedName",
"src": "626:6:2",
"type": ""
}
],
"src": "593:75:2"
},
{
"body": {
"nativeSrc": "763:28:2",
"nodeType": "YulBlock",
"src": "763:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "780:1:2",
"nodeType": "YulLiteral",
"src": "780:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "783:1:2",
"nodeType": "YulLiteral",
"src": "783:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "773:6:2",
"nodeType": "YulIdentifier",
"src": "773:6:2"
},
"nativeSrc": "773:12:2",
"nodeType": "YulFunctionCall",
"src": "773:12:2"
},
"nativeSrc": "773:12:2",
"nodeType": "YulExpressionStatement",
"src": "773:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "674:117:2",
"nodeType": "YulFunctionDefinition",
"src": "674:117:2"
},
{
"body": {
"nativeSrc": "886:28:2",
"nodeType": "YulBlock",
"src": "886:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "903:1:2",
"nodeType": "YulLiteral",
"src": "903:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "906:1:2",
"nodeType": "YulLiteral",
"src": "906:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "896:6:2",
"nodeType": "YulIdentifier",
"src": "896:6:2"
},
"nativeSrc": "896:12:2",
"nodeType": "YulFunctionCall",
"src": "896:12:2"
},
"nativeSrc": "896:12:2",
"nodeType": "YulExpressionStatement",
"src": "896:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "797:117:2",
"nodeType": "YulFunctionDefinition",
"src": "797:117:2"
},
{
"body": {
"nativeSrc": "963:79:2",
"nodeType": "YulBlock",
"src": "963:79:2",
"statements": [
{
"body": {
"nativeSrc": "1020:16:2",
"nodeType": "YulBlock",
"src": "1020:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1029:1:2",
"nodeType": "YulLiteral",
"src": "1029:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1032:1:2",
"nodeType": "YulLiteral",
"src": "1032:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1022:6:2",
"nodeType": "YulIdentifier",
"src": "1022:6:2"
},
"nativeSrc": "1022:12:2",
"nodeType": "YulFunctionCall",
"src": "1022:12:2"
},
"nativeSrc": "1022:12:2",
"nodeType": "YulExpressionStatement",
"src": "1022:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "986:5:2",
"nodeType": "YulIdentifier",
"src": "986:5:2"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1011:5:2",
"nodeType": "YulIdentifier",
"src": "1011:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "993:17:2",
"nodeType": "YulIdentifier",
"src": "993:17:2"
},
"nativeSrc": "993:24:2",
"nodeType": "YulFunctionCall",
"src": "993:24:2"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "983:2:2",
"nodeType": "YulIdentifier",
"src": "983:2:2"
},
"nativeSrc": "983:35:2",
"nodeType": "YulFunctionCall",
"src": "983:35:2"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "976:6:2",
"nodeType": "YulIdentifier",
"src": "976:6:2"
},
"nativeSrc": "976:43:2",
"nodeType": "YulFunctionCall",
"src": "976:43:2"
},
"nativeSrc": "973:63:2",
"nodeType": "YulIf",
"src": "973:63:2"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "920:122:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "956:5:2",
"nodeType": "YulTypedName",
"src": "956:5:2",
"type": ""
}
],
"src": "920:122:2"
},
{
"body": {
"nativeSrc": "1100:87:2",
"nodeType": "YulBlock",
"src": "1100:87:2",
"statements": [
{
"nativeSrc": "1110:29:2",
"nodeType": "YulAssignment",
"src": "1110:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "1132:6:2",
"nodeType": "YulIdentifier",
"src": "1132:6:2"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "1119:12:2",
"nodeType": "YulIdentifier",
"src": "1119:12:2"
},
"nativeSrc": "1119:20:2",
"nodeType": "YulFunctionCall",
"src": "1119:20:2"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1110:5:2",
"nodeType": "YulIdentifier",
"src": "1110:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1175:5:2",
"nodeType": "YulIdentifier",
"src": "1175:5:2"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "1148:26:2",
"nodeType": "YulIdentifier",
"src": "1148:26:2"
},
"nativeSrc": "1148:33:2",
"nodeType": "YulFunctionCall",
"src": "1148:33:2"
},
"nativeSrc": "1148:33:2",
"nodeType": "YulExpressionStatement",
"src": "1148:33:2"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "1048:139:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1078:6:2",
"nodeType": "YulTypedName",
"src": "1078:6:2",
"type": ""
},
{
"name": "end",
"nativeSrc": "1086:3:2",
"nodeType": "YulTypedName",
"src": "1086:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1094:5:2",
"nodeType": "YulTypedName",
"src": "1094:5:2",
"type": ""
}
],
"src": "1048:139:2"
},
{
"body": {
"nativeSrc": "1259:263:2",
"nodeType": "YulBlock",
"src": "1259:263:2",
"statements": [
{
"body": {
"nativeSrc": "1305:83:2",
"nodeType": "YulBlock",
"src": "1305:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1307:77:2",
"nodeType": "YulIdentifier",
"src": "1307:77:2"
},
"nativeSrc": "1307:79:2",
"nodeType": "YulFunctionCall",
"src": "1307:79:2"
},
"nativeSrc": "1307:79:2",
"nodeType": "YulExpressionStatement",
"src": "1307:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1280:7:2",
"nodeType": "YulIdentifier",
"src": "1280:7:2"
},
{
"name": "headStart",
"nativeSrc": "1289:9:2",
"nodeType": "YulIdentifier",
"src": "1289:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1276:3:2",
"nodeType": "YulIdentifier",
"src": "1276:3:2"
},
"nativeSrc": "1276:23:2",
"nodeType": "YulFunctionCall",
"src": "1276:23:2"
},
{
"kind": "number",
"nativeSrc": "1301:2:2",
"nodeType": "YulLiteral",
"src": "1301:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1272:3:2",
"nodeType": "YulIdentifier",
"src": "1272:3:2"
},
"nativeSrc": "1272:32:2",
"nodeType": "YulFunctionCall",
"src": "1272:32:2"
},
"nativeSrc": "1269:119:2",
"nodeType": "YulIf",
"src": "1269:119:2"
},
{
"nativeSrc": "1398:117:2",
"nodeType": "YulBlock",
"src": "1398:117:2",
"statements": [
{
"nativeSrc": "1413:15:2",
"nodeType": "YulVariableDeclaration",
"src": "1413:15:2",
"value": {
"kind": "number",
"nativeSrc": "1427:1:2",
"nodeType": "YulLiteral",
"src": "1427:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1417:6:2",
"nodeType": "YulTypedName",
"src": "1417:6:2",
"type": ""
}
]
},
{
"nativeSrc": "1442:63:2",
"nodeType": "YulAssignment",
"src": "1442:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1477:9:2",
"nodeType": "YulIdentifier",
"src": "1477:9:2"
},
{
"name": "offset",
"nativeSrc": "1488:6:2",
"nodeType": "YulIdentifier",
"src": "1488:6:2"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1473:3:2",
"nodeType": "YulIdentifier",
"src": "1473:3:2"
},
"nativeSrc": "1473:22:2",
"nodeType": "YulFunctionCall",
"src": "1473:22:2"
},
{
"name": "dataEnd",
"nativeSrc": "1497:7:2",
"nodeType": "YulIdentifier",
"src": "1497:7:2"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "1452:20:2",
"nodeType": "YulIdentifier",
"src": "1452:20:2"
},
"nativeSrc": "1452:53:2",
"nodeType": "YulFunctionCall",
"src": "1452:53:2"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1442:6:2",
"nodeType": "YulIdentifier",
"src": "1442:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "1193:329:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1229:9:2",
"nodeType": "YulTypedName",
"src": "1229:9:2",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1240:7:2",
"nodeType": "YulTypedName",
"src": "1240:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1252:6:2",
"nodeType": "YulTypedName",
"src": "1252:6:2",
"type": ""
}
],
"src": "1193:329:2"
},
{
"body": {
"nativeSrc": "1624:73:2",
"nodeType": "YulBlock",
"src": "1624:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1641:3:2",
"nodeType": "YulIdentifier",
"src": "1641:3:2"
},
{
"name": "length",
"nativeSrc": "1646:6:2",
"nodeType": "YulIdentifier",
"src": "1646:6:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1634:6:2",
"nodeType": "YulIdentifier",
"src": "1634:6:2"
},
"nativeSrc": "1634:19:2",
"nodeType": "YulFunctionCall",
"src": "1634:19:2"
},
"nativeSrc": "1634:19:2",
"nodeType": "YulExpressionStatement",
"src": "1634:19:2"
},
{
"nativeSrc": "1662:29:2",
"nodeType": "YulAssignment",
"src": "1662:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1681:3:2",
"nodeType": "YulIdentifier",
"src": "1681:3:2"
},
{
"kind": "number",
"nativeSrc": "1686:4:2",
"nodeType": "YulLiteral",
"src": "1686:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1677:3:2",
"nodeType": "YulIdentifier",
"src": "1677:3:2"
},
"nativeSrc": "1677:14:2",
"nodeType": "YulFunctionCall",
"src": "1677:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "1662:11:2",
"nodeType": "YulIdentifier",
"src": "1662:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "1528:169:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "1596:3:2",
"nodeType": "YulTypedName",
"src": "1596:3:2",
"type": ""
},
{
"name": "length",
"nativeSrc": "1601:6:2",
"nodeType": "YulTypedName",
"src": "1601:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "1612:11:2",
"nodeType": "YulTypedName",
"src": "1612:11:2",
"type": ""
}
],
"src": "1528:169:2"
},
{
"body": {
"nativeSrc": "1809:63:2",
"nodeType": "YulBlock",
"src": "1809:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1831:6:2",
"nodeType": "YulIdentifier",
"src": "1831:6:2"
},
{
"kind": "number",
"nativeSrc": "1839:1:2",
"nodeType": "YulLiteral",
"src": "1839:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1827:3:2",
"nodeType": "YulIdentifier",
"src": "1827:3:2"
},
"nativeSrc": "1827:14:2",
"nodeType": "YulFunctionCall",
"src": "1827:14:2"
},
{
"hexValue": "43616c6c6572206973206e6f74206f776e6572",
"kind": "string",
"nativeSrc": "1843:21:2",
"nodeType": "YulLiteral",
"src": "1843:21:2",
"type": "",
"value": "Caller is not owner"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1820:6:2",
"nodeType": "YulIdentifier",
"src": "1820:6:2"
},
"nativeSrc": "1820:45:2",
"nodeType": "YulFunctionCall",
"src": "1820:45:2"
},
"nativeSrc": "1820:45:2",
"nodeType": "YulExpressionStatement",
"src": "1820:45:2"
}
]
},
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nativeSrc": "1703:169:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1801:6:2",
"nodeType": "YulTypedName",
"src": "1801:6:2",
"type": ""
}
],
"src": "1703:169:2"
},
{
"body": {
"nativeSrc": "2024:220:2",
"nodeType": "YulBlock",
"src": "2024:220:2",
"statements": [
{
"nativeSrc": "2034:74:2",
"nodeType": "YulAssignment",
"src": "2034:74:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2100:3:2",
"nodeType": "YulIdentifier",
"src": "2100:3:2"
},
{
"kind": "number",
"nativeSrc": "2105:2:2",
"nodeType": "YulLiteral",
"src": "2105:2:2",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "2041:58:2",
"nodeType": "YulIdentifier",
"src": "2041:58:2"
},
"nativeSrc": "2041:67:2",
"nodeType": "YulFunctionCall",
"src": "2041:67:2"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "2034:3:2",
"nodeType": "YulIdentifier",
"src": "2034:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2206:3:2",
"nodeType": "YulIdentifier",
"src": "2206:3:2"
}
],
"functionName": {
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nativeSrc": "2117:88:2",
"nodeType": "YulIdentifier",
"src": "2117:88:2"
},
"nativeSrc": "2117:93:2",
"nodeType": "YulFunctionCall",
"src": "2117:93:2"
},
"nativeSrc": "2117:93:2",
"nodeType": "YulExpressionStatement",
"src": "2117:93:2"
},
{
"nativeSrc": "2219:19:2",
"nodeType": "YulAssignment",
"src": "2219:19:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2230:3:2",
"nodeType": "YulIdentifier",
"src": "2230:3:2"
},
{
"kind": "number",
"nativeSrc": "2235:2:2",
"nodeType": "YulLiteral",
"src": "2235:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2226:3:2",
"nodeType": "YulIdentifier",
"src": "2226:3:2"
},
"nativeSrc": "2226:12:2",
"nodeType": "YulFunctionCall",
"src": "2226:12:2"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "2219:3:2",
"nodeType": "YulIdentifier",
"src": "2219:3:2"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1878:366:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "2012:3:2",
"nodeType": "YulTypedName",
"src": "2012:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "2020:3:2",
"nodeType": "YulTypedName",
"src": "2020:3:2",
"type": ""
}
],
"src": "1878:366:2"
},
{
"body": {
"nativeSrc": "2421:248:2",
"nodeType": "YulBlock",
"src": "2421:248:2",
"statements": [
{
"nativeSrc": "2431:26:2",
"nodeType": "YulAssignment",
"src": "2431:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2443:9:2",
"nodeType": "YulIdentifier",
"src": "2443:9:2"
},
{
"kind": "number",
"nativeSrc": "2454:2:2",
"nodeType": "YulLiteral",
"src": "2454:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2439:3:2",
"nodeType": "YulIdentifier",
"src": "2439:3:2"
},
"nativeSrc": "2439:18:2",
"nodeType": "YulFunctionCall",
"src": "2439:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2431:4:2",
"nodeType": "YulIdentifier",
"src": "2431:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2478:9:2",
"nodeType": "YulIdentifier",
"src": "2478:9:2"
},
{
"kind": "number",
"nativeSrc": "2489:1:2",
"nodeType": "YulLiteral",
"src": "2489:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2474:3:2",
"nodeType": "YulIdentifier",
"src": "2474:3:2"
},
"nativeSrc": "2474:17:2",
"nodeType": "YulFunctionCall",
"src": "2474:17:2"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "2497:4:2",
"nodeType": "YulIdentifier",
"src": "2497:4:2"
},
{
"name": "headStart",
"nativeSrc": "2503:9:2",
"nodeType": "YulIdentifier",
"src": "2503:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "2493:3:2",
"nodeType": "YulIdentifier",
"src": "2493:3:2"
},
"nativeSrc": "2493:20:2",
"nodeType": "YulFunctionCall",
"src": "2493:20:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2467:6:2",
"nodeType": "YulIdentifier",
"src": "2467:6:2"
},
"nativeSrc": "2467:47:2",
"nodeType": "YulFunctionCall",
"src": "2467:47:2"
},
"nativeSrc": "2467:47:2",
"nodeType": "YulExpressionStatement",
"src": "2467:47:2"
},
{
"nativeSrc": "2523:139:2",
"nodeType": "YulAssignment",
"src": "2523:139:2",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "2657:4:2",
"nodeType": "YulIdentifier",
"src": "2657:4:2"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "2531:124:2",
"nodeType": "YulIdentifier",
"src": "2531:124:2"
},
"nativeSrc": "2531:131:2",
"nodeType": "YulFunctionCall",
"src": "2531:131:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2523:4:2",
"nodeType": "YulIdentifier",
"src": "2523:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "2250:419:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2401:9:2",
"nodeType": "YulTypedName",
"src": "2401:9:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2416:4:2",
"nodeType": "YulTypedName",
"src": "2416:4:2",
"type": ""
}
],
"src": "2250:419:2"
},
{
"body": {
"nativeSrc": "2781:121:2",
"nodeType": "YulBlock",
"src": "2781:121:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2803:6:2",
"nodeType": "YulIdentifier",
"src": "2803:6:2"
},
{
"kind": "number",
"nativeSrc": "2811:1:2",
"nodeType": "YulLiteral",
"src": "2811:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2799:3:2",
"nodeType": "YulIdentifier",
"src": "2799:3:2"
},
"nativeSrc": "2799:14:2",
"nodeType": "YulFunctionCall",
"src": "2799:14:2"
},
{
"hexValue": "4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f",
"kind": "string",
"nativeSrc": "2815:34:2",
"nodeType": "YulLiteral",
"src": "2815:34:2",
"type": "",
"value": "New owner should not be the zero"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2792:6:2",
"nodeType": "YulIdentifier",
"src": "2792:6:2"
},
"nativeSrc": "2792:58:2",
"nodeType": "YulFunctionCall",
"src": "2792:58:2"
},
"nativeSrc": "2792:58:2",
"nodeType": "YulExpressionStatement",
"src": "2792:58:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2871:6:2",
"nodeType": "YulIdentifier",
"src": "2871:6:2"
},
{
"kind": "number",
"nativeSrc": "2879:2:2",
"nodeType": "YulLiteral",
"src": "2879:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2867:3:2",
"nodeType": "YulIdentifier",
"src": "2867:3:2"
},
"nativeSrc": "2867:15:2",
"nodeType": "YulFunctionCall",
"src": "2867:15:2"
},
{
"hexValue": "2061646472657373",
"kind": "string",
"nativeSrc": "2884:10:2",
"nodeType": "YulLiteral",
"src": "2884:10:2",
"type": "",
"value": " address"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2860:6:2",
"nodeType": "YulIdentifier",
"src": "2860:6:2"
},
"nativeSrc": "2860:35:2",
"nodeType": "YulFunctionCall",
"src": "2860:35:2"
},
"nativeSrc": "2860:35:2",
"nodeType": "YulExpressionStatement",
"src": "2860:35:2"
}
]
},
"name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42",
"nativeSrc": "2675:227:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "2773:6:2",
"nodeType": "YulTypedName",
"src": "2773:6:2",
"type": ""
}
],
"src": "2675:227:2"
},
{
"body": {
"nativeSrc": "3054:220:2",
"nodeType": "YulBlock",
"src": "3054:220:2",
"statements": [
{
"nativeSrc": "3064:74:2",
"nodeType": "YulAssignment",
"src": "3064:74:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3130:3:2",
"nodeType": "YulIdentifier",
"src": "3130:3:2"
},
{
"kind": "number",
"nativeSrc": "3135:2:2",
"nodeType": "YulLiteral",
"src": "3135:2:2",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "3071:58:2",
"nodeType": "YulIdentifier",
"src": "3071:58:2"
},
"nativeSrc": "3071:67:2",
"nodeType": "YulFunctionCall",
"src": "3071:67:2"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "3064:3:2",
"nodeType": "YulIdentifier",
"src": "3064:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3236:3:2",
"nodeType": "YulIdentifier",
"src": "3236:3:2"
}
],
"functionName": {
"name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42",
"nativeSrc": "3147:88:2",
"nodeType": "YulIdentifier",
"src": "3147:88:2"
},
"nativeSrc": "3147:93:2",
"nodeType": "YulFunctionCall",
"src": "3147:93:2"
},
"nativeSrc": "3147:93:2",
"nodeType": "YulExpressionStatement",
"src": "3147:93:2"
},
{
"nativeSrc": "3249:19:2",
"nodeType": "YulAssignment",
"src": "3249:19:2",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3260:3:2",
"nodeType": "YulIdentifier",
"src": "3260:3:2"
},
{
"kind": "number",
"nativeSrc": "3265:2:2",
"nodeType": "YulLiteral",
"src": "3265:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3256:3:2",
"nodeType": "YulIdentifier",
"src": "3256:3:2"
},
"nativeSrc": "3256:12:2",
"nodeType": "YulFunctionCall",
"src": "3256:12:2"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "3249:3:2",
"nodeType": "YulIdentifier",
"src": "3249:3:2"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack",
"nativeSrc": "2908:366:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "3042:3:2",
"nodeType": "YulTypedName",
"src": "3042:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "3050:3:2",
"nodeType": "YulTypedName",
"src": "3050:3:2",
"type": ""
}
],
"src": "2908:366:2"
},
{
"body": {
"nativeSrc": "3451:248:2",
"nodeType": "YulBlock",
"src": "3451:248:2",
"statements": [
{
"nativeSrc": "3461:26:2",
"nodeType": "YulAssignment",
"src": "3461:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3473:9:2",
"nodeType": "YulIdentifier",
"src": "3473:9:2"
},
{
"kind": "number",
"nativeSrc": "3484:2:2",
"nodeType": "YulLiteral",
"src": "3484:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3469:3:2",
"nodeType": "YulIdentifier",
"src": "3469:3:2"
},
"nativeSrc": "3469:18:2",
"nodeType": "YulFunctionCall",
"src": "3469:18:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3461:4:2",
"nodeType": "YulIdentifier",
"src": "3461:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3508:9:2",
"nodeType": "YulIdentifier",
"src": "3508:9:2"
},
{
"kind": "number",
"nativeSrc": "3519:1:2",
"nodeType": "YulLiteral",
"src": "3519:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3504:3:2",
"nodeType": "YulIdentifier",
"src": "3504:3:2"
},
"nativeSrc": "3504:17:2",
"nodeType": "YulFunctionCall",
"src": "3504:17:2"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "3527:4:2",
"nodeType": "YulIdentifier",
"src": "3527:4:2"
},
{
"name": "headStart",
"nativeSrc": "3533:9:2",
"nodeType": "YulIdentifier",
"src": "3533:9:2"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3523:3:2",
"nodeType": "YulIdentifier",
"src": "3523:3:2"
},
"nativeSrc": "3523:20:2",
"nodeType": "YulFunctionCall",
"src": "3523:20:2"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3497:6:2",
"nodeType": "YulIdentifier",
"src": "3497:6:2"
},
"nativeSrc": "3497:47:2",
"nodeType": "YulFunctionCall",
"src": "3497:47:2"
},
"nativeSrc": "3497:47:2",
"nodeType": "YulExpressionStatement",
"src": "3497:47:2"
},
{
"nativeSrc": "3553:139:2",
"nodeType": "YulAssignment",
"src": "3553:139:2",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "3687:4:2",
"nodeType": "YulIdentifier",
"src": "3687:4:2"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack",
"nativeSrc": "3561:124:2",
"nodeType": "YulIdentifier",
"src": "3561:124:2"
},
"nativeSrc": "3561:131:2",
"nodeType": "YulFunctionCall",
"src": "3561:131:2"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3553:4:2",
"nodeType": "YulIdentifier",
"src": "3553:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "3280:419:2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3431:9:2",
"nodeType": "YulTypedName",
"src": "3431:9:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3446:4:2",
"nodeType": "YulTypedName",
"src": "3446:4:2",
"type": ""
}
],
"src": "3280:419:2"
},
{
"body": {
"nativeSrc": "3733:152:2",
"nodeType": "YulBlock",
"src": "3733:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3750:1:2",
"nodeType": "YulLiteral",
"src": "3750:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3753:77:2",
"nodeType": "YulLiteral",
"src": "3753:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3743:6:2",
"nodeType": "YulIdentifier",
"src": "3743:6:2"
},
"nativeSrc": "3743:88:2",
"nodeType": "YulFunctionCall",
"src": "3743:88:2"
},
"nativeSrc": "3743:88:2",
"nodeType": "YulExpressionStatement",
"src": "3743:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3847:1:2",
"nodeType": "YulLiteral",
"src": "3847:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "3850:4:2",
"nodeType": "YulLiteral",
"src": "3850:4:2",
"type": "",
"value": "0x51"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3840:6:2",
"nodeType": "YulIdentifier",
"src": "3840:6:2"
},
"nativeSrc": "3840:15:2",
"nodeType": "YulFunctionCall",
"src": "3840:15:2"
},
"nativeSrc": "3840:15:2",
"nodeType": "YulExpressionStatement",
"src": "3840:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3871:1:2",
"nodeType": "YulLiteral",
"src": "3871:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3874:4:2",
"nodeType": "YulLiteral",
"src": "3874:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3864:6:2",
"nodeType": "YulIdentifier",
"src": "3864:6:2"
},
"nativeSrc": "3864:15:2",
"nodeType": "YulFunctionCall",
"src": "3864:15:2"
},
"nativeSrc": "3864:15:2",
"nodeType": "YulExpressionStatement",
"src": "3864:15:2"
}
]
},
"name": "panic_error_0x51",
"nativeSrc": "3705:180:2",
"nodeType": "YulFunctionDefinition",
"src": "3705:180:2"
}
]
},
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_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_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(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_address(add(headStart, offset), dataEnd)\n }\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 store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not owner\")\n\n }\n\n function abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(memPtr) {\n\n mstore(add(memPtr, 0), \"New owner should not be the zero\")\n\n mstore(add(memPtr, 32), \" address\")\n\n }\n\n function abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f5ffd5b5060043610610034575f3560e01c8063893d20e814610038578063a6f9dae114610056575b5f5ffd5b610040610072565b60405161004d91906102b9565b60405180910390f35b610070600480360381019061006b9190610300565b610099565b005b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011e90610385565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018c90610413565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6a636f6e736f6c652e6c6f6790505f5f835160208501845afa505050565b610278610431565b565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102a38261027a565b9050919050565b6102b381610299565b82525050565b5f6020820190506102cc5f8301846102aa565b92915050565b5f5ffd5b6102df81610299565b81146102e9575f5ffd5b50565b5f813590506102fa816102d6565b92915050565b5f60208284031215610315576103146102d2565b5b5f610322848285016102ec565b91505092915050565b5f82825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e6572000000000000000000000000005f82015250565b5f61036f60138361032b565b915061037a8261033b565b602082019050919050565b5f6020820190508181035f83015261039c81610363565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f5f8201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b5f6103fd60288361032b565b9150610408826103a3565b604082019050919050565b5f6020820190508181035f83015261042a816103f1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52605160045260245ffdfea2646970667358221220523d1a04cb484ceecf188b2a9bd9c1473eddd3af5a091583b8a69e41b6d4c58364736f6c634300081e0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x300 JUMP JUMPDEST PUSH2 0x99 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x127 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E SWAP1 PUSH2 0x385 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x195 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18C SWAP1 PUSH2 0x413 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH0 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x278 PUSH2 0x431 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2A3 DUP3 PUSH2 0x27A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B3 DUP2 PUSH2 0x299 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CC PUSH0 DUP4 ADD DUP5 PUSH2 0x2AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2DF DUP2 PUSH2 0x299 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FA DUP2 PUSH2 0x2D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x315 JUMPI PUSH2 0x314 PUSH2 0x2D2 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x322 DUP5 DUP3 DUP6 ADD PUSH2 0x2EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x36F PUSH1 0x13 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x37A DUP3 PUSH2 0x33B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x39C DUP2 PUSH2 0x363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3FD PUSH1 0x28 DUP4 PUSH2 0x32B JUMP JUMPDEST SWAP2 POP PUSH2 0x408 DUP3 PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x42A DUP2 PUSH2 0x3F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE RETURNDATASIZE BYTE DIV 0xCB BASEFEE 0x4C RETURNCONTRACT 0xCF XOR DUP12 0x2A SWAP12 0xD9 0xC1 SELFBALANCE RETURNDATACOPY 0xDD 0xD3 0xAF GAS MULMOD ISZERO DUP4 0xB8 0xA6 SWAP15 COINBASE 0xB6 0xD4 0xC5 DUP4 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ",
"sourceMap": "152:1498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1267:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1567:81;1610:7;1636:5;;;;;;;;;;;1629:12;;1567:81;:::o;1267:212::-;830:5;;;;;;;;;;;816:19;;:10;:19;;;808:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:1:::1;1339:22;;:8;:22;;::::0;1331:75:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1437:8;1421:25;;1430:5;;;;;;;;;;;1421:25;;;;;;;;;;;;1464:8;1456:5;;:16;;;;;;;;;;;;;;;;;;1267:212:::0;:::o;180:463:1:-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;-1:-1:-1:-;;;:::i;:::-;:::o;7:126:2:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;674:117::-;783:1;780;773:12;920:122;993:24;1011:5;993:24;:::i;:::-;986:5;983:35;973:63;;1032:1;1029;1022:12;973:63;920:122;:::o;1048:139::-;1094:5;1132:6;1119:20;1110:29;;1148:33;1175:5;1148:33;:::i;:::-;1048:139;;;;:::o;1193:329::-;1252:6;1301:2;1289:9;1280:7;1276:23;1272:32;1269:119;;;1307:79;;:::i;:::-;1269:119;1427:1;1452:53;1497:7;1488:6;1477:9;1473:22;1452:53;:::i;:::-;1442:63;;1398:117;1193:329;;;;:::o;1528:169::-;1612:11;1646:6;1641:3;1634:19;1686:4;1681:3;1677:14;1662:29;;1528:169;;;;:::o;1703:::-;1843:21;1839:1;1831:6;1827:14;1820:45;1703:169;:::o;1878:366::-;2020:3;2041:67;2105:2;2100:3;2041:67;:::i;:::-;2034:74;;2117:93;2206:3;2117:93;:::i;:::-;2235:2;2230:3;2226:12;2219:19;;1878:366;;;:::o;2250:419::-;2416:4;2454:2;2443:9;2439:18;2431:26;;2503:9;2497:4;2493:20;2489:1;2478:9;2474:17;2467:47;2531:131;2657:4;2531:131;:::i;:::-;2523:139;;2250:419;;;:::o;2675:227::-;2815:34;2811:1;2803:6;2799:14;2792:58;2884:10;2879:2;2871:6;2867:15;2860:35;2675:227;:::o;2908:366::-;3050:3;3071:67;3135:2;3130:3;3071:67;:::i;:::-;3064:74;;3147:93;3236:3;3147:93;:::i;:::-;3265:2;3260:3;3256:12;3249:19;;2908:366;;;:::o;3280:419::-;3446:4;3484:2;3473:9;3469:18;3461:26;;3533:9;3527:4;3523:20;3519:1;3508:9;3504:17;3497:47;3561:131;3687:4;3561:131;:::i;:::-;3553:139;;3280:419;;;:::o;3705:180::-;3753:77;3750:1;3743:88;3850:4;3847:1;3840:15;3874:4;3871:1;3864:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "234400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"changeOwner(address)": "30595",
"getOwner()": "2492"
}
},
"legacyAssembly": {
".code": [
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 152,
"end": 1650,
"name": "MSTORE",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "DUP1",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "ISZERO",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 942,
"end": 1176,
"name": "JUMPI",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 942,
"end": 1176,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 942,
"end": 1176,
"name": "REVERT",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 942,
"end": 1176,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 942,
"end": 1176,
"name": "POP",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 966,
"end": 1020,
"name": "MLOAD",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "DUP1",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 966,
"end": 1020,
"name": "ADD",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 966,
"end": 1020,
"name": "MSTORE",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "DUP1",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "1B"
},
{
"begin": 966,
"end": 1020,
"name": "DUP2",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "MSTORE",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 966,
"end": 1020,
"name": "ADD",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "4F776E657220636F6E7472616374206465706C6F7965642062793A0000000000"
},
{
"begin": 966,
"end": 1020,
"name": "DUP2",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "MSTORE",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "POP",
"source": 0
},
{
"begin": 1009,
"end": 1019,
"name": "CALLER",
"source": 0
},
{
"begin": 966,
"end": 977,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 966,
"end": 977,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 966,
"end": 977,
"name": "SHL",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 966,
"end": 1020,
"name": "SHR",
"source": 0
},
{
"begin": 966,
"end": 1020,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 966,
"end": 1020,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 966,
"end": 1020,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1038,
"end": 1048,
"name": "CALLER",
"source": 0
},
{
"begin": 1030,
"end": 1035,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1030,
"end": 1035,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1030,
"end": 1048,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1030,
"end": 1048,
"name": "EXP",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "DUP2",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "SLOAD",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "DUP2",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1030,
"end": 1048,
"name": "MUL",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "NOT",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "AND",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "SWAP1",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "DUP4",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1030,
"end": 1048,
"name": "AND",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "MUL",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "OR",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "SWAP1",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "SSTORE",
"source": 0
},
{
"begin": 1030,
"end": 1048,
"name": "POP",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1163,
"end": 1168,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1163,
"end": 1168,
"name": "SWAP1",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "SLOAD",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "SWAP1",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1163,
"end": 1168,
"name": "EXP",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "SWAP1",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "DIV",
"source": 0
},
{
"begin": 1163,
"end": 1168,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1163,
"end": 1168,
"name": "AND",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1142,
"end": 1169,
"name": "AND",
"source": 0
},
{
"begin": 1159,
"end": 1160,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1142,
"end": 1169,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1142,
"end": 1169,
"name": "AND",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "PUSH",
"source": 0,
"value": "342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735"
},
{
"begin": 1142,
"end": 1169,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1142,
"end": 1169,
"name": "MLOAD",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1142,
"end": 1169,
"name": "MLOAD",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "DUP1",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "SWAP2",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "SUB",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "SWAP1",
"source": 0
},
{
"begin": 1142,
"end": 1169,
"name": "LOG3",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 152,
"end": 1650,
"name": "JUMP",
"source": 0
},
{
"begin": 7470,
"end": 7615,
"name": "tag",
"source": 1,
"value": "5"
},
{
"begin": 7470,
"end": 7615,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7537,
"end": 7608,
"name": "PUSH [tag]",
"source": 1,
"value": "8"
},
{
"begin": 7600,
"end": 7602,
"name": "DUP3",
"source": 1
},
{
"begin": 7604,
"end": 7606,
"name": "DUP3",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7553,
"end": 7607,
"name": "MLOAD",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 7553,
"end": 7607,
"name": "ADD",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH [tag]",
"source": 1,
"value": "9"
},
{
"begin": 7553,
"end": 7607,
"name": "SWAP3",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "SWAP2",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "SWAP1",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH [tag]",
"source": 1,
"value": "10"
},
{
"begin": 7553,
"end": 7607,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "tag",
"source": 1,
"value": "9"
},
{
"begin": 7553,
"end": 7607,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7553,
"end": 7607,
"name": "MLOAD",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 7553,
"end": 7607,
"name": "DUP2",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "DUP4",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "SUB",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "SUB",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "DUP2",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "MSTORE",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "SWAP1",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7553,
"end": 7607,
"name": "MSTORE",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "319AF33300000000000000000000000000000000000000000000000000000000"
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 7553,
"end": 7607,
"name": "NOT",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "AND",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 7553,
"end": 7607,
"name": "DUP3",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "ADD",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "DUP1",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "MLOAD",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 7553,
"end": 7607,
"name": "DUP4",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "DUP2",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "DUP4",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "AND",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "OR",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "DUP4",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "MSTORE",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "POP",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "POP",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "POP",
"source": 1
},
{
"begin": 7553,
"end": 7607,
"name": "POP",
"source": 1
},
{
"begin": 7537,
"end": 7552,
"name": "PUSH [tag]",
"source": 1,
"value": "11"
},
{
"begin": 7537,
"end": 7552,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 7537,
"end": 7552,
"name": "SHL",
"source": 1
},
{
"begin": 7537,
"end": 7608,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 7537,
"end": 7608,
"name": "SHR",
"source": 1
},
{
"begin": 7537,
"end": 7608,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 7537,
"end": 7608,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 7537,
"end": 7608,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7470,
"end": 7615,
"name": "POP",
"source": 1
},
{
"begin": 7470,
"end": 7615,
"name": "POP",
"source": 1
},
{
"begin": 7470,
"end": 7615,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 851,
"end": 980,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 851,
"end": 980,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 922,
"end": 973,
"name": "PUSH [tag]",
"source": 1,
"value": "13"
},
{
"begin": 965,
"end": 972,
"name": "DUP2",
"source": 1
},
{
"begin": 922,
"end": 964,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 934,
"end": 963,
"name": "PUSH [tag]",
"source": 1,
"value": "15"
},
{
"begin": 934,
"end": 963,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 934,
"end": 963,
"name": "SHL",
"source": 1
},
{
"begin": 934,
"end": 963,
"name": "PUSH [tag]",
"source": 1,
"value": "18446744073709551629"
},
{
"begin": 934,
"end": 963,
"name": "OR",
"source": 1
},
{
"begin": 922,
"end": 933,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 922,
"end": 933,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 922,
"end": 933,
"name": "SHL",
"source": 1
},
{
"begin": 922,
"end": 964,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 922,
"end": 964,
"name": "SHR",
"source": 1
},
{
"begin": 922,
"end": 964,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 922,
"end": 964,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 922,
"end": 964,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 922,
"end": 973,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 922,
"end": 973,
"name": "SHR",
"source": 1
},
{
"begin": 922,
"end": 973,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 922,
"end": 973,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 922,
"end": 973,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 851,
"end": 980,
"name": "POP",
"source": 1
},
{
"begin": 851,
"end": 980,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 180,
"end": 643,
"name": "tag",
"source": 1,
"value": "15"
},
{
"begin": 180,
"end": 643,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 265,
"end": 287,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 131,
"end": 173,
"name": "PUSH",
"source": 1,
"value": "636F6E736F6C652E6C6F67"
},
{
"begin": 265,
"end": 305,
"name": "SWAP1",
"source": 1
},
{
"begin": 265,
"end": 305,
"name": "POP",
"source": 1
},
{
"begin": 594,
"end": 595,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 571,
"end": 572,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 541,
"end": 548,
"name": "DUP4",
"source": 1
},
{
"begin": 535,
"end": 549,
"name": "MLOAD",
"source": 1
},
{
"begin": 510,
"end": 512,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 501,
"end": 508,
"name": "DUP6",
"source": 1
},
{
"begin": 497,
"end": 513,
"name": "ADD",
"source": 1
},
{
"begin": 461,
"end": 475,
"name": "DUP5",
"source": 1
},
{
"begin": 434,
"end": 439,
"name": "GAS",
"source": 1
},
{
"begin": 402,
"end": 613,
"name": "STATICCALL",
"source": 1
},
{
"begin": 381,
"end": 627,
"name": "POP",
"source": 1
},
{
"begin": 367,
"end": 637,
"name": "POP",
"source": 1
},
{
"begin": 180,
"end": 643,
"name": "POP",
"source": 1
},
{
"begin": 180,
"end": 643,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 649,
"end": 845,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 649,
"end": 845,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 748,
"end": 781,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 748,
"end": 781,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 748,
"end": 781,
"name": "SHL",
"source": 1
},
{
"begin": 748,
"end": 781,
"name": "PUSH [tag]",
"source": 1,
"value": "18446744073709551630"
},
{
"begin": 748,
"end": 781,
"name": "OR",
"source": 1
},
{
"begin": 825,
"end": 829,
"name": "DUP2",
"source": 1
},
{
"begin": 816,
"end": 829,
"name": "SWAP1",
"source": 1
},
{
"begin": 816,
"end": 829,
"name": "POP",
"source": 1
},
{
"begin": 649,
"end": 845,
"name": "SWAP2",
"source": 1
},
{
"begin": 649,
"end": 845,
"name": "SWAP1",
"source": 1
},
{
"begin": 649,
"end": 845,
"name": "POP",
"source": 1
},
{
"begin": 649,
"end": 845,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 152,
"end": 1650,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 152,
"end": 1650,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 152,
"end": 1650,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 7,
"end": 106,
"name": "tag",
"source": 2,
"value": "22"
},
{
"begin": 7,
"end": 106,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 59,
"end": 65,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 93,
"end": 98,
"name": "DUP2",
"source": 2
},
{
"begin": 87,
"end": 99,
"name": "MLOAD",
"source": 2
},
{
"begin": 77,
"end": 99,
"name": "SWAP1",
"source": 2
},
{
"begin": 77,
"end": 99,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 106,
"name": "SWAP2",
"source": 2
},
{
"begin": 7,
"end": 106,
"name": "SWAP1",
"source": 2
},
{
"begin": 7,
"end": 106,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 106,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 112,
"end": 281,
"name": "tag",
"source": 2,
"value": "23"
},
{
"begin": 112,
"end": 281,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 196,
"end": 207,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 230,
"end": 236,
"name": "DUP3",
"source": 2
},
{
"begin": 225,
"end": 228,
"name": "DUP3",
"source": 2
},
{
"begin": 218,
"end": 237,
"name": "MSTORE",
"source": 2
},
{
"begin": 270,
"end": 274,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 265,
"end": 268,
"name": "DUP3",
"source": 2
},
{
"begin": 261,
"end": 275,
"name": "ADD",
"source": 2
},
{
"begin": 246,
"end": 275,
"name": "SWAP1",
"source": 2
},
{
"begin": 246,
"end": 275,
"name": "POP",
"source": 2
},
{
"begin": 112,
"end": 281,
"name": "SWAP3",
"source": 2
},
{
"begin": 112,
"end": 281,
"name": "SWAP2",
"source": 2
},
{
"begin": 112,
"end": 281,
"name": "POP",
"source": 2
},
{
"begin": 112,
"end": 281,
"name": "POP",
"source": 2
},
{
"begin": 112,
"end": 281,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 287,
"end": 426,
"name": "tag",
"source": 2,
"value": "24"
},
{
"begin": 287,
"end": 426,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 376,
"end": 382,
"name": "DUP3",
"source": 2
},
{
"begin": 371,
"end": 374,
"name": "DUP2",
"source": 2
},
{
"begin": 366,
"end": 369,
"name": "DUP4",
"source": 2
},
{
"begin": 360,
"end": 383,
"name": "MCOPY",
"source": 2
},
{
"begin": 417,
"end": 418,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 408,
"end": 414,
"name": "DUP4",
"source": 2
},
{
"begin": 403,
"end": 406,
"name": "DUP4",
"source": 2
},
{
"begin": 399,
"end": 415,
"name": "ADD",
"source": 2
},
{
"begin": 392,
"end": 419,
"name": "MSTORE",
"source": 2
},
{
"begin": 287,
"end": 426,
"name": "POP",
"source": 2
},
{
"begin": 287,
"end": 426,
"name": "POP",
"source": 2
},
{
"begin": 287,
"end": 426,
"name": "POP",
"source": 2
},
{
"begin": 287,
"end": 426,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 432,
"end": 534,
"name": "tag",
"source": 2,
"value": "25"
},
{
"begin": 432,
"end": 534,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 473,
"end": 479,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 524,
"end": 526,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 520,
"end": 527,
"name": "NOT",
"source": 2
},
{
"begin": 515,
"end": 517,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 508,
"end": 513,
"name": "DUP4",
"source": 2
},
{
"begin": 504,
"end": 518,
"name": "ADD",
"source": 2
},
{
"begin": 500,
"end": 528,
"name": "AND",
"source": 2
},
{
"begin": 490,
"end": 528,
"name": "SWAP1",
"source": 2
},
{
"begin": 490,
"end": 528,
"name": "POP",
"source": 2
},
{
"begin": 432,
"end": 534,
"name": "SWAP2",
"source": 2
},
{
"begin": 432,
"end": 534,
"name": "SWAP1",
"source": 2
},
{
"begin": 432,
"end": 534,
"name": "POP",
"source": 2
},
{
"begin": 432,
"end": 534,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 540,
"end": 917,
"name": "tag",
"source": 2,
"value": "26"
},
{
"begin": 540,
"end": 917,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 628,
"end": 631,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 656,
"end": 695,
"name": "PUSH [tag]",
"source": 2,
"value": "36"
},
{
"begin": 689,
"end": 694,
"name": "DUP3",
"source": 2
},
{
"begin": 656,
"end": 695,
"name": "PUSH [tag]",
"source": 2,
"value": "22"
},
{
"begin": 656,
"end": 695,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 656,
"end": 695,
"name": "tag",
"source": 2,
"value": "36"
},
{
"begin": 656,
"end": 695,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 711,
"end": 782,
"name": "PUSH [tag]",
"source": 2,
"value": "37"
},
{
"begin": 775,
"end": 781,
"name": "DUP2",
"source": 2
},
{
"begin": 770,
"end": 773,
"name": "DUP6",
"source": 2
},
{
"begin": 711,
"end": 782,
"name": "PUSH [tag]",
"source": 2,
"value": "23"
},
{
"begin": 711,
"end": 782,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 711,
"end": 782,
"name": "tag",
"source": 2,
"value": "37"
},
{
"begin": 711,
"end": 782,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 704,
"end": 782,
"name": "SWAP4",
"source": 2
},
{
"begin": 704,
"end": 782,
"name": "POP",
"source": 2
},
{
"begin": 791,
"end": 856,
"name": "PUSH [tag]",
"source": 2,
"value": "38"
},
{
"begin": 849,
"end": 855,
"name": "DUP2",
"source": 2
},
{
"begin": 844,
"end": 847,
"name": "DUP6",
"source": 2
},
{
"begin": 837,
"end": 841,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 830,
"end": 835,
"name": "DUP7",
"source": 2
},
{
"begin": 826,
"end": 842,
"name": "ADD",
"source": 2
},
{
"begin": 791,
"end": 856,
"name": "PUSH [tag]",
"source": 2,
"value": "24"
},
{
"begin": 791,
"end": 856,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 791,
"end": 856,
"name": "tag",
"source": 2,
"value": "38"
},
{
"begin": 791,
"end": 856,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 881,
"end": 910,
"name": "PUSH [tag]",
"source": 2,
"value": "39"
},
{
"begin": 903,
"end": 909,
"name": "DUP2",
"source": 2
},
{
"begin": 881,
"end": 910,
"name": "PUSH [tag]",
"source": 2,
"value": "25"
},
{
"begin": 881,
"end": 910,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 881,
"end": 910,
"name": "tag",
"source": 2,
"value": "39"
},
{
"begin": 881,
"end": 910,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 876,
"end": 879,
"name": "DUP5",
"source": 2
},
{
"begin": 872,
"end": 911,
"name": "ADD",
"source": 2
},
{
"begin": 865,
"end": 911,
"name": "SWAP2",
"source": 2
},
{
"begin": 865,
"end": 911,
"name": "POP",
"source": 2
},
{
"begin": 632,
"end": 917,
"name": "POP",
"source": 2
},
{
"begin": 540,
"end": 917,
"name": "SWAP3",
"source": 2
},
{
"begin": 540,
"end": 917,
"name": "SWAP2",
"source": 2
},
{
"begin": 540,
"end": 917,
"name": "POP",
"source": 2
},
{
"begin": 540,
"end": 917,
"name": "POP",
"source": 2
},
{
"begin": 540,
"end": 917,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 923,
"end": 1049,
"name": "tag",
"source": 2,
"value": "27"
},
{
"begin": 923,
"end": 1049,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 960,
"end": 967,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1000,
"end": 1042,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 993,
"end": 998,
"name": "DUP3",
"source": 2
},
{
"begin": 989,
"end": 1043,
"name": "AND",
"source": 2
},
{
"begin": 978,
"end": 1043,
"name": "SWAP1",
"source": 2
},
{
"begin": 978,
"end": 1043,
"name": "POP",
"source": 2
},
{
"begin": 923,
"end": 1049,
"name": "SWAP2",
"source": 2
},
{
"begin": 923,
"end": 1049,
"name": "SWAP1",
"source": 2
},
{
"begin": 923,
"end": 1049,
"name": "POP",
"source": 2
},
{
"begin": 923,
"end": 1049,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1055,
"end": 1151,
"name": "tag",
"source": 2,
"value": "28"
},
{
"begin": 1055,
"end": 1151,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1092,
"end": 1099,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1121,
"end": 1145,
"name": "PUSH [tag]",
"source": 2,
"value": "42"
},
{
"begin": 1139,
"end": 1144,
"name": "DUP3",
"source": 2
},
{
"begin": 1121,
"end": 1145,
"name": "PUSH [tag]",
"source": 2,
"value": "27"
},
{
"begin": 1121,
"end": 1145,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1121,
"end": 1145,
"name": "tag",
"source": 2,
"value": "42"
},
{
"begin": 1121,
"end": 1145,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1110,
"end": 1145,
"name": "SWAP1",
"source": 2
},
{
"begin": 1110,
"end": 1145,
"name": "POP",
"source": 2
},
{
"begin": 1055,
"end": 1151,
"name": "SWAP2",
"source": 2
},
{
"begin": 1055,
"end": 1151,
"name": "SWAP1",
"source": 2
},
{
"begin": 1055,
"end": 1151,
"name": "POP",
"source": 2
},
{
"begin": 1055,
"end": 1151,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1157,
"end": 1275,
"name": "tag",
"source": 2,
"value": "29"
},
{
"begin": 1157,
"end": 1275,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1244,
"end": 1268,
"name": "PUSH [tag]",
"source": 2,
"value": "44"
},
{
"begin": 1262,
"end": 1267,
"name": "DUP2",
"source": 2
},
{
"begin": 1244,
"end": 1268,
"name": "PUSH [tag]",
"source": 2,
"value": "28"
},
{
"begin": 1244,
"end": 1268,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1244,
"end": 1268,
"name": "tag",
"source": 2,
"value": "44"
},
{
"begin": 1244,
"end": 1268,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1239,
"end": 1242,
"name": "DUP3",
"source": 2
},
{
"begin": 1232,
"end": 1269,
"name": "MSTORE",
"source": 2
},
{
"begin": 1157,
"end": 1275,
"name": "POP",
"source": 2
},
{
"begin": 1157,
"end": 1275,
"name": "POP",
"source": 2
},
{
"begin": 1157,
"end": 1275,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"name": "tag",
"source": 2,
"value": "10"
},
{
"begin": 1281,
"end": 1704,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1422,
"end": 1426,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1460,
"end": 1462,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1449,
"end": 1458,
"name": "DUP3",
"source": 2
},
{
"begin": 1445,
"end": 1463,
"name": "ADD",
"source": 2
},
{
"begin": 1437,
"end": 1463,
"name": "SWAP1",
"source": 2
},
{
"begin": 1437,
"end": 1463,
"name": "POP",
"source": 2
},
{
"begin": 1509,
"end": 1518,
"name": "DUP2",
"source": 2
},
{
"begin": 1503,
"end": 1507,
"name": "DUP2",
"source": 2
},
{
"begin": 1499,
"end": 1519,
"name": "SUB",
"source": 2
},
{
"begin": 1495,
"end": 1496,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1484,
"end": 1493,
"name": "DUP4",
"source": 2
},
{
"begin": 1480,
"end": 1497,
"name": "ADD",
"source": 2
},
{
"begin": 1473,
"end": 1520,
"name": "MSTORE",
"source": 2
},
{
"begin": 1537,
"end": 1615,
"name": "PUSH [tag]",
"source": 2,
"value": "46"
},
{
"begin": 1610,
"end": 1614,
"name": "DUP2",
"source": 2
},
{
"begin": 1601,
"end": 1607,
"name": "DUP6",
"source": 2
},
{
"begin": 1537,
"end": 1615,
"name": "PUSH [tag]",
"source": 2,
"value": "26"
},
{
"begin": 1537,
"end": 1615,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1537,
"end": 1615,
"name": "tag",
"source": 2,
"value": "46"
},
{
"begin": 1537,
"end": 1615,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1529,
"end": 1615,
"name": "SWAP1",
"source": 2
},
{
"begin": 1529,
"end": 1615,
"name": "POP",
"source": 2
},
{
"begin": 1625,
"end": 1697,
"name": "PUSH [tag]",
"source": 2,
"value": "47"
},
{
"begin": 1693,
"end": 1695,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 1682,
"end": 1691,
"name": "DUP4",
"source": 2
},
{
"begin": 1678,
"end": 1696,
"name": "ADD",
"source": 2
},
{
"begin": 1669,
"end": 1675,
"name": "DUP5",
"source": 2
},
{
"begin": 1625,
"end": 1697,
"name": "PUSH [tag]",
"source": 2,
"value": "29"
},
{
"begin": 1625,
"end": 1697,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1625,
"end": 1697,
"name": "tag",
"source": 2,
"value": "47"
},
{
"begin": 1625,
"end": 1697,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"name": "SWAP4",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"name": "SWAP3",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"name": "POP",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"name": "POP",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"name": "POP",
"source": 2
},
{
"begin": 1281,
"end": 1704,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1710,
"end": 1890,
"name": "tag",
"source": 2,
"value": "21"
},
{
"begin": 1710,
"end": 1890,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1758,
"end": 1835,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1755,
"end": 1756,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1748,
"end": 1836,
"name": "MSTORE",
"source": 2
},
{
"begin": 1855,
"end": 1859,
"name": "PUSH",
"source": 2,
"value": "51"
},
{
"begin": 1852,
"end": 1853,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 1845,
"end": 1860,
"name": "MSTORE",
"source": 2
},
{
"begin": 1879,
"end": 1883,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 1876,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1869,
"end": 1884,
"name": "REVERT",
"source": 2
},
{
"begin": 152,
"end": 1650,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 152,
"end": 1650,
"name": "DUP1",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "CODECOPY",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220523d1a04cb484ceecf188b2a9bd9c1473eddd3af5a091583b8a69e41b6d4c58364736f6c634300081e0033",
".code": [
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 152,
"end": 1650,
"name": "MSTORE",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "DUP1",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "ISZERO",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPI",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "REVERT",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "POP",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 152,
"end": 1650,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "LT",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPI",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 152,
"end": 1650,
"name": "SHR",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "DUP1",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "893D20E8"
},
{
"begin": 152,
"end": 1650,
"name": "EQ",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPI",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "DUP1",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "A6F9DAE1"
},
{
"begin": 152,
"end": 1650,
"name": "EQ",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPI",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 152,
"end": 1650,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 152,
"end": 1650,
"name": "REVERT",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 1567,
"end": 1648,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 1567,
"end": 1648,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 1567,
"end": 1648,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 1567,
"end": 1648,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1567,
"end": 1648,
"name": "MLOAD",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 1567,
"end": 1648,
"name": "SWAP2",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "SWAP1",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1567,
"end": 1648,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1567,
"end": 1648,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1567,
"end": 1648,
"name": "MLOAD",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "DUP1",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "SWAP2",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "SUB",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "SWAP1",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "RETURN",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 1267,
"end": 1479,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1267,
"end": 1479,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1267,
"end": 1479,
"name": "DUP1",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "SUB",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "DUP2",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "ADD",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "SWAP1",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1267,
"end": 1479,
"name": "SWAP2",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "SWAP1",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1267,
"end": 1479,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1267,
"end": 1479,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1267,
"end": 1479,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1267,
"end": 1479,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "STOP",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 1567,
"end": 1648,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1610,
"end": 1617,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1636,
"end": 1641,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1636,
"end": 1641,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1636,
"end": 1641,
"name": "SWAP1",
"source": 0
},
{
"begin": 1636,
"end": 1641,
"name": "SLOAD",
"source": 0
},
{
"begin": 1636,
"end": 1641,
"name": "SWAP1",
"source": 0
},
{
"begin": 1636,
"end": 1641,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1636,
"end": 1641,
"name": "EXP",
"source": 0
},
{
"begin": 1636,
"end": 1641,
"name": "SWAP1",
"source": 0
},
{
"begin": 1636,
"end": 1641,
"name": "DIV",
"source": 0
},
{
"begin": 1636,
"end": 1641,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1636,
"end": 1641,
"name": "AND",
"source": 0
},
{
"begin": 1629,
"end": 1641,
"name": "SWAP1",
"source": 0
},
{
"begin": 1629,
"end": 1641,
"name": "POP",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"name": "SWAP1",
"source": 0
},
{
"begin": 1567,
"end": 1648,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1267,
"end": 1479,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 830,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 830,
"end": 835,
"name": "SWAP1",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "SLOAD",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "SWAP1",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 830,
"end": 835,
"name": "EXP",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "SWAP1",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "DIV",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 830,
"end": 835,
"name": "AND",
"source": 0
},
{
"begin": 816,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 816,
"end": 835,
"name": "AND",
"source": 0
},
{
"begin": 816,
"end": 826,
"name": "CALLER",
"source": 0
},
{
"begin": 816,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 816,
"end": 835,
"name": "AND",
"source": 0
},
{
"begin": 816,
"end": 835,
"name": "EQ",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 808,
"end": 859,
"name": "JUMPI",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 808,
"end": 859,
"name": "MLOAD",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 808,
"end": 859,
"name": "DUP2",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "MSTORE",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 808,
"end": 859,
"name": "ADD",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 808,
"end": 859,
"name": "SWAP1",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 808,
"end": 859,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 808,
"end": 859,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 808,
"end": 859,
"name": "MLOAD",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "DUP1",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "SWAP2",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "SUB",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "SWAP1",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "REVERT",
"source": 0
},
{
"begin": 808,
"end": 859,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 808,
"end": 859,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1359,
"end": 1360,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1339,
"end": 1361,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1339,
"end": 1361,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1339,
"end": 1347,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1339,
"end": 1361,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1339,
"end": 1361,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1339,
"end": 1361,
"name": "SUB",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 1331,
"end": 1406,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "REVERT",
"source": 0
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 1331,
"end": 1406,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1437,
"end": 1445,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "EXP",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "DIV",
"source": 0
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1430,
"end": 1435,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735"
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1421,
"end": 1446,
"modifierDepth": 1,
"name": "LOG3",
"source": 0
},
{
"begin": 1464,
"end": 1472,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 1456,
"end": 1461,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1456,
"end": 1461,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "EXP",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "MUL",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "NOT",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "MUL",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "OR",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "SSTORE",
"source": 0
},
{
"begin": 1456,
"end": 1472,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"name": "POP",
"source": 0
},
{
"begin": 1267,
"end": 1479,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 180,
"end": 643,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 180,
"end": 643,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 265,
"end": 287,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 131,
"end": 173,
"name": "PUSH",
"source": 1,
"value": "636F6E736F6C652E6C6F67"
},
{
"begin": 265,
"end": 305,
"name": "SWAP1",
"source": 1
},
{
"begin": 265,
"end": 305,
"name": "POP",
"source": 1
},
{
"begin": 594,
"end": 595,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 571,
"end": 572,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 541,
"end": 548,
"name": "DUP4",
"source": 1
},
{
"begin": 535,
"end": 549,
"name": "MLOAD",
"source": 1
},
{
"begin": 510,
"end": 512,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 501,
"end": 508,
"name": "DUP6",
"source": 1
},
{
"begin": 497,
"end": 513,
"name": "ADD",
"source": 1
},
{
"begin": 461,
"end": 475,
"name": "DUP5",
"source": 1
},
{
"begin": 434,
"end": 439,
"name": "GAS",
"source": 1
},
{
"begin": 402,
"end": 613,
"name": "STATICCALL",
"source": 1
},
{
"begin": 381,
"end": 627,
"name": "POP",
"source": 1
},
{
"begin": 367,
"end": 637,
"name": "POP",
"source": 1
},
{
"begin": 180,
"end": 643,
"name": "POP",
"source": 1
},
{
"begin": 180,
"end": 643,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "14"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "25"
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "26"
},
{
"begin": -1,
"end": -1,
"jumpType": "[in]",
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "25"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"jumpType": "[out]",
"name": "JUMP",
"source": -1
},
{
"begin": 7,
"end": 133,
"name": "tag",
"source": 2,
"value": "27"
},
{
"begin": 7,
"end": 133,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 44,
"end": 51,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 84,
"end": 126,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 77,
"end": 82,
"name": "DUP3",
"source": 2
},
{
"begin": 73,
"end": 127,
"name": "AND",
"source": 2
},
{
"begin": 62,
"end": 127,
"name": "SWAP1",
"source": 2
},
{
"begin": 62,
"end": 127,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 133,
"name": "SWAP2",
"source": 2
},
{
"begin": 7,
"end": 133,
"name": "SWAP1",
"source": 2
},
{
"begin": 7,
"end": 133,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 133,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 139,
"end": 235,
"name": "tag",
"source": 2,
"value": "28"
},
{
"begin": 139,
"end": 235,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 176,
"end": 183,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 205,
"end": 229,
"name": "PUSH [tag]",
"source": 2,
"value": "43"
},
{
"begin": 223,
"end": 228,
"name": "DUP3",
"source": 2
},
{
"begin": 205,
"end": 229,
"name": "PUSH [tag]",
"source": 2,
"value": "27"
},
{
"begin": 205,
"end": 229,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 205,
"end": 229,
"name": "tag",
"source": 2,
"value": "43"
},
{
"begin": 205,
"end": 229,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 194,
"end": 229,
"name": "SWAP1",
"source": 2
},
{
"begin": 194,
"end": 229,
"name": "POP",
"source": 2
},
{
"begin": 139,
"end": 235,
"name": "SWAP2",
"source": 2
},
{
"begin": 139,
"end": 235,
"name": "SWAP1",
"source": 2
},
{
"begin": 139,
"end": 235,
"name": "POP",
"source": 2
},
{
"begin": 139,
"end": 235,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 241,
"end": 359,
"name": "tag",
"source": 2,
"value": "29"
},
{
"begin": 241,
"end": 359,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 328,
"end": 352,
"name": "PUSH [tag]",
"source": 2,
"value": "45"
},
{
"begin": 346,
"end": 351,
"name": "DUP2",
"source": 2
},
{
"begin": 328,
"end": 352,
"name": "PUSH [tag]",
"source": 2,
"value": "28"
},
{
"begin": 328,
"end": 352,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 328,
"end": 352,
"name": "tag",
"source": 2,
"value": "45"
},
{
"begin": 328,
"end": 352,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 323,
"end": 326,
"name": "DUP3",
"source": 2
},
{
"begin": 316,
"end": 353,
"name": "MSTORE",
"source": 2
},
{
"begin": 241,
"end": 359,
"name": "POP",
"source": 2
},
{
"begin": 241,
"end": 359,
"name": "POP",
"source": 2
},
{
"begin": 241,
"end": 359,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 365,
"end": 587,
"name": "tag",
"source": 2,
"value": "8"
},
{
"begin": 365,
"end": 587,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 458,
"end": 462,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 496,
"end": 498,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 485,
"end": 494,
"name": "DUP3",
"source": 2
},
{
"begin": 481,
"end": 499,
"name": "ADD",
"source": 2
},
{
"begin": 473,
"end": 499,
"name": "SWAP1",
"source": 2
},
{
"begin": 473,
"end": 499,
"name": "POP",
"source": 2
},
{
"begin": 509,
"end": 580,
"name": "PUSH [tag]",
"source": 2,
"value": "47"
},
{
"begin": 577,
"end": 578,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 566,
"end": 575,
"name": "DUP4",
"source": 2
},
{
"begin": 562,
"end": 579,
"name": "ADD",
"source": 2
},
{
"begin": 553,
"end": 559,
"name": "DUP5",
"source": 2
},
{
"begin": 509,
"end": 580,
"name": "PUSH [tag]",
"source": 2,
"value": "29"
},
{
"begin": 509,
"end": 580,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 509,
"end": 580,
"name": "tag",
"source": 2,
"value": "47"
},
{
"begin": 509,
"end": 580,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 365,
"end": 587,
"name": "SWAP3",
"source": 2
},
{
"begin": 365,
"end": 587,
"name": "SWAP2",
"source": 2
},
{
"begin": 365,
"end": 587,
"name": "POP",
"source": 2
},
{
"begin": 365,
"end": 587,
"name": "POP",
"source": 2
},
{
"begin": 365,
"end": 587,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 674,
"end": 791,
"name": "tag",
"source": 2,
"value": "31"
},
{
"begin": 674,
"end": 791,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 783,
"end": 784,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 780,
"end": 781,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 773,
"end": 785,
"name": "REVERT",
"source": 2
},
{
"begin": 920,
"end": 1042,
"name": "tag",
"source": 2,
"value": "33"
},
{
"begin": 920,
"end": 1042,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 993,
"end": 1017,
"name": "PUSH [tag]",
"source": 2,
"value": "52"
},
{
"begin": 1011,
"end": 1016,
"name": "DUP2",
"source": 2
},
{
"begin": 993,
"end": 1017,
"name": "PUSH [tag]",
"source": 2,
"value": "28"
},
{
"begin": 993,
"end": 1017,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 993,
"end": 1017,
"name": "tag",
"source": 2,
"value": "52"
},
{
"begin": 993,
"end": 1017,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 986,
"end": 991,
"name": "DUP2",
"source": 2
},
{
"begin": 983,
"end": 1018,
"name": "EQ",
"source": 2
},
{
"begin": 973,
"end": 1036,
"name": "PUSH [tag]",
"source": 2,
"value": "53"
},
{
"begin": 973,
"end": 1036,
"name": "JUMPI",
"source": 2
},
{
"begin": 1032,
"end": 1033,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1029,
"end": 1030,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1022,
"end": 1034,
"name": "REVERT",
"source": 2
},
{
"begin": 973,
"end": 1036,
"name": "tag",
"source": 2,
"value": "53"
},
{
"begin": 973,
"end": 1036,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 920,
"end": 1042,
"name": "POP",
"source": 2
},
{
"begin": 920,
"end": 1042,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1048,
"end": 1187,
"name": "tag",
"source": 2,
"value": "34"
},
{
"begin": 1048,
"end": 1187,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1094,
"end": 1099,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1132,
"end": 1138,
"name": "DUP2",
"source": 2
},
{
"begin": 1119,
"end": 1139,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 1110,
"end": 1139,
"name": "SWAP1",
"source": 2
},
{
"begin": 1110,
"end": 1139,
"name": "POP",
"source": 2
},
{
"begin": 1148,
"end": 1181,
"name": "PUSH [tag]",
"source": 2,
"value": "55"
},
{
"begin": 1175,
"end": 1180,
"name": "DUP2",
"source": 2
},
{
"begin": 1148,
"end": 1181,
"name": "PUSH [tag]",
"source": 2,
"value": "33"
},
{
"begin": 1148,
"end": 1181,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1148,
"end": 1181,
"name": "tag",
"source": 2,
"value": "55"
},
{
"begin": 1148,
"end": 1181,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1048,
"end": 1187,
"name": "SWAP3",
"source": 2
},
{
"begin": 1048,
"end": 1187,
"name": "SWAP2",
"source": 2
},
{
"begin": 1048,
"end": 1187,
"name": "POP",
"source": 2
},
{
"begin": 1048,
"end": 1187,
"name": "POP",
"source": 2
},
{
"begin": 1048,
"end": 1187,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1193,
"end": 1522,
"name": "tag",
"source": 2,
"value": "11"
},
{
"begin": 1193,
"end": 1522,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1252,
"end": 1258,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1301,
"end": 1303,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 1289,
"end": 1298,
"name": "DUP3",
"source": 2
},
{
"begin": 1280,
"end": 1287,
"name": "DUP5",
"source": 2
},
{
"begin": 1276,
"end": 1299,
"name": "SUB",
"source": 2
},
{
"begin": 1272,
"end": 1304,
"name": "SLT",
"source": 2
},
{
"begin": 1269,
"end": 1388,
"name": "ISZERO",
"source": 2
},
{
"begin": 1269,
"end": 1388,
"name": "PUSH [tag]",
"source": 2,
"value": "57"
},
{
"begin": 1269,
"end": 1388,
"name": "JUMPI",
"source": 2
},
{
"begin": 1307,
"end": 1386,
"name": "PUSH [tag]",
"source": 2,
"value": "58"
},
{
"begin": 1307,
"end": 1386,
"name": "PUSH [tag]",
"source": 2,
"value": "31"
},
{
"begin": 1307,
"end": 1386,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1307,
"end": 1386,
"name": "tag",
"source": 2,
"value": "58"
},
{
"begin": 1307,
"end": 1386,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1269,
"end": 1388,
"name": "tag",
"source": 2,
"value": "57"
},
{
"begin": 1269,
"end": 1388,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1427,
"end": 1428,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1452,
"end": 1505,
"name": "PUSH [tag]",
"source": 2,
"value": "59"
},
{
"begin": 1497,
"end": 1504,
"name": "DUP5",
"source": 2
},
{
"begin": 1488,
"end": 1494,
"name": "DUP3",
"source": 2
},
{
"begin": 1477,
"end": 1486,
"name": "DUP6",
"source": 2
},
{
"begin": 1473,
"end": 1495,
"name": "ADD",
"source": 2
},
{
"begin": 1452,
"end": 1505,
"name": "PUSH [tag]",
"source": 2,
"value": "34"
},
{
"begin": 1452,
"end": 1505,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1452,
"end": 1505,
"name": "tag",
"source": 2,
"value": "59"
},
{
"begin": 1452,
"end": 1505,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1442,
"end": 1505,
"name": "SWAP2",
"source": 2
},
{
"begin": 1442,
"end": 1505,
"name": "POP",
"source": 2
},
{
"begin": 1398,
"end": 1515,
"name": "POP",
"source": 2
},
{
"begin": 1193,
"end": 1522,
"name": "SWAP3",
"source": 2
},
{
"begin": 1193,
"end": 1522,
"name": "SWAP2",
"source": 2
},
{
"begin": 1193,
"end": 1522,
"name": "POP",
"source": 2
},
{
"begin": 1193,
"end": 1522,
"name": "POP",
"source": 2
},
{
"begin": 1193,
"end": 1522,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1528,
"end": 1697,
"name": "tag",
"source": 2,
"value": "35"
},
{
"begin": 1528,
"end": 1697,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1612,
"end": 1623,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1646,
"end": 1652,
"name": "DUP3",
"source": 2
},
{
"begin": 1641,
"end": 1644,
"name": "DUP3",
"source": 2
},
{
"begin": 1634,
"end": 1653,
"name": "MSTORE",
"source": 2
},
{
"begin": 1686,
"end": 1690,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 1681,
"end": 1684,
"name": "DUP3",
"source": 2
},
{
"begin": 1677,
"end": 1691,
"name": "ADD",
"source": 2
},
{
"begin": 1662,
"end": 1691,
"name": "SWAP1",
"source": 2
},
{
"begin": 1662,
"end": 1691,
"name": "POP",
"source": 2
},
{
"begin": 1528,
"end": 1697,
"name": "SWAP3",
"source": 2
},
{
"begin": 1528,
"end": 1697,
"name": "SWAP2",
"source": 2
},
{
"begin": 1528,
"end": 1697,
"name": "POP",
"source": 2
},
{
"begin": 1528,
"end": 1697,
"name": "POP",
"source": 2
},
{
"begin": 1528,
"end": 1697,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1703,
"end": 1872,
"name": "tag",
"source": 2,
"value": "36"
},
{
"begin": 1703,
"end": 1872,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1843,
"end": 1864,
"name": "PUSH",
"source": 2,
"value": "43616C6C6572206973206E6F74206F776E657200000000000000000000000000"
},
{
"begin": 1839,
"end": 1840,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1831,
"end": 1837,
"name": "DUP3",
"source": 2
},
{
"begin": 1827,
"end": 1841,
"name": "ADD",
"source": 2
},
{
"begin": 1820,
"end": 1865,
"name": "MSTORE",
"source": 2
},
{
"begin": 1703,
"end": 1872,
"name": "POP",
"source": 2
},
{
"begin": 1703,
"end": 1872,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1878,
"end": 2244,
"name": "tag",
"source": 2,
"value": "37"
},
{
"begin": 1878,
"end": 2244,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2020,
"end": 2023,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2041,
"end": 2108,
"name": "PUSH [tag]",
"source": 2,
"value": "63"
},
{
"begin": 2105,
"end": 2107,
"name": "PUSH",
"source": 2,
"value": "13"
},
{
"begin": 2100,
"end": 2103,
"name": "DUP4",
"source": 2
},
{
"begin": 2041,
"end": 2108,
"name": "PUSH [tag]",
"source": 2,
"value": "35"
},
{
"begin": 2041,
"end": 2108,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 2041,
"end": 2108,
"name": "tag",
"source": 2,
"value": "63"
},
{
"begin": 2041,
"end": 2108,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2034,
"end": 2108,
"name": "SWAP2",
"source": 2
},
{
"begin": 2034,
"end": 2108,
"name": "POP",
"source": 2
},
{
"begin": 2117,
"end": 2210,
"name": "PUSH [tag]",
"source": 2,
"value": "64"
},
{
"begin": 2206,
"end": 2209,
"name": "DUP3",
"source": 2
},
{
"begin": 2117,
"end": 2210,
"name": "PUSH [tag]",
"source": 2,
"value": "36"
},
{
"begin": 2117,
"end": 2210,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 2117,
"end": 2210,
"name": "tag",
"source": 2,
"value": "64"
},
{
"begin": 2117,
"end": 2210,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2235,
"end": 2237,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2230,
"end": 2233,
"name": "DUP3",
"source": 2
},
{
"begin": 2226,
"end": 2238,
"name": "ADD",
"source": 2
},
{
"begin": 2219,
"end": 2238,
"name": "SWAP1",
"source": 2
},
{
"begin": 2219,
"end": 2238,
"name": "POP",
"source": 2
},
{
"begin": 1878,
"end": 2244,
"name": "SWAP2",
"source": 2
},
{
"begin": 1878,
"end": 2244,
"name": "SWAP1",
"source": 2
},
{
"begin": 1878,
"end": 2244,
"name": "POP",
"source": 2
},
{
"begin": 1878,
"end": 2244,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 2250,
"end": 2669,
"name": "tag",
"source": 2,
"value": "19"
},
{
"begin": 2250,
"end": 2669,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2416,
"end": 2420,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2454,
"end": 2456,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2443,
"end": 2452,
"name": "DUP3",
"source": 2
},
{
"begin": 2439,
"end": 2457,
"name": "ADD",
"source": 2
},
{
"begin": 2431,
"end": 2457,
"name": "SWAP1",
"source": 2
},
{
"begin": 2431,
"end": 2457,
"name": "POP",
"source": 2
},
{
"begin": 2503,
"end": 2512,
"name": "DUP2",
"source": 2
},
{
"begin": 2497,
"end": 2501,
"name": "DUP2",
"source": 2
},
{
"begin": 2493,
"end": 2513,
"name": "SUB",
"source": 2
},
{
"begin": 2489,
"end": 2490,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2478,
"end": 2487,
"name": "DUP4",
"source": 2
},
{
"begin": 2474,
"end": 2491,
"name": "ADD",
"source": 2
},
{
"begin": 2467,
"end": 2514,
"name": "MSTORE",
"source": 2
},
{
"begin": 2531,
"end": 2662,
"name": "PUSH [tag]",
"source": 2,
"value": "66"
},
{
"begin": 2657,
"end": 2661,
"name": "DUP2",
"source": 2
},
{
"begin": 2531,
"end": 2662,
"name": "PUSH [tag]",
"source": 2,
"value": "37"
},
{
"begin": 2531,
"end": 2662,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 2531,
"end": 2662,
"name": "tag",
"source": 2,
"value": "66"
},
{
"begin": 2531,
"end": 2662,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2523,
"end": 2662,
"name": "SWAP1",
"source": 2
},
{
"begin": 2523,
"end": 2662,
"name": "POP",
"source": 2
},
{
"begin": 2250,
"end": 2669,
"name": "SWAP2",
"source": 2
},
{
"begin": 2250,
"end": 2669,
"name": "SWAP1",
"source": 2
},
{
"begin": 2250,
"end": 2669,
"name": "POP",
"source": 2
},
{
"begin": 2250,
"end": 2669,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 2675,
"end": 2902,
"name": "tag",
"source": 2,
"value": "38"
},
{
"begin": 2675,
"end": 2902,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2815,
"end": 2849,
"name": "PUSH",
"source": 2,
"value": "4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F"
},
{
"begin": 2811,
"end": 2812,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2803,
"end": 2809,
"name": "DUP3",
"source": 2
},
{
"begin": 2799,
"end": 2813,
"name": "ADD",
"source": 2
},
{
"begin": 2792,
"end": 2850,
"name": "MSTORE",
"source": 2
},
{
"begin": 2884,
"end": 2894,
"name": "PUSH",
"source": 2,
"value": "2061646472657373000000000000000000000000000000000000000000000000"
},
{
"begin": 2879,
"end": 2881,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2871,
"end": 2877,
"name": "DUP3",
"source": 2
},
{
"begin": 2867,
"end": 2882,
"name": "ADD",
"source": 2
},
{
"begin": 2860,
"end": 2895,
"name": "MSTORE",
"source": 2
},
{
"begin": 2675,
"end": 2902,
"name": "POP",
"source": 2
},
{
"begin": 2675,
"end": 2902,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 2908,
"end": 3274,
"name": "tag",
"source": 2,
"value": "39"
},
{
"begin": 2908,
"end": 3274,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3050,
"end": 3053,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3071,
"end": 3138,
"name": "PUSH [tag]",
"source": 2,
"value": "69"
},
{
"begin": 3135,
"end": 3137,
"name": "PUSH",
"source": 2,
"value": "28"
},
{
"begin": 3130,
"end": 3133,
"name": "DUP4",
"source": 2
},
{
"begin": 3071,
"end": 3138,
"name": "PUSH [tag]",
"source": 2,
"value": "35"
},
{
"begin": 3071,
"end": 3138,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 3071,
"end": 3138,
"name": "tag",
"source": 2,
"value": "69"
},
{
"begin": 3071,
"end": 3138,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3064,
"end": 3138,
"name": "SWAP2",
"source": 2
},
{
"begin": 3064,
"end": 3138,
"name": "POP",
"source": 2
},
{
"begin": 3147,
"end": 3240,
"name": "PUSH [tag]",
"source": 2,
"value": "70"
},
{
"begin": 3236,
"end": 3239,
"name": "DUP3",
"source": 2
},
{
"begin": 3147,
"end": 3240,
"name": "PUSH [tag]",
"source": 2,
"value": "38"
},
{
"begin": 3147,
"end": 3240,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 3147,
"end": 3240,
"name": "tag",
"source": 2,
"value": "70"
},
{
"begin": 3147,
"end": 3240,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3265,
"end": 3267,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 3260,
"end": 3263,
"name": "DUP3",
"source": 2
},
{
"begin": 3256,
"end": 3268,
"name": "ADD",
"source": 2
},
{
"begin": 3249,
"end": 3268,
"name": "SWAP1",
"source": 2
},
{
"begin": 3249,
"end": 3268,
"name": "POP",
"source": 2
},
{
"begin": 2908,
"end": 3274,
"name": "SWAP2",
"source": 2
},
{
"begin": 2908,
"end": 3274,
"name": "SWAP1",
"source": 2
},
{
"begin": 2908,
"end": 3274,
"name": "POP",
"source": 2
},
{
"begin": 2908,
"end": 3274,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 3280,
"end": 3699,
"name": "tag",
"source": 2,
"value": "23"
},
{
"begin": 3280,
"end": 3699,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3446,
"end": 3450,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3484,
"end": 3486,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 3473,
"end": 3482,
"name": "DUP3",
"source": 2
},
{
"begin": 3469,
"end": 3487,
"name": "ADD",
"source": 2
},
{
"begin": 3461,
"end": 3487,
"name": "SWAP1",
"source": 2
},
{
"begin": 3461,
"end": 3487,
"name": "POP",
"source": 2
},
{
"begin": 3533,
"end": 3542,
"name": "DUP2",
"source": 2
},
{
"begin": 3527,
"end": 3531,
"name": "DUP2",
"source": 2
},
{
"begin": 3523,
"end": 3543,
"name": "SUB",
"source": 2
},
{
"begin": 3519,
"end": 3520,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3508,
"end": 3517,
"name": "DUP4",
"source": 2
},
{
"begin": 3504,
"end": 3521,
"name": "ADD",
"source": 2
},
{
"begin": 3497,
"end": 3544,
"name": "MSTORE",
"source": 2
},
{
"begin": 3561,
"end": 3692,
"name": "PUSH [tag]",
"source": 2,
"value": "72"
},
{
"begin": 3687,
"end": 3691,
"name": "DUP2",
"source": 2
},
{
"begin": 3561,
"end": 3692,
"name": "PUSH [tag]",
"source": 2,
"value": "39"
},
{
"begin": 3561,
"end": 3692,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 3561,
"end": 3692,
"name": "tag",
"source": 2,
"value": "72"
},
{
"begin": 3561,
"end": 3692,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3553,
"end": 3692,
"name": "SWAP1",
"source": 2
},
{
"begin": 3553,
"end": 3692,
"name": "POP",
"source": 2
},
{
"begin": 3280,
"end": 3699,
"name": "SWAP2",
"source": 2
},
{
"begin": 3280,
"end": 3699,
"name": "SWAP1",
"source": 2
},
{
"begin": 3280,
"end": 3699,
"name": "POP",
"source": 2
},
{
"begin": 3280,
"end": 3699,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 3705,
"end": 3885,
"name": "tag",
"source": 2,
"value": "26"
},
{
"begin": 3705,
"end": 3885,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3753,
"end": 3830,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3750,
"end": 3751,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3743,
"end": 3831,
"name": "MSTORE",
"source": 2
},
{
"begin": 3850,
"end": 3854,
"name": "PUSH",
"source": 2,
"value": "51"
},
{
"begin": 3847,
"end": 3848,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 3840,
"end": 3855,
"name": "MSTORE",
"source": 2
},
{
"begin": 3874,
"end": 3878,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 3871,
"end": 3872,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3864,
"end": 3879,
"name": "REVERT",
"source": 2
}
]
}
},
"sourceList": [
"contracts/2_Owner.sol",
"hardhat/console.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"changeOwner(address)": "a6f9dae1",
"getOwner()": "893d20e8"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"oldOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnerSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"changeOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Set & change owner\",\"kind\":\"dev\",\"methods\":{\"changeOwner(address)\":{\"details\":\"Change owner\",\"params\":{\"newOwner\":\"address of new owner\"}},\"constructor\":{\"details\":\"Set contract deployer as owner\"},\"getOwner()\":{\"details\":\"Return owner address \",\"returns\":{\"_0\":\"address of owner\"}}},\"title\":\"Owner\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/2_Owner.sol\":\"Owner\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/2_Owner.sol\":{\"keccak256\":\"0x072df1245681a805f673875fa3dfaf38cd5e37c49625fa19aab1761a66c11fe8\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://34809dd07b27dcf9fbf1a9eb20bc668447faae5ee58567351067c4f8b06bac94\",\"dweb:/ipfs/QmQSMr8jWFx7xA8T1ZADVd9NfzfKQ7fthkC4yZHamTWJZR\"]},\"hardhat/console.sol\":{\"keccak256\":\"0x7434453e6d3b7d0e5d0eb7846ffdbc27f0ccf3b163591263739b628074dc103a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49355f780520494d1d5a0f01858385e51bb5280ce0ecfb960f16995065dca395\",\"dweb:/ipfs/QmSwJ6C5QLz6xKeQZS8wbwjU1KxRFTYfwbGmtzisd5sRW4\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 5,
"contract": "contracts/2_Owner.sol:Owner",
"label": "owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"hardhat/console.sol": {
"console": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"hardhat/console.sol\":66:69000 library console {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"hardhat/console.sol\":66:69000 library console {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n revert(0x00, 0x00)\n\n auxdata: 0xa26469706673582212204704fd3846dd625d72742cb129328cc78d2cd18d0ed6f98874d0d78ea9bd2e7164736f6c634300081e0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212204704fd3846dd625d72742cb129328cc78d2cd18d0ed6f98874d0d78ea9bd2e7164736f6c634300081e0033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFBALANCE DIV REVERT CODESIZE CHAINID 0xDD PUSH3 0x5D7274 0x2C 0xB1 0x29 ORIGIN DUP13 0xC7 DUP14 0x2C DATALOADN 0x8D0E 0xD6 EXTDELEGATECALL DUP9 PUSH21 0xD0D78EA9BD2E7164736F6C634300081E0033000000 ",
"sourceMap": "66:68934:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212204704fd3846dd625d72742cb129328cc78d2cd18d0ed6f98874d0d78ea9bd2e7164736f6c634300081e0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFBALANCE DIV REVERT CODESIZE CHAINID 0xDD PUSH3 0x5D7274 0x2C 0xB1 0x29 ORIGIN DUP13 0xC7 DUP14 0x2C DATALOADN 0x8D0E 0xD6 EXTDELEGATECALL DUP9 PUSH21 0xD0D78EA9BD2E7164736F6C634300081E0033000000 ",
"sourceMap": "66:68934:1:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"_castToPure(function (bytes memory) view)": "infinite",
"_sendLogPayload(bytes memory)": "infinite",
"_sendLogPayloadImplementation(bytes memory)": "infinite",
"log()": "infinite",
"log(address)": "infinite",
"log(address,address)": "infinite",
"log(address,address,address)": "infinite",
"log(address,address,address,address)": "infinite",
"log(address,address,address,bool)": "infinite",
"log(address,address,address,string memory)": "infinite",
"log(address,address,address,uint256)": "infinite",
"log(address,address,bool)": "infinite",
"log(address,address,bool,address)": "infinite",
"log(address,address,bool,bool)": "infinite",
"log(address,address,bool,string memory)": "infinite",
"log(address,address,bool,uint256)": "infinite",
"log(address,address,string memory)": "infinite",
"log(address,address,string memory,address)": "infinite",
"log(address,address,string memory,bool)": "infinite",
"log(address,address,string memory,string memory)": "infinite",
"log(address,address,string memory,uint256)": "infinite",
"log(address,address,uint256)": "infinite",
"log(address,address,uint256,address)": "infinite",
"log(address,address,uint256,bool)": "infinite",
"log(address,address,uint256,string memory)": "infinite",
"log(address,address,uint256,uint256)": "infinite",
"log(address,bool)": "infinite",
"log(address,bool,address)": "infinite",
"log(address,bool,address,address)": "infinite",
"log(address,bool,address,bool)": "infinite",
"log(address,bool,address,string memory)": "infinite",
"log(address,bool,address,uint256)": "infinite",
"log(address,bool,bool)": "infinite",
"log(address,bool,bool,address)": "infinite",
"log(address,bool,bool,bool)": "infinite",
"log(address,bool,bool,string memory)": "infinite",
"log(address,bool,bool,uint256)": "infinite",
"log(address,bool,string memory)": "infinite",
"log(address,bool,string memory,address)": "infinite",
"log(address,bool,string memory,bool)": "infinite",
"log(address,bool,string memory,string memory)": "infinite",
"log(address,bool,string memory,uint256)": "infinite",
"log(address,bool,uint256)": "infinite",
"log(address,bool,uint256,address)": "infinite",
"log(address,bool,uint256,bool)": "infinite",
"log(address,bool,uint256,string memory)": "infinite",
"log(address,bool,uint256,uint256)": "infinite",
"log(address,string memory)": "infinite",
"log(address,string memory,address)": "infinite",
"log(address,string memory,address,address)": "infinite",
"log(address,string memory,address,bool)": "infinite",
"log(address,string memory,address,string memory)": "infinite",
"log(address,string memory,address,uint256)": "infinite",
"log(address,string memory,bool)": "infinite",
"log(address,string memory,bool,address)": "infinite",
"log(address,string memory,bool,bool)": "infinite",
"log(address,string memory,bool,string memory)": "infinite",
"log(address,string memory,bool,uint256)": "infinite",
"log(address,string memory,string memory)": "infinite",
"log(address,string memory,string memory,address)": "infinite",
"log(address,string memory,string memory,bool)": "infinite",
"log(address,string memory,string memory,string memory)": "infinite",
"log(address,string memory,string memory,uint256)": "infinite",
"log(address,string memory,uint256)": "infinite",
"log(address,string memory,uint256,address)": "infinite",
"log(address,string memory,uint256,bool)": "infinite",
"log(address,string memory,uint256,string memory)": "infinite",
"log(address,string memory,uint256,uint256)": "infinite",
"log(address,uint256)": "infinite",
"log(address,uint256,address)": "infinite",
"log(address,uint256,address,address)": "infinite",
"log(address,uint256,address,bool)": "infinite",
"log(address,uint256,address,string memory)": "infinite",
"log(address,uint256,address,uint256)": "infinite",
"log(address,uint256,bool)": "infinite",
"log(address,uint256,bool,address)": "infinite",
"log(address,uint256,bool,bool)": "infinite",
"log(address,uint256,bool,string memory)": "infinite",
"log(address,uint256,bool,uint256)": "infinite",
"log(address,uint256,string memory)": "infinite",
"log(address,uint256,string memory,address)": "infinite",
"log(address,uint256,string memory,bool)": "infinite",
"log(address,uint256,string memory,string memory)": "infinite",
"log(address,uint256,string memory,uint256)": "infinite",
"log(address,uint256,uint256)": "infinite",
"log(address,uint256,uint256,address)": "infinite",
"log(address,uint256,uint256,bool)": "infinite",
"log(address,uint256,uint256,string memory)": "infinite",
"log(address,uint256,uint256,uint256)": "infinite",
"log(bool)": "infinite",
"log(bool,address)": "infinite",
"log(bool,address,address)": "infinite",
"log(bool,address,address,address)": "infinite",
"log(bool,address,address,bool)": "infinite",
"log(bool,address,address,string memory)": "infinite",
"log(bool,address,address,uint256)": "infinite",
"log(bool,address,bool)": "infinite",
"log(bool,address,bool,address)": "infinite",
"log(bool,address,bool,bool)": "infinite",
"log(bool,address,bool,string memory)": "infinite",
"log(bool,address,bool,uint256)": "infinite",
"log(bool,address,string memory)": "infinite",
"log(bool,address,string memory,address)": "infinite",
"log(bool,address,string memory,bool)": "infinite",
"log(bool,address,string memory,string memory)": "infinite",
"log(bool,address,string memory,uint256)": "infinite",
"log(bool,address,uint256)": "infinite",
"log(bool,address,uint256,address)": "infinite",
"log(bool,address,uint256,bool)": "infinite",
"log(bool,address,uint256,string memory)": "infinite",
"log(bool,address,uint256,uint256)": "infinite",
"log(bool,bool)": "infinite",
"log(bool,bool,address)": "infinite",
"log(bool,bool,address,address)": "infinite",
"log(bool,bool,address,bool)": "infinite",
"log(bool,bool,address,string memory)": "infinite",
"log(bool,bool,address,uint256)": "infinite",
"log(bool,bool,bool)": "infinite",
"log(bool,bool,bool,address)": "infinite",
"log(bool,bool,bool,bool)": "infinite",
"log(bool,bool,bool,string memory)": "infinite",
"log(bool,bool,bool,uint256)": "infinite",
"log(bool,bool,string memory)": "infinite",
"log(bool,bool,string memory,address)": "infinite",
"log(bool,bool,string memory,bool)": "infinite",
"log(bool,bool,string memory,string memory)": "infinite",
"log(bool,bool,string memory,uint256)": "infinite",
"log(bool,bool,uint256)": "infinite",
"log(bool,bool,uint256,address)": "infinite",
"log(bool,bool,uint256,bool)": "infinite",
"log(bool,bool,uint256,string memory)": "infinite",
"log(bool,bool,uint256,uint256)": "infinite",
"log(bool,string memory)": "infinite",
"log(bool,string memory,address)": "infinite",
"log(bool,string memory,address,address)": "infinite",
"log(bool,string memory,address,bool)": "infinite",
"log(bool,string memory,address,string memory)": "infinite",
"log(bool,string memory,address,uint256)": "infinite",
"log(bool,string memory,bool)": "infinite",
"log(bool,string memory,bool,address)": "infinite",
"log(bool,string memory,bool,bool)": "infinite",
"log(bool,string memory,bool,string memory)": "infinite",
"log(bool,string memory,bool,uint256)": "infinite",
"log(bool,string memory,string memory)": "infinite",
"log(bool,string memory,string memory,address)": "infinite",
"log(bool,string memory,string memory,bool)": "infinite",
"log(bool,string memory,string memory,string memory)": "infinite",
"log(bool,string memory,string memory,uint256)": "infinite",
"log(bool,string memory,uint256)": "infinite",
"log(bool,string memory,uint256,address)": "infinite",
"log(bool,string memory,uint256,bool)": "infinite",
"log(bool,string memory,uint256,string memory)": "infinite",
"log(bool,string memory,uint256,uint256)": "infinite",
"log(bool,uint256)": "infinite",
"log(bool,uint256,address)": "infinite",
"log(bool,uint256,address,address)": "infinite",
"log(bool,uint256,address,bool)": "infinite",
"log(bool,uint256,address,string memory)": "infinite",
"log(bool,uint256,address,uint256)": "infinite",
"log(bool,uint256,bool)": "infinite",
"log(bool,uint256,bool,address)": "infinite",
"log(bool,uint256,bool,bool)": "infinite",
"log(bool,uint256,bool,string memory)": "infinite",
"log(bool,uint256,bool,uint256)": "infinite",
"log(bool,uint256,string memory)": "infinite",
"log(bool,uint256,string memory,address)": "infinite",
"log(bool,uint256,string memory,bool)": "infinite",
"log(bool,uint256,string memory,string memory)": "infinite",
"log(bool,uint256,string memory,uint256)": "infinite",
"log(bool,uint256,uint256)": "infinite",
"log(bool,uint256,uint256,address)": "infinite",
"log(bool,uint256,uint256,bool)": "infinite",
"log(bool,uint256,uint256,string memory)": "infinite",
"log(bool,uint256,uint256,uint256)": "infinite",
"log(string memory)": "infinite",
"log(string memory,address)": "infinite",
"log(string memory,address,address)": "infinite",
"log(string memory,address,address,address)": "infinite",
"log(string memory,address,address,bool)": "infinite",
"log(string memory,address,address,string memory)": "infinite",
"log(string memory,address,address,uint256)": "infinite",
"log(string memory,address,bool)": "infinite",
"log(string memory,address,bool,address)": "infinite",
"log(string memory,address,bool,bool)": "infinite",
"log(string memory,address,bool,string memory)": "infinite",
"log(string memory,address,bool,uint256)": "infinite",
"log(string memory,address,string memory)": "infinite",
"log(string memory,address,string memory,address)": "infinite",
"log(string memory,address,string memory,bool)": "infinite",
"log(string memory,address,string memory,string memory)": "infinite",
"log(string memory,address,string memory,uint256)": "infinite",
"log(string memory,address,uint256)": "infinite",
"log(string memory,address,uint256,address)": "infinite",
"log(string memory,address,uint256,bool)": "infinite",
"log(string memory,address,uint256,string memory)": "infinite",
"log(string memory,address,uint256,uint256)": "infinite",
"log(string memory,bool)": "infinite",
"log(string memory,bool,address)": "infinite",
"log(string memory,bool,address,address)": "infinite",
"log(string memory,bool,address,bool)": "infinite",
"log(string memory,bool,address,string memory)": "infinite",
"log(string memory,bool,address,uint256)": "infinite",
"log(string memory,bool,bool)": "infinite",
"log(string memory,bool,bool,address)": "infinite",
"log(string memory,bool,bool,bool)": "infinite",
"log(string memory,bool,bool,string memory)": "infinite",
"log(string memory,bool,bool,uint256)": "infinite",
"log(string memory,bool,string memory)": "infinite",
"log(string memory,bool,string memory,address)": "infinite",
"log(string memory,bool,string memory,bool)": "infinite",
"log(string memory,bool,string memory,string memory)": "infinite",
"log(string memory,bool,string memory,uint256)": "infinite",
"log(string memory,bool,uint256)": "infinite",
"log(string memory,bool,uint256,address)": "infinite",
"log(string memory,bool,uint256,bool)": "infinite",
"log(string memory,bool,uint256,string memory)": "infinite",
"log(string memory,bool,uint256,uint256)": "infinite",
"log(string memory,string memory)": "infinite",
"log(string memory,string memory,address)": "infinite",
"log(string memory,string memory,address,address)": "infinite",
"log(string memory,string memory,address,bool)": "infinite",
"log(string memory,string memory,address,string memory)": "infinite",
"log(string memory,string memory,address,uint256)": "infinite",
"log(string memory,string memory,bool)": "infinite",
"log(string memory,string memory,bool,address)": "infinite",
"log(string memory,string memory,bool,bool)": "infinite",
"log(string memory,string memory,bool,string memory)": "infinite",
"log(string memory,string memory,bool,uint256)": "infinite",
"log(string memory,string memory,string memory)": "infinite",
"log(string memory,string memory,string memory,address)": "infinite",
"log(string memory,string memory,string memory,bool)": "infinite",
"log(string memory,string memory,string memory,string memory)": "infinite",
"log(string memory,string memory,string memory,uint256)": "infinite",
"log(string memory,string memory,uint256)": "infinite",
"log(string memory,string memory,uint256,address)": "infinite",
"log(string memory,string memory,uint256,bool)": "infinite",
"log(string memory,string memory,uint256,string memory)": "infinite",
"log(string memory,string memory,uint256,uint256)": "infinite",
"log(string memory,uint256)": "infinite",
"log(string memory,uint256,address)": "infinite",
"log(string memory,uint256,address,address)": "infinite",
"log(string memory,uint256,address,bool)": "infinite",
"log(string memory,uint256,address,string memory)": "infinite",
"log(string memory,uint256,address,uint256)": "infinite",
"log(string memory,uint256,bool)": "infinite",
"log(string memory,uint256,bool,address)": "infinite",
"log(string memory,uint256,bool,bool)": "infinite",
"log(string memory,uint256,bool,string memory)": "infinite",
"log(string memory,uint256,bool,uint256)": "infinite",
"log(string memory,uint256,string memory)": "infinite",
"log(string memory,uint256,string memory,address)": "infinite",
"log(string memory,uint256,string memory,bool)": "infinite",
"log(string memory,uint256,string memory,string memory)": "infinite",
"log(string memory,uint256,string memory,uint256)": "infinite",
"log(string memory,uint256,uint256)": "infinite",
"log(string memory,uint256,uint256,address)": "infinite",
"log(string memory,uint256,uint256,bool)": "infinite",
"log(string memory,uint256,uint256,string memory)": "infinite",
"log(string memory,uint256,uint256,uint256)": "infinite",
"log(uint256)": "infinite",
"log(uint256,address)": "infinite",
"log(uint256,address,address)": "infinite",
"log(uint256,address,address,address)": "infinite",
"log(uint256,address,address,bool)": "infinite",
"log(uint256,address,address,string memory)": "infinite",
"log(uint256,address,address,uint256)": "infinite",
"log(uint256,address,bool)": "infinite",
"log(uint256,address,bool,address)": "infinite",
"log(uint256,address,bool,bool)": "infinite",
"log(uint256,address,bool,string memory)": "infinite",
"log(uint256,address,bool,uint256)": "infinite",
"log(uint256,address,string memory)": "infinite",
"log(uint256,address,string memory,address)": "infinite",
"log(uint256,address,string memory,bool)": "infinite",
"log(uint256,address,string memory,string memory)": "infinite",
"log(uint256,address,string memory,uint256)": "infinite",
"log(uint256,address,uint256)": "infinite",
"log(uint256,address,uint256,address)": "infinite",
"log(uint256,address,uint256,bool)": "infinite",
"log(uint256,address,uint256,string memory)": "infinite",
"log(uint256,address,uint256,uint256)": "infinite",
"log(uint256,bool)": "infinite",
"log(uint256,bool,address)": "infinite",
"log(uint256,bool,address,address)": "infinite",
"log(uint256,bool,address,bool)": "infinite",
"log(uint256,bool,address,string memory)": "infinite",
"log(uint256,bool,address,uint256)": "infinite",
"log(uint256,bool,bool)": "infinite",
"log(uint256,bool,bool,address)": "infinite",
"log(uint256,bool,bool,bool)": "infinite",
"log(uint256,bool,bool,string memory)": "infinite",
"log(uint256,bool,bool,uint256)": "infinite",
"log(uint256,bool,string memory)": "infinite",
"log(uint256,bool,string memory,address)": "infinite",
"log(uint256,bool,string memory,bool)": "infinite",
"log(uint256,bool,string memory,string memory)": "infinite",
"log(uint256,bool,string memory,uint256)": "infinite",
"log(uint256,bool,uint256)": "infinite",
"log(uint256,bool,uint256,address)": "infinite",
"log(uint256,bool,uint256,bool)": "infinite",
"log(uint256,bool,uint256,string memory)": "infinite",
"log(uint256,bool,uint256,uint256)": "infinite",
"log(uint256,string memory)": "infinite",
"log(uint256,string memory,address)": "infinite",
"log(uint256,string memory,address,address)": "infinite",
"log(uint256,string memory,address,bool)": "infinite",
"log(uint256,string memory,address,string memory)": "infinite",
"log(uint256,string memory,address,uint256)": "infinite",
"log(uint256,string memory,bool)": "infinite",
"log(uint256,string memory,bool,address)": "infinite",
"log(uint256,string memory,bool,bool)": "infinite",
"log(uint256,string memory,bool,string memory)": "infinite",
"log(uint256,string memory,bool,uint256)": "infinite",
"log(uint256,string memory,string memory)": "infinite",
"log(uint256,string memory,string memory,address)": "infinite",
"log(uint256,string memory,string memory,bool)": "infinite",
"log(uint256,string memory,string memory,string memory)": "infinite",
"log(uint256,string memory,string memory,uint256)": "infinite",
"log(uint256,string memory,uint256)": "infinite",
"log(uint256,string memory,uint256,address)": "infinite",
"log(uint256,string memory,uint256,bool)": "infinite",
"log(uint256,string memory,uint256,string memory)": "infinite",
"log(uint256,string memory,uint256,uint256)": "infinite",
"log(uint256,uint256)": "infinite",
"log(uint256,uint256,address)": "infinite",
"log(uint256,uint256,address,address)": "infinite",
"log(uint256,uint256,address,bool)": "infinite",
"log(uint256,uint256,address,string memory)": "infinite",
"log(uint256,uint256,address,uint256)": "infinite",
"log(uint256,uint256,bool)": "infinite",
"log(uint256,uint256,bool,address)": "infinite",
"log(uint256,uint256,bool,bool)": "infinite",
"log(uint256,uint256,bool,string memory)": "infinite",
"log(uint256,uint256,bool,uint256)": "infinite",
"log(uint256,uint256,string memory)": "infinite",
"log(uint256,uint256,string memory,address)": "infinite",
"log(uint256,uint256,string memory,bool)": "infinite",
"log(uint256,uint256,string memory,string memory)": "infinite",
"log(uint256,uint256,string memory,uint256)": "infinite",
"log(uint256,uint256,uint256)": "infinite",
"log(uint256,uint256,uint256,address)": "infinite",
"log(uint256,uint256,uint256,bool)": "infinite",
"log(uint256,uint256,uint256,string memory)": "infinite",
"log(uint256,uint256,uint256,uint256)": "infinite",
"logAddress(address)": "infinite",
"logBool(bool)": "infinite",
"logBytes(bytes memory)": "infinite",
"logBytes1(bytes1)": "infinite",
"logBytes10(bytes10)": "infinite",
"logBytes11(bytes11)": "infinite",
"logBytes12(bytes12)": "infinite",
"logBytes13(bytes13)": "infinite",
"logBytes14(bytes14)": "infinite",
"logBytes15(bytes15)": "infinite",
"logBytes16(bytes16)": "infinite",
"logBytes17(bytes17)": "infinite",
"logBytes18(bytes18)": "infinite",
"logBytes19(bytes19)": "infinite",
"logBytes2(bytes2)": "infinite",
"logBytes20(bytes20)": "infinite",
"logBytes21(bytes21)": "infinite",
"logBytes22(bytes22)": "infinite",
"logBytes23(bytes23)": "infinite",
"logBytes24(bytes24)": "infinite",
"logBytes25(bytes25)": "infinite",
"logBytes26(bytes26)": "infinite",
"logBytes27(bytes27)": "infinite",
"logBytes28(bytes28)": "infinite",
"logBytes29(bytes29)": "infinite",
"logBytes3(bytes3)": "infinite",
"logBytes30(bytes30)": "infinite",
"logBytes31(bytes31)": "infinite",
"logBytes32(bytes32)": "infinite",
"logBytes4(bytes4)": "infinite",
"logBytes5(bytes5)": "infinite",
"logBytes6(bytes6)": "infinite",
"logBytes7(bytes7)": "infinite",
"logBytes8(bytes8)": "infinite",
"logBytes9(bytes9)": "infinite",
"logInt(int256)": "infinite",
"logString(string memory)": "infinite",
"logUint(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 66,
"end": 69000,
"name": "PUSH #[$]",
"source": 1,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH [$]",
"source": 1,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "B"
},
{
"begin": 66,
"end": 69000,
"name": "DUP3",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "DUP3",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "DUP3",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "CODECOPY",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "DUP1",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "MLOAD",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "BYTE",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "73"
},
{
"begin": 66,
"end": 69000,
"name": "EQ",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH [tag]",
"source": 1,
"value": "1"
},
{
"begin": 66,
"end": 69000,
"name": "JUMPI",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "MSTORE",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 66,
"end": 69000,
"name": "MSTORE",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "REVERT",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "tag",
"source": 1,
"value": "1"
},
{
"begin": 66,
"end": 69000,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "ADDRESS",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "MSTORE",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "73"
},
{
"begin": 66,
"end": 69000,
"name": "DUP2",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "MSTORE8",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "DUP3",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "DUP2",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "RETURN",
"source": 1
}
],
".data": {
"0": {
".auxdata": "a26469706673582212204704fd3846dd625d72742cb129328cc78d2cd18d0ed6f98874d0d78ea9bd2e7164736f6c634300081e0033",
".code": [
{
"begin": 66,
"end": 69000,
"name": "PUSHDEPLOYADDRESS",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "ADDRESS",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "EQ",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "80"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 66,
"end": 69000,
"name": "MSTORE",
"source": 1
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 66,
"end": 69000,
"name": "REVERT",
"source": 1
}
]
}
},
"sourceList": [
"contracts/2_Owner.sol",
"hardhat/console.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"hardhat/console.sol\":\"console\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"hardhat/console.sol\":{\"keccak256\":\"0x7434453e6d3b7d0e5d0eb7846ffdbc27f0ccf3b163591263739b628074dc103a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49355f780520494d1d5a0f01858385e51bb5280ce0ecfb960f16995065dca395\",\"dweb:/ipfs/QmSwJ6C5QLz6xKeQZS8wbwjU1KxRFTYfwbGmtzisd5sRW4\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/2_Owner.sol": {
"ast": {
"absolutePath": "contracts/2_Owner.sol",
"exportedSymbols": {
"Owner": [
87
],
"console": [
8172
]
},
"id": 88,
"license": "GPL-3.0",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
">=",
"0.7",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "37:31:0"
},
{
"absolutePath": "hardhat/console.sol",
"file": "hardhat/console.sol",
"id": 2,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 88,
"sourceUnit": 8173,
"src": "70:29:0",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "Owner",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "101:50:0",
"text": " @title Owner\n @dev Set & change owner"
},
"fullyImplemented": true,
"id": 87,
"internalFunctionIDs": {
"103": 1
},
"linearizedBaseContracts": [
87
],
"name": "Owner",
"nameLocation": "161:5:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "owner",
"nameLocation": "190:5:0",
"nodeType": "VariableDeclaration",
"scope": 87,
"src": "174:21:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "174:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "private"
},
{
"anonymous": false,
"eventSelector": "342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735",
"id": 11,
"name": "OwnerSet",
"nameLocation": "237:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 7,
"indexed": true,
"mutability": "mutable",
"name": "oldOwner",
"nameLocation": "262:8:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "246:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "246:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"indexed": true,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "288:8:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "272:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 8,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "272:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "245:52:0"
},
"src": "231:67:0"
},
{
"body": {
"id": 22,
"nodeType": "Block",
"src": "367:510:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 17,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 14,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "816:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 15,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "820:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "816:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"id": 16,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "830:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "816:19:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "43616c6c6572206973206e6f74206f776e6572",
"id": 18,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "837:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"typeString": "literal_string \"Caller is not owner\""
},
"value": "Caller is not owner"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"typeString": "literal_string \"Caller is not owner\""
}
],
"id": 13,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "808:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 19,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "808:51:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 20,
"nodeType": "ExpressionStatement",
"src": "808:51:0"
},
{
"id": 21,
"nodeType": "PlaceholderStatement",
"src": "869:1:0"
}
]
},
"id": 23,
"name": "isOwner",
"nameLocation": "357:7:0",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [],
"src": "364:2:0"
},
"src": "348:529:0",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 48,
"nodeType": "Block",
"src": "956:220:0",
"statements": [
{
"expression": {
"arguments": [
{
"hexValue": "4f776e657220636f6e7472616374206465706c6f7965642062793a",
"id": 30,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "978:29:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_a0cbe754c44222da79bf647e45aed62ef67ec32aef9a5176ca1ce7c0e9365903",
"typeString": "literal_string \"Owner contract deployed by:\""
},
"value": "Owner contract deployed by:"
},
{
"expression": {
"id": 31,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "1009:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 32,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1013:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "1009:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_a0cbe754c44222da79bf647e45aed62ef67ec32aef9a5176ca1ce7c0e9365903",
"typeString": "literal_string \"Owner contract deployed by:\""
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"expression": {
"id": 27,
"name": "console",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8172,
"src": "966:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_contract$_console_$8172_$",
"typeString": "type(library console)"
}
},
"id": 29,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "974:3:0",
"memberName": "log",
"nodeType": "MemberAccess",
"referencedDeclaration": 867,
"src": "966:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$_t_address_$returns$__$",
"typeString": "function (string memory,address) pure"
}
},
"id": 33,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "966:54:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 34,
"nodeType": "ExpressionStatement",
"src": "966:54:0"
},
{
"expression": {
"id": 38,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 35,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "1030:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"expression": {
"id": 36,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "1038:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 37,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1042:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "1038:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1030:18:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 39,
"nodeType": "ExpressionStatement",
"src": "1030:18:0"
},
{
"eventCall": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 43,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1159:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 42,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1151:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 41,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1151:7:0",
"typeDescriptions": {}
}
},
"id": 44,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1151:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 45,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "1163:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 40,
"name": "OwnerSet",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 11,
"src": "1142:8:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
"typeString": "function (address,address)"
}
},
"id": 46,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1142:27:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 47,
"nodeType": "EmitStatement",
"src": "1137:32:0"
}
]
},
"documentation": {
"id": 24,
"nodeType": "StructuredDocumentation",
"src": "883:54:0",
"text": " @dev Set contract deployer as owner"
},
"id": 49,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [],
"src": "953:2:0"
},
"returnParameters": {
"id": 26,
"nodeType": "ParameterList",
"parameters": [],
"src": "956:0:0"
},
"scope": 87,
"src": "942:234:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 76,
"nodeType": "Block",
"src": "1321:158:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 63,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 58,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 52,
"src": "1339:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"arguments": [
{
"hexValue": "30",
"id": 61,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1359:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 60,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1351:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 59,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1351:7:0",
"typeDescriptions": {}
}
},
"id": 62,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1351:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1339:22:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f2061646472657373",
"id": 64,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1363:42:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42",
"typeString": "literal_string \"New owner should not be the zero address\""
},
"value": "New owner should not be the zero address"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42",
"typeString": "literal_string \"New owner should not be the zero address\""
}
],
"id": 57,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1331:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 65,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1331:75:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 66,
"nodeType": "ExpressionStatement",
"src": "1331:75:0"
},
{
"eventCall": {
"arguments": [
{
"id": 68,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "1430:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 69,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 52,
"src": "1437:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 67,
"name": "OwnerSet",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 11,
"src": "1421:8:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
"typeString": "function (address,address)"
}
},
"id": 70,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1421:25:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 71,
"nodeType": "EmitStatement",
"src": "1416:30:0"
},
{
"expression": {
"id": 74,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 72,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "1456:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 73,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 52,
"src": "1464:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1456:16:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 75,
"nodeType": "ExpressionStatement",
"src": "1456:16:0"
}
]
},
"documentation": {
"id": 50,
"nodeType": "StructuredDocumentation",
"src": "1182:80:0",
"text": " @dev Change owner\n @param newOwner address of new owner"
},
"functionSelector": "a6f9dae1",
"id": 77,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 55,
"kind": "modifierInvocation",
"modifierName": {
"id": 54,
"name": "isOwner",
"nameLocations": [
"1313:7:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 23,
"src": "1313:7:0"
},
"nodeType": "ModifierInvocation",
"src": "1313:7:0"
}
],
"name": "changeOwner",
"nameLocation": "1276:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 53,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 52,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "1296:8:0",
"nodeType": "VariableDeclaration",
"scope": 77,
"src": "1288:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 51,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1288:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1287:18:0"
},
"returnParameters": {
"id": 56,
"nodeType": "ParameterList",
"parameters": [],
"src": "1321:0:0"
},
"scope": 87,
"src": "1267:212:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 85,
"nodeType": "Block",
"src": "1619:29:0",
"statements": [
{
"expression": {
"id": 83,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "1636:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 82,
"id": 84,
"nodeType": "Return",
"src": "1629:12:0"
}
]
},
"documentation": {
"id": 78,
"nodeType": "StructuredDocumentation",
"src": "1485:77:0",
"text": " @dev Return owner address \n @return address of owner"
},
"functionSelector": "893d20e8",
"id": 86,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "getOwner",
"nameLocation": "1576:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 79,
"nodeType": "ParameterList",
"parameters": [],
"src": "1584:2:0"
},
"returnParameters": {
"id": 82,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 81,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 86,
"src": "1610:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 80,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1610:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1609:9:0"
},
"scope": 87,
"src": "1567:81:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
}
],
"scope": 88,
"src": "152:1498:0",
"usedErrors": [],
"usedEvents": [
11
]
}
],
"src": "37:1615:0"
},
"id": 0
},
"hardhat/console.sol": {
"ast": {
"absolutePath": "hardhat/console.sol",
"exportedSymbols": {
"console": [
8172
]
},
"id": 8173,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 89,
"literals": [
"solidity",
">=",
"0.4",
".22",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "32:32:1"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "console",
"contractDependencies": [],
"contractKind": "library",
"fullyImplemented": true,
"id": 8172,
"linearizedBaseContracts": [
8172
],
"name": "console",
"nameLocation": "74:7:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": true,
"id": 92,
"mutability": "constant",
"name": "CONSOLE_ADDRESS",
"nameLocation": "105:15:1",
"nodeType": "VariableDeclaration",
"scope": 8172,
"src": "88:85:1",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 90,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "88:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": {
"hexValue": "307830303030303030303030303030303030303036333646366537333646366336353265366336663637",
"id": 91,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "131:42:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"value": "0x000000000000000000636F6e736F6c652e6c6f67"
},
"visibility": "internal"
},
{
"body": {
"id": 102,
"nodeType": "Block",
"src": "255:388:1",
"statements": [
{
"assignments": [
98
],
"declarations": [
{
"constant": false,
"id": 98,
"mutability": "mutable",
"name": "consoleAddress",
"nameLocation": "273:14:1",
"nodeType": "VariableDeclaration",
"scope": 102,
"src": "265:22:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 97,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "265:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"id": 100,
"initialValue": {
"id": 99,
"name": "CONSOLE_ADDRESS",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 92,
"src": "290:15:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "265:40:1"
},
{
"AST": {
"nativeSrc": "367:270:1",
"nodeType": "YulBlock",
"src": "367:270:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "gas",
"nativeSrc": "434:3:1",
"nodeType": "YulIdentifier",
"src": "434:3:1"
},
"nativeSrc": "434:5:1",
"nodeType": "YulFunctionCall",
"src": "434:5:1"
},
{
"name": "consoleAddress",
"nativeSrc": "461:14:1",
"nodeType": "YulIdentifier",
"src": "461:14:1"
},
{
"arguments": [
{
"name": "payload",
"nativeSrc": "501:7:1",
"nodeType": "YulIdentifier",
"src": "501:7:1"
},
{
"kind": "number",
"nativeSrc": "510:2:1",
"nodeType": "YulLiteral",
"src": "510:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "497:3:1",
"nodeType": "YulIdentifier",
"src": "497:3:1"
},
"nativeSrc": "497:16:1",
"nodeType": "YulFunctionCall",
"src": "497:16:1"
},
{
"arguments": [
{
"name": "payload",
"nativeSrc": "541:7:1",
"nodeType": "YulIdentifier",
"src": "541:7:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "535:5:1",
"nodeType": "YulIdentifier",
"src": "535:5:1"
},
"nativeSrc": "535:14:1",
"nodeType": "YulFunctionCall",
"src": "535:14:1"
},
{
"kind": "number",
"nativeSrc": "571:1:1",
"nodeType": "YulLiteral",
"src": "571:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "594:1:1",
"nodeType": "YulLiteral",
"src": "594:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "staticcall",
"nativeSrc": "402:10:1",
"nodeType": "YulIdentifier",
"src": "402:10:1"
},
"nativeSrc": "402:211:1",
"nodeType": "YulFunctionCall",
"src": "402:211:1"
}
],
"functionName": {
"name": "pop",
"nativeSrc": "381:3:1",
"nodeType": "YulIdentifier",
"src": "381:3:1"
},
"nativeSrc": "381:246:1",
"nodeType": "YulFunctionCall",
"src": "381:246:1"
},
"nativeSrc": "381:246:1",
"nodeType": "YulExpressionStatement",
"src": "381:246:1"
}
]
},
"documentation": "@solidity memory-safe-assembly",
"evmVersion": "prague",
"externalReferences": [
{
"declaration": 98,
"isOffset": false,
"isSlot": false,
"src": "461:14:1",
"valueSize": 1
},
{
"declaration": 94,
"isOffset": false,
"isSlot": false,
"src": "501:7:1",
"valueSize": 1
},
{
"declaration": 94,
"isOffset": false,
"isSlot": false,
"src": "541:7:1",
"valueSize": 1
}
],
"id": 101,
"nodeType": "InlineAssembly",
"src": "358:279:1"
}
]
},
"id": 103,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_sendLogPayloadImplementation",
"nameLocation": "189:29:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 95,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 94,
"mutability": "mutable",
"name": "payload",
"nameLocation": "232:7:1",
"nodeType": "VariableDeclaration",
"scope": 103,
"src": "219:20:1",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 93,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "219:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "218:22:1"
},
"returnParameters": {
"id": 96,
"nodeType": "ParameterList",
"parameters": [],
"src": "255:0:1"
},
"scope": 8172,
"src": "180:463:1",
"stateMutability": "view",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 119,
"nodeType": "Block",
"src": "783:62:1",
"statements": [
{
"AST": {
"nativeSrc": "802:37:1",
"nodeType": "YulBlock",
"src": "802:37:1",
"statements": [
{
"nativeSrc": "816:13:1",
"nodeType": "YulAssignment",
"src": "816:13:1",
"value": {
"name": "fnIn",
"nativeSrc": "825:4:1",
"nodeType": "YulIdentifier",
"src": "825:4:1"
},
"variableNames": [
{
"name": "fnOut",
"nativeSrc": "816:5:1",
"nodeType": "YulIdentifier",
"src": "816:5:1"
}
]
}
]
},
"evmVersion": "prague",
"externalReferences": [
{
"declaration": 109,
"isOffset": false,
"isSlot": false,
"src": "825:4:1",
"valueSize": 1
},
{
"declaration": 116,
"isOffset": false,
"isSlot": false,
"src": "816:5:1",
"valueSize": 1
}
],
"id": 118,
"nodeType": "InlineAssembly",
"src": "793:46:1"
}
]
},
"id": 120,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_castToPure",
"nameLocation": "658:11:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 110,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 109,
"mutability": "mutable",
"name": "fnIn",
"nameLocation": "714:4:1",
"nodeType": "VariableDeclaration",
"scope": 120,
"src": "677:41:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes) view"
},
"typeName": {
"id": 108,
"nodeType": "FunctionTypeName",
"parameterTypes": {
"id": 106,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 105,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 108,
"src": "686:12:1",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 104,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "686:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "685:14:1"
},
"returnParameterTypes": {
"id": 107,
"nodeType": "ParameterList",
"parameters": [],
"src": "714:0:1"
},
"src": "677:41:1",
"stateMutability": "view",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes) view"
},
"visibility": "internal"
},
"visibility": "internal"
}
],
"src": "669:55:1"
},
"returnParameters": {
"id": 117,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 116,
"mutability": "mutable",
"name": "fnOut",
"nameLocation": "776:5:1",
"nodeType": "VariableDeclaration",
"scope": 120,
"src": "748:33:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes) pure"
},
"typeName": {
"id": 115,
"nodeType": "FunctionTypeName",
"parameterTypes": {
"id": 113,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 112,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 115,
"src": "757:12:1",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 111,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "757:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "756:14:1"
},
"returnParameterTypes": {
"id": 114,
"nodeType": "ParameterList",
"parameters": [],
"src": "776:0:1"
},
"src": "748:33:1",
"stateMutability": "pure",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes) pure"
},
"visibility": "internal"
},
"visibility": "internal"
}
],
"src": "747:35:1"
},
"scope": 8172,
"src": "649:196:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 131,
"nodeType": "Block",
"src": "912:68:1",
"statements": [
{
"expression": {
"arguments": [
{
"id": 128,
"name": "payload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 122,
"src": "965:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"arguments": [
{
"id": 126,
"name": "_sendLogPayloadImplementation",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 103,
"src": "934:29:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) view"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) view"
}
],
"id": 125,
"name": "_castToPure",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 120,
"src": "922:11:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_function_internal_view$_t_bytes_memory_ptr_$returns$__$_$returns$_t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$_$",
"typeString": "function (function (bytes memory) view) pure returns (function (bytes memory) pure)"
}
},
"id": 127,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "922:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 129,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "922:51:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 130,
"nodeType": "ExpressionStatement",
"src": "922:51:1"
}
]
},
"id": 132,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_sendLogPayload",
"nameLocation": "860:15:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 123,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 122,
"mutability": "mutable",
"name": "payload",
"nameLocation": "889:7:1",
"nodeType": "VariableDeclaration",
"scope": 132,
"src": "876:20:1",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 121,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "876:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "875:22:1"
},
"returnParameters": {
"id": 124,
"nodeType": "ParameterList",
"parameters": [],
"src": "912:0:1"
},
"scope": 8172,
"src": "851:129:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 142,
"nodeType": "Block",
"src": "1015:66:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672829",
"id": 138,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1065:7:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_51973ec9d4c1929bdd5b149c064d46aee47e92a7e2bb5f7a20c7b9cfb0d13b39",
"typeString": "literal_string \"log()\""
},
"value": "log()"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_51973ec9d4c1929bdd5b149c064d46aee47e92a7e2bb5f7a20c7b9cfb0d13b39",
"typeString": "literal_string \"log()\""
}
],
"expression": {
"id": 136,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1041:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 137,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1045:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1041:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 139,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1041:32:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 135,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1025:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 140,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1025:49:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 141,
"nodeType": "ExpressionStatement",
"src": "1025:49:1"
}
]
},
"id": 143,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "log",
"nameLocation": "995:3:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 133,
"nodeType": "ParameterList",
"parameters": [],
"src": "998:2:1"
},
"returnParameters": {
"id": 134,
"nodeType": "ParameterList",
"parameters": [],
"src": "1015:0:1"
},
"scope": 8172,
"src": "986:95:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 156,
"nodeType": "Block",
"src": "1127:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f6728696e7432353629",
"id": 151,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1177:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_2d5b6cb95ba2d00a93cd4ffa61ec07ef4bb1694f20c02a3cccb170a38df81ef8",
"typeString": "literal_string \"log(int256)\""
},
"value": "log(int256)"
},
{
"id": 152,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 145,
"src": "1192:2:1",
"typeDescriptions": {
"typeIdentifier": "t_int256",
"typeString": "int256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_2d5b6cb95ba2d00a93cd4ffa61ec07ef4bb1694f20c02a3cccb170a38df81ef8",
"typeString": "literal_string \"log(int256)\""
},
{
"typeIdentifier": "t_int256",
"typeString": "int256"
}
],
"expression": {
"id": 149,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1153:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 150,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1157:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1153:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 153,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1153:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 148,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1137:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 154,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1137:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 155,
"nodeType": "ExpressionStatement",
"src": "1137:59:1"
}
]
},
"id": 157,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logInt",
"nameLocation": "1095:6:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 146,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 145,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1109:2:1",
"nodeType": "VariableDeclaration",
"scope": 157,
"src": "1102:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_int256",
"typeString": "int256"
},
"typeName": {
"id": 144,
"name": "int256",
"nodeType": "ElementaryTypeName",
"src": "1102:6:1",
"typeDescriptions": {
"typeIdentifier": "t_int256",
"typeString": "int256"
}
},
"visibility": "internal"
}
],
"src": "1101:11:1"
},
"returnParameters": {
"id": 147,
"nodeType": "ParameterList",
"parameters": [],
"src": "1127:0:1"
},
"scope": 8172,
"src": "1086:117:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 170,
"nodeType": "Block",
"src": "1252:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672875696e7432353629",
"id": 165,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1302:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_f82c50f1848136e6c140b186ea0c768b7deda5efffe42c25e96336a90b26c744",
"typeString": "literal_string \"log(uint256)\""
},
"value": "log(uint256)"
},
{
"id": 166,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 159,
"src": "1318:2:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_f82c50f1848136e6c140b186ea0c768b7deda5efffe42c25e96336a90b26c744",
"typeString": "literal_string \"log(uint256)\""
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"id": 163,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1278:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 164,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1282:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1278:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 167,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1278:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 162,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1262:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 168,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1262:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 169,
"nodeType": "ExpressionStatement",
"src": "1262:60:1"
}
]
},
"id": 171,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logUint",
"nameLocation": "1218:7:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 160,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 159,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1234:2:1",
"nodeType": "VariableDeclaration",
"scope": 171,
"src": "1226:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 158,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1226:7:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1225:12:1"
},
"returnParameters": {
"id": 161,
"nodeType": "ParameterList",
"parameters": [],
"src": "1252:0:1"
},
"scope": 8172,
"src": "1209:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 184,
"nodeType": "Block",
"src": "1386:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f6728737472696e6729",
"id": 179,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1436:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_41304facd9323d75b11bcdd609cb38effffdb05710f7caf0e9b16c6d9d709f50",
"typeString": "literal_string \"log(string)\""
},
"value": "log(string)"
},
{
"id": 180,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 173,
"src": "1451:2:1",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_41304facd9323d75b11bcdd609cb38effffdb05710f7caf0e9b16c6d9d709f50",
"typeString": "literal_string \"log(string)\""
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
],
"expression": {
"id": 177,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1412:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 178,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1416:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1412:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 181,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1412:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 176,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1396:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 182,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1396:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 183,
"nodeType": "ExpressionStatement",
"src": "1396:59:1"
}
]
},
"id": 185,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logString",
"nameLocation": "1344:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 174,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 173,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1368:2:1",
"nodeType": "VariableDeclaration",
"scope": 185,
"src": "1354:16:1",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 172,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "1354:6:1",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
}
],
"src": "1353:18:1"
},
"returnParameters": {
"id": 175,
"nodeType": "ParameterList",
"parameters": [],
"src": "1386:0:1"
},
"scope": 8172,
"src": "1335:127:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 198,
"nodeType": "Block",
"src": "1508:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f6728626f6f6c29",
"id": 193,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1558:11:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_32458eed3feca62a69292a55ca8a755ae4e6cdc57a38d15c298330064467fdd7",
"typeString": "literal_string \"log(bool)\""
},
"value": "log(bool)"
},
{
"id": 194,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 187,
"src": "1571:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_32458eed3feca62a69292a55ca8a755ae4e6cdc57a38d15c298330064467fdd7",
"typeString": "literal_string \"log(bool)\""
},
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"expression": {
"id": 191,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1534:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 192,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1538:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1534:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 195,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1534:40:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 190,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1518:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 196,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1518:57:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 197,
"nodeType": "ExpressionStatement",
"src": "1518:57:1"
}
]
},
"id": 199,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBool",
"nameLocation": "1477:7:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 188,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 187,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1490:2:1",
"nodeType": "VariableDeclaration",
"scope": 199,
"src": "1485:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 186,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1485:4:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1484:9:1"
},
"returnParameters": {
"id": 189,
"nodeType": "ParameterList",
"parameters": [],
"src": "1508:0:1"
},
"scope": 8172,
"src": "1468:114:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 212,
"nodeType": "Block",
"src": "1634:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286164647265737329",
"id": 207,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1684:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_2c2ecbc2212ac38c2f9ec89aa5fcef7f532a5db24dbf7cad1f48bc82843b7428",
"typeString": "literal_string \"log(address)\""
},
"value": "log(address)"
},
{
"id": 208,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 201,
"src": "1700:2:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_2c2ecbc2212ac38c2f9ec89aa5fcef7f532a5db24dbf7cad1f48bc82843b7428",
"typeString": "literal_string \"log(address)\""
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"expression": {
"id": 205,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1660:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 206,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1664:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1660:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 209,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1660:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 204,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1644:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 210,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1644:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 211,
"nodeType": "ExpressionStatement",
"src": "1644:60:1"
}
]
},
"id": 213,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logAddress",
"nameLocation": "1597:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 202,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 201,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1616:2:1",
"nodeType": "VariableDeclaration",
"scope": 213,
"src": "1608:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 200,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1608:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1607:12:1"
},
"returnParameters": {
"id": 203,
"nodeType": "ParameterList",
"parameters": [],
"src": "1634:0:1"
},
"scope": 8172,
"src": "1588:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 226,
"nodeType": "Block",
"src": "1766:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f6728627974657329",
"id": 221,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1816:12:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_0be77f5642494da7d212b92a3472c4f471abb24e17467f41788e7de7915d6238",
"typeString": "literal_string \"log(bytes)\""
},
"value": "log(bytes)"
},
{
"id": 222,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 215,
"src": "1830:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_0be77f5642494da7d212b92a3472c4f471abb24e17467f41788e7de7915d6238",
"typeString": "literal_string \"log(bytes)\""
},
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"expression": {
"id": 219,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1792:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 220,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1796:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1792:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 223,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1792:41:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 218,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1776:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 224,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1776:58:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 225,
"nodeType": "ExpressionStatement",
"src": "1776:58:1"
}
]
},
"id": 227,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes",
"nameLocation": "1726:8:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 216,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 215,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1748:2:1",
"nodeType": "VariableDeclaration",
"scope": 227,
"src": "1735:15:1",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 214,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "1735:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "1734:17:1"
},
"returnParameters": {
"id": 217,
"nodeType": "ParameterList",
"parameters": [],
"src": "1766:0:1"
},
"scope": 8172,
"src": "1717:124:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 240,
"nodeType": "Block",
"src": "1891:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733129",
"id": 235,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1941:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_6e18a1285e3dfba09579e846ff83d5e4ffae1b869c8fc4323752bab794e41041",
"typeString": "literal_string \"log(bytes1)\""
},
"value": "log(bytes1)"
},
{
"id": 236,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 229,
"src": "1956:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes1",
"typeString": "bytes1"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_6e18a1285e3dfba09579e846ff83d5e4ffae1b869c8fc4323752bab794e41041",
"typeString": "literal_string \"log(bytes1)\""
},
{
"typeIdentifier": "t_bytes1",
"typeString": "bytes1"
}
],
"expression": {
"id": 233,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "1917:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 234,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "1921:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "1917:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 237,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1917:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 232,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "1901:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 238,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1901:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 239,
"nodeType": "ExpressionStatement",
"src": "1901:59:1"
}
]
},
"id": 241,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes1",
"nameLocation": "1856:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 230,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 229,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1873:2:1",
"nodeType": "VariableDeclaration",
"scope": 241,
"src": "1866:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes1",
"typeString": "bytes1"
},
"typeName": {
"id": 228,
"name": "bytes1",
"nodeType": "ElementaryTypeName",
"src": "1866:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes1",
"typeString": "bytes1"
}
},
"visibility": "internal"
}
],
"src": "1865:11:1"
},
"returnParameters": {
"id": 231,
"nodeType": "ParameterList",
"parameters": [],
"src": "1891:0:1"
},
"scope": 8172,
"src": "1847:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 254,
"nodeType": "Block",
"src": "2017:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733229",
"id": 249,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2067:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e9b622960ff3a0e86d35e876bfeba445fab6c5686604aa116c47c1e106921224",
"typeString": "literal_string \"log(bytes2)\""
},
"value": "log(bytes2)"
},
{
"id": 250,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 243,
"src": "2082:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes2",
"typeString": "bytes2"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_e9b622960ff3a0e86d35e876bfeba445fab6c5686604aa116c47c1e106921224",
"typeString": "literal_string \"log(bytes2)\""
},
{
"typeIdentifier": "t_bytes2",
"typeString": "bytes2"
}
],
"expression": {
"id": 247,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2043:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 248,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2047:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2043:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 251,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2043:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 246,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2027:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 252,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2027:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 253,
"nodeType": "ExpressionStatement",
"src": "2027:59:1"
}
]
},
"id": 255,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes2",
"nameLocation": "1982:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 244,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 243,
"mutability": "mutable",
"name": "p0",
"nameLocation": "1999:2:1",
"nodeType": "VariableDeclaration",
"scope": 255,
"src": "1992:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes2",
"typeString": "bytes2"
},
"typeName": {
"id": 242,
"name": "bytes2",
"nodeType": "ElementaryTypeName",
"src": "1992:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes2",
"typeString": "bytes2"
}
},
"visibility": "internal"
}
],
"src": "1991:11:1"
},
"returnParameters": {
"id": 245,
"nodeType": "ParameterList",
"parameters": [],
"src": "2017:0:1"
},
"scope": 8172,
"src": "1973:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 268,
"nodeType": "Block",
"src": "2143:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733329",
"id": 263,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2193:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_2d8349266851a1d92746f90a9696920643311d6bf462d9fa11e69718a636cbee",
"typeString": "literal_string \"log(bytes3)\""
},
"value": "log(bytes3)"
},
{
"id": 264,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 257,
"src": "2208:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes3",
"typeString": "bytes3"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_2d8349266851a1d92746f90a9696920643311d6bf462d9fa11e69718a636cbee",
"typeString": "literal_string \"log(bytes3)\""
},
{
"typeIdentifier": "t_bytes3",
"typeString": "bytes3"
}
],
"expression": {
"id": 261,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2169:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 262,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2173:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2169:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 265,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2169:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 260,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2153:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 266,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2153:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 267,
"nodeType": "ExpressionStatement",
"src": "2153:59:1"
}
]
},
"id": 269,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes3",
"nameLocation": "2108:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 258,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 257,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2125:2:1",
"nodeType": "VariableDeclaration",
"scope": 269,
"src": "2118:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes3",
"typeString": "bytes3"
},
"typeName": {
"id": 256,
"name": "bytes3",
"nodeType": "ElementaryTypeName",
"src": "2118:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes3",
"typeString": "bytes3"
}
},
"visibility": "internal"
}
],
"src": "2117:11:1"
},
"returnParameters": {
"id": 259,
"nodeType": "ParameterList",
"parameters": [],
"src": "2143:0:1"
},
"scope": 8172,
"src": "2099:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 282,
"nodeType": "Block",
"src": "2269:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733429",
"id": 277,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2319:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e05f48d17f80c0f06e82dc14f4be9f0f654dde2e722a8d8796ad7e07f5308d55",
"typeString": "literal_string \"log(bytes4)\""
},
"value": "log(bytes4)"
},
{
"id": 278,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 271,
"src": "2334:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_e05f48d17f80c0f06e82dc14f4be9f0f654dde2e722a8d8796ad7e07f5308d55",
"typeString": "literal_string \"log(bytes4)\""
},
{
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
],
"expression": {
"id": 275,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2295:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 276,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2299:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2295:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 279,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2295:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 274,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2279:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 280,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2279:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 281,
"nodeType": "ExpressionStatement",
"src": "2279:59:1"
}
]
},
"id": 283,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes4",
"nameLocation": "2234:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 272,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 271,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2251:2:1",
"nodeType": "VariableDeclaration",
"scope": 283,
"src": "2244:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 270,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "2244:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"visibility": "internal"
}
],
"src": "2243:11:1"
},
"returnParameters": {
"id": 273,
"nodeType": "ParameterList",
"parameters": [],
"src": "2269:0:1"
},
"scope": 8172,
"src": "2225:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 296,
"nodeType": "Block",
"src": "2395:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733529",
"id": 291,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2445:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_a684808d222f8a67c08dd13085391d5e9d1825d9fb6e2da44a91b1a07d07401a",
"typeString": "literal_string \"log(bytes5)\""
},
"value": "log(bytes5)"
},
{
"id": 292,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 285,
"src": "2460:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes5",
"typeString": "bytes5"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_a684808d222f8a67c08dd13085391d5e9d1825d9fb6e2da44a91b1a07d07401a",
"typeString": "literal_string \"log(bytes5)\""
},
{
"typeIdentifier": "t_bytes5",
"typeString": "bytes5"
}
],
"expression": {
"id": 289,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2421:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 290,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2425:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2421:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 293,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2421:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 288,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2405:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 294,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2405:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 295,
"nodeType": "ExpressionStatement",
"src": "2405:59:1"
}
]
},
"id": 297,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes5",
"nameLocation": "2360:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 286,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 285,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2377:2:1",
"nodeType": "VariableDeclaration",
"scope": 297,
"src": "2370:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes5",
"typeString": "bytes5"
},
"typeName": {
"id": 284,
"name": "bytes5",
"nodeType": "ElementaryTypeName",
"src": "2370:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes5",
"typeString": "bytes5"
}
},
"visibility": "internal"
}
],
"src": "2369:11:1"
},
"returnParameters": {
"id": 287,
"nodeType": "ParameterList",
"parameters": [],
"src": "2395:0:1"
},
"scope": 8172,
"src": "2351:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 310,
"nodeType": "Block",
"src": "2521:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733629",
"id": 305,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2571:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_ae84a5910824668818be6031303edf0f6f3694b35d5e6f9683950d57ef12d330",
"typeString": "literal_string \"log(bytes6)\""
},
"value": "log(bytes6)"
},
{
"id": 306,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 299,
"src": "2586:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes6",
"typeString": "bytes6"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_ae84a5910824668818be6031303edf0f6f3694b35d5e6f9683950d57ef12d330",
"typeString": "literal_string \"log(bytes6)\""
},
{
"typeIdentifier": "t_bytes6",
"typeString": "bytes6"
}
],
"expression": {
"id": 303,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2547:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 304,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2551:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2547:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 307,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2547:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 302,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2531:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 308,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2531:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 309,
"nodeType": "ExpressionStatement",
"src": "2531:59:1"
}
]
},
"id": 311,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes6",
"nameLocation": "2486:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 300,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 299,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2503:2:1",
"nodeType": "VariableDeclaration",
"scope": 311,
"src": "2496:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes6",
"typeString": "bytes6"
},
"typeName": {
"id": 298,
"name": "bytes6",
"nodeType": "ElementaryTypeName",
"src": "2496:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes6",
"typeString": "bytes6"
}
},
"visibility": "internal"
}
],
"src": "2495:11:1"
},
"returnParameters": {
"id": 301,
"nodeType": "ParameterList",
"parameters": [],
"src": "2521:0:1"
},
"scope": 8172,
"src": "2477:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 324,
"nodeType": "Block",
"src": "2647:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733729",
"id": 319,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2697:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_4ed57e28813457436949e4ec0a834b3c8262cd6cebd21953ee0da3400ce2de29",
"typeString": "literal_string \"log(bytes7)\""
},
"value": "log(bytes7)"
},
{
"id": 320,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 313,
"src": "2712:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes7",
"typeString": "bytes7"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_4ed57e28813457436949e4ec0a834b3c8262cd6cebd21953ee0da3400ce2de29",
"typeString": "literal_string \"log(bytes7)\""
},
{
"typeIdentifier": "t_bytes7",
"typeString": "bytes7"
}
],
"expression": {
"id": 317,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2673:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 318,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2677:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2673:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 321,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2673:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 316,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2657:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 322,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2657:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 323,
"nodeType": "ExpressionStatement",
"src": "2657:59:1"
}
]
},
"id": 325,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes7",
"nameLocation": "2612:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 314,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 313,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2629:2:1",
"nodeType": "VariableDeclaration",
"scope": 325,
"src": "2622:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes7",
"typeString": "bytes7"
},
"typeName": {
"id": 312,
"name": "bytes7",
"nodeType": "ElementaryTypeName",
"src": "2622:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes7",
"typeString": "bytes7"
}
},
"visibility": "internal"
}
],
"src": "2621:11:1"
},
"returnParameters": {
"id": 315,
"nodeType": "ParameterList",
"parameters": [],
"src": "2647:0:1"
},
"scope": 8172,
"src": "2603:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 338,
"nodeType": "Block",
"src": "2773:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733829",
"id": 333,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2823:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_4f84252e5b28e1a0064346c7cd13650e2dd6020728ca468281bb2a28b42654b3",
"typeString": "literal_string \"log(bytes8)\""
},
"value": "log(bytes8)"
},
{
"id": 334,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 327,
"src": "2838:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes8",
"typeString": "bytes8"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_4f84252e5b28e1a0064346c7cd13650e2dd6020728ca468281bb2a28b42654b3",
"typeString": "literal_string \"log(bytes8)\""
},
{
"typeIdentifier": "t_bytes8",
"typeString": "bytes8"
}
],
"expression": {
"id": 331,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2799:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 332,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2803:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2799:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 335,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2799:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 330,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2783:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 336,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2783:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 337,
"nodeType": "ExpressionStatement",
"src": "2783:59:1"
}
]
},
"id": 339,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes8",
"nameLocation": "2738:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 328,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 327,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2755:2:1",
"nodeType": "VariableDeclaration",
"scope": 339,
"src": "2748:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes8",
"typeString": "bytes8"
},
"typeName": {
"id": 326,
"name": "bytes8",
"nodeType": "ElementaryTypeName",
"src": "2748:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes8",
"typeString": "bytes8"
}
},
"visibility": "internal"
}
],
"src": "2747:11:1"
},
"returnParameters": {
"id": 329,
"nodeType": "ParameterList",
"parameters": [],
"src": "2773:0:1"
},
"scope": 8172,
"src": "2729:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 352,
"nodeType": "Block",
"src": "2899:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f672862797465733929",
"id": 347,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2949:13:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_90bd8cd0463fe91d31e59db57ee4cf8d778374c422b4b50e841266d9c2cc6667",
"typeString": "literal_string \"log(bytes9)\""
},
"value": "log(bytes9)"
},
{
"id": 348,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 341,
"src": "2964:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes9",
"typeString": "bytes9"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_90bd8cd0463fe91d31e59db57ee4cf8d778374c422b4b50e841266d9c2cc6667",
"typeString": "literal_string \"log(bytes9)\""
},
{
"typeIdentifier": "t_bytes9",
"typeString": "bytes9"
}
],
"expression": {
"id": 345,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "2925:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 346,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "2929:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "2925:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 349,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2925:42:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 344,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "2909:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 350,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2909:59:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 351,
"nodeType": "ExpressionStatement",
"src": "2909:59:1"
}
]
},
"id": 353,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes9",
"nameLocation": "2864:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 342,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 341,
"mutability": "mutable",
"name": "p0",
"nameLocation": "2881:2:1",
"nodeType": "VariableDeclaration",
"scope": 353,
"src": "2874:9:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes9",
"typeString": "bytes9"
},
"typeName": {
"id": 340,
"name": "bytes9",
"nodeType": "ElementaryTypeName",
"src": "2874:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes9",
"typeString": "bytes9"
}
},
"visibility": "internal"
}
],
"src": "2873:11:1"
},
"returnParameters": {
"id": 343,
"nodeType": "ParameterList",
"parameters": [],
"src": "2899:0:1"
},
"scope": 8172,
"src": "2855:120:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 366,
"nodeType": "Block",
"src": "3027:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313029",
"id": 361,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3077:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_013d178bb749cf32d0f7243763667360eb91576261efe5ed9be72b4a2800fd66",
"typeString": "literal_string \"log(bytes10)\""
},
"value": "log(bytes10)"
},
{
"id": 362,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 355,
"src": "3093:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes10",
"typeString": "bytes10"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_013d178bb749cf32d0f7243763667360eb91576261efe5ed9be72b4a2800fd66",
"typeString": "literal_string \"log(bytes10)\""
},
{
"typeIdentifier": "t_bytes10",
"typeString": "bytes10"
}
],
"expression": {
"id": 359,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3053:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 360,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3057:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3053:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 363,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3053:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 358,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3037:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 364,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3037:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 365,
"nodeType": "ExpressionStatement",
"src": "3037:60:1"
}
]
},
"id": 367,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes10",
"nameLocation": "2990:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 356,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 355,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3009:2:1",
"nodeType": "VariableDeclaration",
"scope": 367,
"src": "3001:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes10",
"typeString": "bytes10"
},
"typeName": {
"id": 354,
"name": "bytes10",
"nodeType": "ElementaryTypeName",
"src": "3001:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes10",
"typeString": "bytes10"
}
},
"visibility": "internal"
}
],
"src": "3000:12:1"
},
"returnParameters": {
"id": 357,
"nodeType": "ParameterList",
"parameters": [],
"src": "3027:0:1"
},
"scope": 8172,
"src": "2981:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 380,
"nodeType": "Block",
"src": "3156:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313129",
"id": 375,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3206:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_04004a2e5bef8ca2e7ffd661b519aec3d9c1b8d0aa1e11656aab73b2726922d9",
"typeString": "literal_string \"log(bytes11)\""
},
"value": "log(bytes11)"
},
{
"id": 376,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 369,
"src": "3222:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes11",
"typeString": "bytes11"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_04004a2e5bef8ca2e7ffd661b519aec3d9c1b8d0aa1e11656aab73b2726922d9",
"typeString": "literal_string \"log(bytes11)\""
},
{
"typeIdentifier": "t_bytes11",
"typeString": "bytes11"
}
],
"expression": {
"id": 373,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3182:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 374,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3186:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3182:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 377,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3182:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 372,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3166:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 378,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3166:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 379,
"nodeType": "ExpressionStatement",
"src": "3166:60:1"
}
]
},
"id": 381,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes11",
"nameLocation": "3119:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 370,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 369,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3138:2:1",
"nodeType": "VariableDeclaration",
"scope": 381,
"src": "3130:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes11",
"typeString": "bytes11"
},
"typeName": {
"id": 368,
"name": "bytes11",
"nodeType": "ElementaryTypeName",
"src": "3130:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes11",
"typeString": "bytes11"
}
},
"visibility": "internal"
}
],
"src": "3129:12:1"
},
"returnParameters": {
"id": 371,
"nodeType": "ParameterList",
"parameters": [],
"src": "3156:0:1"
},
"scope": 8172,
"src": "3110:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 394,
"nodeType": "Block",
"src": "3285:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313229",
"id": 389,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3335:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_86a06abd704b9e5bab2216d456863046355f2def5304d8276c140d0d454fddf2",
"typeString": "literal_string \"log(bytes12)\""
},
"value": "log(bytes12)"
},
{
"id": 390,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 383,
"src": "3351:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes12",
"typeString": "bytes12"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_86a06abd704b9e5bab2216d456863046355f2def5304d8276c140d0d454fddf2",
"typeString": "literal_string \"log(bytes12)\""
},
{
"typeIdentifier": "t_bytes12",
"typeString": "bytes12"
}
],
"expression": {
"id": 387,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3311:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 388,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3315:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3311:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 391,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3311:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 386,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3295:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 392,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3295:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 393,
"nodeType": "ExpressionStatement",
"src": "3295:60:1"
}
]
},
"id": 395,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes12",
"nameLocation": "3248:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 384,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 383,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3267:2:1",
"nodeType": "VariableDeclaration",
"scope": 395,
"src": "3259:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes12",
"typeString": "bytes12"
},
"typeName": {
"id": 382,
"name": "bytes12",
"nodeType": "ElementaryTypeName",
"src": "3259:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes12",
"typeString": "bytes12"
}
},
"visibility": "internal"
}
],
"src": "3258:12:1"
},
"returnParameters": {
"id": 385,
"nodeType": "ParameterList",
"parameters": [],
"src": "3285:0:1"
},
"scope": 8172,
"src": "3239:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 408,
"nodeType": "Block",
"src": "3414:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313329",
"id": 403,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3464:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_94529e34a43ac6de2c3a0df402eee6114eb0f2ad065baefde0230cd3cf90e2ec",
"typeString": "literal_string \"log(bytes13)\""
},
"value": "log(bytes13)"
},
{
"id": 404,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 397,
"src": "3480:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes13",
"typeString": "bytes13"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_94529e34a43ac6de2c3a0df402eee6114eb0f2ad065baefde0230cd3cf90e2ec",
"typeString": "literal_string \"log(bytes13)\""
},
{
"typeIdentifier": "t_bytes13",
"typeString": "bytes13"
}
],
"expression": {
"id": 401,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3440:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 402,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3444:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3440:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 405,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3440:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 400,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3424:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 406,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3424:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 407,
"nodeType": "ExpressionStatement",
"src": "3424:60:1"
}
]
},
"id": 409,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes13",
"nameLocation": "3377:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 398,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 397,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3396:2:1",
"nodeType": "VariableDeclaration",
"scope": 409,
"src": "3388:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes13",
"typeString": "bytes13"
},
"typeName": {
"id": 396,
"name": "bytes13",
"nodeType": "ElementaryTypeName",
"src": "3388:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes13",
"typeString": "bytes13"
}
},
"visibility": "internal"
}
],
"src": "3387:12:1"
},
"returnParameters": {
"id": 399,
"nodeType": "ParameterList",
"parameters": [],
"src": "3414:0:1"
},
"scope": 8172,
"src": "3368:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 422,
"nodeType": "Block",
"src": "3543:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313429",
"id": 417,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3593:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_9266f07faf32c88bbdb01ce418243acbc1c63e15d6e3afa16078186ba711f278",
"typeString": "literal_string \"log(bytes14)\""
},
"value": "log(bytes14)"
},
{
"id": 418,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 411,
"src": "3609:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes14",
"typeString": "bytes14"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_9266f07faf32c88bbdb01ce418243acbc1c63e15d6e3afa16078186ba711f278",
"typeString": "literal_string \"log(bytes14)\""
},
{
"typeIdentifier": "t_bytes14",
"typeString": "bytes14"
}
],
"expression": {
"id": 415,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3569:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 416,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3573:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3569:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 419,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3569:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 414,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3553:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 420,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3553:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 421,
"nodeType": "ExpressionStatement",
"src": "3553:60:1"
}
]
},
"id": 423,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes14",
"nameLocation": "3506:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 412,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 411,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3525:2:1",
"nodeType": "VariableDeclaration",
"scope": 423,
"src": "3517:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes14",
"typeString": "bytes14"
},
"typeName": {
"id": 410,
"name": "bytes14",
"nodeType": "ElementaryTypeName",
"src": "3517:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes14",
"typeString": "bytes14"
}
},
"visibility": "internal"
}
],
"src": "3516:12:1"
},
"returnParameters": {
"id": 413,
"nodeType": "ParameterList",
"parameters": [],
"src": "3543:0:1"
},
"scope": 8172,
"src": "3497:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 436,
"nodeType": "Block",
"src": "3672:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313529",
"id": 431,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3722:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_da9574e0bf3f23e09c3d85c9f5226065bb36281f2a5d78c7e38f6ffd58919606",
"typeString": "literal_string \"log(bytes15)\""
},
"value": "log(bytes15)"
},
{
"id": 432,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 425,
"src": "3738:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes15",
"typeString": "bytes15"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_da9574e0bf3f23e09c3d85c9f5226065bb36281f2a5d78c7e38f6ffd58919606",
"typeString": "literal_string \"log(bytes15)\""
},
{
"typeIdentifier": "t_bytes15",
"typeString": "bytes15"
}
],
"expression": {
"id": 429,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3698:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 430,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3702:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3698:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 433,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3698:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 428,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3682:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 434,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3682:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 435,
"nodeType": "ExpressionStatement",
"src": "3682:60:1"
}
]
},
"id": 437,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes15",
"nameLocation": "3635:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 426,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 425,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3654:2:1",
"nodeType": "VariableDeclaration",
"scope": 437,
"src": "3646:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes15",
"typeString": "bytes15"
},
"typeName": {
"id": 424,
"name": "bytes15",
"nodeType": "ElementaryTypeName",
"src": "3646:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes15",
"typeString": "bytes15"
}
},
"visibility": "internal"
}
],
"src": "3645:12:1"
},
"returnParameters": {
"id": 427,
"nodeType": "ParameterList",
"parameters": [],
"src": "3672:0:1"
},
"scope": 8172,
"src": "3626:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 450,
"nodeType": "Block",
"src": "3801:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313629",
"id": 445,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3851:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_665c61046af0adc4969f9d2f111b654775bd58f112b63e5ce7dfff29c000e9f3",
"typeString": "literal_string \"log(bytes16)\""
},
"value": "log(bytes16)"
},
{
"id": 446,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 439,
"src": "3867:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes16",
"typeString": "bytes16"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_665c61046af0adc4969f9d2f111b654775bd58f112b63e5ce7dfff29c000e9f3",
"typeString": "literal_string \"log(bytes16)\""
},
{
"typeIdentifier": "t_bytes16",
"typeString": "bytes16"
}
],
"expression": {
"id": 443,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3827:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 444,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3831:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3827:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 447,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3827:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 442,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3811:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 448,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3811:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 449,
"nodeType": "ExpressionStatement",
"src": "3811:60:1"
}
]
},
"id": 451,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes16",
"nameLocation": "3764:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 440,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 439,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3783:2:1",
"nodeType": "VariableDeclaration",
"scope": 451,
"src": "3775:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes16",
"typeString": "bytes16"
},
"typeName": {
"id": 438,
"name": "bytes16",
"nodeType": "ElementaryTypeName",
"src": "3775:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes16",
"typeString": "bytes16"
}
},
"visibility": "internal"
}
],
"src": "3774:12:1"
},
"returnParameters": {
"id": 441,
"nodeType": "ParameterList",
"parameters": [],
"src": "3801:0:1"
},
"scope": 8172,
"src": "3755:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 464,
"nodeType": "Block",
"src": "3930:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313729",
"id": 459,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3980:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_339f673a0c008974259a0022c9b150cc5d1af8c58584412fe373d84bd08d4ea3",
"typeString": "literal_string \"log(bytes17)\""
},
"value": "log(bytes17)"
},
{
"id": 460,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 453,
"src": "3996:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes17",
"typeString": "bytes17"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_339f673a0c008974259a0022c9b150cc5d1af8c58584412fe373d84bd08d4ea3",
"typeString": "literal_string \"log(bytes17)\""
},
{
"typeIdentifier": "t_bytes17",
"typeString": "bytes17"
}
],
"expression": {
"id": 457,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "3956:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 458,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "3960:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "3956:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 461,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3956:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 456,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "3940:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 462,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3940:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 463,
"nodeType": "ExpressionStatement",
"src": "3940:60:1"
}
]
},
"id": 465,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes17",
"nameLocation": "3893:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 454,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 453,
"mutability": "mutable",
"name": "p0",
"nameLocation": "3912:2:1",
"nodeType": "VariableDeclaration",
"scope": 465,
"src": "3904:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes17",
"typeString": "bytes17"
},
"typeName": {
"id": 452,
"name": "bytes17",
"nodeType": "ElementaryTypeName",
"src": "3904:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes17",
"typeString": "bytes17"
}
},
"visibility": "internal"
}
],
"src": "3903:12:1"
},
"returnParameters": {
"id": 455,
"nodeType": "ParameterList",
"parameters": [],
"src": "3930:0:1"
},
"scope": 8172,
"src": "3884:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 478,
"nodeType": "Block",
"src": "4059:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313829",
"id": 473,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4109:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_c4d23d9af6458d5ddc7cb8128a2f36bf147c9db4fe277dfe0fe7be41def62116",
"typeString": "literal_string \"log(bytes18)\""
},
"value": "log(bytes18)"
},
{
"id": 474,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 467,
"src": "4125:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes18",
"typeString": "bytes18"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_c4d23d9af6458d5ddc7cb8128a2f36bf147c9db4fe277dfe0fe7be41def62116",
"typeString": "literal_string \"log(bytes18)\""
},
{
"typeIdentifier": "t_bytes18",
"typeString": "bytes18"
}
],
"expression": {
"id": 471,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4085:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 472,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4089:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4085:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 475,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4085:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 470,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4069:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 476,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4069:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 477,
"nodeType": "ExpressionStatement",
"src": "4069:60:1"
}
]
},
"id": 479,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes18",
"nameLocation": "4022:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 468,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 467,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4041:2:1",
"nodeType": "VariableDeclaration",
"scope": 479,
"src": "4033:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes18",
"typeString": "bytes18"
},
"typeName": {
"id": 466,
"name": "bytes18",
"nodeType": "ElementaryTypeName",
"src": "4033:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes18",
"typeString": "bytes18"
}
},
"visibility": "internal"
}
],
"src": "4032:12:1"
},
"returnParameters": {
"id": 469,
"nodeType": "ParameterList",
"parameters": [],
"src": "4059:0:1"
},
"scope": 8172,
"src": "4013:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 492,
"nodeType": "Block",
"src": "4188:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573313929",
"id": 487,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4238:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_5e6b5a33524ca650028e2fad735b4ab50285bba37658119d2da303bee98aeada",
"typeString": "literal_string \"log(bytes19)\""
},
"value": "log(bytes19)"
},
{
"id": 488,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 481,
"src": "4254:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes19",
"typeString": "bytes19"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_5e6b5a33524ca650028e2fad735b4ab50285bba37658119d2da303bee98aeada",
"typeString": "literal_string \"log(bytes19)\""
},
{
"typeIdentifier": "t_bytes19",
"typeString": "bytes19"
}
],
"expression": {
"id": 485,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4214:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 486,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4218:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4214:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 489,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4214:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 484,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4198:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 490,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4198:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 491,
"nodeType": "ExpressionStatement",
"src": "4198:60:1"
}
]
},
"id": 493,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes19",
"nameLocation": "4151:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 482,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 481,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4170:2:1",
"nodeType": "VariableDeclaration",
"scope": 493,
"src": "4162:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes19",
"typeString": "bytes19"
},
"typeName": {
"id": 480,
"name": "bytes19",
"nodeType": "ElementaryTypeName",
"src": "4162:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes19",
"typeString": "bytes19"
}
},
"visibility": "internal"
}
],
"src": "4161:12:1"
},
"returnParameters": {
"id": 483,
"nodeType": "ParameterList",
"parameters": [],
"src": "4188:0:1"
},
"scope": 8172,
"src": "4142:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 506,
"nodeType": "Block",
"src": "4317:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323029",
"id": 501,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4367:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_5188e3e9b3f117a223e2e428d0e13d089f3a53913e479000b94b85266ecf8231",
"typeString": "literal_string \"log(bytes20)\""
},
"value": "log(bytes20)"
},
{
"id": 502,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 495,
"src": "4383:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes20",
"typeString": "bytes20"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_5188e3e9b3f117a223e2e428d0e13d089f3a53913e479000b94b85266ecf8231",
"typeString": "literal_string \"log(bytes20)\""
},
{
"typeIdentifier": "t_bytes20",
"typeString": "bytes20"
}
],
"expression": {
"id": 499,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4343:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 500,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4347:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4343:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 503,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4343:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 498,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4327:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 504,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4327:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 505,
"nodeType": "ExpressionStatement",
"src": "4327:60:1"
}
]
},
"id": 507,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes20",
"nameLocation": "4280:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 496,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 495,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4299:2:1",
"nodeType": "VariableDeclaration",
"scope": 507,
"src": "4291:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes20",
"typeString": "bytes20"
},
"typeName": {
"id": 494,
"name": "bytes20",
"nodeType": "ElementaryTypeName",
"src": "4291:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes20",
"typeString": "bytes20"
}
},
"visibility": "internal"
}
],
"src": "4290:12:1"
},
"returnParameters": {
"id": 497,
"nodeType": "ParameterList",
"parameters": [],
"src": "4317:0:1"
},
"scope": 8172,
"src": "4271:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 520,
"nodeType": "Block",
"src": "4446:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323129",
"id": 515,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4496:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e9da35608192a6b38ad5ef62cf738886973b011b8cdb7e81cdd51b4c3dfe8ad7",
"typeString": "literal_string \"log(bytes21)\""
},
"value": "log(bytes21)"
},
{
"id": 516,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 509,
"src": "4512:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes21",
"typeString": "bytes21"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_e9da35608192a6b38ad5ef62cf738886973b011b8cdb7e81cdd51b4c3dfe8ad7",
"typeString": "literal_string \"log(bytes21)\""
},
{
"typeIdentifier": "t_bytes21",
"typeString": "bytes21"
}
],
"expression": {
"id": 513,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4472:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 514,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4476:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4472:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 517,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4472:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 512,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4456:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 518,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4456:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 519,
"nodeType": "ExpressionStatement",
"src": "4456:60:1"
}
]
},
"id": 521,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes21",
"nameLocation": "4409:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 510,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 509,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4428:2:1",
"nodeType": "VariableDeclaration",
"scope": 521,
"src": "4420:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes21",
"typeString": "bytes21"
},
"typeName": {
"id": 508,
"name": "bytes21",
"nodeType": "ElementaryTypeName",
"src": "4420:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes21",
"typeString": "bytes21"
}
},
"visibility": "internal"
}
],
"src": "4419:12:1"
},
"returnParameters": {
"id": 511,
"nodeType": "ParameterList",
"parameters": [],
"src": "4446:0:1"
},
"scope": 8172,
"src": "4400:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 534,
"nodeType": "Block",
"src": "4575:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323229",
"id": 529,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4625:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_d5fae89c25bed6f12b105f52db0a0ff6f5c8313613e12eccd3059bb7f7ea6575",
"typeString": "literal_string \"log(bytes22)\""
},
"value": "log(bytes22)"
},
{
"id": 530,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 523,
"src": "4641:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes22",
"typeString": "bytes22"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_d5fae89c25bed6f12b105f52db0a0ff6f5c8313613e12eccd3059bb7f7ea6575",
"typeString": "literal_string \"log(bytes22)\""
},
{
"typeIdentifier": "t_bytes22",
"typeString": "bytes22"
}
],
"expression": {
"id": 527,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4601:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 528,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4605:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4601:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 531,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4601:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 526,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4585:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 532,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4585:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 533,
"nodeType": "ExpressionStatement",
"src": "4585:60:1"
}
]
},
"id": 535,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes22",
"nameLocation": "4538:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 524,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 523,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4557:2:1",
"nodeType": "VariableDeclaration",
"scope": 535,
"src": "4549:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes22",
"typeString": "bytes22"
},
"typeName": {
"id": 522,
"name": "bytes22",
"nodeType": "ElementaryTypeName",
"src": "4549:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes22",
"typeString": "bytes22"
}
},
"visibility": "internal"
}
],
"src": "4548:12:1"
},
"returnParameters": {
"id": 525,
"nodeType": "ParameterList",
"parameters": [],
"src": "4575:0:1"
},
"scope": 8172,
"src": "4529:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 548,
"nodeType": "Block",
"src": "4704:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323329",
"id": 543,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4754:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_aba1cf0dcd316c862bc06d4cf532375fed11c1e0897ba81a04ee0b22d3f14061",
"typeString": "literal_string \"log(bytes23)\""
},
"value": "log(bytes23)"
},
{
"id": 544,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 537,
"src": "4770:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes23",
"typeString": "bytes23"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_aba1cf0dcd316c862bc06d4cf532375fed11c1e0897ba81a04ee0b22d3f14061",
"typeString": "literal_string \"log(bytes23)\""
},
{
"typeIdentifier": "t_bytes23",
"typeString": "bytes23"
}
],
"expression": {
"id": 541,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4730:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 542,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4734:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4730:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 545,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4730:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 540,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4714:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 546,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4714:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 547,
"nodeType": "ExpressionStatement",
"src": "4714:60:1"
}
]
},
"id": 549,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes23",
"nameLocation": "4667:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 538,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 537,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4686:2:1",
"nodeType": "VariableDeclaration",
"scope": 549,
"src": "4678:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes23",
"typeString": "bytes23"
},
"typeName": {
"id": 536,
"name": "bytes23",
"nodeType": "ElementaryTypeName",
"src": "4678:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes23",
"typeString": "bytes23"
}
},
"visibility": "internal"
}
],
"src": "4677:12:1"
},
"returnParameters": {
"id": 539,
"nodeType": "ParameterList",
"parameters": [],
"src": "4704:0:1"
},
"scope": 8172,
"src": "4658:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 562,
"nodeType": "Block",
"src": "4833:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323429",
"id": 557,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "4883:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_f1b35b3488a5452bceb48624d6ba2a791e58f0e9c0f4b86b8f51186ec7a7edf4",
"typeString": "literal_string \"log(bytes24)\""
},
"value": "log(bytes24)"
},
{
"id": 558,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 551,
"src": "4899:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes24",
"typeString": "bytes24"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_f1b35b3488a5452bceb48624d6ba2a791e58f0e9c0f4b86b8f51186ec7a7edf4",
"typeString": "literal_string \"log(bytes24)\""
},
{
"typeIdentifier": "t_bytes24",
"typeString": "bytes24"
}
],
"expression": {
"id": 555,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4859:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 556,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4863:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4859:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 559,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4859:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 554,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4843:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 560,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4843:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 561,
"nodeType": "ExpressionStatement",
"src": "4843:60:1"
}
]
},
"id": 563,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes24",
"nameLocation": "4796:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 552,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 551,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4815:2:1",
"nodeType": "VariableDeclaration",
"scope": 563,
"src": "4807:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes24",
"typeString": "bytes24"
},
"typeName": {
"id": 550,
"name": "bytes24",
"nodeType": "ElementaryTypeName",
"src": "4807:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes24",
"typeString": "bytes24"
}
},
"visibility": "internal"
}
],
"src": "4806:12:1"
},
"returnParameters": {
"id": 553,
"nodeType": "ParameterList",
"parameters": [],
"src": "4833:0:1"
},
"scope": 8172,
"src": "4787:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 576,
"nodeType": "Block",
"src": "4962:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323529",
"id": 571,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "5012:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_0b84bc580db9be1295ee23dff6122da1f70381c83abf9a74953cca11238eda25",
"typeString": "literal_string \"log(bytes25)\""
},
"value": "log(bytes25)"
},
{
"id": 572,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 565,
"src": "5028:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes25",
"typeString": "bytes25"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_0b84bc580db9be1295ee23dff6122da1f70381c83abf9a74953cca11238eda25",
"typeString": "literal_string \"log(bytes25)\""
},
{
"typeIdentifier": "t_bytes25",
"typeString": "bytes25"
}
],
"expression": {
"id": 569,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "4988:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 570,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "4992:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "4988:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 573,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4988:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 568,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "4972:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 574,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "4972:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 575,
"nodeType": "ExpressionStatement",
"src": "4972:60:1"
}
]
},
"id": 577,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes25",
"nameLocation": "4925:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 566,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 565,
"mutability": "mutable",
"name": "p0",
"nameLocation": "4944:2:1",
"nodeType": "VariableDeclaration",
"scope": 577,
"src": "4936:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes25",
"typeString": "bytes25"
},
"typeName": {
"id": 564,
"name": "bytes25",
"nodeType": "ElementaryTypeName",
"src": "4936:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes25",
"typeString": "bytes25"
}
},
"visibility": "internal"
}
],
"src": "4935:12:1"
},
"returnParameters": {
"id": 567,
"nodeType": "ParameterList",
"parameters": [],
"src": "4962:0:1"
},
"scope": 8172,
"src": "4916:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 590,
"nodeType": "Block",
"src": "5091:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323629",
"id": 585,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "5141:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_f8b149f18dc341f1a56e26c6c24a5233eec3bbb2ab017e9e86e663aae743965b",
"typeString": "literal_string \"log(bytes26)\""
},
"value": "log(bytes26)"
},
{
"id": 586,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 579,
"src": "5157:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes26",
"typeString": "bytes26"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_f8b149f18dc341f1a56e26c6c24a5233eec3bbb2ab017e9e86e663aae743965b",
"typeString": "literal_string \"log(bytes26)\""
},
{
"typeIdentifier": "t_bytes26",
"typeString": "bytes26"
}
],
"expression": {
"id": 583,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "5117:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 584,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "5121:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "5117:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 587,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "5117:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 582,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "5101:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 588,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "5101:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 589,
"nodeType": "ExpressionStatement",
"src": "5101:60:1"
}
]
},
"id": 591,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes26",
"nameLocation": "5054:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 580,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 579,
"mutability": "mutable",
"name": "p0",
"nameLocation": "5073:2:1",
"nodeType": "VariableDeclaration",
"scope": 591,
"src": "5065:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes26",
"typeString": "bytes26"
},
"typeName": {
"id": 578,
"name": "bytes26",
"nodeType": "ElementaryTypeName",
"src": "5065:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes26",
"typeString": "bytes26"
}
},
"visibility": "internal"
}
],
"src": "5064:12:1"
},
"returnParameters": {
"id": 581,
"nodeType": "ParameterList",
"parameters": [],
"src": "5091:0:1"
},
"scope": 8172,
"src": "5045:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 604,
"nodeType": "Block",
"src": "5220:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323729",
"id": 599,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "5270:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_3a3757dda92e8e238aa23ff7f6f62e31074f6acccca8986ec1286b5a835236b6",
"typeString": "literal_string \"log(bytes27)\""
},
"value": "log(bytes27)"
},
{
"id": 600,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 593,
"src": "5286:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes27",
"typeString": "bytes27"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_3a3757dda92e8e238aa23ff7f6f62e31074f6acccca8986ec1286b5a835236b6",
"typeString": "literal_string \"log(bytes27)\""
},
{
"typeIdentifier": "t_bytes27",
"typeString": "bytes27"
}
],
"expression": {
"id": 597,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "5246:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 598,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "5250:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "5246:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 601,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "5246:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 596,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "5230:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 602,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "5230:60:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 603,
"nodeType": "ExpressionStatement",
"src": "5230:60:1"
}
]
},
"id": 605,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "logBytes27",
"nameLocation": "5183:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 594,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 593,
"mutability": "mutable",
"name": "p0",
"nameLocation": "5202:2:1",
"nodeType": "VariableDeclaration",
"scope": 605,
"src": "5194:10:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes27",
"typeString": "bytes27"
},
"typeName": {
"id": 592,
"name": "bytes27",
"nodeType": "ElementaryTypeName",
"src": "5194:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes27",
"typeString": "bytes27"
}
},
"visibility": "internal"
}
],
"src": "5193:12:1"
},
"returnParameters": {
"id": 595,
"nodeType": "ParameterList",
"parameters": [],
"src": "5220:0:1"
},
"scope": 8172,
"src": "5174:123:1",
"stateMutability": "pure",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 618,
"nodeType": "Block",
"src": "5349:77:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "6c6f67286279746573323829",
"id": 613,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "5399:14:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_c82aeaee74a6ddec4ccd5cfe60e816752c02c70838f0908bd4a6e82866b3a042",
"typeString": "literal_string \"log(bytes28)\""
},
"value": "log(bytes28)"
},
{
"id": 614,
"name": "p0",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 607,
"src": "5415:2:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes28",
"typeString": "bytes28"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_stringliteral_c82aeaee74a6ddec4ccd5cfe60e816752c02c70838f0908bd4a6e82866b3a042",
"typeString": "literal_string \"log(bytes28)\""
},
{
"typeIdentifier": "t_bytes28",
"typeString": "bytes28"
}
],
"expression": {
"id": 611,
"name": "abi",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967295,
"src": "5375:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_abi",
"typeString": "abi"
}
},
"id": 612,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "5379:19:1",
"memberName": "encodeWithSignature",
"nodeType": "MemberAccess",
"src": "5375:23:1",
"typeDescriptions": {
"typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
"typeString": "function (string memory) pure returns (bytes memory)"
}
},
"id": 615,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "5375:43:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
],
"id": 610,
"name": "_sendLogPayload",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 132,
"src": "5359:15:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$",
"typeString": "function (bytes memory) pure"
}
},
"id": 616,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
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.)

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