Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nerewarin/3e92f1d0f3c57920aa1f1126966f20ae to your computer and use it in GitHub Desktop.
Save nerewarin/3e92f1d0f3c57920aa1f1126966f20ae 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.24+commit.e11b9ed9.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
{
"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": {
"@_41": {
"entryPoint": null,
"id": 41,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 363,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 487,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 238,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 98,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 268,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 725,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 618,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1034,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 855,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 996,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1185,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 321,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 743,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 673,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1156,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 184,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 864,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1126,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 628,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 139,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 115,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 119,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 111,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 107,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 123,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 758,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 968,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 770,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 921,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 964,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:8574:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:3"
},
"nodeType": "YulFunctionCall",
"src": "433:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:3"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:3"
},
"nodeType": "YulFunctionCall",
"src": "556:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:3"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:3"
},
"nodeType": "YulFunctionCall",
"src": "652:14:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:3"
},
"nodeType": "YulFunctionCall",
"src": "668:7:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:3"
},
"nodeType": "YulFunctionCall",
"src": "648:28:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:3"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:3",
"type": ""
}
],
"src": "580:102:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:3"
},
"nodeType": "YulFunctionCall",
"src": "726:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:3",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:3"
},
"nodeType": "YulFunctionCall",
"src": "823:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:3"
},
"nodeType": "YulFunctionCall",
"src": "847:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:3"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:3",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:3"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:3"
},
"nodeType": "YulFunctionCall",
"src": "957:27:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:3"
},
"nodeType": "YulFunctionCall",
"src": "945:40:3"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:3"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:3"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:3"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:3"
},
"nodeType": "YulIf",
"src": "1030:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:3",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:3"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:3"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:3",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:3",
"type": ""
}
],
"src": "874:281:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:3",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:3"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:3"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:3"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:3"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:3"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:3",
"type": ""
}
],
"src": "1161:129:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:3"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:3"
},
"nodeType": "YulIf",
"src": "1434:56:3"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:3"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:3"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:3",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:3"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:3"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:3",
"type": ""
}
],
"src": "1296:308:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1672:184:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1682:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1691:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1686:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1751:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1776:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1781:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1772:11:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1795:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1800:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1791:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1791:11:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1785:5:3"
},
"nodeType": "YulFunctionCall",
"src": "1785:18:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1765:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1765:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "1765:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1715:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1709:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1709:13:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1723:19:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1725:15:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1734:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1737:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1730:10:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1725:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1705:3:3",
"statements": []
},
"src": "1701:113:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1834:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1839:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1830:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1830:16:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1848:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1823:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1823:27:3"
},
"nodeType": "YulExpressionStatement",
"src": "1823:27:3"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1654:3:3",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1659:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1664:6:3",
"type": ""
}
],
"src": "1610:246:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1957:339:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1967:75:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2034:6:3"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1992:41:3"
},
"nodeType": "YulFunctionCall",
"src": "1992:49:3"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1976:15:3"
},
"nodeType": "YulFunctionCall",
"src": "1976:66:3"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1967:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2058:5:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2065:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2051:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2051:21:3"
},
"nodeType": "YulExpressionStatement",
"src": "2051:21:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2081:27:3",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2096:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2103:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2092:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2092:16:3"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2085:3:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2146:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2148:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2148:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2148:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2127:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2132:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2123:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2123:16:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2141:3:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2120:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2120:25:3"
},
"nodeType": "YulIf",
"src": "2117:112:3"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2273:3:3"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2278:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2283:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2238:34:3"
},
"nodeType": "YulFunctionCall",
"src": "2238:52:3"
},
"nodeType": "YulExpressionStatement",
"src": "2238:52:3"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1930:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1935:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1943:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1951:5:3",
"type": ""
}
],
"src": "1862:434:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2389:282:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2438:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2440:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2440:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2440:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2417:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2425:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2413:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2413:17:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2432:3:3"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2409:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2409:27:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2402:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2402:35:3"
},
"nodeType": "YulIf",
"src": "2399:122:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2530:27:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2550:6:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2544:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2544:13:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2534:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2566:99:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2638:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2634:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2634:17:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2653:6:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2661:3:3"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2575:58:3"
},
"nodeType": "YulFunctionCall",
"src": "2575:90:3"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2566:5:3"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2367:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2375:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2383:5:3",
"type": ""
}
],
"src": "2316:355:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2791:739:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2837:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2839:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2839:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2839:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2812:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2821:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2808:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2808:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2833:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2804:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2804:32:3"
},
"nodeType": "YulIf",
"src": "2801:119:3"
},
{
"nodeType": "YulBlock",
"src": "2930:291:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2945:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2969:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2980:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2965:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2965:17:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2959:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2959:24:3"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2949:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3030:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3032:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3032:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3032:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3002:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3010:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2999:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2999:30:3"
},
"nodeType": "YulIf",
"src": "2996:117:3"
},
{
"nodeType": "YulAssignment",
"src": "3127:84:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3183:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3194:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3179:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3179:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3203:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3137:41:3"
},
"nodeType": "YulFunctionCall",
"src": "3137:74:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3127:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3231:292:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3246:39:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3270:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3281:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3266:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3266:18:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3260:5:3"
},
"nodeType": "YulFunctionCall",
"src": "3260:25:3"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3250:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3332:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3334:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3334:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3334:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3304:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3312:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3301:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3301:30:3"
},
"nodeType": "YulIf",
"src": "3298:117:3"
},
{
"nodeType": "YulAssignment",
"src": "3429:84:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3485:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3496:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3481:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3481:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3505:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3439:41:3"
},
"nodeType": "YulFunctionCall",
"src": "3439:74:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3429:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2753:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2764:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2776:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2784:6:3",
"type": ""
}
],
"src": "2677:853:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3595:40:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3606:22:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3622:5:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3616:5:3"
},
"nodeType": "YulFunctionCall",
"src": "3616:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3606:6:3"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3578:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3588:6:3",
"type": ""
}
],
"src": "3536:99:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3669:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3686:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3689:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3679:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3679:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "3679:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3783:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3786:4:3",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3776:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3776:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "3776:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3807:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3810:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3800:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3800:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "3800:15:3"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3641:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3878:269:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3888:22:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3902:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3908:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3898:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3898:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3888:6:3"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3919:38:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3949:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3955:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3945:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3945:12:3"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3923:18:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3996:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4010:27:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4024:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4032:4:3",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4020:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4020:17:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4010:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3976:18:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3969:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3969:26:3"
},
"nodeType": "YulIf",
"src": "3966:81:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4099:42:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4113:16:3"
},
"nodeType": "YulFunctionCall",
"src": "4113:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "4113:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4063:18:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4086:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4094:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4083:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4083:14:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4060:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4060:38:3"
},
"nodeType": "YulIf",
"src": "4057:84:3"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3862:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3871:6:3",
"type": ""
}
],
"src": "3827:320:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4207:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4217:11:3",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4225:3:3"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4217:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4245:1:3",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4248:3:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4238:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4238:14:3"
},
"nodeType": "YulExpressionStatement",
"src": "4238:14:3"
},
{
"nodeType": "YulAssignment",
"src": "4261:26:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4279:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4282:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "4269:9:3"
},
"nodeType": "YulFunctionCall",
"src": "4269:18:3"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4261:4:3"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "4194:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4202:4:3",
"type": ""
}
],
"src": "4153:141:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4344:49:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4354:33:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4372:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4379:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4368:14:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4384:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4364:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4364:23:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4354:6:3"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4327:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4337:6:3",
"type": ""
}
],
"src": "4300:93:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4452:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4462:37:3",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "4487:4:3"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4493:5:3"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4483:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4483:16:3"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "4462:8:3"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "4427:4:3",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4433:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "4443:8:3",
"type": ""
}
],
"src": "4399:107:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4588:317:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4598:35:3",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "4619:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4631:1:3",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4615:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4615:18:3"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "4602:9:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4642:109:3",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "4673:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4684:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "4654:18:3"
},
"nodeType": "YulFunctionCall",
"src": "4654:97:3"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "4646:4:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4760:51:3",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "4791:9:3"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4802:8:3"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "4772:18:3"
},
"nodeType": "YulFunctionCall",
"src": "4772:39:3"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4760:8:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4820:30:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4833:5:3"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "4844:4:3"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4840:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4840:9:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4829:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4829:21:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4820:5:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4859:40:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4872:5:3"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4883:8:3"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "4893:4:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4879:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4879:19:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4869:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4869:30:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4859:6:3"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4549:5:3",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "4556:10:3",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "4568:8:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4581:6:3",
"type": ""
}
],
"src": "4512:393:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4956:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4966:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4977:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4966:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4938:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4948:7:3",
"type": ""
}
],
"src": "4911:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5026:28:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5036:12:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5043:5:3"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5036:3:3"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5012:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5022:3:3",
"type": ""
}
],
"src": "4994:60:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5120:82:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5130:66:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5188:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5170:17:3"
},
"nodeType": "YulFunctionCall",
"src": "5170:24:3"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5161:8:3"
},
"nodeType": "YulFunctionCall",
"src": "5161:34:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5143:17:3"
},
"nodeType": "YulFunctionCall",
"src": "5143:53:3"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5130:9:3"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5100:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5110:9:3",
"type": ""
}
],
"src": "5060:142:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5255:28:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5265:12:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5272:5:3"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5265:3:3"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5241:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5251:3:3",
"type": ""
}
],
"src": "5208:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5365:193:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5375:63:3",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "5430:7:3"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5399:30:3"
},
"nodeType": "YulFunctionCall",
"src": "5399:39:3"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "5379:16:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5454:4:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5494:4:3"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5488:5:3"
},
"nodeType": "YulFunctionCall",
"src": "5488:11:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5501:6:3"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "5533:16:3"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "5509:23:3"
},
"nodeType": "YulFunctionCall",
"src": "5509:41:3"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "5460:27:3"
},
"nodeType": "YulFunctionCall",
"src": "5460:91:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5447:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5447:105:3"
},
"nodeType": "YulExpressionStatement",
"src": "5447:105:3"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5342:4:3",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5348:6:3",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "5356:7:3",
"type": ""
}
],
"src": "5289:269:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5613:24:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5623:8:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5630:1:3",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5623:3:3"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5609:3:3",
"type": ""
}
],
"src": "5564:73:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5696:136:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5706:46:3",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "5720:30:3"
},
"nodeType": "YulFunctionCall",
"src": "5720:32:3"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "5710:6:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5805:4:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5811:6:3"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "5819:6:3"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5761:43:3"
},
"nodeType": "YulFunctionCall",
"src": "5761:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "5761:65:3"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5682:4:3",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5688:6:3",
"type": ""
}
],
"src": "5643:189:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5888:136:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5955:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5999:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6006:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "5969:29:3"
},
"nodeType": "YulFunctionCall",
"src": "5969:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "5969:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5908:5:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5915:3:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5905:2:3"
},
"nodeType": "YulFunctionCall",
"src": "5905:14:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5920:26:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5922:22:3",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5935:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5942:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5931:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5931:13:3"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5922:5:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5902:2:3",
"statements": []
},
"src": "5898:120:3"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "5876:5:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5883:3:3",
"type": ""
}
],
"src": "5838:186:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6109:464:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6135:431:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6149:54:3",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "6197:5:3"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "6165:31:3"
},
"nodeType": "YulFunctionCall",
"src": "6165:38:3"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "6153:8:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6216:63:3",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6239:8:3"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "6267:10:3"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6249:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6249:29:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6235:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6235:44:3"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "6220:11:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6436:27:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6438:23:3",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6453:8:3"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "6438:11:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "6420:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6432:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6417:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6417:18:3"
},
"nodeType": "YulIf",
"src": "6414:49:3"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "6505:11:3"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6522:8:3"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6550:3:3"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6532:22:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6518:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6518:37:3"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "6476:28:3"
},
"nodeType": "YulFunctionCall",
"src": "6476:80:3"
},
"nodeType": "YulExpressionStatement",
"src": "6476:80:3"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6126:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6131:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6123:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6123:11:3"
},
"nodeType": "YulIf",
"src": "6120:446:3"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "6085:5:3",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6092:3:3",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "6097:10:3",
"type": ""
}
],
"src": "6030:543:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6642:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6652:37:3",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "6677:4:3"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6683:5:3"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "6673:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6673:16:3"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "6652:8:3"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6617:4:3",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6623:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "6633:8:3",
"type": ""
}
],
"src": "6579:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6753:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6763:68:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6812:1:3",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "6815:5:3"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6808:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6808:13:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6827:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6823:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6823:6:3"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "6779:28:3"
},
"nodeType": "YulFunctionCall",
"src": "6779:51:3"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6775:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6775:56:3"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "6767:4:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6840:25:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6854:4:3"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "6860:4:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6850:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6850:15:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6840:6:3"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6730:4:3",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "6736:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6746:6:3",
"type": ""
}
],
"src": "6702:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6957:214:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7090:37:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7117:4:3"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7123:3:3"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "7098:18:3"
},
"nodeType": "YulFunctionCall",
"src": "7098:29:3"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7090:4:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7136:29:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7147:4:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7157:1:3",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7160:3:3"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7153:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7153:11:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7144:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7144:21:3"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "7136:4:3"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6938:4:3",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6944:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "6952:4:3",
"type": ""
}
],
"src": "6876:295:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7268:1303:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7279:51:3",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7326:3:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7293:32:3"
},
"nodeType": "YulFunctionCall",
"src": "7293:37:3"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "7283:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7415:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7417:16:3"
},
"nodeType": "YulFunctionCall",
"src": "7417:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "7417:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7387:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7395:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7384:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7384:30:3"
},
"nodeType": "YulIf",
"src": "7381:56:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7447:52:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7493:4:3"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "7487:5:3"
},
"nodeType": "YulFunctionCall",
"src": "7487:11:3"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "7461:25:3"
},
"nodeType": "YulFunctionCall",
"src": "7461:38:3"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "7451:6:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7592:4:3"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "7598:6:3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7606:6:3"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "7546:45:3"
},
"nodeType": "YulFunctionCall",
"src": "7546:67:3"
},
"nodeType": "YulExpressionStatement",
"src": "7546:67:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7623:18:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7640:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "7627:9:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7651:17:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7664:4:3",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "7651:9:3"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "7715:611:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7729:37:3",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7748:6:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7760:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7756:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7756:9:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7744:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7744:22:3"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "7733:7:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7780:51:3",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7826:4:3"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "7794:31:3"
},
"nodeType": "YulFunctionCall",
"src": "7794:37:3"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "7784:6:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7844:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7853:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7848:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7912:163:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "7937:6:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7955:3:3"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "7960:9:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7951:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7951:19:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7945:5:3"
},
"nodeType": "YulFunctionCall",
"src": "7945:26:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "7930:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7930:42:3"
},
"nodeType": "YulExpressionStatement",
"src": "7930:42:3"
},
{
"nodeType": "YulAssignment",
"src": "7989:24:3",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8003:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8011:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7999:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7999:14:3"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "7989:6:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8030:31:3",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8047:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8058:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8043:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8043:18:3"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8030:9:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7878:1:3"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "7881:7:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7875:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7875:14:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7890:21:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7892:17:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7901:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7904:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7897:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7897:12:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7892:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7871:3:3",
"statements": []
},
"src": "7867:208:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8111:156:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8129:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8156:3:3"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8161:9:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8152:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8152:19:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8146:5:3"
},
"nodeType": "YulFunctionCall",
"src": "8146:26:3"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "8133:9:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8196:6:3"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "8223:9:3"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8238:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8246:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8234:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8234:17:3"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "8204:18:3"
},
"nodeType": "YulFunctionCall",
"src": "8204:48:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8189:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8189:64:3"
},
"nodeType": "YulExpressionStatement",
"src": "8189:64:3"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "8094:7:3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8103:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8091:2:3"
},
"nodeType": "YulFunctionCall",
"src": "8091:19:3"
},
"nodeType": "YulIf",
"src": "8088:179:3"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8287:4:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8301:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8309:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8297:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8297:14:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8313:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8293:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8293:22:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8280:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8280:36:3"
},
"nodeType": "YulExpressionStatement",
"src": "8280:36:3"
}
]
},
"nodeType": "YulCase",
"src": "7708:618:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7713:1:3",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "8343:222:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8357:14:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8370:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8361:5:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8394:67:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8412:35:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8431:3:3"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8436:9:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8427:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8427:19:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8421:5:3"
},
"nodeType": "YulFunctionCall",
"src": "8421:26:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8412:5:3"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8387:6:3"
},
"nodeType": "YulIf",
"src": "8384:77:3"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8481:4:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8540:5:3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8547:6:3"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "8487:52:3"
},
"nodeType": "YulFunctionCall",
"src": "8487:67:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8474:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8474:81:3"
},
"nodeType": "YulExpressionStatement",
"src": "8474:81:3"
}
]
},
"nodeType": "YulCase",
"src": "8335:230:3",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7688:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7696:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7685:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7685:14:3"
},
"nodeType": "YulSwitch",
"src": "7678:887:3"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "7257:4:3",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "7263:3:3",
"type": ""
}
],
"src": "7176:1395:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801562000010575f80fd5b50604051620018d4380380620018d48339818101604052810190620000369190620001e7565b8160039081620000479190620004a1565b508060049081620000599190620004a1565b50505062000585565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620000c3826200007b565b810181811067ffffffffffffffff82111715620000e557620000e46200008b565b5b80604052505050565b5f620000f962000062565b9050620001078282620000b8565b919050565b5f67ffffffffffffffff8211156200012957620001286200008b565b5b62000134826200007b565b9050602081019050919050565b5f5b838110156200016057808201518184015260208101905062000143565b5f8484015250505050565b5f620001816200017b846200010c565b620000ee565b905082815260208101848484011115620001a0576200019f62000077565b5b620001ad84828562000141565b509392505050565b5f82601f830112620001cc57620001cb62000073565b5b8151620001de8482602086016200016b565b91505092915050565b5f80604083850312156200020057620001ff6200006b565b5b5f83015167ffffffffffffffff81111562000220576200021f6200006f565b5b6200022e85828601620001b5565b925050602083015167ffffffffffffffff8111156200025257620002516200006f565b5b6200026085828601620001b5565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b957607f821691505b602082108103620002cf57620002ce62000274565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f6565b6200033f8683620002f6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000389620003836200037d8462000357565b62000360565b62000357565b9050919050565b5f819050919050565b620003a48362000369565b620003bc620003b38262000390565b84845462000302565b825550505050565b5f90565b620003d2620003c4565b620003df81848462000399565b505050565b5b818110156200040657620003fa5f82620003c8565b600181019050620003e5565b5050565b601f82111562000455576200041f81620002d5565b6200042a84620002e7565b810160208510156200043a578190505b620004526200044985620002e7565b830182620003e4565b50505b505050565b5f82821c905092915050565b5f620004775f19846008026200045a565b1980831691505092915050565b5f62000491838362000466565b9150826002028217905092915050565b620004ac826200026a565b67ffffffffffffffff811115620004c857620004c76200008b565b5b620004d48254620002a1565b620004e18282856200040a565b5f60209050601f83116001811462000517575f841562000502578287015190505b6200050e858262000484565b8655506200057d565b601f1984166200052786620002d5565b5f5b82811015620005505784890151825560018201915060208501945060208101905062000529565b868310156200057057848901516200056c601f89168262000466565b8355505b6001600288020188555050505b505050505050565b61134180620005935f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610c02565b60405180910390f35b6100e360048036038101906100de9190610cb3565b610303565b6040516100f09190610d0b565b60405180910390f35b610101610320565b60405161010e9190610d33565b60405180910390f35b610131600480360381019061012c9190610d4c565b610329565b60405161013e9190610d0b565b60405180910390f35b61014f610424565b60405161015c9190610db7565b60405180910390f35b61017f600480360381019061017a9190610cb3565b61042c565b60405161018c9190610d0b565b60405180910390f35b6101af60048036038101906101aa9190610dd0565b6104d3565b6040516101bc9190610d33565b60405180910390f35b6101cd610518565b6040516101da9190610c02565b60405180910390f35b6101fd60048036038101906101f89190610cb3565b6105a8565b60405161020a9190610d0b565b60405180910390f35b61022d60048036038101906102289190610cb3565b610697565b60405161023a9190610d0b565b60405180910390f35b61025d60048036038101906102589190610dfb565b6106b4565b60405161026a9190610d33565b60405180910390f35b60606003805461028290610e66565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e66565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610f06565b60405180910390fd5b61041885610407610736565b85846104139190610f51565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f84565b61073d565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e66565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e66565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f8060015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611027565b60405180910390fd5b61068c61067a610736565b8585846106879190610f51565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906110b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611143565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d33565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111d1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061125f565b60405180910390fd5b6109e7838383610b73565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112ed565b60405180910390fd5b8181610a769190610f51565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f84565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d33565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610baf578082015181840152602081019050610b94565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bd482610b78565b610bde8185610b82565b9350610bee818560208601610b92565b610bf781610bba565b840191505092915050565b5f6020820190508181035f830152610c1a8184610bca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4f82610c26565b9050919050565b610c5f81610c45565b8114610c69575f80fd5b50565b5f81359050610c7a81610c56565b92915050565b5f819050919050565b610c9281610c80565b8114610c9c575f80fd5b50565b5f81359050610cad81610c89565b92915050565b5f8060408385031215610cc957610cc8610c22565b5b5f610cd685828601610c6c565b9250506020610ce785828601610c9f565b9150509250929050565b5f8115159050919050565b610d0581610cf1565b82525050565b5f602082019050610d1e5f830184610cfc565b92915050565b610d2d81610c80565b82525050565b5f602082019050610d465f830184610d24565b92915050565b5f805f60608486031215610d6357610d62610c22565b5b5f610d7086828701610c6c565b9350506020610d8186828701610c6c565b9250506040610d9286828701610c9f565b9150509250925092565b5f60ff82169050919050565b610db181610d9c565b82525050565b5f602082019050610dca5f830184610da8565b92915050565b5f60208284031215610de557610de4610c22565b5b5f610df284828501610c6c565b91505092915050565b5f8060408385031215610e1157610e10610c22565b5b5f610e1e85828601610c6c565b9250506020610e2f85828601610c6c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7d57607f821691505b602082108103610e9057610e8f610e39565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ef0602883610b82565b9150610efb82610e96565b604082019050919050565b5f6020820190508181035f830152610f1d81610ee4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f5b82610c80565b9150610f6683610c80565b9250828203905081811115610f7e57610f7d610f24565b5b92915050565b5f610f8e82610c80565b9150610f9983610c80565b9250828201905080821115610fb157610fb0610f24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611011602583610b82565b915061101c82610fb7565b604082019050919050565b5f6020820190508181035f83015261103e81611005565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61109f602483610b82565b91506110aa82611045565b604082019050919050565b5f6020820190508181035f8301526110cc81611093565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61112d602283610b82565b9150611138826110d3565b604082019050919050565b5f6020820190508181035f83015261115a81611121565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111bb602583610b82565b91506111c682611161565b604082019050919050565b5f6020820190508181035f8301526111e8816111af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611249602383610b82565b9150611254826111ef565b604082019050919050565b5f6020820190508181035f8301526112768161123d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112d7602683610b82565b91506112e28261127d565b604082019050919050565b5f6020820190508181035f830152611304816112cb565b905091905056fea2646970667358221220d30a92f83a4a3cf8baaec1ba4f97c3621655db5830b99d45b08e7aba6443f38664736f6c63430008140033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x18D4 CODESIZE SUB DUP1 PUSH3 0x18D4 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x36 SWAP2 SWAP1 PUSH3 0x1E7 JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x47 SWAP2 SWAP1 PUSH3 0x4A1 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x59 SWAP2 SWAP1 PUSH3 0x4A1 JUMP JUMPDEST POP POP POP PUSH3 0x585 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH3 0xC3 DUP3 PUSH3 0x7B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xE5 JUMPI PUSH3 0xE4 PUSH3 0x8B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH3 0xF9 PUSH3 0x62 JUMP JUMPDEST SWAP1 POP PUSH3 0x107 DUP3 DUP3 PUSH3 0xB8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x129 JUMPI PUSH3 0x128 PUSH3 0x8B JUMP JUMPDEST JUMPDEST PUSH3 0x134 DUP3 PUSH3 0x7B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x160 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x143 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH3 0x181 PUSH3 0x17B DUP5 PUSH3 0x10C JUMP JUMPDEST PUSH3 0xEE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1A0 JUMPI PUSH3 0x19F PUSH3 0x77 JUMP JUMPDEST JUMPDEST PUSH3 0x1AD DUP5 DUP3 DUP6 PUSH3 0x141 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1CC JUMPI PUSH3 0x1CB PUSH3 0x73 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x1DE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x16B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x200 JUMPI PUSH3 0x1FF PUSH3 0x6B JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x220 JUMPI PUSH3 0x21F PUSH3 0x6F JUMP JUMPDEST JUMPDEST PUSH3 0x22E DUP6 DUP3 DUP7 ADD PUSH3 0x1B5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x252 JUMPI PUSH3 0x251 PUSH3 0x6F JUMP JUMPDEST JUMPDEST PUSH3 0x260 DUP6 DUP3 DUP7 ADD PUSH3 0x1B5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2B9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2CF JUMPI PUSH3 0x2CE PUSH3 0x274 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x333 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x2F6 JUMP JUMPDEST PUSH3 0x33F DUP7 DUP4 PUSH3 0x2F6 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x389 PUSH3 0x383 PUSH3 0x37D DUP5 PUSH3 0x357 JUMP JUMPDEST PUSH3 0x360 JUMP JUMPDEST PUSH3 0x357 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3A4 DUP4 PUSH3 0x369 JUMP JUMPDEST PUSH3 0x3BC PUSH3 0x3B3 DUP3 PUSH3 0x390 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x302 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x3D2 PUSH3 0x3C4 JUMP JUMPDEST PUSH3 0x3DF DUP2 DUP5 DUP5 PUSH3 0x399 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x406 JUMPI PUSH3 0x3FA PUSH0 DUP3 PUSH3 0x3C8 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x455 JUMPI PUSH3 0x41F DUP2 PUSH3 0x2D5 JUMP JUMPDEST PUSH3 0x42A DUP5 PUSH3 0x2E7 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x43A JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x452 PUSH3 0x449 DUP6 PUSH3 0x2E7 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x3E4 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x477 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x45A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x491 DUP4 DUP4 PUSH3 0x466 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4AC DUP3 PUSH3 0x26A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4C8 JUMPI PUSH3 0x4C7 PUSH3 0x8B JUMP JUMPDEST JUMPDEST PUSH3 0x4D4 DUP3 SLOAD PUSH3 0x2A1 JUMP JUMPDEST PUSH3 0x4E1 DUP3 DUP3 DUP6 PUSH3 0x40A JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x517 JUMPI PUSH0 DUP5 ISZERO PUSH3 0x502 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x50E DUP6 DUP3 PUSH3 0x484 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x57D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x527 DUP7 PUSH3 0x2D5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x550 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x529 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x570 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x56C PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x466 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1341 DUP1 PUSH3 0x593 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x243 JUMPI PUSH2 0xA7 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC9 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x117 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x147 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB3 PUSH2 0x273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0xC02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDE SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x303 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x101 PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xD4C JUMP JUMPDEST PUSH2 0x329 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14F PUSH2 0x424 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xDB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17A SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x42C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0xDD0 JUMP JUMPDEST PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CD PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0xC02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x5A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20A SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x228 SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x258 SWAP2 SWAP1 PUSH2 0xDFB JUMP JUMPDEST PUSH2 0x6B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26A SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x282 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2AE SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2F9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2F9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x316 PUSH2 0x30F PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x335 DUP5 DUP5 DUP5 PUSH2 0x900 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x37C PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3F2 SWAP1 PUSH2 0xF06 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x418 DUP6 PUSH2 0x407 PUSH2 0x736 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x413 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x4C9 PUSH2 0x438 PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH0 PUSH2 0x445 PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0x4C4 SWAP2 SWAP1 PUSH2 0xF84 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x527 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x553 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x59E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x575 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x59E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x581 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 PUSH0 PUSH2 0x5B5 PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x66F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x666 SWAP1 PUSH2 0x1027 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x68C PUSH2 0x67A PUSH2 0x736 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0x687 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x6AA PUSH2 0x6A3 PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x900 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x7AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x810 SWAP1 PUSH2 0x1143 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x8F3 SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x96E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x965 SWAP1 PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D3 SWAP1 PUSH2 0x125F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9E7 DUP4 DUP4 DUP4 PUSH2 0xB73 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA61 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0xA76 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xB01 SWAP2 SWAP1 PUSH2 0xF84 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB65 SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST POP POP POP 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 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBAF JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB94 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xBD4 DUP3 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0xBDE DUP2 DUP6 PUSH2 0xB82 JUMP JUMPDEST SWAP4 POP PUSH2 0xBEE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xB92 JUMP JUMPDEST PUSH2 0xBF7 DUP2 PUSH2 0xBBA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC1A DUP2 DUP5 PUSH2 0xBCA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC4F DUP3 PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC5F DUP2 PUSH2 0xC45 JUMP JUMPDEST DUP2 EQ PUSH2 0xC69 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC7A DUP2 PUSH2 0xC56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC92 DUP2 PUSH2 0xC80 JUMP JUMPDEST DUP2 EQ PUSH2 0xC9C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCAD DUP2 PUSH2 0xC89 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCC9 JUMPI PUSH2 0xCC8 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCD6 DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCE7 DUP6 DUP3 DUP7 ADD PUSH2 0xC9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD05 DUP2 PUSH2 0xCF1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD1E PUSH0 DUP4 ADD DUP5 PUSH2 0xCFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD2D DUP2 PUSH2 0xC80 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD46 PUSH0 DUP4 ADD DUP5 PUSH2 0xD24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD63 JUMPI PUSH2 0xD62 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD70 DUP7 DUP3 DUP8 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xD81 DUP7 DUP3 DUP8 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xD92 DUP7 DUP3 DUP8 ADD PUSH2 0xC9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB1 DUP2 PUSH2 0xD9C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xDCA PUSH0 DUP4 ADD DUP5 PUSH2 0xDA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDE5 JUMPI PUSH2 0xDE4 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xDF2 DUP5 DUP3 DUP6 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE11 JUMPI PUSH2 0xE10 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE1E DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE2F DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE7D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xE90 JUMPI PUSH2 0xE8F PUSH2 0xE39 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xEF0 PUSH1 0x28 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0xEFB DUP3 PUSH2 0xE96 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 0xF1D DUP2 PUSH2 0xEE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xF5B DUP3 PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP PUSH2 0xF66 DUP4 PUSH2 0xC80 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0xF7E JUMPI PUSH2 0xF7D PUSH2 0xF24 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF8E DUP3 PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP PUSH2 0xF99 DUP4 PUSH2 0xC80 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xFB1 JUMPI PUSH2 0xFB0 PUSH2 0xF24 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1011 PUSH1 0x25 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x101C DUP3 PUSH2 0xFB7 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 0x103E DUP2 PUSH2 0x1005 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x109F PUSH1 0x24 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1045 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 0x10CC DUP2 PUSH2 0x1093 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x112D PUSH1 0x22 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x1138 DUP3 PUSH2 0x10D3 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 0x115A DUP2 PUSH2 0x1121 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x11BB PUSH1 0x25 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x11C6 DUP3 PUSH2 0x1161 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 0x11E8 DUP2 PUSH2 0x11AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1249 PUSH1 0x23 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x1254 DUP3 PUSH2 0x11EF 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 0x1276 DUP2 PUSH2 0x123D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x12D7 PUSH1 0x26 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x12E2 DUP3 PUSH2 0x127D 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 0x1304 DUP2 PUSH2 0x12CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 EXP SWAP3 0xF8 GASPRICE 0x4A EXTCODECOPY 0xF8 0xBA 0xAE 0xC1 0xBA 0x4F SWAP8 0xC3 PUSH3 0x1655DB PC ADDRESS 0xB9 SWAP14 GASLIMIT 0xB0 DUP15 PUSH27 0xBA6443F38664736F6C634300081400330000000000000000000000 ",
"sourceMap": "1279:9238:0:-:0;;;1842:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1917:5;1909;:13;;;;;;:::i;:::-;;1942:7;1932;:17;;;;;;:::i;:::-;;1842:114;;1279:9238;;7:75:3;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:246::-;1691:1;1701:113;1715:6;1712:1;1709:13;1701:113;;;1800:1;1795:3;1791:11;1785:18;1781:1;1776:3;1772:11;1765:39;1737:2;1734:1;1730:10;1725:15;;1701:113;;;1848:1;1839:6;1834:3;1830:16;1823:27;1672:184;1610:246;;;:::o;1862:434::-;1951:5;1976:66;1992:49;2034:6;1992:49;:::i;:::-;1976:66;:::i;:::-;1967:75;;2065:6;2058:5;2051:21;2103:4;2096:5;2092:16;2141:3;2132:6;2127:3;2123:16;2120:25;2117:112;;;2148:79;;:::i;:::-;2117:112;2238:52;2283:6;2278:3;2273;2238:52;:::i;:::-;1957:339;1862:434;;;;;:::o;2316:355::-;2383:5;2432:3;2425:4;2417:6;2413:17;2409:27;2399:122;;2440:79;;:::i;:::-;2399:122;2550:6;2544:13;2575:90;2661:3;2653:6;2646:4;2638:6;2634:17;2575:90;:::i;:::-;2566:99;;2389:282;2316:355;;;;:::o;2677:853::-;2776:6;2784;2833:2;2821:9;2812:7;2808:23;2804:32;2801:119;;;2839:79;;:::i;:::-;2801:119;2980:1;2969:9;2965:17;2959:24;3010:18;3002:6;2999:30;2996:117;;;3032:79;;:::i;:::-;2996:117;3137:74;3203:7;3194:6;3183:9;3179:22;3137:74;:::i;:::-;3127:84;;2930:291;3281:2;3270:9;3266:18;3260:25;3312:18;3304:6;3301:30;3298:117;;;3334:79;;:::i;:::-;3298:117;3439:74;3505:7;3496:6;3485:9;3481:22;3439:74;:::i;:::-;3429:84;;3231:292;2677:853;;;;;:::o;3536:99::-;3588:6;3622:5;3616:12;3606:22;;3536:99;;;:::o;3641:180::-;3689:77;3686:1;3679:88;3786:4;3783:1;3776:15;3810:4;3807:1;3800:15;3827:320;3871:6;3908:1;3902:4;3898:12;3888:22;;3955:1;3949:4;3945:12;3976:18;3966:81;;4032:4;4024:6;4020:17;4010:27;;3966:81;4094:2;4086:6;4083:14;4063:18;4060:38;4057:84;;4113:18;;:::i;:::-;4057:84;3878:269;3827:320;;;:::o;4153:141::-;4202:4;4225:3;4217:11;;4248:3;4245:1;4238:14;4282:4;4279:1;4269:18;4261:26;;4153:141;;;:::o;4300:93::-;4337:6;4384:2;4379;4372:5;4368:14;4364:23;4354:33;;4300:93;;;:::o;4399:107::-;4443:8;4493:5;4487:4;4483:16;4462:37;;4399:107;;;;:::o;4512:393::-;4581:6;4631:1;4619:10;4615:18;4654:97;4684:66;4673:9;4654:97;:::i;:::-;4772:39;4802:8;4791:9;4772:39;:::i;:::-;4760:51;;4844:4;4840:9;4833:5;4829:21;4820:30;;4893:4;4883:8;4879:19;4872:5;4869:30;4859:40;;4588:317;;4512:393;;;;;:::o;4911:77::-;4948:7;4977:5;4966:16;;4911:77;;;:::o;4994:60::-;5022:3;5043:5;5036:12;;4994:60;;;:::o;5060:142::-;5110:9;5143:53;5161:34;5170:24;5188:5;5170:24;:::i;:::-;5161:34;:::i;:::-;5143:53;:::i;:::-;5130:66;;5060:142;;;:::o;5208:75::-;5251:3;5272:5;5265:12;;5208:75;;;:::o;5289:269::-;5399:39;5430:7;5399:39;:::i;:::-;5460:91;5509:41;5533:16;5509:41;:::i;:::-;5501:6;5494:4;5488:11;5460:91;:::i;:::-;5454:4;5447:105;5365:193;5289:269;;;:::o;5564:73::-;5609:3;5564:73;:::o;5643:189::-;5720:32;;:::i;:::-;5761:65;5819:6;5811;5805:4;5761:65;:::i;:::-;5696:136;5643:189;;:::o;5838:186::-;5898:120;5915:3;5908:5;5905:14;5898:120;;;5969:39;6006:1;5999:5;5969:39;:::i;:::-;5942:1;5935:5;5931:13;5922:22;;5898:120;;;5838:186;;:::o;6030:543::-;6131:2;6126:3;6123:11;6120:446;;;6165:38;6197:5;6165:38;:::i;:::-;6249:29;6267:10;6249:29;:::i;:::-;6239:8;6235:44;6432:2;6420:10;6417:18;6414:49;;;6453:8;6438:23;;6414:49;6476:80;6532:22;6550:3;6532:22;:::i;:::-;6522:8;6518:37;6505:11;6476:80;:::i;:::-;6135:431;;6120:446;6030:543;;;:::o;6579:117::-;6633:8;6683:5;6677:4;6673:16;6652:37;;6579:117;;;;:::o;6702:169::-;6746:6;6779:51;6827:1;6823:6;6815:5;6812:1;6808:13;6779:51;:::i;:::-;6775:56;6860:4;6854;6850:15;6840:25;;6753:118;6702:169;;;;:::o;6876:295::-;6952:4;7098:29;7123:3;7117:4;7098:29;:::i;:::-;7090:37;;7160:3;7157:1;7153:11;7147:4;7144:21;7136:29;;6876:295;;;;:::o;7176:1395::-;7293:37;7326:3;7293:37;:::i;:::-;7395:18;7387:6;7384:30;7381:56;;;7417:18;;:::i;:::-;7381:56;7461:38;7493:4;7487:11;7461:38;:::i;:::-;7546:67;7606:6;7598;7592:4;7546:67;:::i;:::-;7640:1;7664:4;7651:17;;7696:2;7688:6;7685:14;7713:1;7708:618;;;;8370:1;8387:6;8384:77;;;8436:9;8431:3;8427:19;8421:26;8412:35;;8384:77;8487:67;8547:6;8540:5;8487:67;:::i;:::-;8481:4;8474:81;8343:222;7678:887;;7708:618;7760:4;7756:9;7748:6;7744:22;7794:37;7826:4;7794:37;:::i;:::-;7853:1;7867:208;7881:7;7878:1;7875:14;7867:208;;;7960:9;7955:3;7951:19;7945:26;7937:6;7930:42;8011:1;8003:6;7999:14;7989:24;;8058:2;8047:9;8043:18;8030:31;;7904:4;7901:1;7897:12;7892:17;;7867:208;;;8103:6;8094:7;8091:19;8088:179;;;8161:9;8156:3;8152:19;8146:26;8204:48;8246:4;8238:6;8234:17;8223:9;8204:48;:::i;:::-;8196:6;8189:64;8111:156;8088:179;8313:1;8309;8301:6;8297:14;8293:22;8287:4;8280:36;7715:611;;;7678:887;;7268:1303;;;7176:1395;;:::o;1279:9238:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_approve_488": {
"entryPoint": 1853,
"id": 488,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_499": {
"entryPoint": 2931,
"id": 499,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_589": {
"entryPoint": 1846,
"id": 589,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transfer_334": {
"entryPoint": 2304,
"id": 334,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_131": {
"entryPoint": 1716,
"id": 131,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_152": {
"entryPoint": 771,
"id": 152,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_92": {
"entryPoint": 1235,
"id": 92,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_68": {
"entryPoint": 1060,
"id": 68,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_264": {
"entryPoint": 1448,
"id": 264,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_226": {
"entryPoint": 1068,
"id": 226,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_50": {
"entryPoint": 627,
"id": 50,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_59": {
"entryPoint": 1304,
"id": 59,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_78": {
"entryPoint": 800,
"id": 78,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 809,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_113": {
"entryPoint": 1687,
"id": 113,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3180,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3231,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3536,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3579,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3404,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3251,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3324,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3018,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4669,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4385,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4811,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3812,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4527,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4243,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4101,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3364,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3496,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3339,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3074,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4703,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4845,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3846,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4561,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4277,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4135,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3379,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 3511,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2936,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2946,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3972,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 3921,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 3141,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3313,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3110,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3200,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 3484,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 2962,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3686,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3876,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3641,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 3106,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 3002,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 4591,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 4307,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 4733,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330": {
"entryPoint": 3734,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 4449,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 4165,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 4023,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 3158,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 3209,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:13947:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:3"
},
"nodeType": "YulFunctionCall",
"src": "87:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:3"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:3",
"type": ""
}
],
"src": "7:99:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:3"
},
"nodeType": "YulFunctionCall",
"src": "218:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:3"
},
{
"nodeType": "YulAssignment",
"src": "246:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:3"
},
"nodeType": "YulFunctionCall",
"src": "261:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:3",
"type": ""
}
],
"src": "112:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:184:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "359:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "368:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "363:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "428:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "453:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "458:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "449:3:3"
},
"nodeType": "YulFunctionCall",
"src": "449:11:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "472:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "477:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "468:3:3"
},
"nodeType": "YulFunctionCall",
"src": "468:11:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "462:5:3"
},
"nodeType": "YulFunctionCall",
"src": "462:18:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "442:6:3"
},
"nodeType": "YulFunctionCall",
"src": "442:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "442:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "392:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "386:2:3"
},
"nodeType": "YulFunctionCall",
"src": "386:13:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "400:19:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "402:15:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "411:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "407:3:3"
},
"nodeType": "YulFunctionCall",
"src": "407:10:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "402:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "382:3:3",
"statements": []
},
"src": "378:113:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "511:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "516:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "507:3:3"
},
"nodeType": "YulFunctionCall",
"src": "507:16:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "500:6:3"
},
"nodeType": "YulFunctionCall",
"src": "500:27:3"
},
"nodeType": "YulExpressionStatement",
"src": "500:27:3"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "331:3:3",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "336:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "341:6:3",
"type": ""
}
],
"src": "287:246:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "587:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "597:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "615:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "622:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "611:3:3"
},
"nodeType": "YulFunctionCall",
"src": "611:14:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "627:3:3"
},
"nodeType": "YulFunctionCall",
"src": "627:7:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "607:3:3"
},
"nodeType": "YulFunctionCall",
"src": "607:28:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "597:6:3"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "580:6:3",
"type": ""
}
],
"src": "539:102:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "739:285:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "749:53:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "796:5:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "763:32:3"
},
"nodeType": "YulFunctionCall",
"src": "763:39:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "753:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "811:78:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "877:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "882:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "818:58:3"
},
"nodeType": "YulFunctionCall",
"src": "818:71:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "811:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "937:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:3"
},
"nodeType": "YulFunctionCall",
"src": "933:16:3"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "951:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "898:34:3"
},
"nodeType": "YulFunctionCall",
"src": "898:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "898:65:3"
},
{
"nodeType": "YulAssignment",
"src": "972:46:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "983:3:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1010:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "988:21:3"
},
"nodeType": "YulFunctionCall",
"src": "988:29:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:3"
},
"nodeType": "YulFunctionCall",
"src": "979:39:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:3"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "720:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "727:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "735:3:3",
"type": ""
}
],
"src": "647:377:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:195:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1205:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1201:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1201:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1224:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1230:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1220:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1220:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1194:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1194:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "1194:47:3"
},
{
"nodeType": "YulAssignment",
"src": "1250:86:3",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:3"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1331:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1258:63:3"
},
"nodeType": "YulFunctionCall",
"src": "1258:78:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1250:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1120:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1143:4:3",
"type": ""
}
],
"src": "1030:313:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1409:5:3"
},
"nodeType": "YulFunctionCall",
"src": "1409:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1399:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1382:6:3",
"type": ""
}
],
"src": "1349:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1536:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1529:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1529:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1529:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1642:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1652:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1652:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1652:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1721:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1731:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1746:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1742:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1742:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1731:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1713:7:3",
"type": ""
}
],
"src": "1676:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1853:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1863:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1892:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1874:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1874:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1863:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1835:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1845:7:3",
"type": ""
}
],
"src": "1808:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1953:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2010:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2019:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2012:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2012:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2012:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2001:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1983:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1983:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1973:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1973:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1966:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1966:43:3"
},
"nodeType": "YulIf",
"src": "1963:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1946:5:3",
"type": ""
}
],
"src": "1910:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2090:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2100:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2122:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2109:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2109:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2100:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2165:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2138:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2138:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2138:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2068:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2076:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:3",
"type": ""
}
],
"src": "2038:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2238:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2238:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2210:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2220:7:3",
"type": ""
}
],
"src": "2183:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2366:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2375:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2368:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2368:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2368:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2332:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2357:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2339:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2339:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2329:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2329:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2322:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2322:43:3"
},
"nodeType": "YulIf",
"src": "2319:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2302:5:3",
"type": ""
}
],
"src": "2266:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2446:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2456:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2478:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2465:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2465:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2456:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2494:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2494:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2494:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2424:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2432:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2440:5:3",
"type": ""
}
],
"src": "2394:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2668:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2670:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2670:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2670:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2643:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2652:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2639:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2639:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2635:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2635:32:3"
},
"nodeType": "YulIf",
"src": "2632:119:3"
},
{
"nodeType": "YulBlock",
"src": "2761:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2776:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2790:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2780:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2805:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2840:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2851:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2836:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2836:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2815:20:3"
},
"nodeType": "YulFunctionCall",
"src": "2815:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2805:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2888:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2917:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2933:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2943:20:3"
},
"nodeType": "YulFunctionCall",
"src": "2943:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2933:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2584:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2595:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2607:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2615:6:3",
"type": ""
}
],
"src": "2539:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:48:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3071:32:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3096:5:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3089:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3089:13:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3082:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3082:21:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3071:7:3"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3043:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3053:7:3",
"type": ""
}
],
"src": "3019:90:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3174:50:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3191:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3211:5:3"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3196:14:3"
},
"nodeType": "YulFunctionCall",
"src": "3196:21:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3184:34:3"
},
"nodeType": "YulExpressionStatement",
"src": "3184:34:3"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3162:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3169:3:3",
"type": ""
}
],
"src": "3115:109:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3322:118:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3332:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3344:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3340:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3332:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3406:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3419:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3415:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3415:17:3"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3368:37:3"
},
"nodeType": "YulFunctionCall",
"src": "3368:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "3368:65:3"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3294:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3306:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3317:4:3",
"type": ""
}
],
"src": "3230:210:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3511:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3528:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3551:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3533:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3533:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3521:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3521:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "3521:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3499:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3506:3:3",
"type": ""
}
],
"src": "3446:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3668:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3678:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3678:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3758:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3771:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3767:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3767:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3714:43:3"
},
"nodeType": "YulFunctionCall",
"src": "3714:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "3714:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3640:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3652:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3663:4:3",
"type": ""
}
],
"src": "3570:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:519:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3944:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3946:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3946:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3946:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3919:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3928:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3915:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3915:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3940:2:3",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3911:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3911:32:3"
},
"nodeType": "YulIf",
"src": "3908:119:3"
},
{
"nodeType": "YulBlock",
"src": "4037:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4052:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4066:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4056:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4081:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4116:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4127:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4112:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4112:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4136:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4091:20:3"
},
"nodeType": "YulFunctionCall",
"src": "4091:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4081:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4164:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4179:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4193:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4183:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4209:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4244:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4255:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4240:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4240:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4264:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4219:20:3"
},
"nodeType": "YulFunctionCall",
"src": "4219:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4209:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4292:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4307:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:2:3",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4311:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4337:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4372:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4383:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4368:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4392:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4347:20:3"
},
"nodeType": "YulFunctionCall",
"src": "4347:53:3"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4337:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3852:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3863:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3875:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3883:6:3",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3891:6:3",
"type": ""
}
],
"src": "3798:619:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4466:43:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4476:27:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4491:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4498:4:3",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4487:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4487:16:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4476:7:3"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4448:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4458:7:3",
"type": ""
}
],
"src": "4423:86:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4576:51:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4593:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4614:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4598:15:3"
},
"nodeType": "YulFunctionCall",
"src": "4598:22:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4586:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4586:35:3"
},
"nodeType": "YulExpressionStatement",
"src": "4586:35:3"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4564:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4571:3:3",
"type": ""
}
],
"src": "4515:112:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4727:120:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4737:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4749:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4760:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4745:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4745:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4737:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4813:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4826:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4837:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4822:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4822:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4773:39:3"
},
"nodeType": "YulFunctionCall",
"src": "4773:67:3"
},
"nodeType": "YulExpressionStatement",
"src": "4773:67:3"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4699:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4711:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4722:4:3",
"type": ""
}
],
"src": "4633:214:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4919:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4965:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4967:77:3"
},
"nodeType": "YulFunctionCall",
"src": "4967:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "4967:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4940:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4949:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4936:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4936:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4961:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4932:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4932:32:3"
},
"nodeType": "YulIf",
"src": "4929:119:3"
},
{
"nodeType": "YulBlock",
"src": "5058:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5073:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5087:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5077:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5102:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5137:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5148:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5133:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5133:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5157:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5112:20:3"
},
"nodeType": "YulFunctionCall",
"src": "5112:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5102:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4889:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4900:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4912:6:3",
"type": ""
}
],
"src": "4853:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5271:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5317:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5319:77:3"
},
"nodeType": "YulFunctionCall",
"src": "5319:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "5319:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5292:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5301:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5288:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5288:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5313:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5284:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5284:32:3"
},
"nodeType": "YulIf",
"src": "5281:119:3"
},
{
"nodeType": "YulBlock",
"src": "5410:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5425:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5439:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5429:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5454:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5489:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5500:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5485:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5485:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5509:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5464:20:3"
},
"nodeType": "YulFunctionCall",
"src": "5464:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5454:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5537:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5552:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5566:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5556:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5582:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5617:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5628:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5613:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5613:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5637:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5592:20:3"
},
"nodeType": "YulFunctionCall",
"src": "5592:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5582:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5233:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5244:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5256:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5264:6:3",
"type": ""
}
],
"src": "5188:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5696:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5713:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5716:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5706:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5706:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "5706:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5810:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5813:4:3",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5803:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5803:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "5803:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5834:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5837:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5827:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5827:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "5827:15:3"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5668:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5905:269:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5915:22:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5929:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5935:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5925:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5925:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5915:6:3"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5946:38:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5976:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5982:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5972:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5972:12:3"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5950:18:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6023:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6037:27:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6051:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6059:4:3",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6047:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6047:17:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6037:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6003:18:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5996:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5996:26:3"
},
"nodeType": "YulIf",
"src": "5993:81:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6126:42:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6140:16:3"
},
"nodeType": "YulFunctionCall",
"src": "6140:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "6140:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6090:18:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6113:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6121:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6110:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6110:14:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6087:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6087:38:3"
},
"nodeType": "YulIf",
"src": "6084:84:3"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5889:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5898:6:3",
"type": ""
}
],
"src": "5854:320:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6286:121:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6308:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6316:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6304:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6304:14:3"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6320:34:3",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6297:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6297:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "6297:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6376:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6384:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6372:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6372:15:3"
},
{
"hexValue": "6c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6389:10:3",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6365:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6365:35:3"
},
"nodeType": "YulExpressionStatement",
"src": "6365:35:3"
}
]
},
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6278:6:3",
"type": ""
}
],
"src": "6180:227:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6559:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6569:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6635:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6640:2:3",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6576:58:3"
},
"nodeType": "YulFunctionCall",
"src": "6576:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6569:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6741:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "6652:88:3"
},
"nodeType": "YulFunctionCall",
"src": "6652:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "6652:93:3"
},
{
"nodeType": "YulAssignment",
"src": "6754:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6765:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6770:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6761:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6761:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6754:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6547:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6555:3:3",
"type": ""
}
],
"src": "6413:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6956:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6966:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6978:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6989:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6974:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6974:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6966:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7013:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7024:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7009:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7009:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7032:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7038:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7028:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7028:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7002:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7002:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "7002:47:3"
},
{
"nodeType": "YulAssignment",
"src": "7058:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7192:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7066:124:3"
},
"nodeType": "YulFunctionCall",
"src": "7066:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7058:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6936:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6951:4:3",
"type": ""
}
],
"src": "6785:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7238:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7255:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7258:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7248:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7248:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "7248:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7352:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7355:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7345:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7345:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "7345:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7376:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7379:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7369:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7369:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "7369:15:3"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "7210:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7441:149:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7451:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7474:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7456:17:3"
},
"nodeType": "YulFunctionCall",
"src": "7456:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7451:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7485:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7508:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7490:17:3"
},
"nodeType": "YulFunctionCall",
"src": "7490:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7485:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7519:17:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7531:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7534:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7527:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7527:9:3"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "7519:4:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7561:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7563:16:3"
},
"nodeType": "YulFunctionCall",
"src": "7563:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "7563:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "7552:4:3"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7558:1:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7549:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7549:11:3"
},
"nodeType": "YulIf",
"src": "7546:37:3"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "7427:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "7430:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "7436:4:3",
"type": ""
}
],
"src": "7396:194:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7640:147:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7650:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7673:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7655:17:3"
},
"nodeType": "YulFunctionCall",
"src": "7655:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7650:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7684:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7707:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7689:17:3"
},
"nodeType": "YulFunctionCall",
"src": "7689:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7684:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7718:16:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7729:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7732:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7725:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7725:9:3"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "7718:3:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7758:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7760:16:3"
},
"nodeType": "YulFunctionCall",
"src": "7760:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "7760:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7750:1:3"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "7753:3:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7747:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7747:10:3"
},
"nodeType": "YulIf",
"src": "7744:36:3"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "7627:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "7630:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "7636:3:3",
"type": ""
}
],
"src": "7596:191:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7899:118:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7921:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7929:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7917:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7917:14:3"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7933:34:3",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7910:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7910:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "7910:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7989:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7997:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7985:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7985:15:3"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8002:7:3",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7978:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7978:32:3"
},
"nodeType": "YulExpressionStatement",
"src": "7978:32:3"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7891:6:3",
"type": ""
}
],
"src": "7793:224:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8169:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8179:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8245:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8250:2:3",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8186:58:3"
},
"nodeType": "YulFunctionCall",
"src": "8186:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8179:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8351:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "8262:88:3"
},
"nodeType": "YulFunctionCall",
"src": "8262:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "8262:93:3"
},
{
"nodeType": "YulAssignment",
"src": "8364:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8375:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8380:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8371:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8371:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8364:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8157:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8165:3:3",
"type": ""
}
],
"src": "8023:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8566:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8576:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8588:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8599:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8584:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8584:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8576:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8623:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8634:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8619:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8619:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8642:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8648:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8638:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8638:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8612:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8612:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "8612:47:3"
},
{
"nodeType": "YulAssignment",
"src": "8668:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8802:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8676:124:3"
},
"nodeType": "YulFunctionCall",
"src": "8676:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8668:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8546:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8561:4:3",
"type": ""
}
],
"src": "8395:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8926:117:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8948:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8956:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8944:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8944:14:3"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8960:34:3",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8937:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8937:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "8937:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9016:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9024:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9012:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9012:15:3"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9029:6:3",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9005:6:3"
},
"nodeType": "YulFunctionCall",
"src": "9005:31:3"
},
"nodeType": "YulExpressionStatement",
"src": "9005:31:3"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8918:6:3",
"type": ""
}
],
"src": "8820:223:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9195:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9205:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9271:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9276:2:3",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9212:58:3"
},
"nodeType": "YulFunctionCall",
"src": "9212:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9205:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9377:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "9288:88:3"
},
"nodeType": "YulFunctionCall",
"src": "9288:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "9288:93:3"
},
{
"nodeType": "YulAssignment",
"src": "9390:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9401:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9406:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9397:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9397:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9390:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9183:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9191:3:3",
"type": ""
}
],
"src": "9049:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9592:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9602:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9614:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9625:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9610:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9610:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9602:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9649:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9660:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9645:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9645:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9668:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9674:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9664:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9664:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9638:6:3"
},
"nodeType": "YulFunctionCall",
"src": "9638:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "9638:47:3"
},
{
"nodeType": "YulAssignment",
"src": "9694:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9828:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9702:124:3"
},
"nodeType": "YulFunctionCall",
"src": "9702:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9694:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9572:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9587:4:3",
"type": ""
}
],
"src": "9421:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9952:115:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9974:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9982:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9970:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9970:14:3"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9986:34:3",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9963:6:3"
},
"nodeType": "YulFunctionCall",
"src": "9963:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "9963:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10042:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10050:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10038:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10038:15:3"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10055:4:3",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10031:6:3"
},
"nodeType": "YulFunctionCall",
"src": "10031:29:3"
},
"nodeType": "YulExpressionStatement",
"src": "10031:29:3"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9944:6:3",
"type": ""
}
],
"src": "9846:221:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10219:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10229:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10295:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10300:2:3",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10236:58:3"
},
"nodeType": "YulFunctionCall",
"src": "10236:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10229:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10401:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "10312:88:3"
},
"nodeType": "YulFunctionCall",
"src": "10312:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "10312:93:3"
},
{
"nodeType": "YulAssignment",
"src": "10414:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10425:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10430:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10421:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10421:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10414:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10207:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10215:3:3",
"type": ""
}
],
"src": "10073:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10616:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10626:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10638:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10649:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10634:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10634:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10626:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10673:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10684:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10669:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10669:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10692:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10698:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10688:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10688:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10662:6:3"
},
"nodeType": "YulFunctionCall",
"src": "10662:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "10662:47:3"
},
{
"nodeType": "YulAssignment",
"src": "10718:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10852:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10726:124:3"
},
"nodeType": "YulFunctionCall",
"src": "10726:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10718:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10596:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10611:4:3",
"type": ""
}
],
"src": "10445:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10976:118:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10998:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11006:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10994:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10994:14:3"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11010:34:3",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10987:6:3"
},
"nodeType": "YulFunctionCall",
"src": "10987:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "10987:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11066:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11074:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11062:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11062:15:3"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11079:7:3",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11055:6:3"
},
"nodeType": "YulFunctionCall",
"src": "11055:32:3"
},
"nodeType": "YulExpressionStatement",
"src": "11055:32:3"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10968:6:3",
"type": ""
}
],
"src": "10870:224:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11246:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11256:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11322:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11327:2:3",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11263:58:3"
},
"nodeType": "YulFunctionCall",
"src": "11263:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11256:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11428:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "11339:88:3"
},
"nodeType": "YulFunctionCall",
"src": "11339:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "11339:93:3"
},
{
"nodeType": "YulAssignment",
"src": "11441:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11452:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11457:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11448:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11448:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11441:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11234:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11242:3:3",
"type": ""
}
],
"src": "11100:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11643:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11653:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11665:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11676:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11661:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11661:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11653:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11700:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11711:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11696:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11696:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11719:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11725:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11715:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11715:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11689:6:3"
},
"nodeType": "YulFunctionCall",
"src": "11689:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "11689:47:3"
},
{
"nodeType": "YulAssignment",
"src": "11745:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11879:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11753:124:3"
},
"nodeType": "YulFunctionCall",
"src": "11753:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11745:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11623:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11638:4:3",
"type": ""
}
],
"src": "11472:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12003:116:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12025:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12033:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12021:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12021:14:3"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12037:34:3",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12014:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12014:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "12014:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12093:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12101:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12089:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12089:15:3"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12106:5:3",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12082:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12082:30:3"
},
"nodeType": "YulExpressionStatement",
"src": "12082:30:3"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11995:6:3",
"type": ""
}
],
"src": "11897:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12271:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12281:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12347:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12352:2:3",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12288:58:3"
},
"nodeType": "YulFunctionCall",
"src": "12288:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12281:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12453:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "12364:88:3"
},
"nodeType": "YulFunctionCall",
"src": "12364:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "12364:93:3"
},
{
"nodeType": "YulAssignment",
"src": "12466:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12477:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12482:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12473:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12473:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12466:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12259:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12267:3:3",
"type": ""
}
],
"src": "12125:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12668:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12678:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12690:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12701:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12686:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12686:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12678:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12725:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12736:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12721:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12721:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12744:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12750:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12740:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12740:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12714:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12714:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "12714:47:3"
},
{
"nodeType": "YulAssignment",
"src": "12770:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12904:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12778:124:3"
},
"nodeType": "YulFunctionCall",
"src": "12778:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12770:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12648:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12663:4:3",
"type": ""
}
],
"src": "12497:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13028:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13050:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13058:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13046:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13046:14:3"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13062:34:3",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13039:6:3"
},
"nodeType": "YulFunctionCall",
"src": "13039:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "13039:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13118:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13126:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13114:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13114:15:3"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13131:8:3",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13107:6:3"
},
"nodeType": "YulFunctionCall",
"src": "13107:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "13107:33:3"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13020:6:3",
"type": ""
}
],
"src": "12922:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13299:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13309:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13375:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13380:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13316:58:3"
},
"nodeType": "YulFunctionCall",
"src": "13316:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13309:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13481:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "13392:88:3"
},
"nodeType": "YulFunctionCall",
"src": "13392:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "13392:93:3"
},
{
"nodeType": "YulAssignment",
"src": "13494:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13505:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13510:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13501:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13501:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13494:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13287:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13295:3:3",
"type": ""
}
],
"src": "13153:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13696:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13706:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13718:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13729:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13714:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13714:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13706:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13753:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13764:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13749:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13749:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13772:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13778:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13768:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13768:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13742:6:3"
},
"nodeType": "YulFunctionCall",
"src": "13742:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "13742:47:3"
},
{
"nodeType": "YulAssignment",
"src": "13798:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13932:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13806:124:3"
},
"nodeType": "YulFunctionCall",
"src": "13806:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13798:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13676:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13691:4:3",
"type": ""
}
],
"src": "13525:419:3"
}
]
},
"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 let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\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 }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_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 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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { 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 let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\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 abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(memPtr, 32), \"llowance\")\n\n }\n\n function abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610c02565b60405180910390f35b6100e360048036038101906100de9190610cb3565b610303565b6040516100f09190610d0b565b60405180910390f35b610101610320565b60405161010e9190610d33565b60405180910390f35b610131600480360381019061012c9190610d4c565b610329565b60405161013e9190610d0b565b60405180910390f35b61014f610424565b60405161015c9190610db7565b60405180910390f35b61017f600480360381019061017a9190610cb3565b61042c565b60405161018c9190610d0b565b60405180910390f35b6101af60048036038101906101aa9190610dd0565b6104d3565b6040516101bc9190610d33565b60405180910390f35b6101cd610518565b6040516101da9190610c02565b60405180910390f35b6101fd60048036038101906101f89190610cb3565b6105a8565b60405161020a9190610d0b565b60405180910390f35b61022d60048036038101906102289190610cb3565b610697565b60405161023a9190610d0b565b60405180910390f35b61025d60048036038101906102589190610dfb565b6106b4565b60405161026a9190610d33565b60405180910390f35b60606003805461028290610e66565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e66565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610f06565b60405180910390fd5b61041885610407610736565b85846104139190610f51565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f84565b61073d565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e66565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e66565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f8060015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611027565b60405180910390fd5b61068c61067a610736565b8585846106879190610f51565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906110b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611143565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d33565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111d1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061125f565b60405180910390fd5b6109e7838383610b73565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112ed565b60405180910390fd5b8181610a769190610f51565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f84565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d33565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610baf578082015181840152602081019050610b94565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bd482610b78565b610bde8185610b82565b9350610bee818560208601610b92565b610bf781610bba565b840191505092915050565b5f6020820190508181035f830152610c1a8184610bca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4f82610c26565b9050919050565b610c5f81610c45565b8114610c69575f80fd5b50565b5f81359050610c7a81610c56565b92915050565b5f819050919050565b610c9281610c80565b8114610c9c575f80fd5b50565b5f81359050610cad81610c89565b92915050565b5f8060408385031215610cc957610cc8610c22565b5b5f610cd685828601610c6c565b9250506020610ce785828601610c9f565b9150509250929050565b5f8115159050919050565b610d0581610cf1565b82525050565b5f602082019050610d1e5f830184610cfc565b92915050565b610d2d81610c80565b82525050565b5f602082019050610d465f830184610d24565b92915050565b5f805f60608486031215610d6357610d62610c22565b5b5f610d7086828701610c6c565b9350506020610d8186828701610c6c565b9250506040610d9286828701610c9f565b9150509250925092565b5f60ff82169050919050565b610db181610d9c565b82525050565b5f602082019050610dca5f830184610da8565b92915050565b5f60208284031215610de557610de4610c22565b5b5f610df284828501610c6c565b91505092915050565b5f8060408385031215610e1157610e10610c22565b5b5f610e1e85828601610c6c565b9250506020610e2f85828601610c6c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7d57607f821691505b602082108103610e9057610e8f610e39565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ef0602883610b82565b9150610efb82610e96565b604082019050919050565b5f6020820190508181035f830152610f1d81610ee4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f5b82610c80565b9150610f6683610c80565b9250828203905081811115610f7e57610f7d610f24565b5b92915050565b5f610f8e82610c80565b9150610f9983610c80565b9250828201905080821115610fb157610fb0610f24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611011602583610b82565b915061101c82610fb7565b604082019050919050565b5f6020820190508181035f83015261103e81611005565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61109f602483610b82565b91506110aa82611045565b604082019050919050565b5f6020820190508181035f8301526110cc81611093565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61112d602283610b82565b9150611138826110d3565b604082019050919050565b5f6020820190508181035f83015261115a81611121565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111bb602583610b82565b91506111c682611161565b604082019050919050565b5f6020820190508181035f8301526111e8816111af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611249602383610b82565b9150611254826111ef565b604082019050919050565b5f6020820190508181035f8301526112768161123d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112d7602683610b82565b91506112e28261127d565b604082019050919050565b5f6020820190508181035f830152611304816112cb565b905091905056fea2646970667358221220d30a92f83a4a3cf8baaec1ba4f97c3621655db5830b99d45b08e7aba6443f38664736f6c63430008140033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x243 JUMPI PUSH2 0xA7 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC9 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x117 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x147 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB3 PUSH2 0x273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0xC02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDE SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x303 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x101 PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xD4C JUMP JUMPDEST PUSH2 0x329 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14F PUSH2 0x424 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xDB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17A SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x42C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0xDD0 JUMP JUMPDEST PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CD PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0xC02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x5A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20A SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x228 SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x258 SWAP2 SWAP1 PUSH2 0xDFB JUMP JUMPDEST PUSH2 0x6B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26A SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x282 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2AE SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2F9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2F9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x316 PUSH2 0x30F PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x335 DUP5 DUP5 DUP5 PUSH2 0x900 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x37C PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3F2 SWAP1 PUSH2 0xF06 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x418 DUP6 PUSH2 0x407 PUSH2 0x736 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x413 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x4C9 PUSH2 0x438 PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH0 PUSH2 0x445 PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0x4C4 SWAP2 SWAP1 PUSH2 0xF84 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x527 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x553 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x59E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x575 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x59E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x581 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 PUSH0 PUSH2 0x5B5 PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x66F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x666 SWAP1 PUSH2 0x1027 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x68C PUSH2 0x67A PUSH2 0x736 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0x687 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x6AA PUSH2 0x6A3 PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x900 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x7AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x810 SWAP1 PUSH2 0x1143 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x8F3 SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x96E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x965 SWAP1 PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D3 SWAP1 PUSH2 0x125F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9E7 DUP4 DUP4 DUP4 PUSH2 0xB73 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA61 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0xA76 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xB01 SWAP2 SWAP1 PUSH2 0xF84 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB65 SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST POP POP POP 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 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBAF JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB94 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xBD4 DUP3 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0xBDE DUP2 DUP6 PUSH2 0xB82 JUMP JUMPDEST SWAP4 POP PUSH2 0xBEE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xB92 JUMP JUMPDEST PUSH2 0xBF7 DUP2 PUSH2 0xBBA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC1A DUP2 DUP5 PUSH2 0xBCA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC4F DUP3 PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC5F DUP2 PUSH2 0xC45 JUMP JUMPDEST DUP2 EQ PUSH2 0xC69 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC7A DUP2 PUSH2 0xC56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC92 DUP2 PUSH2 0xC80 JUMP JUMPDEST DUP2 EQ PUSH2 0xC9C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCAD DUP2 PUSH2 0xC89 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCC9 JUMPI PUSH2 0xCC8 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCD6 DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCE7 DUP6 DUP3 DUP7 ADD PUSH2 0xC9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD05 DUP2 PUSH2 0xCF1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD1E PUSH0 DUP4 ADD DUP5 PUSH2 0xCFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD2D DUP2 PUSH2 0xC80 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD46 PUSH0 DUP4 ADD DUP5 PUSH2 0xD24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD63 JUMPI PUSH2 0xD62 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD70 DUP7 DUP3 DUP8 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xD81 DUP7 DUP3 DUP8 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xD92 DUP7 DUP3 DUP8 ADD PUSH2 0xC9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB1 DUP2 PUSH2 0xD9C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xDCA PUSH0 DUP4 ADD DUP5 PUSH2 0xDA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDE5 JUMPI PUSH2 0xDE4 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xDF2 DUP5 DUP3 DUP6 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE11 JUMPI PUSH2 0xE10 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE1E DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE2F DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE7D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xE90 JUMPI PUSH2 0xE8F PUSH2 0xE39 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xEF0 PUSH1 0x28 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0xEFB DUP3 PUSH2 0xE96 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 0xF1D DUP2 PUSH2 0xEE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xF5B DUP3 PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP PUSH2 0xF66 DUP4 PUSH2 0xC80 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0xF7E JUMPI PUSH2 0xF7D PUSH2 0xF24 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF8E DUP3 PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP PUSH2 0xF99 DUP4 PUSH2 0xC80 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xFB1 JUMPI PUSH2 0xFB0 PUSH2 0xF24 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1011 PUSH1 0x25 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x101C DUP3 PUSH2 0xFB7 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 0x103E DUP2 PUSH2 0x1005 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x109F PUSH1 0x24 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1045 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 0x10CC DUP2 PUSH2 0x1093 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x112D PUSH1 0x22 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x1138 DUP3 PUSH2 0x10D3 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 0x115A DUP2 PUSH2 0x1121 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x11BB PUSH1 0x25 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x11C6 DUP3 PUSH2 0x1161 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 0x11E8 DUP2 PUSH2 0x11AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1249 PUSH1 0x23 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x1254 DUP3 PUSH2 0x11EF 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 0x1276 DUP2 PUSH2 0x123D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x12D7 PUSH1 0x26 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x12E2 DUP3 PUSH2 0x127D 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 0x1304 DUP2 PUSH2 0x12CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 EXP SWAP3 0xF8 GASPRICE 0x4A EXTCODECOPY 0xF8 0xBA 0xAE 0xC1 0xBA 0x4F SWAP8 0xC3 PUSH3 0x1655DB PC ADDRESS 0xB9 SWAP14 GASLIMIT 0xB0 DUP15 PUSH27 0xBA6443F38664736F6C634300081400330000000000000000000000 ",
"sourceMap": "1279:9238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4091:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3082:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2940:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5533:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3246:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2223:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3574:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3804:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2021:89;2066:13;2098:5;2091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:89;:::o;4091:166::-;4174:4;4190:39;4199:12;:10;:12::i;:::-;4213:7;4222:6;4190:8;:39::i;:::-;4246:4;4239:11;;4091:166;;;;:::o;3082:106::-;3143:7;3169:12;;3162:19;;3082:106;:::o;4724:414::-;4830:4;4846:36;4856:6;4864:9;4875:6;4846:9;:36::i;:::-;4893:24;4920:11;:19;4932:6;4920:19;;;;;;;;;;;;;;;:33;4940:12;:10;:12::i;:::-;4920:33;;;;;;;;;;;;;;;;4893:60;;4991:6;4971:16;:26;;4963:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:57;5061:6;5069:12;:10;:12::i;:::-;5102:6;5083:16;:25;;;;:::i;:::-;5052:8;:57::i;:::-;5127:4;5120:11;;;4724:414;;;;;:::o;2940:82::-;2989:5;3013:2;3006:9;;2940:82;:::o;5533:212::-;5621:4;5637:80;5646:12;:10;:12::i;:::-;5660:7;5706:10;5669:11;:25;5681:12;:10;:12::i;:::-;5669:25;;;;;;;;;;;;;;;:34;5695:7;5669:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5637:8;:80::i;:::-;5734:4;5727:11;;5533:212;;;;:::o;3246:125::-;3320:7;3346:9;:18;3356:7;3346:18;;;;;;;;;;;;;;;;3339:25;;3246:125;;;:::o;2223:93::-;2270:13;2302:7;2295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223:93;:::o;6232:371::-;6325:4;6341:24;6368:11;:25;6380:12;:10;:12::i;:::-;6368:25;;;;;;;;;;;;;;;:34;6394:7;6368:34;;;;;;;;;;;;;;;;6341:61;;6440:15;6420:16;:35;;6412:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6507:67;6516:12;:10;:12::i;:::-;6530:7;6558:15;6539:16;:34;;;;:::i;:::-;6507:8;:67::i;:::-;6592:4;6585:11;;;6232:371;;;;:::o;3574:172::-;3660:4;3676:42;3686:12;:10;:12::i;:::-;3700:9;3711:6;3676:9;:42::i;:::-;3735:4;3728:11;;3574:172;;;;:::o;3804:149::-;3893:7;3919:11;:18;3931:5;3919:18;;;;;;;;;;;;;;;:27;3938:7;3919:27;;;;;;;;;;;;;;;;3912:34;;3804:149;;;;:::o;586:96:2:-;639:7;665:10;658:17;;586:96;:::o;9496:340:0:-;9614:1;9597:19;;:5;:19;;;9589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9694:1;9675:21;;:7;:21;;;9667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9776:6;9746:11;:18;9758:5;9746:18;;;;;;;;;;;;;;;:27;9765:7;9746:27;;;;;;;;;;;;;;;:36;;;;9813:7;9797:32;;9806:5;9797:32;;;9822:6;9797:32;;;;;;:::i;:::-;;;;;;;;9496:340;;;:::o;7077:592::-;7200:1;7182:20;;:6;:20;;;7174:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7283:1;7262:23;;:9;:23;;;7254:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7336:47;7357:6;7365:9;7376:6;7336:20;:47::i;:::-;7394:21;7418:9;:17;7428:6;7418:17;;;;;;;;;;;;;;;;7394:41;;7470:6;7453:13;:23;;7445:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7565:6;7549:13;:22;;;;:::i;:::-;7529:9;:17;7539:6;7529:17;;;;;;;;;;;;;;;:42;;;;7605:6;7581:9;:20;7591:9;7581:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7644:9;7627:35;;7636:6;7627:35;;;7655:6;7627:35;;;;;;:::i;:::-;;;;;;;;7164:505;7077:592;;;:::o;10423:92::-;;;;:::o;7:99:3:-;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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:227::-;6320:34;6316:1;6308:6;6304:14;6297:58;6389:10;6384:2;6376:6;6372:15;6365:35;6180:227;:::o;6413:366::-;6555:3;6576:67;6640:2;6635:3;6576:67;:::i;:::-;6569:74;;6652:93;6741:3;6652:93;:::i;:::-;6770:2;6765:3;6761:12;6754:19;;6413:366;;;:::o;6785:419::-;6951:4;6989:2;6978:9;6974:18;6966:26;;7038:9;7032:4;7028:20;7024:1;7013:9;7009:17;7002:47;7066:131;7192:4;7066:131;:::i;:::-;7058:139;;6785:419;;;:::o;7210:180::-;7258:77;7255:1;7248:88;7355:4;7352:1;7345:15;7379:4;7376:1;7369:15;7396:194;7436:4;7456:20;7474:1;7456:20;:::i;:::-;7451:25;;7490:20;7508:1;7490:20;:::i;:::-;7485:25;;7534:1;7531;7527:9;7519:17;;7558:1;7552:4;7549:11;7546:37;;;7563:18;;:::i;:::-;7546:37;7396:194;;;;:::o;7596:191::-;7636:3;7655:20;7673:1;7655:20;:::i;:::-;7650:25;;7689:20;7707:1;7689:20;:::i;:::-;7684:25;;7732:1;7729;7725:9;7718:16;;7753:3;7750:1;7747:10;7744:36;;;7760:18;;:::i;:::-;7744:36;7596:191;;;;:::o;7793:224::-;7933:34;7929:1;7921:6;7917:14;7910:58;8002:7;7997:2;7989:6;7985:15;7978:32;7793:224;:::o;8023:366::-;8165:3;8186:67;8250:2;8245:3;8186:67;:::i;:::-;8179:74;;8262:93;8351:3;8262:93;:::i;:::-;8380:2;8375:3;8371:12;8364:19;;8023:366;;;:::o;8395:419::-;8561:4;8599:2;8588:9;8584:18;8576:26;;8648:9;8642:4;8638:20;8634:1;8623:9;8619:17;8612:47;8676:131;8802:4;8676:131;:::i;:::-;8668:139;;8395:419;;;:::o;8820:223::-;8960:34;8956:1;8948:6;8944:14;8937:58;9029:6;9024:2;9016:6;9012:15;9005:31;8820:223;:::o;9049:366::-;9191:3;9212:67;9276:2;9271:3;9212:67;:::i;:::-;9205:74;;9288:93;9377:3;9288:93;:::i;:::-;9406:2;9401:3;9397:12;9390:19;;9049:366;;;:::o;9421:419::-;9587:4;9625:2;9614:9;9610:18;9602:26;;9674:9;9668:4;9664:20;9660:1;9649:9;9645:17;9638:47;9702:131;9828:4;9702:131;:::i;:::-;9694:139;;9421:419;;;:::o;9846:221::-;9986:34;9982:1;9974:6;9970:14;9963:58;10055:4;10050:2;10042:6;10038:15;10031:29;9846:221;:::o;10073:366::-;10215:3;10236:67;10300:2;10295:3;10236:67;:::i;:::-;10229:74;;10312:93;10401:3;10312:93;:::i;:::-;10430:2;10425:3;10421:12;10414:19;;10073:366;;;:::o;10445:419::-;10611:4;10649:2;10638:9;10634:18;10626:26;;10698:9;10692:4;10688:20;10684:1;10673:9;10669:17;10662:47;10726:131;10852:4;10726:131;:::i;:::-;10718:139;;10445:419;;;:::o;10870:224::-;11010:34;11006:1;10998:6;10994:14;10987:58;11079:7;11074:2;11066:6;11062:15;11055:32;10870:224;:::o;11100:366::-;11242:3;11263:67;11327:2;11322:3;11263:67;:::i;:::-;11256:74;;11339:93;11428:3;11339:93;:::i;:::-;11457:2;11452:3;11448:12;11441:19;;11100:366;;;:::o;11472:419::-;11638:4;11676:2;11665:9;11661:18;11653:26;;11725:9;11719:4;11715:20;11711:1;11700:9;11696:17;11689:47;11753:131;11879:4;11753:131;:::i;:::-;11745:139;;11472:419;;;:::o;11897:222::-;12037:34;12033:1;12025:6;12021:14;12014:58;12106:5;12101:2;12093:6;12089:15;12082:30;11897:222;:::o;12125:366::-;12267:3;12288:67;12352:2;12347:3;12288:67;:::i;:::-;12281:74;;12364:93;12453:3;12364:93;:::i;:::-;12482:2;12477:3;12473:12;12466:19;;12125:366;;;:::o;12497:419::-;12663:4;12701:2;12690:9;12686:18;12678:26;;12750:9;12744:4;12740:20;12736:1;12725:9;12721:17;12714:47;12778:131;12904:4;12778:131;:::i;:::-;12770:139;;12497:419;;;:::o;12922:225::-;13062:34;13058:1;13050:6;13046:14;13039:58;13131:8;13126:2;13118:6;13114:15;13107:33;12922:225;:::o;13153:366::-;13295:3;13316:67;13380:2;13375:3;13316:67;:::i;:::-;13309:74;;13392:93;13481:3;13392:93;:::i;:::-;13510:2;13505:3;13501:12;13494:19;;13153:366;;;:::o;13525:419::-;13691:4;13729:2;13718:9;13714:18;13706:26;;13778:9;13772:4;13768:20;13764:1;13753:9;13749:17;13742:47;13806:131;13932:4;13806:131;:::i;:::-;13798:139;;13525:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "985800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2851",
"decimals()": "427",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2477",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "15",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.20+commit.a1b79de6"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin guidelines: functions revert instead of returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. The defaut value of {decimals} is 18. To select a different value for {decimals} you should overload it. All three of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overloaded; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol": "ERC20"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x21d8a5dd396bee41e4a039d150af08b66b6d09eef416daf8e5edf13ef219084e",
"license": "MIT",
"urls": [
"bzz-raw://682f1e9c20780070df3c8b52bf3b48d2aa6debcdff5a924e212d78bbaedb945f",
"dweb:/ipfs/QmXGhsAPeemtVQ8ip5CsParvX3sgpMm4Lq8EccS3YaTtwA"
]
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The defaut value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overloaded;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
This file has been truncated, but you can view the full file.
{
"id": "765425e62ced4aba524c736b0ff3b6e7",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.20",
"solcLongVersion": "0.8.20+commit.a1b79de6",
"input": {
"language": "Solidity",
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin guidelines: functions revert instead\n * of returning `false` on failure. This behavior is nonetheless conventional\n * and does not conflict with the expectations of ERC20 applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20 {\n mapping (address => uint256) private _balances;\n\n mapping (address => mapping (address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * The defaut value of {decimals} is 18. To select a different value for\n * {decimals} you should overload it.\n *\n * All three of these values are immutable: they can only be set once during\n * construction.\n */\n constructor (string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5,05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the value {ERC20} uses, unless this function is\n * overloaded;\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `recipient` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\n _transfer(_msgSender(), recipient, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n _approve(_msgSender(), spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * Requirements:\n *\n * - `sender` and `recipient` cannot be the zero address.\n * - `sender` must have a balance of at least `amount`.\n * - the caller must have allowance for ``sender``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {\n _transfer(sender, recipient, amount);\n\n uint256 currentAllowance = _allowances[sender][_msgSender()];\n require(currentAllowance >= amount, \"ERC20: transfer amount exceeds allowance\");\n _approve(sender, _msgSender(), currentAllowance - amount);\n\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n uint256 currentAllowance = _allowances[_msgSender()][spender];\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n _approve(_msgSender(), spender, currentAllowance - subtractedValue);\n\n return true;\n }\n\n /**\n * @dev Moves tokens `amount` from `sender` to `recipient`.\n *\n * This is internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `sender` cannot be the zero address.\n * - `recipient` cannot be the zero address.\n * - `sender` must have a balance of at least `amount`.\n */\n function _transfer(address sender, address recipient, uint256 amount) internal virtual {\n require(sender != address(0), \"ERC20: transfer from the zero address\");\n require(recipient != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(sender, recipient, amount);\n\n uint256 senderBalance = _balances[sender];\n require(senderBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n _balances[sender] = senderBalance - amount;\n _balances[recipient] += amount;\n\n emit Transfer(sender, recipient, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n _balances[account] += amount;\n emit Transfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n _balances[account] = accountBalance - amount;\n _totalSupply -= amount;\n\n emit Transfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be to transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }\n}\n"
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/*\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691\n return msg.data;\n }\n}\n"
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `recipient`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address recipient, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `sender` to `recipient` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);\n\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\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": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin guidelines: functions revert instead of returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. The defaut value of {decimals} is 18. To select a different value for {decimals} you should overload it. All three of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overloaded; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
}
},
"version": 1
},
"evm": {
"assembly": " /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1279:10517 contract ERC20 is Context, IERC20 {... */\n mstore(0x40, 0x80)\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1842:1956 constructor (string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1917:1922 name_ */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1909:1914 _name */\n 0x03\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1909:1922 _name = name_ */\n swap1\n dup2\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1942:1949 symbol_ */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1932:1939 _symbol */\n 0x04\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1932:1949 _symbol = symbol_ */\n swap1\n dup2\n tag_8\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1842:1956 constructor (string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1279:10517 contract ERC20 is Context, IERC20 {... */\n jump(tag_9)\n /* \"#utility.yul\":7:82 */\ntag_10:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_11:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_12:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_13:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\ntag_14:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\ntag_15:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\ntag_16:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\ntag_17:\n /* \"#utility.yul\":957:984 */\n tag_51\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_15\n jump\t// in\ntag_51:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_52\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_53\n tag_16\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1030:1118 */\ntag_52:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\ntag_18:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_55\n tag_10\n jump\t// in\ntag_55:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_56\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_17\n jump\t// in\ntag_56:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\ntag_19:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_59\n tag_16\n jump\t// in\ntag_59:\n /* \"#utility.yul\":1434:1490 */\ntag_58:\n /* \"#utility.yul\":1508:1537 */\n tag_60\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_15\n jump\t// in\ntag_60:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1856 */\ntag_20:\n /* \"#utility.yul\":1691:1692 */\n 0x00\n /* \"#utility.yul\":1701:1814 */\ntag_62:\n /* \"#utility.yul\":1715:1721 */\n dup4\n /* \"#utility.yul\":1712:1713 */\n dup2\n /* \"#utility.yul\":1709:1722 */\n lt\n /* \"#utility.yul\":1701:1814 */\n iszero\n tag_64\n jumpi\n /* \"#utility.yul\":1800:1801 */\n dup1\n /* \"#utility.yul\":1795:1798 */\n dup3\n /* \"#utility.yul\":1791:1802 */\n add\n /* \"#utility.yul\":1785:1803 */\n mload\n /* \"#utility.yul\":1781:1782 */\n dup2\n /* \"#utility.yul\":1776:1779 */\n dup5\n /* \"#utility.yul\":1772:1783 */\n add\n /* \"#utility.yul\":1765:1804 */\n mstore\n /* \"#utility.yul\":1737:1739 */\n 0x20\n /* \"#utility.yul\":1734:1735 */\n dup2\n /* \"#utility.yul\":1730:1740 */\n add\n /* \"#utility.yul\":1725:1740 */\n swap1\n pop\n /* \"#utility.yul\":1701:1814 */\n jump(tag_62)\ntag_64:\n /* \"#utility.yul\":1848:1849 */\n 0x00\n /* \"#utility.yul\":1839:1845 */\n dup5\n /* \"#utility.yul\":1834:1837 */\n dup5\n /* \"#utility.yul\":1830:1846 */\n add\n /* \"#utility.yul\":1823:1850 */\n mstore\n /* \"#utility.yul\":1672:1856 */\n pop\n /* \"#utility.yul\":1610:1856 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1862:2296 */\ntag_21:\n /* \"#utility.yul\":1951:1956 */\n 0x00\n /* \"#utility.yul\":1976:2042 */\n tag_66\n /* \"#utility.yul\":1992:2041 */\n tag_67\n /* \"#utility.yul\":2034:2040 */\n dup5\n /* \"#utility.yul\":1992:2041 */\n tag_19\n jump\t// in\ntag_67:\n /* \"#utility.yul\":1976:2042 */\n tag_18\n jump\t// in\ntag_66:\n /* \"#utility.yul\":1967:2042 */\n swap1\n pop\n /* \"#utility.yul\":2065:2071 */\n dup3\n /* \"#utility.yul\":2058:2063 */\n dup2\n /* \"#utility.yul\":2051:2072 */\n mstore\n /* \"#utility.yul\":2103:2107 */\n 0x20\n /* \"#utility.yul\":2096:2101 */\n dup2\n /* \"#utility.yul\":2092:2108 */\n add\n /* \"#utility.yul\":2141:2144 */\n dup5\n /* \"#utility.yul\":2132:2138 */\n dup5\n /* \"#utility.yul\":2127:2130 */\n dup5\n /* \"#utility.yul\":2123:2139 */\n add\n /* \"#utility.yul\":2120:2145 */\n gt\n /* \"#utility.yul\":2117:2229 */\n iszero\n tag_68\n jumpi\n /* \"#utility.yul\":2148:2227 */\n tag_69\n tag_14\n jump\t// in\ntag_69:\n /* \"#utility.yul\":2117:2229 */\ntag_68:\n /* \"#utility.yul\":2238:2290 */\n tag_70\n /* \"#utility.yul\":2283:2289 */\n dup5\n /* \"#utility.yul\":2278:2281 */\n dup3\n /* \"#utility.yul\":2273:2276 */\n dup6\n /* \"#utility.yul\":2238:2290 */\n tag_20\n jump\t// in\ntag_70:\n /* \"#utility.yul\":1957:2296 */\n pop\n /* \"#utility.yul\":1862:2296 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2316:2671 */\ntag_22:\n /* \"#utility.yul\":2383:2388 */\n 0x00\n /* \"#utility.yul\":2432:2435 */\n dup3\n /* \"#utility.yul\":2425:2429 */\n 0x1f\n /* \"#utility.yul\":2417:2423 */\n dup4\n /* \"#utility.yul\":2413:2430 */\n add\n /* \"#utility.yul\":2409:2436 */\n slt\n /* \"#utility.yul\":2399:2521 */\n tag_72\n jumpi\n /* \"#utility.yul\":2440:2519 */\n tag_73\n tag_13\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2399:2521 */\ntag_72:\n /* \"#utility.yul\":2550:2556 */\n dup2\n /* \"#utility.yul\":2544:2557 */\n mload\n /* \"#utility.yul\":2575:2665 */\n tag_74\n /* \"#utility.yul\":2661:2664 */\n dup5\n /* \"#utility.yul\":2653:2659 */\n dup3\n /* \"#utility.yul\":2646:2650 */\n 0x20\n /* \"#utility.yul\":2638:2644 */\n dup7\n /* \"#utility.yul\":2634:2651 */\n add\n /* \"#utility.yul\":2575:2665 */\n tag_21\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2566:2665 */\n swap2\n pop\n /* \"#utility.yul\":2389:2671 */\n pop\n /* \"#utility.yul\":2316:2671 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2677:3530 */\ntag_3:\n /* \"#utility.yul\":2776:2782 */\n 0x00\n /* \"#utility.yul\":2784:2790 */\n dup1\n /* \"#utility.yul\":2833:2835 */\n 0x40\n /* \"#utility.yul\":2821:2830 */\n dup4\n /* \"#utility.yul\":2812:2819 */\n dup6\n /* \"#utility.yul\":2808:2831 */\n sub\n /* \"#utility.yul\":2804:2836 */\n slt\n /* \"#utility.yul\":2801:2920 */\n iszero\n tag_76\n jumpi\n /* \"#utility.yul\":2839:2918 */\n tag_77\n tag_11\n jump\t// in\ntag_77:\n /* \"#utility.yul\":2801:2920 */\ntag_76:\n /* \"#utility.yul\":2980:2981 */\n 0x00\n /* \"#utility.yul\":2969:2978 */\n dup4\n /* \"#utility.yul\":2965:2982 */\n add\n /* \"#utility.yul\":2959:2983 */\n mload\n /* \"#utility.yul\":3010:3028 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3008 */\n dup2\n /* \"#utility.yul\":2999:3029 */\n gt\n /* \"#utility.yul\":2996:3113 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":3032:3111 */\n tag_79\n tag_12\n jump\t// in\ntag_79:\n /* \"#utility.yul\":2996:3113 */\ntag_78:\n /* \"#utility.yul\":3137:3211 */\n tag_80\n /* \"#utility.yul\":3203:3210 */\n dup6\n /* \"#utility.yul\":3194:3200 */\n dup3\n /* \"#utility.yul\":3183:3192 */\n dup7\n /* \"#utility.yul\":3179:3201 */\n add\n /* \"#utility.yul\":3137:3211 */\n tag_22\n jump\t// in\ntag_80:\n /* \"#utility.yul\":3127:3211 */\n swap3\n pop\n /* \"#utility.yul\":2930:3221 */\n pop\n /* \"#utility.yul\":3281:3283 */\n 0x20\n /* \"#utility.yul\":3270:3279 */\n dup4\n /* \"#utility.yul\":3266:3284 */\n add\n /* \"#utility.yul\":3260:3285 */\n mload\n /* \"#utility.yul\":3312:3330 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3304:3310 */\n dup2\n /* \"#utility.yul\":3301:3331 */\n gt\n /* \"#utility.yul\":3298:3415 */\n iszero\n tag_81\n jumpi\n /* \"#utility.yul\":3334:3413 */\n tag_82\n tag_12\n jump\t// in\ntag_82:\n /* \"#utility.yul\":3298:3415 */\ntag_81:\n /* \"#utility.yul\":3439:3513 */\n tag_83\n /* \"#utility.yul\":3505:3512 */\n dup6\n /* \"#utility.yul\":3496:3502 */\n dup3\n /* \"#utility.yul\":3485:3494 */\n dup7\n /* \"#utility.yul\":3481:3503 */\n add\n /* \"#utility.yul\":3439:3513 */\n tag_22\n jump\t// in\ntag_83:\n /* \"#utility.yul\":3429:3513 */\n swap2\n pop\n /* \"#utility.yul\":3231:3523 */\n pop\n /* \"#utility.yul\":2677:3530 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3536:3635 */\ntag_23:\n /* \"#utility.yul\":3588:3594 */\n 0x00\n /* \"#utility.yul\":3622:3627 */\n dup2\n /* \"#utility.yul\":3616:3628 */\n mload\n /* \"#utility.yul\":3606:3628 */\n swap1\n pop\n /* \"#utility.yul\":3536:3635 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3641:3821 */\ntag_24:\n /* \"#utility.yul\":3689:3766 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3686:3687 */\n 0x00\n /* \"#utility.yul\":3679:3767 */\n mstore\n /* \"#utility.yul\":3786:3790 */\n 0x22\n /* \"#utility.yul\":3783:3784 */\n 0x04\n /* \"#utility.yul\":3776:3791 */\n mstore\n /* \"#utility.yul\":3810:3814 */\n 0x24\n /* \"#utility.yul\":3807:3808 */\n 0x00\n /* \"#utility.yul\":3800:3815 */\n revert\n /* \"#utility.yul\":3827:4147 */\ntag_25:\n /* \"#utility.yul\":3871:3877 */\n 0x00\n /* \"#utility.yul\":3908:3909 */\n 0x02\n /* \"#utility.yul\":3902:3906 */\n dup3\n /* \"#utility.yul\":3898:3910 */\n div\n /* \"#utility.yul\":3888:3910 */\n swap1\n pop\n /* \"#utility.yul\":3955:3956 */\n 0x01\n /* \"#utility.yul\":3949:3953 */\n dup3\n /* \"#utility.yul\":3945:3957 */\n and\n /* \"#utility.yul\":3976:3994 */\n dup1\n /* \"#utility.yul\":3966:4047 */\n tag_87\n jumpi\n /* \"#utility.yul\":4032:4036 */\n 0x7f\n /* \"#utility.yul\":4024:4030 */\n dup3\n /* \"#utility.yul\":4020:4037 */\n and\n /* \"#utility.yul\":4010:4037 */\n swap2\n pop\n /* \"#utility.yul\":3966:4047 */\ntag_87:\n /* \"#utility.yul\":4094:4096 */\n 0x20\n /* \"#utility.yul\":4086:4092 */\n dup3\n /* \"#utility.yul\":4083:4097 */\n lt\n /* \"#utility.yul\":4063:4081 */\n dup2\n /* \"#utility.yul\":4060:4098 */\n sub\n /* \"#utility.yul\":4057:4141 */\n tag_88\n jumpi\n /* \"#utility.yul\":4113:4131 */\n tag_89\n tag_24\n jump\t// in\ntag_89:\n /* \"#utility.yul\":4057:4141 */\ntag_88:\n /* \"#utility.yul\":3878:4147 */\n pop\n /* \"#utility.yul\":3827:4147 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4153:4294 */\ntag_26:\n /* \"#utility.yul\":4202:4206 */\n 0x00\n /* \"#utility.yul\":4225:4228 */\n dup2\n /* \"#utility.yul\":4217:4228 */\n swap1\n pop\n /* \"#utility.yul\":4248:4251 */\n dup2\n /* \"#utility.yul\":4245:4246 */\n 0x00\n /* \"#utility.yul\":4238:4252 */\n mstore\n /* \"#utility.yul\":4282:4286 */\n 0x20\n /* \"#utility.yul\":4279:4280 */\n 0x00\n /* \"#utility.yul\":4269:4287 */\n keccak256\n /* \"#utility.yul\":4261:4287 */\n swap1\n pop\n /* \"#utility.yul\":4153:4294 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4300:4393 */\ntag_27:\n /* \"#utility.yul\":4337:4343 */\n 0x00\n /* \"#utility.yul\":4384:4386 */\n 0x20\n /* \"#utility.yul\":4379:4381 */\n 0x1f\n /* \"#utility.yul\":4372:4377 */\n dup4\n /* \"#utility.yul\":4368:4382 */\n add\n /* \"#utility.yul\":4364:4387 */\n div\n /* \"#utility.yul\":4354:4387 */\n swap1\n pop\n /* \"#utility.yul\":4300:4393 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4399:4506 */\ntag_28:\n /* \"#utility.yul\":4443:4451 */\n 0x00\n /* \"#utility.yul\":4493:4498 */\n dup3\n /* \"#utility.yul\":4487:4491 */\n dup3\n /* \"#utility.yul\":4483:4499 */\n shl\n /* \"#utility.yul\":4462:4499 */\n swap1\n pop\n /* \"#utility.yul\":4399:4506 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4512:4905 */\ntag_29:\n /* \"#utility.yul\":4581:4587 */\n 0x00\n /* \"#utility.yul\":4631:4632 */\n 0x08\n /* \"#utility.yul\":4619:4629 */\n dup4\n /* \"#utility.yul\":4615:4633 */\n mul\n /* \"#utility.yul\":4654:4751 */\n tag_94\n /* \"#utility.yul\":4684:4750 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":4673:4682 */\n dup3\n /* \"#utility.yul\":4654:4751 */\n tag_28\n jump\t// in\ntag_94:\n /* \"#utility.yul\":4772:4811 */\n tag_95\n /* \"#utility.yul\":4802:4810 */\n dup7\n /* \"#utility.yul\":4791:4800 */\n dup4\n /* \"#utility.yul\":4772:4811 */\n tag_28\n jump\t// in\ntag_95:\n /* \"#utility.yul\":4760:4811 */\n swap6\n pop\n /* \"#utility.yul\":4844:4848 */\n dup1\n /* \"#utility.yul\":4840:4849 */\n not\n /* \"#utility.yul\":4833:4838 */\n dup5\n /* \"#utility.yul\":4829:4850 */\n and\n /* \"#utility.yul\":4820:4850 */\n swap4\n pop\n /* \"#utility.yul\":4893:4897 */\n dup1\n /* \"#utility.yul\":4883:4891 */\n dup7\n /* \"#utility.yul\":4879:4898 */\n and\n /* \"#utility.yul\":4872:4877 */\n dup5\n /* \"#utility.yul\":4869:4899 */\n or\n /* \"#utility.yul\":4859:4899 */\n swap3\n pop\n /* \"#utility.yul\":4588:4905 */\n pop\n pop\n /* \"#utility.yul\":4512:4905 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4911:4988 */\ntag_30:\n /* \"#utility.yul\":4948:4955 */\n 0x00\n /* \"#utility.yul\":4977:4982 */\n dup2\n /* \"#utility.yul\":4966:4982 */\n swap1\n pop\n /* \"#utility.yul\":4911:4988 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4994:5054 */\ntag_31:\n /* \"#utility.yul\":5022:5025 */\n 0x00\n /* \"#utility.yul\":5043:5048 */\n dup2\n /* \"#utility.yul\":5036:5048 */\n swap1\n pop\n /* \"#utility.yul\":4994:5054 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5060:5202 */\ntag_32:\n /* \"#utility.yul\":5110:5119 */\n 0x00\n /* \"#utility.yul\":5143:5196 */\n tag_99\n /* \"#utility.yul\":5161:5195 */\n tag_100\n /* \"#utility.yul\":5170:5194 */\n tag_101\n /* \"#utility.yul\":5188:5193 */\n dup5\n /* \"#utility.yul\":5170:5194 */\n tag_30\n jump\t// in\ntag_101:\n /* \"#utility.yul\":5161:5195 */\n tag_31\n jump\t// in\ntag_100:\n /* \"#utility.yul\":5143:5196 */\n tag_30\n jump\t// in\ntag_99:\n /* \"#utility.yul\":5130:5196 */\n swap1\n pop\n /* \"#utility.yul\":5060:5202 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5208:5283 */\ntag_33:\n /* \"#utility.yul\":5251:5254 */\n 0x00\n /* \"#utility.yul\":5272:5277 */\n dup2\n /* \"#utility.yul\":5265:5277 */\n swap1\n pop\n /* \"#utility.yul\":5208:5283 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5289:5558 */\ntag_34:\n /* \"#utility.yul\":5399:5438 */\n tag_104\n /* \"#utility.yul\":5430:5437 */\n dup4\n /* \"#utility.yul\":5399:5438 */\n tag_32\n jump\t// in\ntag_104:\n /* \"#utility.yul\":5460:5551 */\n tag_105\n /* \"#utility.yul\":5509:5550 */\n tag_106\n /* \"#utility.yul\":5533:5549 */\n dup3\n /* \"#utility.yul\":5509:5550 */\n tag_33\n jump\t// in\ntag_106:\n /* \"#utility.yul\":5501:5507 */\n dup5\n /* \"#utility.yul\":5494:5498 */\n dup5\n /* \"#utility.yul\":5488:5499 */\n sload\n /* \"#utility.yul\":5460:5551 */\n tag_29\n jump\t// in\ntag_105:\n /* \"#utility.yul\":5454:5458 */\n dup3\n /* \"#utility.yul\":5447:5552 */\n sstore\n /* \"#utility.yul\":5365:5558 */\n pop\n /* \"#utility.yul\":5289:5558 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5564:5637 */\ntag_35:\n /* \"#utility.yul\":5609:5612 */\n 0x00\n /* \"#utility.yul\":5564:5637 */\n swap1\n jump\t// out\n /* \"#utility.yul\":5643:5832 */\ntag_36:\n /* \"#utility.yul\":5720:5752 */\n tag_109\n tag_35\n jump\t// in\ntag_109:\n /* \"#utility.yul\":5761:5826 */\n tag_110\n /* \"#utility.yul\":5819:5825 */\n dup2\n /* \"#utility.yul\":5811:5817 */\n dup5\n /* \"#utility.yul\":5805:5809 */\n dup5\n /* \"#utility.yul\":5761:5826 */\n tag_34\n jump\t// in\ntag_110:\n /* \"#utility.yul\":5696:5832 */\n pop\n /* \"#utility.yul\":5643:5832 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5838:6024 */\ntag_37:\n /* \"#utility.yul\":5898:6018 */\ntag_112:\n /* \"#utility.yul\":5915:5918 */\n dup2\n /* \"#utility.yul\":5908:5913 */\n dup2\n /* \"#utility.yul\":5905:5919 */\n lt\n /* \"#utility.yul\":5898:6018 */\n iszero\n tag_114\n jumpi\n /* \"#utility.yul\":5969:6008 */\n tag_115\n /* \"#utility.yul\":6006:6007 */\n 0x00\n /* \"#utility.yul\":5999:6004 */\n dup3\n /* \"#utility.yul\":5969:6008 */\n tag_36\n jump\t// in\ntag_115:\n /* \"#utility.yul\":5942:5943 */\n 0x01\n /* \"#utility.yul\":5935:5940 */\n dup2\n /* \"#utility.yul\":5931:5944 */\n add\n /* \"#utility.yul\":5922:5944 */\n swap1\n pop\n /* \"#utility.yul\":5898:6018 */\n jump(tag_112)\ntag_114:\n /* \"#utility.yul\":5838:6024 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6030:6573 */\ntag_38:\n /* \"#utility.yul\":6131:6133 */\n 0x1f\n /* \"#utility.yul\":6126:6129 */\n dup3\n /* \"#utility.yul\":6123:6134 */\n gt\n /* \"#utility.yul\":6120:6566 */\n iszero\n tag_117\n jumpi\n /* \"#utility.yul\":6165:6203 */\n tag_118\n /* \"#utility.yul\":6197:6202 */\n dup2\n /* \"#utility.yul\":6165:6203 */\n tag_26\n jump\t// in\ntag_118:\n /* \"#utility.yul\":6249:6278 */\n tag_119\n /* \"#utility.yul\":6267:6277 */\n dup5\n /* \"#utility.yul\":6249:6278 */\n tag_27\n jump\t// in\ntag_119:\n /* \"#utility.yul\":6239:6247 */\n dup2\n /* \"#utility.yul\":6235:6279 */\n add\n /* \"#utility.yul\":6432:6434 */\n 0x20\n /* \"#utility.yul\":6420:6430 */\n dup6\n /* \"#utility.yul\":6417:6435 */\n lt\n /* \"#utility.yul\":6414:6463 */\n iszero\n tag_120\n jumpi\n /* \"#utility.yul\":6453:6461 */\n dup2\n /* \"#utility.yul\":6438:6461 */\n swap1\n pop\n /* \"#utility.yul\":6414:6463 */\ntag_120:\n /* \"#utility.yul\":6476:6556 */\n tag_121\n /* \"#utility.yul\":6532:6554 */\n tag_122\n /* \"#utility.yul\":6550:6553 */\n dup6\n /* \"#utility.yul\":6532:6554 */\n tag_27\n jump\t// in\ntag_122:\n /* \"#utility.yul\":6522:6530 */\n dup4\n /* \"#utility.yul\":6518:6555 */\n add\n /* \"#utility.yul\":6505:6516 */\n dup3\n /* \"#utility.yul\":6476:6556 */\n tag_37\n jump\t// in\ntag_121:\n /* \"#utility.yul\":6135:6566 */\n pop\n pop\n /* \"#utility.yul\":6120:6566 */\ntag_117:\n /* \"#utility.yul\":6030:6573 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6579:6696 */\ntag_39:\n /* \"#utility.yul\":6633:6641 */\n 0x00\n /* \"#utility.yul\":6683:6688 */\n dup3\n /* \"#utility.yul\":6677:6681 */\n dup3\n /* \"#utility.yul\":6673:6689 */\n shr\n /* \"#utility.yul\":6652:6689 */\n swap1\n pop\n /* \"#utility.yul\":6579:6696 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6702:6871 */\ntag_40:\n /* \"#utility.yul\":6746:6752 */\n 0x00\n /* \"#utility.yul\":6779:6830 */\n tag_125\n /* \"#utility.yul\":6827:6828 */\n 0x00\n /* \"#utility.yul\":6823:6829 */\n not\n /* \"#utility.yul\":6815:6820 */\n dup5\n /* \"#utility.yul\":6812:6813 */\n 0x08\n /* \"#utility.yul\":6808:6821 */\n mul\n /* \"#utility.yul\":6779:6830 */\n tag_39\n jump\t// in\ntag_125:\n /* \"#utility.yul\":6775:6831 */\n not\n /* \"#utility.yul\":6860:6864 */\n dup1\n /* \"#utility.yul\":6854:6858 */\n dup4\n /* \"#utility.yul\":6850:6865 */\n and\n /* \"#utility.yul\":6840:6865 */\n swap2\n pop\n /* \"#utility.yul\":6753:6871 */\n pop\n /* \"#utility.yul\":6702:6871 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6876:7171 */\ntag_41:\n /* \"#utility.yul\":6952:6956 */\n 0x00\n /* \"#utility.yul\":7098:7127 */\n tag_127\n /* \"#utility.yul\":7123:7126 */\n dup4\n /* \"#utility.yul\":7117:7121 */\n dup4\n /* \"#utility.yul\":7098:7127 */\n tag_40\n jump\t// in\ntag_127:\n /* \"#utility.yul\":7090:7127 */\n swap2\n pop\n /* \"#utility.yul\":7160:7163 */\n dup3\n /* \"#utility.yul\":7157:7158 */\n 0x02\n /* \"#utility.yul\":7153:7164 */\n mul\n /* \"#utility.yul\":7147:7151 */\n dup3\n /* \"#utility.yul\":7144:7165 */\n or\n /* \"#utility.yul\":7136:7165 */\n swap1\n pop\n /* \"#utility.yul\":6876:7171 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7176:8571 */\ntag_7:\n /* \"#utility.yul\":7293:7330 */\n tag_129\n /* \"#utility.yul\":7326:7329 */\n dup3\n /* \"#utility.yul\":7293:7330 */\n tag_23\n jump\t// in\ntag_129:\n /* \"#utility.yul\":7395:7413 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7387:7393 */\n dup2\n /* \"#utility.yul\":7384:7414 */\n gt\n /* \"#utility.yul\":7381:7437 */\n iszero\n tag_130\n jumpi\n /* \"#utility.yul\":7417:7435 */\n tag_131\n tag_16\n jump\t// in\ntag_131:\n /* \"#utility.yul\":7381:7437 */\ntag_130:\n /* \"#utility.yul\":7461:7499 */\n tag_132\n /* \"#utility.yul\":7493:7497 */\n dup3\n /* \"#utility.yul\":7487:7498 */\n sload\n /* \"#utility.yul\":7461:7499 */\n tag_25\n jump\t// in\ntag_132:\n /* \"#utility.yul\":7546:7613 */\n tag_133\n /* \"#utility.yul\":7606:7612 */\n dup3\n /* \"#utility.yul\":7598:7604 */\n dup3\n /* \"#utility.yul\":7592:7596 */\n dup6\n /* \"#utility.yul\":7546:7613 */\n tag_38\n jump\t// in\ntag_133:\n /* \"#utility.yul\":7640:7641 */\n 0x00\n /* \"#utility.yul\":7664:7668 */\n 0x20\n /* \"#utility.yul\":7651:7668 */\n swap1\n pop\n /* \"#utility.yul\":7696:7698 */\n 0x1f\n /* \"#utility.yul\":7688:7694 */\n dup4\n /* \"#utility.yul\":7685:7699 */\n gt\n /* \"#utility.yul\":7713:7714 */\n 0x01\n /* \"#utility.yul\":7708:8326 */\n dup2\n eq\n tag_135\n jumpi\n /* \"#utility.yul\":8370:8371 */\n 0x00\n /* \"#utility.yul\":8387:8393 */\n dup5\n /* \"#utility.yul\":8384:8461 */\n iszero\n tag_136\n jumpi\n /* \"#utility.yul\":8436:8445 */\n dup3\n /* \"#utility.yul\":8431:8434 */\n dup8\n /* \"#utility.yul\":8427:8446 */\n add\n /* \"#utility.yul\":8421:8447 */\n mload\n /* \"#utility.yul\":8412:8447 */\n swap1\n pop\n /* \"#utility.yul\":8384:8461 */\ntag_136:\n /* \"#utility.yul\":8487:8554 */\n tag_137\n /* \"#utility.yul\":8547:8553 */\n dup6\n /* \"#utility.yul\":8540:8545 */\n dup3\n /* \"#utility.yul\":8487:8554 */\n tag_41\n jump\t// in\ntag_137:\n /* \"#utility.yul\":8481:8485 */\n dup7\n /* \"#utility.yul\":8474:8555 */\n sstore\n /* \"#utility.yul\":8343:8565 */\n pop\n /* \"#utility.yul\":7678:8565 */\n jump(tag_134)\n /* \"#utility.yul\":7708:8326 */\ntag_135:\n /* \"#utility.yul\":7760:7764 */\n 0x1f\n /* \"#utility.yul\":7756:7765 */\n not\n /* \"#utility.yul\":7748:7754 */\n dup5\n /* \"#utility.yul\":7744:7766 */\n and\n /* \"#utility.yul\":7794:7831 */\n tag_138\n /* \"#utility.yul\":7826:7830 */\n dup7\n /* \"#utility.yul\":7794:7831 */\n tag_26\n jump\t// in\ntag_138:\n /* \"#utility.yul\":7853:7854 */\n 0x00\n /* \"#utility.yul\":7867:8075 */\ntag_139:\n /* \"#utility.yul\":7881:7888 */\n dup3\n /* \"#utility.yul\":7878:7879 */\n dup2\n /* \"#utility.yul\":7875:7889 */\n lt\n /* \"#utility.yul\":7867:8075 */\n iszero\n tag_141\n jumpi\n /* \"#utility.yul\":7960:7969 */\n dup5\n /* \"#utility.yul\":7955:7958 */\n dup10\n /* \"#utility.yul\":7951:7970 */\n add\n /* \"#utility.yul\":7945:7971 */\n mload\n /* \"#utility.yul\":7937:7943 */\n dup3\n /* \"#utility.yul\":7930:7972 */\n sstore\n /* \"#utility.yul\":8011:8012 */\n 0x01\n /* \"#utility.yul\":8003:8009 */\n dup3\n /* \"#utility.yul\":7999:8013 */\n add\n /* \"#utility.yul\":7989:8013 */\n swap2\n pop\n /* \"#utility.yul\":8058:8060 */\n 0x20\n /* \"#utility.yul\":8047:8056 */\n dup6\n /* \"#utility.yul\":8043:8061 */\n add\n /* \"#utility.yul\":8030:8061 */\n swap5\n pop\n /* \"#utility.yul\":7904:7908 */\n 0x20\n /* \"#utility.yul\":7901:7902 */\n dup2\n /* \"#utility.yul\":7897:7909 */\n add\n /* \"#utility.yul\":7892:7909 */\n swap1\n pop\n /* \"#utility.yul\":7867:8075 */\n jump(tag_139)\ntag_141:\n /* \"#utility.yul\":8103:8109 */\n dup7\n /* \"#utility.yul\":8094:8101 */\n dup4\n /* \"#utility.yul\":8091:8110 */\n lt\n /* \"#utility.yul\":8088:8267 */\n iszero\n tag_142\n jumpi\n /* \"#utility.yul\":8161:8170 */\n dup5\n /* \"#utility.yul\":8156:8159 */\n dup10\n /* \"#utility.yul\":8152:8171 */\n add\n /* \"#utility.yul\":8146:8172 */\n mload\n /* \"#utility.yul\":8204:8252 */\n tag_143\n /* \"#utility.yul\":8246:8250 */\n 0x1f\n /* \"#utility.yul\":8238:8244 */\n dup10\n /* \"#utility.yul\":8234:8251 */\n and\n /* \"#utility.yul\":8223:8232 */\n dup3\n /* \"#utility.yul\":8204:8252 */\n tag_40\n jump\t// in\ntag_143:\n /* \"#utility.yul\":8196:8202 */\n dup4\n /* \"#utility.yul\":8189:8253 */\n sstore\n /* \"#utility.yul\":8111:8267 */\n pop\n /* \"#utility.yul\":8088:8267 */\ntag_142:\n /* \"#utility.yul\":8313:8314 */\n 0x01\n /* \"#utility.yul\":8309:8310 */\n 0x02\n /* \"#utility.yul\":8301:8307 */\n dup9\n /* \"#utility.yul\":8297:8311 */\n mul\n /* \"#utility.yul\":8293:8315 */\n add\n /* \"#utility.yul\":8287:8291 */\n dup9\n /* \"#utility.yul\":8280:8316 */\n sstore\n /* \"#utility.yul\":7715:8326 */\n pop\n pop\n pop\n /* \"#utility.yul\":7678:8565 */\ntag_134:\n pop\n /* \"#utility.yul\":7268:8571 */\n pop\n pop\n pop\n /* \"#utility.yul\":7176:8571 */\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1279:10517 contract ERC20 is Context, IERC20 {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":1279:10517 contract ERC20 is Context, IERC20 {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x39509351\n gt\n tag_14\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_11\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_12\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_13\n jumpi\n jump(tag_2)\n tag_14:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2021:2110 function name() public view virtual returns (string memory) {... */\n tag_3:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4091:4257 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_19\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\n tag_20:\n tag_22\n jump\t// in\n tag_19:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3082:3188 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4724:5138 function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {... */\n tag_6:\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n mload(0x40)\n tag_33\n swap2\n swap1\n tag_24\n jump\t// in\n tag_33:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2940:3022 function decimals() public view virtual returns (uint8) {... */\n tag_7:\n tag_34\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5533:5745 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_21\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n tag_38:\n mload(0x40)\n tag_41\n swap2\n swap1\n tag_24\n jump\t// in\n tag_41:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3246:3371 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_9:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n tag_45\n jump\t// in\n tag_42:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_28\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2223:2316 function symbol() public view virtual returns (string memory) {... */\n tag_10:\n tag_47\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n tag_49\n swap2\n swap1\n tag_18\n jump\t// in\n tag_49:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6232:6603 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_11:\n tag_50\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_51\n swap2\n swap1\n tag_21\n jump\t// in\n tag_51:\n tag_52\n jump\t// in\n tag_50:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_24\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3574:3746 function transfer(address recipient, uint256 amount) public virtual override returns (bool) {... */\n tag_12:\n tag_54\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_55\n swap2\n swap1\n tag_21\n jump\t// in\n tag_55:\n tag_56\n jump\t// in\n tag_54:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_24\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3804:3953 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_13:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_28\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2021:2110 function name() public view virtual returns (string memory) {... */\n tag_16:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2066:2079 string memory */\n 0x60\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2098:2103 _name */\n 0x03\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2091:2103 return _name */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n tag_64:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_66\n swap1\n tag_65\n jump\t// in\n tag_66:\n dup1\n iszero\n tag_67\n jumpi\n dup1\n 0x1f\n lt\n tag_68\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_67)\n tag_68:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_69:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_69\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_67:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2021:2110 function name() public view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4091:4257 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_22:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4174:4178 bool */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4190:4229 _approve(_msgSender(), spender, amount) */\n tag_71\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4199:4211 _msgSender() */\n tag_72\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4199:4209 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4199:4211 _msgSender() */\n jump\t// in\n tag_72:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4213:4220 spender */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4222:4228 amount */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4190:4198 _approve */\n tag_74\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4190:4229 _approve(_msgSender(), spender, amount) */\n jump\t// in\n tag_71:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4246:4250 true */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4239:4250 return true */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4091:4257 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3082:3188 function totalSupply() public view virtual override returns (uint256) {... */\n tag_26:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3143:3150 uint256 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3169:3181 _totalSupply */\n sload(0x02)\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3162:3181 return _totalSupply */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3082:3188 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4724:5138 function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {... */\n tag_32:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4830:4834 bool */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4846:4882 _transfer(sender, recipient, amount) */\n tag_77\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4856:4862 sender */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4864:4873 recipient */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4875:4881 amount */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4846:4855 _transfer */\n tag_78\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4846:4882 _transfer(sender, recipient, amount) */\n jump\t// in\n tag_77:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4893:4917 uint256 currentAllowance */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4920:4931 _allowances */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4920:4939 _allowances[sender] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4932:4938 sender */\n dup7\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4920:4939 _allowances[sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4920:4953 _allowances[sender][_msgSender()] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4940:4952 _msgSender() */\n tag_79\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4940:4950 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4940:4952 _msgSender() */\n jump\t// in\n tag_79:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4920:4953 _allowances[sender][_msgSender()] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4893:4953 uint256 currentAllowance = _allowances[sender][_msgSender()] */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4991:4997 amount */\n dup3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4971:4987 currentAllowance */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4971:4997 currentAllowance >= amount */\n lt\n iszero\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4963:5042 require(currentAllowance >= amount, \"ERC20: transfer amount exceeds allowance\") */\n tag_80\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_80:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5052:5109 _approve(sender, _msgSender(), currentAllowance - amount) */\n tag_83\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5061:5067 sender */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5069:5081 _msgSender() */\n tag_84\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5069:5079 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5069:5081 _msgSender() */\n jump\t// in\n tag_84:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5102:5108 amount */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5083:5099 currentAllowance */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5083:5108 currentAllowance - amount */\n tag_85\n swap2\n swap1\n tag_86\n jump\t// in\n tag_85:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5052:5060 _approve */\n tag_74\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5052:5109 _approve(sender, _msgSender(), currentAllowance - amount) */\n jump\t// in\n tag_83:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5127:5131 true */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5120:5131 return true */\n swap2\n pop\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":4724:5138 function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2940:3022 function decimals() public view virtual returns (uint8) {... */\n tag_35:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2989:2994 uint8 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3013:3015 18 */\n 0x12\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3006:3015 return 18 */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2940:3022 function decimals() public view virtual returns (uint8) {... */\n swap1\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5533:5745 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_40:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5621:5625 bool */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5637:5717 _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue) */\n tag_89\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5646:5658 _msgSender() */\n tag_90\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5646:5656 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5646:5658 _msgSender() */\n jump\t// in\n tag_90:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5660:5667 spender */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5706:5716 addedValue */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5669:5680 _allowances */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5669:5694 _allowances[_msgSender()] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5681:5693 _msgSender() */\n tag_91\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5681:5691 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5681:5693 _msgSender() */\n jump\t// in\n tag_91:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5669:5694 _allowances[_msgSender()] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5669:5703 _allowances[_msgSender()][spender] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5695:5702 spender */\n dup9\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5669:5703 _allowances[_msgSender()][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5669:5716 _allowances[_msgSender()][spender] + addedValue */\n tag_92\n swap2\n swap1\n tag_93\n jump\t// in\n tag_92:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5637:5645 _approve */\n tag_74\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5637:5717 _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue) */\n jump\t// in\n tag_89:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5734:5738 true */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5727:5738 return true */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":5533:5745 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3246:3371 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_45:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3320:3327 uint256 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3346:3355 _balances */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3346:3364 _balances[account] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3356:3363 account */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3346:3364 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3339:3364 return _balances[account] */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3246:3371 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2223:2316 function symbol() public view virtual returns (string memory) {... */\n tag_48:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2270:2283 string memory */\n 0x60\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2302:2309 _symbol */\n 0x04\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2295:2309 return _symbol */\n dup1\n sload\n tag_96\n swap1\n tag_65\n jump\t// in\n tag_96:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_97\n swap1\n tag_65\n jump\t// in\n tag_97:\n dup1\n iszero\n tag_98\n jumpi\n dup1\n 0x1f\n lt\n tag_99\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_98)\n tag_99:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_100:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_100\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_98:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":2223:2316 function symbol() public view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6232:6603 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_52:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6325:6329 bool */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6341:6365 uint256 currentAllowance */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6368:6379 _allowances */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6368:6393 _allowances[_msgSender()] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6380:6392 _msgSender() */\n tag_102\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6380:6390 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6380:6392 _msgSender() */\n jump\t// in\n tag_102:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6368:6393 _allowances[_msgSender()] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6368:6402 _allowances[_msgSender()][spender] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6394:6401 spender */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6368:6402 _allowances[_msgSender()][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6341:6402 uint256 currentAllowance = _allowances[_msgSender()][spender] */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6440:6455 subtractedValue */\n dup3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6420:6436 currentAllowance */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6420:6455 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6412:6497 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_103\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_104\n swap1\n tag_105\n jump\t// in\n tag_104:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_103:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6507:6574 _approve(_msgSender(), spender, currentAllowance - subtractedValue) */\n tag_106\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6516:6528 _msgSender() */\n tag_107\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6516:6526 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6516:6528 _msgSender() */\n jump\t// in\n tag_107:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6530:6537 spender */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6558:6573 subtractedValue */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6539:6555 currentAllowance */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6539:6573 currentAllowance - subtractedValue */\n tag_108\n swap2\n swap1\n tag_86\n jump\t// in\n tag_108:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6507:6515 _approve */\n tag_74\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6507:6574 _approve(_msgSender(), spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_106:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6592:6596 true */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6585:6596 return true */\n swap2\n pop\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":6232:6603 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3574:3746 function transfer(address recipient, uint256 amount) public virtual override returns (bool) {... */\n tag_56:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3660:3664 bool */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3676:3718 _transfer(_msgSender(), recipient, amount) */\n tag_110\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3686:3698 _msgSender() */\n tag_111\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3686:3696 _msgSender */\n tag_73\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3686:3698 _msgSender() */\n jump\t// in\n tag_111:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3700:3709 recipient */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3711:3717 amount */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3676:3685 _transfer */\n tag_78\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3676:3718 _transfer(_msgSender(), recipient, amount) */\n jump\t// in\n tag_110:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3735:3739 true */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3728:3739 return true */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3574:3746 function transfer(address recipient, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3804:3953 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_61:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3893:3900 uint256 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3919:3930 _allowances */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3919:3937 _allowances[owner] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3931:3936 owner */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3919:3937 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3919:3946 _allowances[owner][spender] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3938:3945 spender */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3919:3946 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3912:3946 return _allowances[owner][spender] */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":3804:3953 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":586:682 function _msgSender() internal view virtual returns (address) {... */\n tag_73:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":639:646 address */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":665:675 msg.sender */\n caller\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":658:675 return msg.sender */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":586:682 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9496:9836 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n tag_74:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9614:9615 0 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9597:9616 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9597:9602 owner */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9597:9616 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9589:9657 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_115\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_116\n swap1\n tag_117\n jump\t// in\n tag_116:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_115:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9694:9695 0 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9675:9696 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9675:9682 spender */\n dup3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9675:9696 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9667:9735 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_118\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_119\n swap1\n tag_120\n jump\t// in\n tag_119:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_118:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9776:9782 amount */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9746:9757 _allowances */\n 0x01\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9746:9764 _allowances[owner] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9758:9763 owner */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9746:9764 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9746:9773 _allowances[owner][spender] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9765:9772 spender */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9746:9773 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9746:9782 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9813:9820 spender */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9797:9829 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9806:9811 owner */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9797:9829 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9822:9828 amount */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9797:9829 Approval(owner, spender, amount) */\n mload(0x40)\n tag_121\n swap2\n swap1\n tag_28\n jump\t// in\n tag_121:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":9496:9836 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7077:7669 function _transfer(address sender, address recipient, uint256 amount) internal virtual {... */\n tag_78:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7200:7201 0 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7182:7202 sender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7182:7188 sender */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7182:7202 sender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7174:7244 require(sender != address(0), \"ERC20: transfer from the zero address\") */\n tag_123\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_124\n swap1\n tag_125\n jump\t// in\n tag_124:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_123:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7283:7284 0 */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7262:7285 recipient != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7262:7271 recipient */\n dup3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7262:7285 recipient != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7254:7325 require(recipient != address(0), \"ERC20: transfer to the zero address\") */\n tag_126\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_127\n swap1\n tag_128\n jump\t// in\n tag_127:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_126:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7336:7383 _beforeTokenTransfer(sender, recipient, amount) */\n tag_129\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7357:7363 sender */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7365:7374 recipient */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7376:7382 amount */\n dup4\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7336:7356 _beforeTokenTransfer */\n tag_130\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7336:7383 _beforeTokenTransfer(sender, recipient, amount) */\n jump\t// in\n tag_129:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7394:7415 uint256 senderBalance */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7418:7427 _balances */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7418:7435 _balances[sender] */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7428:7434 sender */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7418:7435 _balances[sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7394:7435 uint256 senderBalance = _balances[sender] */\n swap1\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7470:7476 amount */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7453:7466 senderBalance */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7453:7476 senderBalance >= amount */\n lt\n iszero\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7445:7519 require(senderBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_131\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_132\n swap1\n tag_133\n jump\t// in\n tag_132:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_131:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7565:7571 amount */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7549:7562 senderBalance */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7549:7571 senderBalance - amount */\n tag_134\n swap2\n swap1\n tag_86\n jump\t// in\n tag_134:\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7529:7538 _balances */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7529:7546 _balances[sender] */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7539:7545 sender */\n dup7\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7529:7546 _balances[sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7529:7571 _balances[sender] = senderBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7605:7611 amount */\n dup2\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7581:7590 _balances */\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7581:7601 _balances[recipient] */\n dup1\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7591:7600 recipient */\n dup6\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7581:7601 _balances[recipient] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7581:7611 _balances[recipient] += amount */\n dup3\n dup3\n sload\n tag_135\n swap2\n swap1\n tag_93\n jump\t// in\n tag_135:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7644:7653 recipient */\n dup3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7627:7662 Transfer(sender, recipient, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7636:7642 sender */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7627:7662 Transfer(sender, recipient, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7655:7661 amount */\n dup5\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7627:7662 Transfer(sender, recipient, amount) */\n mload(0x40)\n tag_136\n swap2\n swap1\n tag_28\n jump\t// in\n tag_136:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7164:7669 {... */\n pop\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":7077:7669 function _transfer(address sender, address recipient, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":10423:10515 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } */\n tag_130:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\n tag_138:\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 */\n tag_139:\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:533 */\n tag_140:\n /* \"#utility.yul\":368:369 */\n 0x00\n /* \"#utility.yul\":378:491 */\n tag_178:\n /* \"#utility.yul\":392:398 */\n dup4\n /* \"#utility.yul\":389:390 */\n dup2\n /* \"#utility.yul\":386:399 */\n lt\n /* \"#utility.yul\":378:491 */\n iszero\n tag_180\n jumpi\n /* \"#utility.yul\":477:478 */\n dup1\n /* \"#utility.yul\":472:475 */\n dup3\n /* \"#utility.yul\":468:479 */\n add\n /* \"#utility.yul\":462:480 */\n mload\n /* \"#utility.yul\":458:459 */\n dup2\n /* \"#utility.yul\":453:456 */\n dup5\n /* \"#utility.yul\":449:460 */\n add\n /* \"#utility.yul\":442:481 */\n mstore\n /* \"#utility.yul\":414:416 */\n 0x20\n /* \"#utility.yul\":411:412 */\n dup2\n /* \"#utility.yul\":407:417 */\n add\n /* \"#utility.yul\":402:417 */\n swap1\n pop\n /* \"#utility.yul\":378:491 */\n jump(tag_178)\n tag_180:\n /* \"#utility.yul\":525:526 */\n 0x00\n /* \"#utility.yul\":516:522 */\n dup5\n /* \"#utility.yul\":511:514 */\n dup5\n /* \"#utility.yul\":507:523 */\n add\n /* \"#utility.yul\":500:527 */\n mstore\n /* \"#utility.yul\":349:533 */\n pop\n /* \"#utility.yul\":287:533 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":539:641 */\n tag_141:\n /* \"#utility.yul\":580:586 */\n 0x00\n /* \"#utility.yul\":631:633 */\n 0x1f\n /* \"#utility.yul\":627:634 */\n not\n /* \"#utility.yul\":622:624 */\n 0x1f\n /* \"#utility.yul\":615:620 */\n dup4\n /* \"#utility.yul\":611:625 */\n add\n /* \"#utility.yul\":607:635 */\n and\n /* \"#utility.yul\":597:635 */\n swap1\n pop\n /* \"#utility.yul\":539:641 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":647:1024 */\n tag_142:\n /* \"#utility.yul\":735:738 */\n 0x00\n /* \"#utility.yul\":763:802 */\n tag_183\n /* \"#utility.yul\":796:801 */\n dup3\n /* \"#utility.yul\":763:802 */\n tag_138\n jump\t// in\n tag_183:\n /* \"#utility.yul\":818:889 */\n tag_184\n /* \"#utility.yul\":882:888 */\n dup2\n /* \"#utility.yul\":877:880 */\n dup6\n /* \"#utility.yul\":818:889 */\n tag_139\n jump\t// in\n tag_184:\n /* \"#utility.yul\":811:889 */\n swap4\n pop\n /* \"#utility.yul\":898:963 */\n tag_185\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":951:954 */\n dup6\n /* \"#utility.yul\":944:948 */\n 0x20\n /* \"#utility.yul\":937:942 */\n dup7\n /* \"#utility.yul\":933:949 */\n add\n /* \"#utility.yul\":898:963 */\n tag_140\n jump\t// in\n tag_185:\n /* \"#utility.yul\":988:1017 */\n tag_186\n /* \"#utility.yul\":1010:1016 */\n dup2\n /* \"#utility.yul\":988:1017 */\n tag_141\n jump\t// in\n tag_186:\n /* \"#utility.yul\":983:986 */\n dup5\n /* \"#utility.yul\":979:1018 */\n add\n /* \"#utility.yul\":972:1018 */\n swap2\n pop\n /* \"#utility.yul\":739:1024 */\n pop\n /* \"#utility.yul\":647:1024 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1030:1343 */\n tag_18:\n /* \"#utility.yul\":1143:1147 */\n 0x00\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1170:1179 */\n dup3\n /* \"#utility.yul\":1166:1184 */\n add\n /* \"#utility.yul\":1158:1184 */\n swap1\n pop\n /* \"#utility.yul\":1230:1239 */\n dup2\n /* \"#utility.yul\":1224:1228 */\n dup2\n /* \"#utility.yul\":1220:1240 */\n sub\n /* \"#utility.yul\":1216:1217 */\n 0x00\n /* \"#utility.yul\":1205:1214 */\n dup4\n /* \"#utility.yul\":1201:1218 */\n add\n /* \"#utility.yul\":1194:1241 */\n mstore\n /* \"#utility.yul\":1258:1336 */\n tag_188\n /* \"#utility.yul\":1331:1335 */\n dup2\n /* \"#utility.yul\":1322:1328 */\n dup5\n /* \"#utility.yul\":1258:1336 */\n tag_142\n jump\t// in\n tag_188:\n /* \"#utility.yul\":1250:1336 */\n swap1\n pop\n /* \"#utility.yul\":1030:1343 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1430:1547 */\n tag_144:\n /* \"#utility.yul\":1539:1540 */\n 0x00\n /* \"#utility.yul\":1536:1537 */\n dup1\n /* \"#utility.yul\":1529:1541 */\n revert\n /* \"#utility.yul\":1676:1802 */\n tag_146:\n /* \"#utility.yul\":1713:1720 */\n 0x00\n /* \"#utility.yul\":1753:1795 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1746:1751 */\n dup3\n /* \"#utility.yul\":1742:1796 */\n and\n /* \"#utility.yul\":1731:1796 */\n swap1\n pop\n /* \"#utility.yul\":1676:1802 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1808:1904 */\n tag_147:\n /* \"#utility.yul\":1845:1852 */\n 0x00\n /* \"#utility.yul\":1874:1898 */\n tag_194\n /* \"#utility.yul\":1892:1897 */\n dup3\n /* \"#utility.yul\":1874:1898 */\n tag_146\n jump\t// in\n tag_194:\n /* \"#utility.yul\":1863:1898 */\n swap1\n pop\n /* \"#utility.yul\":1808:1904 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1910:2032 */\n tag_148:\n /* \"#utility.yul\":1983:2007 */\n tag_196\n /* \"#utility.yul\":2001:2006 */\n dup2\n /* \"#utility.yul\":1983:2007 */\n tag_147\n jump\t// in\n tag_196:\n /* \"#utility.yul\":1976:1981 */\n dup2\n /* \"#utility.yul\":1973:2008 */\n eq\n /* \"#utility.yul\":1963:2026 */\n tag_197\n jumpi\n /* \"#utility.yul\":2022:2023 */\n 0x00\n /* \"#utility.yul\":2019:2020 */\n dup1\n /* \"#utility.yul\":2012:2024 */\n revert\n /* \"#utility.yul\":1963:2026 */\n tag_197:\n /* \"#utility.yul\":1910:2032 */\n pop\n jump\t// out\n /* \"#utility.yul\":2038:2177 */\n tag_149:\n /* \"#utility.yul\":2084:2089 */\n 0x00\n /* \"#utility.yul\":2122:2128 */\n dup2\n /* \"#utility.yul\":2109:2129 */\n calldataload\n /* \"#utility.yul\":2100:2129 */\n swap1\n pop\n /* \"#utility.yul\":2138:2171 */\n tag_199\n /* \"#utility.yul\":2165:2170 */\n dup2\n /* \"#utility.yul\":2138:2171 */\n tag_148\n jump\t// in\n tag_199:\n /* \"#utility.yul\":2038:2177 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2183:2260 */\n tag_150:\n /* \"#utility.yul\":2220:2227 */\n 0x00\n /* \"#utility.yul\":2249:2254 */\n dup2\n /* \"#utility.yul\":2238:2254 */\n swap1\n pop\n /* \"#utility.yul\":2183:2260 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2266:2388 */\n tag_151:\n /* \"#utility.yul\":2339:2363 */\n tag_202\n /* \"#utility.yul\":2357:2362 */\n dup2\n /* \"#utility.yul\":2339:2363 */\n tag_150\n jump\t// in\n tag_202:\n /* \"#utility.yul\":2332:2337 */\n dup2\n /* \"#utility.yul\":2329:2364 */\n eq\n /* \"#utility.yul\":2319:2382 */\n tag_203\n jumpi\n /* \"#utility.yul\":2378:2379 */\n 0x00\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2368:2380 */\n revert\n /* \"#utility.yul\":2319:2382 */\n tag_203:\n /* \"#utility.yul\":2266:2388 */\n pop\n jump\t// out\n /* \"#utility.yul\":2394:2533 */\n tag_152:\n /* \"#utility.yul\":2440:2445 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup2\n /* \"#utility.yul\":2465:2485 */\n calldataload\n /* \"#utility.yul\":2456:2485 */\n swap1\n pop\n /* \"#utility.yul\":2494:2527 */\n tag_205\n /* \"#utility.yul\":2521:2526 */\n dup2\n /* \"#utility.yul\":2494:2527 */\n tag_151\n jump\t// in\n tag_205:\n /* \"#utility.yul\":2394:2533 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2539:3013 */\n tag_21:\n /* \"#utility.yul\":2607:2613 */\n 0x00\n /* \"#utility.yul\":2615:2621 */\n dup1\n /* \"#utility.yul\":2664:2666 */\n 0x40\n /* \"#utility.yul\":2652:2661 */\n dup4\n /* \"#utility.yul\":2643:2650 */\n dup6\n /* \"#utility.yul\":2639:2662 */\n sub\n /* \"#utility.yul\":2635:2667 */\n slt\n /* \"#utility.yul\":2632:2751 */\n iszero\n tag_207\n jumpi\n /* \"#utility.yul\":2670:2749 */\n tag_208\n tag_144\n jump\t// in\n tag_208:\n /* \"#utility.yul\":2632:2751 */\n tag_207:\n /* \"#utility.yul\":2790:2791 */\n 0x00\n /* \"#utility.yul\":2815:2868 */\n tag_209\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2851:2857 */\n dup3\n /* \"#utility.yul\":2840:2849 */\n dup7\n /* \"#utility.yul\":2836:2858 */\n add\n /* \"#utility.yul\":2815:2868 */\n tag_149\n jump\t// in\n tag_209:\n /* \"#utility.yul\":2805:2868 */\n swap3\n pop\n /* \"#utility.yul\":2761:2878 */\n pop\n /* \"#utility.yul\":2917:2919 */\n 0x20\n /* \"#utility.yul\":2943:2996 */\n tag_210\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2943:2996 */\n tag_152\n jump\t// in\n tag_210:\n /* \"#utility.yul\":2933:2996 */\n swap2\n pop\n /* \"#utility.yul\":2888:3006 */\n pop\n /* \"#utility.yul\":2539:3013 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3019:3109 */\n tag_153:\n /* \"#utility.yul\":3053:3060 */\n 0x00\n /* \"#utility.yul\":3096:3101 */\n dup2\n /* \"#utility.yul\":3089:3102 */\n iszero\n /* \"#utility.yul\":3082:3103 */\n iszero\n /* \"#utility.yul\":3071:3103 */\n swap1\n pop\n /* \"#utility.yul\":3019:3109 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3115:3224 */\n tag_154:\n /* \"#utility.yul\":3196:3217 */\n tag_213\n /* \"#utility.yul\":3211:3216 */\n dup2\n /* \"#utility.yul\":3196:3217 */\n tag_153\n jump\t// in\n tag_213:\n /* \"#utility.yul\":3191:3194 */\n dup3\n /* \"#utility.yul\":3184:3218 */\n mstore\n /* \"#utility.yul\":3115:3224 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3230:3440 */\n tag_24:\n /* \"#utility.yul\":3317:3321 */\n 0x00\n /* \"#utility.yul\":3355:3357 */\n 0x20\n /* \"#utility.yul\":3344:3353 */\n dup3\n /* \"#utility.yul\":3340:3358 */\n add\n /* \"#utility.yul\":3332:3358 */\n swap1\n pop\n /* \"#utility.yul\":3368:3433 */\n tag_215\n /* \"#utility.yul\":3430:3431 */\n 0x00\n /* \"#utility.yul\":3419:3428 */\n dup4\n /* \"#utility.yul\":3415:3432 */\n add\n /* \"#utility.yul\":3406:3412 */\n dup5\n /* \"#utility.yul\":3368:3433 */\n tag_154\n jump\t// in\n tag_215:\n /* \"#utility.yul\":3230:3440 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3446:3564 */\n tag_155:\n /* \"#utility.yul\":3533:3557 */\n tag_217\n /* \"#utility.yul\":3551:3556 */\n dup2\n /* \"#utility.yul\":3533:3557 */\n tag_150\n jump\t// in\n tag_217:\n /* \"#utility.yul\":3528:3531 */\n dup3\n /* \"#utility.yul\":3521:3558 */\n mstore\n /* \"#utility.yul\":3446:3564 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3570:3792 */\n tag_28:\n /* \"#utility.yul\":3663:3667 */\n 0x00\n /* \"#utility.yul\":3701:3703 */\n 0x20\n /* \"#utility.yul\":3690:3699 */\n dup3\n /* \"#utility.yul\":3686:3704 */\n add\n /* \"#utility.yul\":3678:3704 */\n swap1\n pop\n /* \"#utility.yul\":3714:3785 */\n tag_219\n /* \"#utility.yul\":3782:3783 */\n 0x00\n /* \"#utility.yul\":3771:3780 */\n dup4\n /* \"#utility.yul\":3767:3784 */\n add\n /* \"#utility.yul\":3758:3764 */\n dup5\n /* \"#utility.yul\":3714:3785 */\n tag_155\n jump\t// in\n tag_219:\n /* \"#utility.yul\":3570:3792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3798:4417 */\n tag_31:\n /* \"#utility.yul\":3875:3881 */\n 0x00\n /* \"#utility.yul\":3883:3889 */\n dup1\n /* \"#utility.yul\":3891:3897 */\n 0x00\n /* \"#utility.yul\":3940:3942 */\n 0x60\n /* \"#utility.yul\":3928:3937 */\n dup5\n /* \"#utility.yul\":3919:3926 */\n dup7\n /* \"#utility.yul\":3915:3938 */\n sub\n /* \"#utility.yul\":3911:3943 */\n slt\n /* \"#utility.yul\":3908:4027 */\n iszero\n tag_221\n jumpi\n /* \"#utility.yul\":3946:4025 */\n tag_222\n tag_144\n jump\t// in\n tag_222:\n /* \"#utility.yul\":3908:4027 */\n tag_221:\n /* \"#utility.yul\":4066:4067 */\n 0x00\n /* \"#utility.yul\":4091:4144 */\n tag_223\n /* \"#utility.yul\":4136:4143 */\n dup7\n /* \"#utility.yul\":4127:4133 */\n dup3\n /* \"#utility.yul\":4116:4125 */\n dup8\n /* \"#utility.yul\":4112:4134 */\n add\n /* \"#utility.yul\":4091:4144 */\n tag_149\n jump\t// in\n tag_223:\n /* \"#utility.yul\":4081:4144 */\n swap4\n pop\n /* \"#utility.yul\":4037:4154 */\n pop\n /* \"#utility.yul\":4193:4195 */\n 0x20\n /* \"#utility.yul\":4219:4272 */\n tag_224\n /* \"#utility.yul\":4264:4271 */\n dup7\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4244:4253 */\n dup8\n /* \"#utility.yul\":4240:4262 */\n add\n /* \"#utility.yul\":4219:4272 */\n tag_149\n jump\t// in\n tag_224:\n /* \"#utility.yul\":4209:4272 */\n swap3\n pop\n /* \"#utility.yul\":4164:4282 */\n pop\n /* \"#utility.yul\":4321:4323 */\n 0x40\n /* \"#utility.yul\":4347:4400 */\n tag_225\n /* \"#utility.yul\":4392:4399 */\n dup7\n /* \"#utility.yul\":4383:4389 */\n dup3\n /* \"#utility.yul\":4372:4381 */\n dup8\n /* \"#utility.yul\":4368:4390 */\n add\n /* \"#utility.yul\":4347:4400 */\n tag_152\n jump\t// in\n tag_225:\n /* \"#utility.yul\":4337:4400 */\n swap2\n pop\n /* \"#utility.yul\":4292:4410 */\n pop\n /* \"#utility.yul\":3798:4417 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":4423:4509 */\n tag_156:\n /* \"#utility.yul\":4458:4465 */\n 0x00\n /* \"#utility.yul\":4498:4502 */\n 0xff\n /* \"#utility.yul\":4491:4496 */\n dup3\n /* \"#utility.yul\":4487:4503 */\n and\n /* \"#utility.yul\":4476:4503 */\n swap1\n pop\n /* \"#utility.yul\":4423:4509 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4515:4627 */\n tag_157:\n /* \"#utility.yul\":4598:4620 */\n tag_228\n /* \"#utility.yul\":4614:4619 */\n dup2\n /* \"#utility.yul\":4598:4620 */\n tag_156\n jump\t// in\n tag_228:\n /* \"#utility.yul\":4593:4596 */\n dup3\n /* \"#utility.yul\":4586:4621 */\n mstore\n /* \"#utility.yul\":4515:4627 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4633:4847 */\n tag_37:\n /* \"#utility.yul\":4722:4726 */\n 0x00\n /* \"#utility.yul\":4760:4762 */\n 0x20\n /* \"#utility.yul\":4749:4758 */\n dup3\n /* \"#utility.yul\":4745:4763 */\n add\n /* \"#utility.yul\":4737:4763 */\n swap1\n pop\n /* \"#utility.yul\":4773:4840 */\n tag_230\n /* \"#utility.yul\":4837:4838 */\n 0x00\n /* \"#utility.yul\":4826:4835 */\n dup4\n /* \"#utility.yul\":4822:4839 */\n add\n /* \"#utility.yul\":4813:4819 */\n dup5\n /* \"#utility.yul\":4773:4840 */\n tag_157\n jump\t// in\n tag_230:\n /* \"#utility.yul\":4633:4847 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4853:5182 */\n tag_44:\n /* \"#utility.yul\":4912:4918 */\n 0x00\n /* \"#utility.yul\":4961:4963 */\n 0x20\n /* \"#utility.yul\":4949:4958 */\n dup3\n /* \"#utility.yul\":4940:4947 */\n dup5\n /* \"#utility.yul\":4936:4959 */\n sub\n /* \"#utility.yul\":4932:4964 */\n slt\n /* \"#utility.yul\":4929:5048 */\n iszero\n tag_232\n jumpi\n /* \"#utility.yul\":4967:5046 */\n tag_233\n tag_144\n jump\t// in\n tag_233:\n /* \"#utility.yul\":4929:5048 */\n tag_232:\n /* \"#utility.yul\":5087:5088 */\n 0x00\n /* \"#utility.yul\":5112:5165 */\n tag_234\n /* \"#utility.yul\":5157:5164 */\n dup5\n /* \"#utility.yul\":5148:5154 */\n dup3\n /* \"#utility.yul\":5137:5146 */\n dup6\n /* \"#utility.yul\":5133:5155 */\n add\n /* \"#utility.yul\":5112:5165 */\n tag_149\n jump\t// in\n tag_234:\n /* \"#utility.yul\":5102:5165 */\n swap2\n pop\n /* \"#utility.yul\":5058:5175 */\n pop\n /* \"#utility.yul\":4853:5182 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5188:5662 */\n tag_60:\n /* \"#utility.yul\":5256:5262 */\n 0x00\n /* \"#utility.yul\":5264:5270 */\n dup1\n /* \"#utility.yul\":5313:5315 */\n 0x40\n /* \"#utility.yul\":5301:5310 */\n dup4\n /* \"#utility.yul\":5292:5299 */\n dup6\n /* \"#utility.yul\":5288:5311 */\n sub\n /* \"#utility.yul\":5284:5316 */\n slt\n /* \"#utility.yul\":5281:5400 */\n iszero\n tag_236\n jumpi\n /* \"#utility.yul\":5319:5398 */\n tag_237\n tag_144\n jump\t// in\n tag_237:\n /* \"#utility.yul\":5281:5400 */\n tag_236:\n /* \"#utility.yul\":5439:5440 */\n 0x00\n /* \"#utility.yul\":5464:5517 */\n tag_238\n /* \"#utility.yul\":5509:5516 */\n dup6\n /* \"#utility.yul\":5500:5506 */\n dup3\n /* \"#utility.yul\":5489:5498 */\n dup7\n /* \"#utility.yul\":5485:5507 */\n add\n /* \"#utility.yul\":5464:5517 */\n tag_149\n jump\t// in\n tag_238:\n /* \"#utility.yul\":5454:5517 */\n swap3\n pop\n /* \"#utility.yul\":5410:5527 */\n pop\n /* \"#utility.yul\":5566:5568 */\n 0x20\n /* \"#utility.yul\":5592:5645 */\n tag_239\n /* \"#utility.yul\":5637:5644 */\n dup6\n /* \"#utility.yul\":5628:5634 */\n dup3\n /* \"#utility.yul\":5617:5626 */\n dup7\n /* \"#utility.yul\":5613:5635 */\n add\n /* \"#utility.yul\":5592:5645 */\n tag_149\n jump\t// in\n tag_239:\n /* \"#utility.yul\":5582:5645 */\n swap2\n pop\n /* \"#utility.yul\":5537:5655 */\n pop\n /* \"#utility.yul\":5188:5662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5668:5848 */\n tag_158:\n /* \"#utility.yul\":5716:5793 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5713:5714 */\n 0x00\n /* \"#utility.yul\":5706:5794 */\n mstore\n /* \"#utility.yul\":5813:5817 */\n 0x22\n /* \"#utility.yul\":5810:5811 */\n 0x04\n /* \"#utility.yul\":5803:5818 */\n mstore\n /* \"#utility.yul\":5837:5841 */\n 0x24\n /* \"#utility.yul\":5834:5835 */\n 0x00\n /* \"#utility.yul\":5827:5842 */\n revert\n /* \"#utility.yul\":5854:6174 */\n tag_65:\n /* \"#utility.yul\":5898:5904 */\n 0x00\n /* \"#utility.yul\":5935:5936 */\n 0x02\n /* \"#utility.yul\":5929:5933 */\n dup3\n /* \"#utility.yul\":5925:5937 */\n div\n /* \"#utility.yul\":5915:5937 */\n swap1\n pop\n /* \"#utility.yul\":5982:5983 */\n 0x01\n /* \"#utility.yul\":5976:5980 */\n dup3\n /* \"#utility.yul\":5972:5984 */\n and\n /* \"#utility.yul\":6003:6021 */\n dup1\n /* \"#utility.yul\":5993:6074 */\n tag_242\n jumpi\n /* \"#utility.yul\":6059:6063 */\n 0x7f\n /* \"#utility.yul\":6051:6057 */\n dup3\n /* \"#utility.yul\":6047:6064 */\n and\n /* \"#utility.yul\":6037:6064 */\n swap2\n pop\n /* \"#utility.yul\":5993:6074 */\n tag_242:\n /* \"#utility.yul\":6121:6123 */\n 0x20\n /* \"#utility.yul\":6113:6119 */\n dup3\n /* \"#utility.yul\":6110:6124 */\n lt\n /* \"#utility.yul\":6090:6108 */\n dup2\n /* \"#utility.yul\":6087:6125 */\n sub\n /* \"#utility.yul\":6084:6168 */\n tag_243\n jumpi\n /* \"#utility.yul\":6140:6158 */\n tag_244\n tag_158\n jump\t// in\n tag_244:\n /* \"#utility.yul\":6084:6168 */\n tag_243:\n /* \"#utility.yul\":5905:6174 */\n pop\n /* \"#utility.yul\":5854:6174 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6180:6407 */\n tag_159:\n /* \"#utility.yul\":6320:6354 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732061\n /* \"#utility.yul\":6316:6317 */\n 0x00\n /* \"#utility.yul\":6308:6314 */\n dup3\n /* \"#utility.yul\":6304:6318 */\n add\n /* \"#utility.yul\":6297:6355 */\n mstore\n /* \"#utility.yul\":6389:6399 */\n 0x6c6c6f77616e6365000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6384:6386 */\n 0x20\n /* \"#utility.yul\":6376:6382 */\n dup3\n /* \"#utility.yul\":6372:6387 */\n add\n /* \"#utility.yul\":6365:6400 */\n mstore\n /* \"#utility.yul\":6180:6407 */\n pop\n jump\t// out\n /* \"#utility.yul\":6413:6779 */\n tag_160:\n /* \"#utility.yul\":6555:6558 */\n 0x00\n /* \"#utility.yul\":6576:6643 */\n tag_247\n /* \"#utility.yul\":6640:6642 */\n 0x28\n /* \"#utility.yul\":6635:6638 */\n dup4\n /* \"#utility.yul\":6576:6643 */\n tag_139\n jump\t// in\n tag_247:\n /* \"#utility.yul\":6569:6643 */\n swap2\n pop\n /* \"#utility.yul\":6652:6745 */\n tag_248\n /* \"#utility.yul\":6741:6744 */\n dup3\n /* \"#utility.yul\":6652:6745 */\n tag_159\n jump\t// in\n tag_248:\n /* \"#utility.yul\":6770:6772 */\n 0x40\n /* \"#utility.yul\":6765:6768 */\n dup3\n /* \"#utility.yul\":6761:6773 */\n add\n /* \"#utility.yul\":6754:6773 */\n swap1\n pop\n /* \"#utility.yul\":6413:6779 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6785:7204 */\n tag_82:\n /* \"#utility.yul\":6951:6955 */\n 0x00\n /* \"#utility.yul\":6989:6991 */\n 0x20\n /* \"#utility.yul\":6978:6987 */\n dup3\n /* \"#utility.yul\":6974:6992 */\n add\n /* \"#utility.yul\":6966:6992 */\n swap1\n pop\n /* \"#utility.yul\":7038:7047 */\n dup2\n /* \"#utility.yul\":7032:7036 */\n dup2\n /* \"#utility.yul\":7028:7048 */\n sub\n /* \"#utility.yul\":7024:7025 */\n 0x00\n /* \"#utility.yul\":7013:7022 */\n dup4\n /* \"#utility.yul\":7009:7026 */\n add\n /* \"#utility.yul\":7002:7049 */\n mstore\n /* \"#utility.yul\":7066:7197 */\n tag_250\n /* \"#utility.yul\":7192:7196 */\n dup2\n /* \"#utility.yul\":7066:7197 */\n tag_160\n jump\t// in\n tag_250:\n /* \"#utility.yul\":7058:7197 */\n swap1\n pop\n /* \"#utility.yul\":6785:7204 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7210:7390 */\n tag_161:\n /* \"#utility.yul\":7258:7335 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7255:7256 */\n 0x00\n /* \"#utility.yul\":7248:7336 */\n mstore\n /* \"#utility.yul\":7355:7359 */\n 0x11\n /* \"#utility.yul\":7352:7353 */\n 0x04\n /* \"#utility.yul\":7345:7360 */\n mstore\n /* \"#utility.yul\":7379:7383 */\n 0x24\n /* \"#utility.yul\":7376:7377 */\n 0x00\n /* \"#utility.yul\":7369:7384 */\n revert\n /* \"#utility.yul\":7396:7590 */\n tag_86:\n /* \"#utility.yul\":7436:7440 */\n 0x00\n /* \"#utility.yul\":7456:7476 */\n tag_253\n /* \"#utility.yul\":7474:7475 */\n dup3\n /* \"#utility.yul\":7456:7476 */\n tag_150\n jump\t// in\n tag_253:\n /* \"#utility.yul\":7451:7476 */\n swap2\n pop\n /* \"#utility.yul\":7490:7510 */\n tag_254\n /* \"#utility.yul\":7508:7509 */\n dup4\n /* \"#utility.yul\":7490:7510 */\n tag_150\n jump\t// in\n tag_254:\n /* \"#utility.yul\":7485:7510 */\n swap3\n pop\n /* \"#utility.yul\":7534:7535 */\n dup3\n /* \"#utility.yul\":7531:7532 */\n dup3\n /* \"#utility.yul\":7527:7536 */\n sub\n /* \"#utility.yul\":7519:7536 */\n swap1\n pop\n /* \"#utility.yul\":7558:7559 */\n dup2\n /* \"#utility.yul\":7552:7556 */\n dup2\n /* \"#utility.yul\":7549:7560 */\n gt\n /* \"#utility.yul\":7546:7583 */\n iszero\n tag_255\n jumpi\n /* \"#utility.yul\":7563:7581 */\n tag_256\n tag_161\n jump\t// in\n tag_256:\n /* \"#utility.yul\":7546:7583 */\n tag_255:\n /* \"#utility.yul\":7396:7590 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7596:7787 */\n tag_93:\n /* \"#utility.yul\":7636:7639 */\n 0x00\n /* \"#utility.yul\":7655:7675 */\n tag_258\n /* \"#utility.yul\":7673:7674 */\n dup3\n /* \"#utility.yul\":7655:7675 */\n tag_150\n jump\t// in\n tag_258:\n /* \"#utility.yul\":7650:7675 */\n swap2\n pop\n /* \"#utility.yul\":7689:7709 */\n tag_259\n /* \"#utility.yul\":7707:7708 */\n dup4\n /* \"#utility.yul\":7689:7709 */\n tag_150\n jump\t// in\n tag_259:\n /* \"#utility.yul\":7684:7709 */\n swap3\n pop\n /* \"#utility.yul\":7732:7733 */\n dup3\n /* \"#utility.yul\":7729:7730 */\n dup3\n /* \"#utility.yul\":7725:7734 */\n add\n /* \"#utility.yul\":7718:7734 */\n swap1\n pop\n /* \"#utility.yul\":7753:7756 */\n dup1\n /* \"#utility.yul\":7750:7751 */\n dup3\n /* \"#utility.yul\":7747:7757 */\n gt\n /* \"#utility.yul\":7744:7780 */\n iszero\n tag_260\n jumpi\n /* \"#utility.yul\":7760:7778 */\n tag_261\n tag_161\n jump\t// in\n tag_261:\n /* \"#utility.yul\":7744:7780 */\n tag_260:\n /* \"#utility.yul\":7596:7787 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7793:8017 */\n tag_162:\n /* \"#utility.yul\":7933:7967 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":7929:7930 */\n 0x00\n /* \"#utility.yul\":7921:7927 */\n dup3\n /* \"#utility.yul\":7917:7931 */\n add\n /* \"#utility.yul\":7910:7968 */\n mstore\n /* \"#utility.yul\":8002:8009 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7997:7999 */\n 0x20\n /* \"#utility.yul\":7989:7995 */\n dup3\n /* \"#utility.yul\":7985:8000 */\n add\n /* \"#utility.yul\":7978:8010 */\n mstore\n /* \"#utility.yul\":7793:8017 */\n pop\n jump\t// out\n /* \"#utility.yul\":8023:8389 */\n tag_163:\n /* \"#utility.yul\":8165:8168 */\n 0x00\n /* \"#utility.yul\":8186:8253 */\n tag_264\n /* \"#utility.yul\":8250:8252 */\n 0x25\n /* \"#utility.yul\":8245:8248 */\n dup4\n /* \"#utility.yul\":8186:8253 */\n tag_139\n jump\t// in\n tag_264:\n /* \"#utility.yul\":8179:8253 */\n swap2\n pop\n /* \"#utility.yul\":8262:8355 */\n tag_265\n /* \"#utility.yul\":8351:8354 */\n dup3\n /* \"#utility.yul\":8262:8355 */\n tag_162\n jump\t// in\n tag_265:\n /* \"#utility.yul\":8380:8382 */\n 0x40\n /* \"#utility.yul\":8375:8378 */\n dup3\n /* \"#utility.yul\":8371:8383 */\n add\n /* \"#utility.yul\":8364:8383 */\n swap1\n pop\n /* \"#utility.yul\":8023:8389 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8395:8814 */\n tag_105:\n /* \"#utility.yul\":8561:8565 */\n 0x00\n /* \"#utility.yul\":8599:8601 */\n 0x20\n /* \"#utility.yul\":8588:8597 */\n dup3\n /* \"#utility.yul\":8584:8602 */\n add\n /* \"#utility.yul\":8576:8602 */\n swap1\n pop\n /* \"#utility.yul\":8648:8657 */\n dup2\n /* \"#utility.yul\":8642:8646 */\n dup2\n /* \"#utility.yul\":8638:8658 */\n sub\n /* \"#utility.yul\":8634:8635 */\n 0x00\n /* \"#utility.yul\":8623:8632 */\n dup4\n /* \"#utility.yul\":8619:8636 */\n add\n /* \"#utility.yul\":8612:8659 */\n mstore\n /* \"#utility.yul\":8676:8807 */\n tag_267\n /* \"#utility.yul\":8802:8806 */\n dup2\n /* \"#utility.yul\":8676:8807 */\n tag_163\n jump\t// in\n tag_267:\n /* \"#utility.yul\":8668:8807 */\n swap1\n pop\n /* \"#utility.yul\":8395:8814 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8820:9043 */\n tag_164:\n /* \"#utility.yul\":8960:8994 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":8956:8957 */\n 0x00\n /* \"#utility.yul\":8948:8954 */\n dup3\n /* \"#utility.yul\":8944:8958 */\n add\n /* \"#utility.yul\":8937:8995 */\n mstore\n /* \"#utility.yul\":9029:9035 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":9024:9026 */\n 0x20\n /* \"#utility.yul\":9016:9022 */\n dup3\n /* \"#utility.yul\":9012:9027 */\n add\n /* \"#utility.yul\":9005:9036 */\n mstore\n /* \"#utility.yul\":8820:9043 */\n pop\n jump\t// out\n /* \"#utility.yul\":9049:9415 */\n tag_165:\n /* \"#utility.yul\":9191:9194 */\n 0x00\n /* \"#utility.yul\":9212:9279 */\n tag_270\n /* \"#utility.yul\":9276:9278 */\n 0x24\n /* \"#utility.yul\":9271:9274 */\n dup4\n /* \"#utility.yul\":9212:9279 */\n tag_139\n jump\t// in\n tag_270:\n /* \"#utility.yul\":9205:9279 */\n swap2\n pop\n /* \"#utility.yul\":9288:9381 */\n tag_271\n /* \"#utility.yul\":9377:9380 */\n dup3\n /* \"#utility.yul\":9288:9381 */\n tag_164\n jump\t// in\n tag_271:\n /* \"#utility.yul\":9406:9408 */\n 0x40\n /* \"#utility.yul\":9401:9404 */\n dup3\n /* \"#utility.yul\":9397:9409 */\n add\n /* \"#utility.yul\":9390:9409 */\n swap1\n pop\n /* \"#utility.yul\":9049:9415 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9421:9840 */\n tag_117:\n /* \"#utility.yul\":9587:9591 */\n 0x00\n /* \"#utility.yul\":9625:9627 */\n 0x20\n /* \"#utility.yul\":9614:9623 */\n dup3\n /* \"#utility.yul\":9610:9628 */\n add\n /* \"#utility.yul\":9602:9628 */\n swap1\n pop\n /* \"#utility.yul\":9674:9683 */\n dup2\n /* \"#utility.yul\":9668:9672 */\n dup2\n /* \"#utility.yul\":9664:9684 */\n sub\n /* \"#utility.yul\":9660:9661 */\n 0x00\n /* \"#utility.yul\":9649:9658 */\n dup4\n /* \"#utility.yul\":9645:9662 */\n add\n /* \"#utility.yul\":9638:9685 */\n mstore\n /* \"#utility.yul\":9702:9833 */\n tag_273\n /* \"#utility.yul\":9828:9832 */\n dup2\n /* \"#utility.yul\":9702:9833 */\n tag_165\n jump\t// in\n tag_273:\n /* \"#utility.yul\":9694:9833 */\n swap1\n pop\n /* \"#utility.yul\":9421:9840 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9846:10067 */\n tag_166:\n /* \"#utility.yul\":9986:10020 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":9982:9983 */\n 0x00\n /* \"#utility.yul\":9974:9980 */\n dup3\n /* \"#utility.yul\":9970:9984 */\n add\n /* \"#utility.yul\":9963:10021 */\n mstore\n /* \"#utility.yul\":10055:10059 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10050:10052 */\n 0x20\n /* \"#utility.yul\":10042:10048 */\n dup3\n /* \"#utility.yul\":10038:10053 */\n add\n /* \"#utility.yul\":10031:10060 */\n mstore\n /* \"#utility.yul\":9846:10067 */\n pop\n jump\t// out\n /* \"#utility.yul\":10073:10439 */\n tag_167:\n /* \"#utility.yul\":10215:10218 */\n 0x00\n /* \"#utility.yul\":10236:10303 */\n tag_276\n /* \"#utility.yul\":10300:10302 */\n 0x22\n /* \"#utility.yul\":10295:10298 */\n dup4\n /* \"#utility.yul\":10236:10303 */\n tag_139\n jump\t// in\n tag_276:\n /* \"#utility.yul\":10229:10303 */\n swap2\n pop\n /* \"#utility.yul\":10312:10405 */\n tag_277\n /* \"#utility.yul\":10401:10404 */\n dup3\n /* \"#utility.yul\":10312:10405 */\n tag_166\n jump\t// in\n tag_277:\n /* \"#utility.yul\":10430:10432 */\n 0x40\n /* \"#utility.yul\":10425:10428 */\n dup3\n /* \"#utility.yul\":10421:10433 */\n add\n /* \"#utility.yul\":10414:10433 */\n swap1\n pop\n /* \"#utility.yul\":10073:10439 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10445:10864 */\n tag_120:\n /* \"#utility.yul\":10611:10615 */\n 0x00\n /* \"#utility.yul\":10649:10651 */\n 0x20\n /* \"#utility.yul\":10638:10647 */\n dup3\n /* \"#utility.yul\":10634:10652 */\n add\n /* \"#utility.yul\":10626:10652 */\n swap1\n pop\n /* \"#utility.yul\":10698:10707 */\n dup2\n /* \"#utility.yul\":10692:10696 */\n dup2\n /* \"#utility.yul\":10688:10708 */\n sub\n /* \"#utility.yul\":10684:10685 */\n 0x00\n /* \"#utility.yul\":10673:10682 */\n dup4\n /* \"#utility.yul\":10669:10686 */\n add\n /* \"#utility.yul\":10662:10709 */\n mstore\n /* \"#utility.yul\":10726:10857 */\n tag_279\n /* \"#utility.yul\":10852:10856 */\n dup2\n /* \"#utility.yul\":10726:10857 */\n tag_167\n jump\t// in\n tag_279:\n /* \"#utility.yul\":10718:10857 */\n swap1\n pop\n /* \"#utility.yul\":10445:10864 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10870:11094 */\n tag_168:\n /* \"#utility.yul\":11010:11044 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":11006:11007 */\n 0x00\n /* \"#utility.yul\":10998:11004 */\n dup3\n /* \"#utility.yul\":10994:11008 */\n add\n /* \"#utility.yul\":10987:11045 */\n mstore\n /* \"#utility.yul\":11079:11086 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11074:11076 */\n 0x20\n /* \"#utility.yul\":11066:11072 */\n dup3\n /* \"#utility.yul\":11062:11077 */\n add\n /* \"#utility.yul\":11055:11087 */\n mstore\n /* \"#utility.yul\":10870:11094 */\n pop\n jump\t// out\n /* \"#utility.yul\":11100:11466 */\n tag_169:\n /* \"#utility.yul\":11242:11245 */\n 0x00\n /* \"#utility.yul\":11263:11330 */\n tag_282\n /* \"#utility.yul\":11327:11329 */\n 0x25\n /* \"#utility.yul\":11322:11325 */\n dup4\n /* \"#utility.yul\":11263:11330 */\n tag_139\n jump\t// in\n tag_282:\n /* \"#utility.yul\":11256:11330 */\n swap2\n pop\n /* \"#utility.yul\":11339:11432 */\n tag_283\n /* \"#utility.yul\":11428:11431 */\n dup3\n /* \"#utility.yul\":11339:11432 */\n tag_168\n jump\t// in\n tag_283:\n /* \"#utility.yul\":11457:11459 */\n 0x40\n /* \"#utility.yul\":11452:11455 */\n dup3\n /* \"#utility.yul\":11448:11460 */\n add\n /* \"#utility.yul\":11441:11460 */\n swap1\n pop\n /* \"#utility.yul\":11100:11466 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11472:11891 */\n tag_125:\n /* \"#utility.yul\":11638:11642 */\n 0x00\n /* \"#utility.yul\":11676:11678 */\n 0x20\n /* \"#utility.yul\":11665:11674 */\n dup3\n /* \"#utility.yul\":11661:11679 */\n add\n /* \"#utility.yul\":11653:11679 */\n swap1\n pop\n /* \"#utility.yul\":11725:11734 */\n dup2\n /* \"#utility.yul\":11719:11723 */\n dup2\n /* \"#utility.yul\":11715:11735 */\n sub\n /* \"#utility.yul\":11711:11712 */\n 0x00\n /* \"#utility.yul\":11700:11709 */\n dup4\n /* \"#utility.yul\":11696:11713 */\n add\n /* \"#utility.yul\":11689:11736 */\n mstore\n /* \"#utility.yul\":11753:11884 */\n tag_285\n /* \"#utility.yul\":11879:11883 */\n dup2\n /* \"#utility.yul\":11753:11884 */\n tag_169\n jump\t// in\n tag_285:\n /* \"#utility.yul\":11745:11884 */\n swap1\n pop\n /* \"#utility.yul\":11472:11891 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11897:12119 */\n tag_170:\n /* \"#utility.yul\":12037:12071 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":12033:12034 */\n 0x00\n /* \"#utility.yul\":12025:12031 */\n dup3\n /* \"#utility.yul\":12021:12035 */\n add\n /* \"#utility.yul\":12014:12072 */\n mstore\n /* \"#utility.yul\":12106:12111 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12101:12103 */\n 0x20\n /* \"#utility.yul\":12093:12099 */\n dup3\n /* \"#utility.yul\":12089:12104 */\n add\n /* \"#utility.yul\":12082:12112 */\n mstore\n /* \"#utility.yul\":11897:12119 */\n pop\n jump\t// out\n /* \"#utility.yul\":12125:12491 */\n tag_171:\n /* \"#utility.yul\":12267:12270 */\n 0x00\n /* \"#utility.yul\":12288:12355 */\n tag_288\n /* \"#utility.yul\":12352:12354 */\n 0x23\n /* \"#utility.yul\":12347:12350 */\n dup4\n /* \"#utility.yul\":12288:12355 */\n tag_139\n jump\t// in\n tag_288:\n /* \"#utility.yul\":12281:12355 */\n swap2\n pop\n /* \"#utility.yul\":12364:12457 */\n tag_289\n /* \"#utility.yul\":12453:12456 */\n dup3\n /* \"#utility.yul\":12364:12457 */\n tag_170\n jump\t// in\n tag_289:\n /* \"#utility.yul\":12482:12484 */\n 0x40\n /* \"#utility.yul\":12477:12480 */\n dup3\n /* \"#utility.yul\":12473:12485 */\n add\n /* \"#utility.yul\":12466:12485 */\n swap1\n pop\n /* \"#utility.yul\":12125:12491 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12497:12916 */\n tag_128:\n /* \"#utility.yul\":12663:12667 */\n 0x00\n /* \"#utility.yul\":12701:12703 */\n 0x20\n /* \"#utility.yul\":12690:12699 */\n dup3\n /* \"#utility.yul\":12686:12704 */\n add\n /* \"#utility.yul\":12678:12704 */\n swap1\n pop\n /* \"#utility.yul\":12750:12759 */\n dup2\n /* \"#utility.yul\":12744:12748 */\n dup2\n /* \"#utility.yul\":12740:12760 */\n sub\n /* \"#utility.yul\":12736:12737 */\n 0x00\n /* \"#utility.yul\":12725:12734 */\n dup4\n /* \"#utility.yul\":12721:12738 */\n add\n /* \"#utility.yul\":12714:12761 */\n mstore\n /* \"#utility.yul\":12778:12909 */\n tag_291\n /* \"#utility.yul\":12904:12908 */\n dup2\n /* \"#utility.yul\":12778:12909 */\n tag_171\n jump\t// in\n tag_291:\n /* \"#utility.yul\":12770:12909 */\n swap1\n pop\n /* \"#utility.yul\":12497:12916 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12922:13147 */\n tag_172:\n /* \"#utility.yul\":13062:13096 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":13058:13059 */\n 0x00\n /* \"#utility.yul\":13050:13056 */\n dup3\n /* \"#utility.yul\":13046:13060 */\n add\n /* \"#utility.yul\":13039:13097 */\n mstore\n /* \"#utility.yul\":13131:13139 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13126:13128 */\n 0x20\n /* \"#utility.yul\":13118:13124 */\n dup3\n /* \"#utility.yul\":13114:13129 */\n add\n /* \"#utility.yul\":13107:13140 */\n mstore\n /* \"#utility.yul\":12922:13147 */\n pop\n jump\t// out\n /* \"#utility.yul\":13153:13519 */\n tag_173:\n /* \"#utility.yul\":13295:13298 */\n 0x00\n /* \"#utility.yul\":13316:13383 */\n tag_294\n /* \"#utility.yul\":13380:13382 */\n 0x26\n /* \"#utility.yul\":13375:13378 */\n dup4\n /* \"#utility.yul\":13316:13383 */\n tag_139\n jump\t// in\n tag_294:\n /* \"#utility.yul\":13309:13383 */\n swap2\n pop\n /* \"#utility.yul\":13392:13485 */\n tag_295\n /* \"#utility.yul\":13481:13484 */\n dup3\n /* \"#utility.yul\":13392:13485 */\n tag_172\n jump\t// in\n tag_295:\n /* \"#utility.yul\":13510:13512 */\n 0x40\n /* \"#utility.yul\":13505:13508 */\n dup3\n /* \"#utility.yul\":13501:13513 */\n add\n /* \"#utility.yul\":13494:13513 */\n swap1\n pop\n /* \"#utility.yul\":13153:13519 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13525:13944 */\n tag_133:\n /* \"#utility.yul\":13691:13695 */\n 0x00\n /* \"#utility.yul\":13729:13731 */\n 0x20\n /* \"#utility.yul\":13718:13727 */\n dup3\n /* \"#utility.yul\":13714:13732 */\n add\n /* \"#utility.yul\":13706:13732 */\n swap1\n pop\n /* \"#utility.yul\":13778:13787 */\n dup2\n /* \"#utility.yul\":13772:13776 */\n dup2\n /* \"#utility.yul\":13768:13788 */\n sub\n /* \"#utility.yul\":13764:13765 */\n 0x00\n /* \"#utility.yul\":13753:13762 */\n dup4\n /* \"#utility.yul\":13749:13766 */\n add\n /* \"#utility.yul\":13742:13789 */\n mstore\n /* \"#utility.yul\":13806:13937 */\n tag_297\n /* \"#utility.yul\":13932:13936 */\n dup2\n /* \"#utility.yul\":13806:13937 */\n tag_173\n jump\t// in\n tag_297:\n /* \"#utility.yul\":13798:13937 */\n swap1\n pop\n /* \"#utility.yul\":13525:13944 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220d30a92f83a4a3cf8baaec1ba4f97c3621655db5830b99d45b08e7aba6443f38664736f6c63430008140033\n}\n",
"bytecode": {
"functionDebugData": {
"@_41": {
"entryPoint": null,
"id": 41,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 363,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 487,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 238,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 98,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 268,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 725,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 618,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1034,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 855,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 996,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1185,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 321,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 743,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 673,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1156,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 184,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 864,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1126,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 628,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 139,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 115,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 119,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 111,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 107,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 123,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 758,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 968,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 770,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 921,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 964,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:8574:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:3"
},
"nodeType": "YulFunctionCall",
"src": "433:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:3"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:3"
},
"nodeType": "YulFunctionCall",
"src": "556:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:3"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:3"
},
"nodeType": "YulFunctionCall",
"src": "652:14:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:3"
},
"nodeType": "YulFunctionCall",
"src": "668:7:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:3"
},
"nodeType": "YulFunctionCall",
"src": "648:28:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:3"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:3",
"type": ""
}
],
"src": "580:102:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:3"
},
"nodeType": "YulFunctionCall",
"src": "726:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:3",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:3"
},
"nodeType": "YulFunctionCall",
"src": "823:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:3"
},
"nodeType": "YulFunctionCall",
"src": "847:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:3"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:3",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:3"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:3"
},
"nodeType": "YulFunctionCall",
"src": "957:27:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:3"
},
"nodeType": "YulFunctionCall",
"src": "945:40:3"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:3"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:3"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:3"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:3"
},
"nodeType": "YulIf",
"src": "1030:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:3",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:3"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:3"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:3",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:3",
"type": ""
}
],
"src": "874:281:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:3",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:3"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:3"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:3"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:3"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:3"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:3",
"type": ""
}
],
"src": "1161:129:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:3"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:3"
},
"nodeType": "YulIf",
"src": "1434:56:3"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:3"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:3"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:3",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:3"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:3"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:3",
"type": ""
}
],
"src": "1296:308:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1672:184:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1682:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1691:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1686:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1751:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1776:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1781:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1772:11:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1795:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1800:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1791:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1791:11:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1785:5:3"
},
"nodeType": "YulFunctionCall",
"src": "1785:18:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1765:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1765:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "1765:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1715:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1709:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1709:13:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1723:19:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1725:15:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1734:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1737:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1730:10:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1725:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1705:3:3",
"statements": []
},
"src": "1701:113:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1834:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1839:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1830:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1830:16:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1848:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1823:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1823:27:3"
},
"nodeType": "YulExpressionStatement",
"src": "1823:27:3"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1654:3:3",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1659:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1664:6:3",
"type": ""
}
],
"src": "1610:246:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1957:339:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1967:75:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2034:6:3"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1992:41:3"
},
"nodeType": "YulFunctionCall",
"src": "1992:49:3"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1976:15:3"
},
"nodeType": "YulFunctionCall",
"src": "1976:66:3"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1967:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2058:5:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2065:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2051:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2051:21:3"
},
"nodeType": "YulExpressionStatement",
"src": "2051:21:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2081:27:3",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2096:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2103:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2092:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2092:16:3"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2085:3:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2146:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2148:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2148:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2148:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2127:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2132:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2123:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2123:16:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2141:3:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2120:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2120:25:3"
},
"nodeType": "YulIf",
"src": "2117:112:3"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2273:3:3"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2278:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2283:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2238:34:3"
},
"nodeType": "YulFunctionCall",
"src": "2238:52:3"
},
"nodeType": "YulExpressionStatement",
"src": "2238:52:3"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1930:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1935:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1943:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1951:5:3",
"type": ""
}
],
"src": "1862:434:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2389:282:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2438:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2440:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2440:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2440:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2417:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2425:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2413:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2413:17:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2432:3:3"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2409:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2409:27:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2402:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2402:35:3"
},
"nodeType": "YulIf",
"src": "2399:122:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2530:27:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2550:6:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2544:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2544:13:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2534:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2566:99:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2638:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2634:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2634:17:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2653:6:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2661:3:3"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2575:58:3"
},
"nodeType": "YulFunctionCall",
"src": "2575:90:3"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2566:5:3"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2367:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2375:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2383:5:3",
"type": ""
}
],
"src": "2316:355:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2791:739:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2837:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2839:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2839:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2839:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2812:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2821:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2808:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2808:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2833:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2804:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2804:32:3"
},
"nodeType": "YulIf",
"src": "2801:119:3"
},
{
"nodeType": "YulBlock",
"src": "2930:291:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2945:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2969:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2980:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2965:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2965:17:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2959:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2959:24:3"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2949:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3030:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3032:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3032:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3032:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3002:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3010:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2999:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2999:30:3"
},
"nodeType": "YulIf",
"src": "2996:117:3"
},
{
"nodeType": "YulAssignment",
"src": "3127:84:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3183:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3194:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3179:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3179:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3203:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3137:41:3"
},
"nodeType": "YulFunctionCall",
"src": "3137:74:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3127:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3231:292:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3246:39:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3270:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3281:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3266:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3266:18:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3260:5:3"
},
"nodeType": "YulFunctionCall",
"src": "3260:25:3"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3250:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3332:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3334:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3334:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3334:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3304:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3312:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3301:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3301:30:3"
},
"nodeType": "YulIf",
"src": "3298:117:3"
},
{
"nodeType": "YulAssignment",
"src": "3429:84:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3485:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3496:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3481:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3481:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3505:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3439:41:3"
},
"nodeType": "YulFunctionCall",
"src": "3439:74:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3429:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2753:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2764:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2776:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2784:6:3",
"type": ""
}
],
"src": "2677:853:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3595:40:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3606:22:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3622:5:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3616:5:3"
},
"nodeType": "YulFunctionCall",
"src": "3616:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3606:6:3"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3578:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3588:6:3",
"type": ""
}
],
"src": "3536:99:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3669:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3686:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3689:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3679:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3679:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "3679:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3783:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3786:4:3",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3776:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3776:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "3776:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3807:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3810:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3800:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3800:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "3800:15:3"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3641:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3878:269:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3888:22:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3902:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3908:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3898:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3898:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3888:6:3"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3919:38:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3949:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3955:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3945:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3945:12:3"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3923:18:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3996:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4010:27:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4024:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4032:4:3",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4020:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4020:17:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4010:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3976:18:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3969:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3969:26:3"
},
"nodeType": "YulIf",
"src": "3966:81:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4099:42:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4113:16:3"
},
"nodeType": "YulFunctionCall",
"src": "4113:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "4113:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4063:18:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4086:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4094:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4083:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4083:14:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4060:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4060:38:3"
},
"nodeType": "YulIf",
"src": "4057:84:3"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3862:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3871:6:3",
"type": ""
}
],
"src": "3827:320:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4207:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4217:11:3",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4225:3:3"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4217:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4245:1:3",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4248:3:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4238:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4238:14:3"
},
"nodeType": "YulExpressionStatement",
"src": "4238:14:3"
},
{
"nodeType": "YulAssignment",
"src": "4261:26:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4279:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4282:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "4269:9:3"
},
"nodeType": "YulFunctionCall",
"src": "4269:18:3"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4261:4:3"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "4194:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4202:4:3",
"type": ""
}
],
"src": "4153:141:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4344:49:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4354:33:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4372:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4379:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4368:14:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4384:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4364:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4364:23:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4354:6:3"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4327:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4337:6:3",
"type": ""
}
],
"src": "4300:93:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4452:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4462:37:3",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "4487:4:3"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4493:5:3"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4483:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4483:16:3"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "4462:8:3"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "4427:4:3",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4433:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "4443:8:3",
"type": ""
}
],
"src": "4399:107:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4588:317:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4598:35:3",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "4619:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4631:1:3",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4615:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4615:18:3"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "4602:9:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4642:109:3",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "4673:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4684:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "4654:18:3"
},
"nodeType": "YulFunctionCall",
"src": "4654:97:3"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "4646:4:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4760:51:3",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "4791:9:3"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4802:8:3"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "4772:18:3"
},
"nodeType": "YulFunctionCall",
"src": "4772:39:3"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4760:8:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4820:30:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4833:5:3"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "4844:4:3"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4840:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4840:9:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4829:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4829:21:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4820:5:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4859:40:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4872:5:3"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4883:8:3"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "4893:4:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4879:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4879:19:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4869:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4869:30:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4859:6:3"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4549:5:3",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "4556:10:3",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "4568:8:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4581:6:3",
"type": ""
}
],
"src": "4512:393:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4956:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4966:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4977:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4966:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4938:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4948:7:3",
"type": ""
}
],
"src": "4911:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5026:28:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5036:12:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5043:5:3"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5036:3:3"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5012:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5022:3:3",
"type": ""
}
],
"src": "4994:60:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5120:82:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5130:66:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5188:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5170:17:3"
},
"nodeType": "YulFunctionCall",
"src": "5170:24:3"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5161:8:3"
},
"nodeType": "YulFunctionCall",
"src": "5161:34:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5143:17:3"
},
"nodeType": "YulFunctionCall",
"src": "5143:53:3"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5130:9:3"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5100:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5110:9:3",
"type": ""
}
],
"src": "5060:142:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5255:28:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5265:12:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5272:5:3"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5265:3:3"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5241:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5251:3:3",
"type": ""
}
],
"src": "5208:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5365:193:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5375:63:3",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "5430:7:3"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5399:30:3"
},
"nodeType": "YulFunctionCall",
"src": "5399:39:3"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "5379:16:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5454:4:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5494:4:3"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5488:5:3"
},
"nodeType": "YulFunctionCall",
"src": "5488:11:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5501:6:3"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "5533:16:3"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "5509:23:3"
},
"nodeType": "YulFunctionCall",
"src": "5509:41:3"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "5460:27:3"
},
"nodeType": "YulFunctionCall",
"src": "5460:91:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5447:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5447:105:3"
},
"nodeType": "YulExpressionStatement",
"src": "5447:105:3"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5342:4:3",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5348:6:3",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "5356:7:3",
"type": ""
}
],
"src": "5289:269:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5613:24:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5623:8:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5630:1:3",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5623:3:3"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5609:3:3",
"type": ""
}
],
"src": "5564:73:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5696:136:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5706:46:3",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "5720:30:3"
},
"nodeType": "YulFunctionCall",
"src": "5720:32:3"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "5710:6:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5805:4:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5811:6:3"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "5819:6:3"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5761:43:3"
},
"nodeType": "YulFunctionCall",
"src": "5761:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "5761:65:3"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5682:4:3",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5688:6:3",
"type": ""
}
],
"src": "5643:189:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5888:136:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5955:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5999:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6006:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "5969:29:3"
},
"nodeType": "YulFunctionCall",
"src": "5969:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "5969:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5908:5:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5915:3:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5905:2:3"
},
"nodeType": "YulFunctionCall",
"src": "5905:14:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5920:26:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5922:22:3",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5935:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5942:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5931:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5931:13:3"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5922:5:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5902:2:3",
"statements": []
},
"src": "5898:120:3"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "5876:5:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5883:3:3",
"type": ""
}
],
"src": "5838:186:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6109:464:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6135:431:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6149:54:3",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "6197:5:3"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "6165:31:3"
},
"nodeType": "YulFunctionCall",
"src": "6165:38:3"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "6153:8:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6216:63:3",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6239:8:3"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "6267:10:3"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6249:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6249:29:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6235:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6235:44:3"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "6220:11:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6436:27:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6438:23:3",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6453:8:3"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "6438:11:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "6420:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6432:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6417:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6417:18:3"
},
"nodeType": "YulIf",
"src": "6414:49:3"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "6505:11:3"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6522:8:3"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6550:3:3"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6532:22:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6518:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6518:37:3"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "6476:28:3"
},
"nodeType": "YulFunctionCall",
"src": "6476:80:3"
},
"nodeType": "YulExpressionStatement",
"src": "6476:80:3"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6126:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6131:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6123:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6123:11:3"
},
"nodeType": "YulIf",
"src": "6120:446:3"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "6085:5:3",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6092:3:3",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "6097:10:3",
"type": ""
}
],
"src": "6030:543:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6642:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6652:37:3",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "6677:4:3"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6683:5:3"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "6673:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6673:16:3"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "6652:8:3"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6617:4:3",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6623:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "6633:8:3",
"type": ""
}
],
"src": "6579:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6753:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6763:68:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6812:1:3",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "6815:5:3"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6808:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6808:13:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6827:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6823:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6823:6:3"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "6779:28:3"
},
"nodeType": "YulFunctionCall",
"src": "6779:51:3"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6775:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6775:56:3"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "6767:4:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6840:25:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6854:4:3"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "6860:4:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6850:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6850:15:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6840:6:3"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6730:4:3",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "6736:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6746:6:3",
"type": ""
}
],
"src": "6702:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6957:214:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7090:37:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7117:4:3"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7123:3:3"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "7098:18:3"
},
"nodeType": "YulFunctionCall",
"src": "7098:29:3"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7090:4:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7136:29:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7147:4:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7157:1:3",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7160:3:3"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7153:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7153:11:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7144:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7144:21:3"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "7136:4:3"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6938:4:3",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6944:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "6952:4:3",
"type": ""
}
],
"src": "6876:295:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7268:1303:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7279:51:3",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7326:3:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7293:32:3"
},
"nodeType": "YulFunctionCall",
"src": "7293:37:3"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "7283:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7415:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7417:16:3"
},
"nodeType": "YulFunctionCall",
"src": "7417:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "7417:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7387:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7395:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7384:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7384:30:3"
},
"nodeType": "YulIf",
"src": "7381:56:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7447:52:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7493:4:3"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "7487:5:3"
},
"nodeType": "YulFunctionCall",
"src": "7487:11:3"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "7461:25:3"
},
"nodeType": "YulFunctionCall",
"src": "7461:38:3"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "7451:6:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7592:4:3"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "7598:6:3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7606:6:3"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "7546:45:3"
},
"nodeType": "YulFunctionCall",
"src": "7546:67:3"
},
"nodeType": "YulExpressionStatement",
"src": "7546:67:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7623:18:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7640:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "7627:9:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7651:17:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7664:4:3",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "7651:9:3"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "7715:611:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7729:37:3",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7748:6:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7760:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7756:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7756:9:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7744:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7744:22:3"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "7733:7:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7780:51:3",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7826:4:3"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "7794:31:3"
},
"nodeType": "YulFunctionCall",
"src": "7794:37:3"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "7784:6:3",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7844:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7853:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7848:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7912:163:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "7937:6:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7955:3:3"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "7960:9:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7951:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7951:19:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7945:5:3"
},
"nodeType": "YulFunctionCall",
"src": "7945:26:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "7930:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7930:42:3"
},
"nodeType": "YulExpressionStatement",
"src": "7930:42:3"
},
{
"nodeType": "YulAssignment",
"src": "7989:24:3",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8003:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8011:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7999:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7999:14:3"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "7989:6:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8030:31:3",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8047:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8058:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8043:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8043:18:3"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8030:9:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7878:1:3"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "7881:7:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7875:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7875:14:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7890:21:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7892:17:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7901:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7904:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7897:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7897:12:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7892:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7871:3:3",
"statements": []
},
"src": "7867:208:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8111:156:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8129:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8156:3:3"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8161:9:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8152:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8152:19:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8146:5:3"
},
"nodeType": "YulFunctionCall",
"src": "8146:26:3"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "8133:9:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8196:6:3"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "8223:9:3"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8238:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8246:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8234:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8234:17:3"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "8204:18:3"
},
"nodeType": "YulFunctionCall",
"src": "8204:48:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8189:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8189:64:3"
},
"nodeType": "YulExpressionStatement",
"src": "8189:64:3"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "8094:7:3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8103:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8091:2:3"
},
"nodeType": "YulFunctionCall",
"src": "8091:19:3"
},
"nodeType": "YulIf",
"src": "8088:179:3"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8287:4:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8301:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8309:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8297:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8297:14:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8313:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8293:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8293:22:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8280:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8280:36:3"
},
"nodeType": "YulExpressionStatement",
"src": "8280:36:3"
}
]
},
"nodeType": "YulCase",
"src": "7708:618:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7713:1:3",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "8343:222:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8357:14:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8370:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8361:5:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8394:67:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8412:35:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8431:3:3"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8436:9:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8427:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8427:19:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8421:5:3"
},
"nodeType": "YulFunctionCall",
"src": "8421:26:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8412:5:3"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8387:6:3"
},
"nodeType": "YulIf",
"src": "8384:77:3"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8481:4:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8540:5:3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8547:6:3"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "8487:52:3"
},
"nodeType": "YulFunctionCall",
"src": "8487:67:3"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8474:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8474:81:3"
},
"nodeType": "YulExpressionStatement",
"src": "8474:81:3"
}
]
},
"nodeType": "YulCase",
"src": "8335:230:3",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7688:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7696:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7685:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7685:14:3"
},
"nodeType": "YulSwitch",
"src": "7678:887:3"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "7257:4:3",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "7263:3:3",
"type": ""
}
],
"src": "7176:1395:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801562000010575f80fd5b50604051620018d4380380620018d48339818101604052810190620000369190620001e7565b8160039081620000479190620004a1565b508060049081620000599190620004a1565b50505062000585565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620000c3826200007b565b810181811067ffffffffffffffff82111715620000e557620000e46200008b565b5b80604052505050565b5f620000f962000062565b9050620001078282620000b8565b919050565b5f67ffffffffffffffff8211156200012957620001286200008b565b5b62000134826200007b565b9050602081019050919050565b5f5b838110156200016057808201518184015260208101905062000143565b5f8484015250505050565b5f620001816200017b846200010c565b620000ee565b905082815260208101848484011115620001a0576200019f62000077565b5b620001ad84828562000141565b509392505050565b5f82601f830112620001cc57620001cb62000073565b5b8151620001de8482602086016200016b565b91505092915050565b5f80604083850312156200020057620001ff6200006b565b5b5f83015167ffffffffffffffff81111562000220576200021f6200006f565b5b6200022e85828601620001b5565b925050602083015167ffffffffffffffff8111156200025257620002516200006f565b5b6200026085828601620001b5565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b957607f821691505b602082108103620002cf57620002ce62000274565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f6565b6200033f8683620002f6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000389620003836200037d8462000357565b62000360565b62000357565b9050919050565b5f819050919050565b620003a48362000369565b620003bc620003b38262000390565b84845462000302565b825550505050565b5f90565b620003d2620003c4565b620003df81848462000399565b505050565b5b818110156200040657620003fa5f82620003c8565b600181019050620003e5565b5050565b601f82111562000455576200041f81620002d5565b6200042a84620002e7565b810160208510156200043a578190505b620004526200044985620002e7565b830182620003e4565b50505b505050565b5f82821c905092915050565b5f620004775f19846008026200045a565b1980831691505092915050565b5f62000491838362000466565b9150826002028217905092915050565b620004ac826200026a565b67ffffffffffffffff811115620004c857620004c76200008b565b5b620004d48254620002a1565b620004e18282856200040a565b5f60209050601f83116001811462000517575f841562000502578287015190505b6200050e858262000484565b8655506200057d565b601f1984166200052786620002d5565b5f5b82811015620005505784890151825560018201915060208501945060208101905062000529565b868310156200057057848901516200056c601f89168262000466565b8355505b6001600288020188555050505b505050505050565b61134180620005935f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610c02565b60405180910390f35b6100e360048036038101906100de9190610cb3565b610303565b6040516100f09190610d0b565b60405180910390f35b610101610320565b60405161010e9190610d33565b60405180910390f35b610131600480360381019061012c9190610d4c565b610329565b60405161013e9190610d0b565b60405180910390f35b61014f610424565b60405161015c9190610db7565b60405180910390f35b61017f600480360381019061017a9190610cb3565b61042c565b60405161018c9190610d0b565b60405180910390f35b6101af60048036038101906101aa9190610dd0565b6104d3565b6040516101bc9190610d33565b60405180910390f35b6101cd610518565b6040516101da9190610c02565b60405180910390f35b6101fd60048036038101906101f89190610cb3565b6105a8565b60405161020a9190610d0b565b60405180910390f35b61022d60048036038101906102289190610cb3565b610697565b60405161023a9190610d0b565b60405180910390f35b61025d60048036038101906102589190610dfb565b6106b4565b60405161026a9190610d33565b60405180910390f35b60606003805461028290610e66565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e66565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610f06565b60405180910390fd5b61041885610407610736565b85846104139190610f51565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f84565b61073d565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e66565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e66565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f8060015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611027565b60405180910390fd5b61068c61067a610736565b8585846106879190610f51565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906110b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611143565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d33565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111d1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061125f565b60405180910390fd5b6109e7838383610b73565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112ed565b60405180910390fd5b8181610a769190610f51565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f84565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d33565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610baf578082015181840152602081019050610b94565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bd482610b78565b610bde8185610b82565b9350610bee818560208601610b92565b610bf781610bba565b840191505092915050565b5f6020820190508181035f830152610c1a8184610bca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4f82610c26565b9050919050565b610c5f81610c45565b8114610c69575f80fd5b50565b5f81359050610c7a81610c56565b92915050565b5f819050919050565b610c9281610c80565b8114610c9c575f80fd5b50565b5f81359050610cad81610c89565b92915050565b5f8060408385031215610cc957610cc8610c22565b5b5f610cd685828601610c6c565b9250506020610ce785828601610c9f565b9150509250929050565b5f8115159050919050565b610d0581610cf1565b82525050565b5f602082019050610d1e5f830184610cfc565b92915050565b610d2d81610c80565b82525050565b5f602082019050610d465f830184610d24565b92915050565b5f805f60608486031215610d6357610d62610c22565b5b5f610d7086828701610c6c565b9350506020610d8186828701610c6c565b9250506040610d9286828701610c9f565b9150509250925092565b5f60ff82169050919050565b610db181610d9c565b82525050565b5f602082019050610dca5f830184610da8565b92915050565b5f60208284031215610de557610de4610c22565b5b5f610df284828501610c6c565b91505092915050565b5f8060408385031215610e1157610e10610c22565b5b5f610e1e85828601610c6c565b9250506020610e2f85828601610c6c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7d57607f821691505b602082108103610e9057610e8f610e39565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ef0602883610b82565b9150610efb82610e96565b604082019050919050565b5f6020820190508181035f830152610f1d81610ee4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f5b82610c80565b9150610f6683610c80565b9250828203905081811115610f7e57610f7d610f24565b5b92915050565b5f610f8e82610c80565b9150610f9983610c80565b9250828201905080821115610fb157610fb0610f24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611011602583610b82565b915061101c82610fb7565b604082019050919050565b5f6020820190508181035f83015261103e81611005565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61109f602483610b82565b91506110aa82611045565b604082019050919050565b5f6020820190508181035f8301526110cc81611093565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61112d602283610b82565b9150611138826110d3565b604082019050919050565b5f6020820190508181035f83015261115a81611121565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111bb602583610b82565b91506111c682611161565b604082019050919050565b5f6020820190508181035f8301526111e8816111af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611249602383610b82565b9150611254826111ef565b604082019050919050565b5f6020820190508181035f8301526112768161123d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112d7602683610b82565b91506112e28261127d565b604082019050919050565b5f6020820190508181035f830152611304816112cb565b905091905056fea2646970667358221220d30a92f83a4a3cf8baaec1ba4f97c3621655db5830b99d45b08e7aba6443f38664736f6c63430008140033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x18D4 CODESIZE SUB DUP1 PUSH3 0x18D4 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x36 SWAP2 SWAP1 PUSH3 0x1E7 JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x47 SWAP2 SWAP1 PUSH3 0x4A1 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x59 SWAP2 SWAP1 PUSH3 0x4A1 JUMP JUMPDEST POP POP POP PUSH3 0x585 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH3 0xC3 DUP3 PUSH3 0x7B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xE5 JUMPI PUSH3 0xE4 PUSH3 0x8B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH3 0xF9 PUSH3 0x62 JUMP JUMPDEST SWAP1 POP PUSH3 0x107 DUP3 DUP3 PUSH3 0xB8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x129 JUMPI PUSH3 0x128 PUSH3 0x8B JUMP JUMPDEST JUMPDEST PUSH3 0x134 DUP3 PUSH3 0x7B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x160 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x143 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH3 0x181 PUSH3 0x17B DUP5 PUSH3 0x10C JUMP JUMPDEST PUSH3 0xEE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1A0 JUMPI PUSH3 0x19F PUSH3 0x77 JUMP JUMPDEST JUMPDEST PUSH3 0x1AD DUP5 DUP3 DUP6 PUSH3 0x141 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1CC JUMPI PUSH3 0x1CB PUSH3 0x73 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x1DE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x16B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x200 JUMPI PUSH3 0x1FF PUSH3 0x6B JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x220 JUMPI PUSH3 0x21F PUSH3 0x6F JUMP JUMPDEST JUMPDEST PUSH3 0x22E DUP6 DUP3 DUP7 ADD PUSH3 0x1B5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x252 JUMPI PUSH3 0x251 PUSH3 0x6F JUMP JUMPDEST JUMPDEST PUSH3 0x260 DUP6 DUP3 DUP7 ADD PUSH3 0x1B5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2B9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2CF JUMPI PUSH3 0x2CE PUSH3 0x274 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x333 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x2F6 JUMP JUMPDEST PUSH3 0x33F DUP7 DUP4 PUSH3 0x2F6 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x389 PUSH3 0x383 PUSH3 0x37D DUP5 PUSH3 0x357 JUMP JUMPDEST PUSH3 0x360 JUMP JUMPDEST PUSH3 0x357 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3A4 DUP4 PUSH3 0x369 JUMP JUMPDEST PUSH3 0x3BC PUSH3 0x3B3 DUP3 PUSH3 0x390 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x302 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x3D2 PUSH3 0x3C4 JUMP JUMPDEST PUSH3 0x3DF DUP2 DUP5 DUP5 PUSH3 0x399 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x406 JUMPI PUSH3 0x3FA PUSH0 DUP3 PUSH3 0x3C8 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x455 JUMPI PUSH3 0x41F DUP2 PUSH3 0x2D5 JUMP JUMPDEST PUSH3 0x42A DUP5 PUSH3 0x2E7 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x43A JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x452 PUSH3 0x449 DUP6 PUSH3 0x2E7 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x3E4 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x477 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x45A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x491 DUP4 DUP4 PUSH3 0x466 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4AC DUP3 PUSH3 0x26A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4C8 JUMPI PUSH3 0x4C7 PUSH3 0x8B JUMP JUMPDEST JUMPDEST PUSH3 0x4D4 DUP3 SLOAD PUSH3 0x2A1 JUMP JUMPDEST PUSH3 0x4E1 DUP3 DUP3 DUP6 PUSH3 0x40A JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x517 JUMPI PUSH0 DUP5 ISZERO PUSH3 0x502 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x50E DUP6 DUP3 PUSH3 0x484 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x57D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x527 DUP7 PUSH3 0x2D5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x550 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x529 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x570 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x56C PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x466 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1341 DUP1 PUSH3 0x593 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x243 JUMPI PUSH2 0xA7 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC9 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x117 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x147 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB3 PUSH2 0x273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0xC02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDE SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x303 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x101 PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xD4C JUMP JUMPDEST PUSH2 0x329 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14F PUSH2 0x424 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xDB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17A SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x42C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0xDD0 JUMP JUMPDEST PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CD PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0xC02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x5A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20A SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x228 SWAP2 SWAP1 PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x258 SWAP2 SWAP1 PUSH2 0xDFB JUMP JUMPDEST PUSH2 0x6B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26A SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x282 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2AE SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2F9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2F9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x316 PUSH2 0x30F PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x335 DUP5 DUP5 DUP5 PUSH2 0x900 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x37C PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3F2 SWAP1 PUSH2 0xF06 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x418 DUP6 PUSH2 0x407 PUSH2 0x736 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x413 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x4C9 PUSH2 0x438 PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH0 PUSH2 0x445 PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0x4C4 SWAP2 SWAP1 PUSH2 0xF84 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x527 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x553 SWAP1 PUSH2 0xE66 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x59E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x575 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x59E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x581 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 PUSH0 PUSH2 0x5B5 PUSH2 0x736 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x66F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x666 SWAP1 PUSH2 0x1027 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x68C PUSH2 0x67A PUSH2 0x736 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0x687 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH2 0x73D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x6AA PUSH2 0x6A3 PUSH2 0x736 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x900 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x7AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x810 SWAP1 PUSH2 0x1143 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x8F3 SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x96E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x965 SWAP1 PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D3 SWAP1 PUSH2 0x125F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9E7 DUP4 DUP4 DUP4 PUSH2 0xB73 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA61 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0xA76 SWAP2 SWAP1 PUSH2 0xF51 JUMP JUMPDEST PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xB01 SWAP2 SWAP1 PUSH2 0xF84 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB65 SWAP2 SWAP1 PUSH2 0xD33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST POP POP POP 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 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBAF JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB94 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xBD4 DUP3 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0xBDE DUP2 DUP6 PUSH2 0xB82 JUMP JUMPDEST SWAP4 POP PUSH2 0xBEE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xB92 JUMP JUMPDEST PUSH2 0xBF7 DUP2 PUSH2 0xBBA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC1A DUP2 DUP5 PUSH2 0xBCA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC4F DUP3 PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC5F DUP2 PUSH2 0xC45 JUMP JUMPDEST DUP2 EQ PUSH2 0xC69 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC7A DUP2 PUSH2 0xC56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC92 DUP2 PUSH2 0xC80 JUMP JUMPDEST DUP2 EQ PUSH2 0xC9C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCAD DUP2 PUSH2 0xC89 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCC9 JUMPI PUSH2 0xCC8 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCD6 DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCE7 DUP6 DUP3 DUP7 ADD PUSH2 0xC9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD05 DUP2 PUSH2 0xCF1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD1E PUSH0 DUP4 ADD DUP5 PUSH2 0xCFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD2D DUP2 PUSH2 0xC80 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD46 PUSH0 DUP4 ADD DUP5 PUSH2 0xD24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD63 JUMPI PUSH2 0xD62 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD70 DUP7 DUP3 DUP8 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xD81 DUP7 DUP3 DUP8 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xD92 DUP7 DUP3 DUP8 ADD PUSH2 0xC9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB1 DUP2 PUSH2 0xD9C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xDCA PUSH0 DUP4 ADD DUP5 PUSH2 0xDA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDE5 JUMPI PUSH2 0xDE4 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xDF2 DUP5 DUP3 DUP6 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE11 JUMPI PUSH2 0xE10 PUSH2 0xC22 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE1E DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE2F DUP6 DUP3 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE7D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xE90 JUMPI PUSH2 0xE8F PUSH2 0xE39 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xEF0 PUSH1 0x28 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0xEFB DUP3 PUSH2 0xE96 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 0xF1D DUP2 PUSH2 0xEE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xF5B DUP3 PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP PUSH2 0xF66 DUP4 PUSH2 0xC80 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0xF7E JUMPI PUSH2 0xF7D PUSH2 0xF24 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF8E DUP3 PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP PUSH2 0xF99 DUP4 PUSH2 0xC80 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xFB1 JUMPI PUSH2 0xFB0 PUSH2 0xF24 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1011 PUSH1 0x25 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x101C DUP3 PUSH2 0xFB7 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 0x103E DUP2 PUSH2 0x1005 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x109F PUSH1 0x24 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1045 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 0x10CC DUP2 PUSH2 0x1093 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x112D PUSH1 0x22 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x1138 DUP3 PUSH2 0x10D3 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 0x115A DUP2 PUSH2 0x1121 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x11BB PUSH1 0x25 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x11C6 DUP3 PUSH2 0x1161 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 0x11E8 DUP2 PUSH2 0x11AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1249 PUSH1 0x23 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x1254 DUP3 PUSH2 0x11EF 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 0x1276 DUP2 PUSH2 0x123D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x12D7 PUSH1 0x26 DUP4 PUSH2 0xB82 JUMP JUMPDEST SWAP2 POP PUSH2 0x12E2 DUP3 PUSH2 0x127D 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 0x1304 DUP2 PUSH2 0x12CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 EXP SWAP3 0xF8 GASPRICE 0x4A EXTCODECOPY 0xF8 0xBA 0xAE 0xC1 0xBA 0x4F SWAP8 0xC3 PUSH3 0x1655DB PC ADDRESS 0xB9 SWAP14 GASLIMIT 0xB0 DUP15 PUSH27 0xBA6443F38664736F6C634300081400330000000000000000000000 ",
"sourceMap": "1279:9238:0:-:0;;;1842:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1917:5;1909;:13;;;;;;:::i;:::-;;1942:7;1932;:17;;;;;;:::i;:::-;;1842:114;;1279:9238;;7:75:3;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:246::-;1691:1;1701:113;1715:6;1712:1;1709:13;1701:113;;;1800:1;1795:3;1791:11;1785:18;1781:1;1776:3;1772:11;1765:39;1737:2;1734:1;1730:10;1725:15;;1701:113;;;1848:1;1839:6;1834:3;1830:16;1823:27;1672:184;1610:246;;;:::o;1862:434::-;1951:5;1976:66;1992:49;2034:6;1992:49;:::i;:::-;1976:66;:::i;:::-;1967:75;;2065:6;2058:5;2051:21;2103:4;2096:5;2092:16;2141:3;2132:6;2127:3;2123:16;2120:25;2117:112;;;2148:79;;:::i;:::-;2117:112;2238:52;2283:6;2278:3;2273;2238:52;:::i;:::-;1957:339;1862:434;;;;;:::o;2316:355::-;2383:5;2432:3;2425:4;2417:6;2413:17;2409:27;2399:122;;2440:79;;:::i;:::-;2399:122;2550:6;2544:13;2575:90;2661:3;2653:6;2646:4;2638:6;2634:17;2575:90;:::i;:::-;2566:99;;2389:282;2316:355;;;;:::o;2677:853::-;2776:6;2784;2833:2;2821:9;2812:7;2808:23;2804:32;2801:119;;;2839:79;;:::i;:::-;2801:119;2980:1;2969:9;2965:17;2959:24;3010:18;3002:6;2999:30;2996:117;;;3032:79;;:::i;:::-;2996:117;3137:74;3203:7;3194:6;3183:9;3179:22;3137:74;:::i;:::-;3127:84;;2930:291;3281:2;3270:9;3266:18;3260:25;3312:18;3304:6;3301:30;3298:117;;;3334:79;;:::i;:::-;3298:117;3439:74;3505:7;3496:6;3485:9;3481:22;3439:74;:::i;:::-;3429:84;;3231:292;2677:853;;;;;:::o;3536:99::-;3588:6;3622:5;3616:12;3606:22;;3536:99;;;:::o;3641:180::-;3689:77;3686:1;3679:88;3786:4;3783:1;3776:15;3810:4;3807:1;3800:15;3827:320;3871:6;3908:1;3902:4;3898:12;3888:22;;3955:1;3949:4;3945:12;3976:18;3966:81;;4032:4;4024:6;4020:17;4010:27;;3966:81;4094:2;4086:6;4083:14;4063:18;4060:38;4057:84;;4113:18;;:::i;:::-;4057:84;3878:269;3827:320;;;:::o;4153:141::-;4202:4;4225:3;4217:11;;4248:3;4245:1;4238:14;4282:4;4279:1;4269:18;4261:26;;4153:141;;;:::o;4300:93::-;4337:6;4384:2;4379;4372:5;4368:14;4364:23;4354:33;;4300:93;;;:::o;4399:107::-;4443:8;4493:5;4487:4;4483:16;4462:37;;4399:107;;;;:::o;4512:393::-;4581:6;4631:1;4619:10;4615:18;4654:97;4684:66;4673:9;4654:97;:::i;:::-;4772:39;4802:8;4791:9;4772:39;:::i;:::-;4760:51;;4844:4;4840:9;4833:5;4829:21;4820:30;;4893:4;4883:8;4879:19;4872:5;4869:30;4859:40;;4588:317;;4512:393;;;;;:::o;4911:77::-;4948:7;4977:5;4966:16;;4911:77;;;:::o;4994:60::-;5022:3;5043:5;5036:12;;4994:60;;;:::o;5060:142::-;5110:9;5143:53;5161:34;5170:24;5188:5;5170:24;:::i;:::-;5161:34;:::i;:::-;5143:53;:::i;:::-;5130:66;;5060:142;;;:::o;5208:75::-;5251:3;5272:5;5265:12;;5208:75;;;:::o;5289:269::-;5399:39;5430:7;5399:39;:::i;:::-;5460:91;5509:41;5533:16;5509:41;:::i;:::-;5501:6;5494:4;5488:11;5460:91;:::i;:::-;5454:4;5447:105;5365:193;5289:269;;;:::o;5564:73::-;5609:3;5564:73;:::o;5643:189::-;5720:32;;:::i;:::-;5761:65;5819:6;5811;5805:4;5761:65;:::i;:::-;5696:136;5643:189;;:::o;5838:186::-;5898:120;5915:3;5908:5;5905:14;5898:120;;;5969:39;6006:1;5999:5;5969:39;:::i;:::-;5942:1;5935:5;5931:13;5922:22;;5898:120;;;5838:186;;:::o;6030:543::-;6131:2;6126:3;6123:11;6120:446;;;6165:38;6197:5;6165:38;:::i;:::-;6249:29;6267:10;6249:29;:::i;:::-;6239:8;6235:44;6432:2;6420:10;6417:18;6414:49;;;6453:8;6438:23;;6414:49;6476:80;6532:22;6550:3;6532:22;:::i;:::-;6522:8;6518:37;6505:11;6476:80;:::i;:::-;6135:431;;6120:446;6030:543;;;:::o;6579:117::-;6633:8;6683:5;6677:4;6673:16;6652:37;;6579:117;;;;:::o;6702:169::-;6746:6;6779:51;6827:1;6823:6;6815:5;6812:1;6808:13;6779:51;:::i;:::-;6775:56;6860:4;6854;6850:15;6840:25;;6753:118;6702:169;;;;:::o;6876:295::-;6952:4;7098:29;7123:3;7117:4;7098:29;:::i;:::-;7090:37;;7160:3;7157:1;7153:11;7147:4;7144:21;7136:29;;6876:295;;;;:::o;7176:1395::-;7293:37;7326:3;7293:37;:::i;:::-;7395:18;7387:6;7384:30;7381:56;;;7417:18;;:::i;:::-;7381:56;7461:38;7493:4;7487:11;7461:38;:::i;:::-;7546:67;7606:6;7598;7592:4;7546:67;:::i;:::-;7640:1;7664:4;7651:17;;7696:2;7688:6;7685:14;7713:1;7708:618;;;;8370:1;8387:6;8384:77;;;8436:9;8431:3;8427:19;8421:26;8412:35;;8384:77;8487:67;8547:6;8540:5;8487:67;:::i;:::-;8481:4;8474:81;8343:222;7678:887;;7708:618;7760:4;7756:9;7748:6;7744:22;7794:37;7826:4;7794:37;:::i;:::-;7853:1;7867:208;7881:7;7878:1;7875:14;7867:208;;;7960:9;7955:3;7951:19;7945:26;7937:6;7930:42;8011:1;8003:6;7999:14;7989:24;;8058:2;8047:9;8043:18;8030:31;;7904:4;7901:1;7897:12;7892:17;;7867:208;;;8103:6;8094:7;8091:19;8088:179;;;8161:9;8156:3;8152:19;8146:26;8204:48;8246:4;8238:6;8234:17;8223:9;8204:48;:::i;:::-;8196:6;8189:64;8111:156;8088:179;8313:1;8309;8301:6;8297:14;8293:22;8287:4;8280:36;7715:611;;;7678:887;;7268:1303;;;7176:1395;;:::o;1279:9238:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_approve_488": {
"entryPoint": 1853,
"id": 488,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_499": {
"entryPoint": 2931,
"id": 499,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_589": {
"entryPoint": 1846,
"id": 589,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transfer_334": {
"entryPoint": 2304,
"id": 334,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_131": {
"entryPoint": 1716,
"id": 131,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_152": {
"entryPoint": 771,
"id": 152,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_92": {
"entryPoint": 1235,
"id": 92,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_68": {
"entryPoint": 1060,
"id": 68,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_264": {
"entryPoint": 1448,
"id": 264,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_226": {
"entryPoint": 1068,
"id": 226,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_50": {
"entryPoint": 627,
"id": 50,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_59": {
"entryPoint": 1304,
"id": 59,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_78": {
"entryPoint": 800,
"id": 78,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 809,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_113": {
"entryPoint": 1687,
"id": 113,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3180,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3231,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3536,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3579,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3404,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3251,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3324,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3018,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4669,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4385,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4811,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3812,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4527,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4243,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4101,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3364,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3496,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3339,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3074,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4703,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4845,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3846,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4561,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4277,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4135,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3379,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 3511,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2936,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2946,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3972,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 3921,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 3141,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3313,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3110,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3200,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 3484,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 2962,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3686,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3876,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3641,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 3106,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 3002,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 4591,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 4307,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 4733,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330": {
"entryPoint": 3734,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 4449,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 4165,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 4023,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 3158,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 3209,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:13947:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:3"
},
"nodeType": "YulFunctionCall",
"src": "87:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:3"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:3",
"type": ""
}
],
"src": "7:99:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:3"
},
"nodeType": "YulFunctionCall",
"src": "218:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:3"
},
{
"nodeType": "YulAssignment",
"src": "246:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:3"
},
"nodeType": "YulFunctionCall",
"src": "261:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:3",
"type": ""
}
],
"src": "112:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:184:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "359:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "368:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "363:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "428:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "453:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "458:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "449:3:3"
},
"nodeType": "YulFunctionCall",
"src": "449:11:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "472:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "477:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "468:3:3"
},
"nodeType": "YulFunctionCall",
"src": "468:11:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "462:5:3"
},
"nodeType": "YulFunctionCall",
"src": "462:18:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "442:6:3"
},
"nodeType": "YulFunctionCall",
"src": "442:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "442:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "392:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "386:2:3"
},
"nodeType": "YulFunctionCall",
"src": "386:13:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "400:19:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "402:15:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "411:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "407:3:3"
},
"nodeType": "YulFunctionCall",
"src": "407:10:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "402:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "382:3:3",
"statements": []
},
"src": "378:113:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "511:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "516:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "507:3:3"
},
"nodeType": "YulFunctionCall",
"src": "507:16:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "500:6:3"
},
"nodeType": "YulFunctionCall",
"src": "500:27:3"
},
"nodeType": "YulExpressionStatement",
"src": "500:27:3"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "331:3:3",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "336:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "341:6:3",
"type": ""
}
],
"src": "287:246:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "587:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "597:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "615:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "622:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "611:3:3"
},
"nodeType": "YulFunctionCall",
"src": "611:14:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "627:3:3"
},
"nodeType": "YulFunctionCall",
"src": "627:7:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "607:3:3"
},
"nodeType": "YulFunctionCall",
"src": "607:28:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "597:6:3"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "580:6:3",
"type": ""
}
],
"src": "539:102:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "739:285:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "749:53:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "796:5:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "763:32:3"
},
"nodeType": "YulFunctionCall",
"src": "763:39:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "753:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "811:78:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "877:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "882:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "818:58:3"
},
"nodeType": "YulFunctionCall",
"src": "818:71:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "811:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "937:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:3"
},
"nodeType": "YulFunctionCall",
"src": "933:16:3"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "951:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "898:34:3"
},
"nodeType": "YulFunctionCall",
"src": "898:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "898:65:3"
},
{
"nodeType": "YulAssignment",
"src": "972:46:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "983:3:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1010:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "988:21:3"
},
"nodeType": "YulFunctionCall",
"src": "988:29:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:3"
},
"nodeType": "YulFunctionCall",
"src": "979:39:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:3"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "720:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "727:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "735:3:3",
"type": ""
}
],
"src": "647:377:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:195:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1205:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1201:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1201:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1224:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1230:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1220:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1220:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1194:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1194:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "1194:47:3"
},
{
"nodeType": "YulAssignment",
"src": "1250:86:3",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:3"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1331:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1258:63:3"
},
"nodeType": "YulFunctionCall",
"src": "1258:78:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1250:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1120:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1143:4:3",
"type": ""
}
],
"src": "1030:313:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1409:5:3"
},
"nodeType": "YulFunctionCall",
"src": "1409:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1399:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1382:6:3",
"type": ""
}
],
"src": "1349:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1536:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1529:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1529:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1529:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1642:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1652:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1652:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1652:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1721:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1731:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1746:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1742:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1742:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1731:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1713:7:3",
"type": ""
}
],
"src": "1676:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1853:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1863:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1892:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1874:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1874:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1863:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1835:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1845:7:3",
"type": ""
}
],
"src": "1808:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1953:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2010:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2019:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2012:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2012:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2012:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2001:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1983:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1983:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1973:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1973:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1966:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1966:43:3"
},
"nodeType": "YulIf",
"src": "1963:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1946:5:3",
"type": ""
}
],
"src": "1910:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2090:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2100:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2122:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2109:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2109:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2100:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2165:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2138:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2138:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2138:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2068:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2076:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:3",
"type": ""
}
],
"src": "2038:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2238:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2238:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2210:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2220:7:3",
"type": ""
}
],
"src": "2183:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2366:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2375:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2368:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2368:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2368:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2332:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2357:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2339:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2339:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2329:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2329:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2322:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2322:43:3"
},
"nodeType": "YulIf",
"src": "2319:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2302:5:3",
"type": ""
}
],
"src": "2266:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2446:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2456:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2478:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2465:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2465:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2456:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2494:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2494:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2494:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2424:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2432:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2440:5:3",
"type": ""
}
],
"src": "2394:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2668:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2670:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2670:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2670:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2643:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2652:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2639:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2639:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2635:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2635:32:3"
},
"nodeType": "YulIf",
"src": "2632:119:3"
},
{
"nodeType": "YulBlock",
"src": "2761:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2776:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2790:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2780:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2805:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2840:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2851:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2836:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2836:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2815:20:3"
},
"nodeType": "YulFunctionCall",
"src": "2815:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2805:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2888:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2917:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2933:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2943:20:3"
},
"nodeType": "YulFunctionCall",
"src": "2943:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2933:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2584:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2595:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2607:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2615:6:3",
"type": ""
}
],
"src": "2539:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:48:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3071:32:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3096:5:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3089:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3089:13:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3082:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3082:21:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3071:7:3"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3043:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3053:7:3",
"type": ""
}
],
"src": "3019:90:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3174:50:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3191:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3211:5:3"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3196:14:3"
},
"nodeType": "YulFunctionCall",
"src": "3196:21:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3184:34:3"
},
"nodeType": "YulExpressionStatement",
"src": "3184:34:3"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3162:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3169:3:3",
"type": ""
}
],
"src": "3115:109:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3322:118:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3332:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3344:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3340:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3332:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3406:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3419:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3415:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3415:17:3"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3368:37:3"
},
"nodeType": "YulFunctionCall",
"src": "3368:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "3368:65:3"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3294:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3306:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3317:4:3",
"type": ""
}
],
"src": "3230:210:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3511:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3528:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3551:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3533:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3533:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3521:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3521:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "3521:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3499:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3506:3:3",
"type": ""
}
],
"src": "3446:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3668:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3678:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3678:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3758:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3771:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3767:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3767:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3714:43:3"
},
"nodeType": "YulFunctionCall",
"src": "3714:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "3714:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3640:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3652:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3663:4:3",
"type": ""
}
],
"src": "3570:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:519:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3944:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3946:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3946:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3946:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3919:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3928:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3915:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3915:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3940:2:3",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType":
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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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