Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AndyatFocallocal/8213cf11491c371cc96e4ec75cb66af8 to your computer and use it in GitHub Desktop.
Save AndyatFocallocal/8213cf11491c371cc96e4ec75cb66af8 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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.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, IERC20Metadata {
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 two 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 override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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
* overridden;
*
* 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 override 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;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), currentAllowance - amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// 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);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2039:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "78:845:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "127:24:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "136:5:4"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "143:5:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "129:6:4"
},
"nodeType": "YulFunctionCall",
"src": "129:20:4"
},
"nodeType": "YulExpressionStatement",
"src": "129:20:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "106:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "114:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "102:3:4"
},
"nodeType": "YulFunctionCall",
"src": "102:17:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "121:3:4"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "98:3:4"
},
"nodeType": "YulFunctionCall",
"src": "98:27:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "91:6:4"
},
"nodeType": "YulFunctionCall",
"src": "91:35:4"
},
"nodeType": "YulIf",
"src": "88:2:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "160:23:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "176:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "170:5:4"
},
"nodeType": "YulFunctionCall",
"src": "170:13:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "164:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "192:28:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "210:2:4",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "214:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "206:3:4"
},
"nodeType": "YulFunctionCall",
"src": "206:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "218:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "202:3:4"
},
"nodeType": "YulFunctionCall",
"src": "202:18:4"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "196:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "243:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "245:16:4"
},
"nodeType": "YulFunctionCall",
"src": "245:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "245:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "235:2:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "239:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "232:2:4"
},
"nodeType": "YulFunctionCall",
"src": "232:10:4"
},
"nodeType": "YulIf",
"src": "229:2:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "274:17:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "288:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "284:3:4"
},
"nodeType": "YulFunctionCall",
"src": "284:7:4"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "278:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "300:23:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "314:5:4"
},
"nodeType": "YulFunctionCall",
"src": "314:9:4"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "304:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "332:71:4",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "354:6:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "378:2:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "382:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "374:3:4"
},
"nodeType": "YulFunctionCall",
"src": "374:13:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "389:2:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "370:3:4"
},
"nodeType": "YulFunctionCall",
"src": "370:22:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "394:2:4",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "366:3:4"
},
"nodeType": "YulFunctionCall",
"src": "366:31:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "399:2:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "362:3:4"
},
"nodeType": "YulFunctionCall",
"src": "362:40:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "350:3:4"
},
"nodeType": "YulFunctionCall",
"src": "350:53:4"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "336:10:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "462:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "464:16:4"
},
"nodeType": "YulFunctionCall",
"src": "464:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "464:18:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "421:10:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "433:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "418:2:4"
},
"nodeType": "YulFunctionCall",
"src": "418:18:4"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "441:10:4"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "453:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "438:2:4"
},
"nodeType": "YulFunctionCall",
"src": "438:22:4"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "415:2:4"
},
"nodeType": "YulFunctionCall",
"src": "415:46:4"
},
"nodeType": "YulIf",
"src": "412:2:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "500:2:4",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "504:10:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "493:6:4"
},
"nodeType": "YulFunctionCall",
"src": "493:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "493:22:4"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "531:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "539:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "524:6:4"
},
"nodeType": "YulFunctionCall",
"src": "524:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "524:18:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "551:14:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "561:4:4",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "555:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:24:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "620:5:4"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "627:5:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "613:6:4"
},
"nodeType": "YulFunctionCall",
"src": "613:20:4"
},
"nodeType": "YulExpressionStatement",
"src": "613:20:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "588:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "596:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "584:3:4"
},
"nodeType": "YulFunctionCall",
"src": "584:15:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "601:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "580:3:4"
},
"nodeType": "YulFunctionCall",
"src": "580:24:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "606:3:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "577:2:4"
},
"nodeType": "YulFunctionCall",
"src": "577:33:4"
},
"nodeType": "YulIf",
"src": "574:2:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "644:14:4",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "653:5:4"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "648:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "713:87:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "742:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "750:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "738:3:4"
},
"nodeType": "YulFunctionCall",
"src": "738:14:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "754:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "734:3:4"
},
"nodeType": "YulFunctionCall",
"src": "734:23:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "773:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "781:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "769:3:4"
},
"nodeType": "YulFunctionCall",
"src": "769:14:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "785:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "765:3:4"
},
"nodeType": "YulFunctionCall",
"src": "765:23:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "759:5:4"
},
"nodeType": "YulFunctionCall",
"src": "759:30:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "727:6:4"
},
"nodeType": "YulFunctionCall",
"src": "727:63:4"
},
"nodeType": "YulExpressionStatement",
"src": "727:63:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "678:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "681:2:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "675:2:4"
},
"nodeType": "YulFunctionCall",
"src": "675:9:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "685:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "687:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "696:1:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "699:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:4"
},
"nodeType": "YulFunctionCall",
"src": "692:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "687:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "671:3:4",
"statements": []
},
"src": "667:133:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "830:63:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "859:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "867:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "855:3:4"
},
"nodeType": "YulFunctionCall",
"src": "855:15:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "872:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "851:3:4"
},
"nodeType": "YulFunctionCall",
"src": "851:24:4"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "877:5:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "844:6:4"
},
"nodeType": "YulFunctionCall",
"src": "844:39:4"
},
"nodeType": "YulExpressionStatement",
"src": "844:39:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "815:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "818:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "812:2:4"
},
"nodeType": "YulFunctionCall",
"src": "812:9:4"
},
"nodeType": "YulIf",
"src": "809:2:4"
},
{
"nodeType": "YulAssignment",
"src": "902:15:4",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "911:6:4"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "902:5:4"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "52:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "60:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "68:5:4",
"type": ""
}
],
"src": "14:909:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:474:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1092:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1101:6:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1109:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1094:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1094:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "1094:22:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1067:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1076:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1063:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1063:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1088:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1059:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1059:32:4"
},
"nodeType": "YulIf",
"src": "1056:2:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1127:30:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1147:9:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1141:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1141:16:4"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1131:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1166:28:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1184:2:4",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1188:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1180:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1180:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1192:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1176:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1176:18:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1170:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1221:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1230:6:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1238:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1223:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1223:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "1223:22:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1209:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1217:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1206:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1206:14:4"
},
"nodeType": "YulIf",
"src": "1203:2:4"
},
{
"nodeType": "YulAssignment",
"src": "1256:71:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1299:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1310:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1295:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1295:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1319:7:4"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1266:28:4"
},
"nodeType": "YulFunctionCall",
"src": "1266:61:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1256:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1336:41:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1362:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1373:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1358:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1358:18:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1352:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1352:25:4"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1340:8:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1406:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1415:6:4"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1423:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1408:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1408:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "1408:22:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1392:8:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1402:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1389:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1389:16:4"
},
"nodeType": "YulIf",
"src": "1386:2:4"
},
{
"nodeType": "YulAssignment",
"src": "1441:73:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1484:9:4"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1495:8:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1480:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1480:24:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1506:7:4"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1451:28:4"
},
"nodeType": "YulFunctionCall",
"src": "1451:63:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1441:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1004:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1015:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1027:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1035:6:4",
"type": ""
}
],
"src": "928:592:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1580:325:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1590:22:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1604:1:4",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1607:4:4"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1600:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1600:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1590:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1621:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1651:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1657:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1647:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1647:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1625:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1698:31:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1700:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1714:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1722:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1710:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1710:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1700:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1678:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1671:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1671:26:4"
},
"nodeType": "YulIf",
"src": "1668:2:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1788:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1809:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1816:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1821:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1812:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1812:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1802:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1802:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "1802:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1853:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1846:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1846:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1846:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1881:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1884:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1874:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1874:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1874:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1744:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1767:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1775:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1764:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1764:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1741:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1741:38:4"
},
"nodeType": "YulIf",
"src": "1738:2:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1560:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1569:6:4",
"type": ""
}
],
"src": "1525:380:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1942:95:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1966:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1971:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1962:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1962:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1952:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1952:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "1952:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1999:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2002:4:4",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1992:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1992:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1992:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2023:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2026:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2016:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2016:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2016:15:4"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1910:127:4"
}
]
},
"contents": "{\n { }\n function abi_decode_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(array, array) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let _3 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(array, array) }\n let i := array\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n if gt(i, _1)\n {\n mstore(add(add(memPtr, _1), _4), array)\n }\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(value0, value0) }\n value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(value1, value1) }\n value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162000b7538038062000b758339810160408190526200003491620001c1565b81516200004990600390602085019062000068565b5080516200005f90600490602084019062000068565b5050506200027b565b828054620000769062000228565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b600082601f8301126200011f578081fd5b81516001600160401b03808211156200013c576200013c62000265565b604051601f8301601f19908116603f0116810190828211818310171562000167576200016762000265565b8160405283815260209250868385880101111562000183578485fd5b8491505b83821015620001a6578582018301518183018401529082019062000187565b83821115620001b757848385830101525b9695505050505050565b60008060408385031215620001d4578182fd5b82516001600160401b0380821115620001eb578384fd5b620001f9868387016200010e565b935060208501519150808211156200020f578283fd5b506200021e858286016200010e565b9150509250929050565b600181811c908216806200023d57607f821691505b602082108114156200025f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6108ea806200028b6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101c6565b6040516100c391906107e1565b60405180910390f35b6100df6100da3660046107b8565b610258565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f36600461077d565b61026e565b604051601281526020016100c3565b6100df6101313660046107b8565b610324565b6100f361014436600461072a565b6001600160a01b031660009081526020819052604090205490565b6100b661035b565b6100df6101753660046107b8565b61036a565b6100df6101883660046107b8565b610405565b6100f361019b36600461074b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101d590610863565b80601f016020809104026020016040519081016040528092919081815260200182805461020190610863565b801561024e5780601f106102235761010080835404028352916020019161024e565b820191906000526020600020905b81548152906001019060200180831161023157829003601f168201915b5050505050905090565b6000610265338484610412565b50600192915050565b600061027b848484610536565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103055760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103198533610314868561084c565b610412565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610265918590610314908690610834565b6060600480546101d590610863565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102fc565b6103fb3385610314868561084c565b5060019392505050565b6000610265338484610536565b6001600160a01b0383166104745760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102fc565b6001600160a01b0382166104d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661059a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102fc565b6001600160a01b0382166105fc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102fc565b6001600160a01b038316600090815260208190526040902054818110156106745760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102fc565b61067e828261084c565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106b4908490610834565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070091815260200190565b60405180910390a350505050565b80356001600160a01b038116811461072557600080fd5b919050565b60006020828403121561073b578081fd5b6107448261070e565b9392505050565b6000806040838503121561075d578081fd5b6107668361070e565b91506107746020840161070e565b90509250929050565b600080600060608486031215610791578081fd5b61079a8461070e565b92506107a86020850161070e565b9150604084013590509250925092565b600080604083850312156107ca578182fd5b6107d38361070e565b946020939093013593505050565b6000602080835283518082850152825b8181101561080d578581018301518582016040015282016107f1565b8181111561081e5783604083870101525b50601f01601f1916929092016040019392505050565b600082198211156108475761084761089e565b500190565b60008282101561085e5761085e61089e565b500390565b600181811c9082168061087757607f821691505b6020821081141561089857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a39b4c8f4d370a861e687c7be60517968c9a119ea4a77cc44c1d2bdb0409536264736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xB75 CODESIZE SUB DUP1 PUSH3 0xB75 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1C1 JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x27B JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x228 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x11F JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x13C JUMPI PUSH3 0x13C PUSH3 0x265 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x167 JUMPI PUSH3 0x167 PUSH3 0x265 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x183 JUMPI DUP5 DUP6 REVERT JUMPDEST DUP5 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1A6 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x187 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1B7 JUMPI DUP5 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1D4 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1EB JUMPI DUP4 DUP5 REVERT JUMPDEST PUSH3 0x1F9 DUP7 DUP4 DUP8 ADD PUSH3 0x10E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x20F JUMPI DUP3 DUP4 REVERT JUMPDEST POP PUSH3 0x21E DUP6 DUP3 DUP7 ADD PUSH3 0x10E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x23D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x25F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x8EA DUP1 PUSH3 0x28B PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x7E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x258 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x26E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x324 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x72A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x35B JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x36A JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x405 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x74B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1D5 SWAP1 PUSH2 0x863 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 0x201 SWAP1 PUSH2 0x863 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x24E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x223 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x24E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x231 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x265 CALLER DUP5 DUP5 PUSH2 0x412 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27B DUP5 DUP5 DUP5 PUSH2 0x536 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x305 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x6C6C6F77616E6365 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x319 DUP6 CALLER PUSH2 0x314 DUP7 DUP6 PUSH2 0x84C JUMP JUMPDEST PUSH2 0x412 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x265 SWAP2 DUP6 SWAP1 PUSH2 0x314 SWAP1 DUP7 SWAP1 PUSH2 0x834 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1D5 SWAP1 PUSH2 0x863 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3EC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH2 0x3FB CALLER DUP6 PUSH2 0x314 DUP7 DUP6 PUSH2 0x84C JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x265 CALLER DUP5 DUP5 PUSH2 0x536 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x474 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x674 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH2 0x67E DUP3 DUP3 PUSH2 0x84C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE SWAP1 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x6B4 SWAP1 DUP5 SWAP1 PUSH2 0x834 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x700 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x725 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x73B JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x744 DUP3 PUSH2 0x70E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x75D JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x766 DUP4 PUSH2 0x70E JUMP JUMPDEST SWAP2 POP PUSH2 0x774 PUSH1 0x20 DUP5 ADD PUSH2 0x70E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x791 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x79A DUP5 PUSH2 0x70E JUMP JUMPDEST SWAP3 POP PUSH2 0x7A8 PUSH1 0x20 DUP6 ADD PUSH2 0x70E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7CA JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x7D3 DUP4 PUSH2 0x70E JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x80D JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x7F1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x81E JUMPI DUP4 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x847 JUMPI PUSH2 0x847 PUSH2 0x89E JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x85E JUMPI PUSH2 0x85E PUSH2 0x89E JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x877 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x898 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG3 SWAP12 0x4C DUP16 0x4D CALLDATACOPY EXP DUP7 0x1E PUSH9 0x7C7BE60517968C9A11 SWAP15 LOG4 0xA7 PUSH29 0xC44C1D2BDB0409536264736F6C63430008040033000000000000000000 ",
"sourceMap": "1321:9279:0:-:0;;;1898:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1965:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1988:17:0;;;;:7;;:17;;;;;:::i;:::-;;1898:114;;1321:9279;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1321:9279:0;;;-1:-1:-1;1321:9279:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:909:4;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;143:5;136;129:20;88:2;170:13;;-1:-1:-1;;;;;232:10:4;;;229:2;;;245:18;;:::i;:::-;320:2;314:9;288:2;374:13;;-1:-1:-1;;370:22:4;;;394:2;366:31;362:40;350:53;;;418:18;;;438:22;;;415:46;412:2;;;464:18;;:::i;:::-;504:10;500:2;493:22;539:2;531:6;524:18;561:4;551:14;;606:3;601:2;596;588:6;584:15;580:24;577:33;574:2;;;627:5;620;613:20;574:2;653:5;644:14;;667:133;681:2;678:1;675:9;667:133;;;769:14;;;765:23;;759:30;738:14;;;734:23;;727:63;692:10;;;;667:133;;;818:2;815:1;812:9;809:2;;;877:5;872:2;867;859:6;855:15;851:24;844:39;809:2;911:6;78:845;-1:-1:-1;;;;;;78:845:4:o;928:592::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:2;;;1109:6;1101;1094:22;1056:2;1141:16;;-1:-1:-1;;;;;1206:14:4;;;1203:2;;;1238:6;1230;1223:22;1203:2;1266:61;1319:7;1310:6;1299:9;1295:22;1266:61;:::i;:::-;1256:71;;1373:2;1362:9;1358:18;1352:25;1336:41;;1402:2;1392:8;1389:16;1386:2;;;1423:6;1415;1408:22;1386:2;;1451:63;1506:7;1495:8;1484:9;1480:24;1451:63;:::i;:::-;1441:73;;;1046:474;;;;;:::o;1525:380::-;1604:1;1600:12;;;;1647;;;1668:2;;1722:4;1714:6;1710:17;1700:27;;1668:2;1775;1767:6;1764:14;1744:18;1741:38;1738:2;;;1821:10;1816:3;1812:20;1809:1;1802:31;1856:4;1853:1;1846:15;1884:4;1881:1;1874:15;1738:2;;1580:325;;;:::o;1910:127::-;1971:10;1966:3;1962:20;1959:1;1952:31;2002:4;1999:1;1992:15;2026:4;2023:1;2016:15;1942:95;1321:9279:0;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6068:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "63:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "73:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "82:12:4"
},
"nodeType": "YulFunctionCall",
"src": "82:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "165:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "174:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "177:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "167:6:4"
},
"nodeType": "YulFunctionCall",
"src": "167:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "167:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "124:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "135:5:4"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "150:3:4",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "155:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "146:3:4"
},
"nodeType": "YulFunctionCall",
"src": "146:11:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "159:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "142:3:4"
},
"nodeType": "YulFunctionCall",
"src": "142:19:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "131:3:4"
},
"nodeType": "YulFunctionCall",
"src": "131:31:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "121:2:4"
},
"nodeType": "YulFunctionCall",
"src": "121:42:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "114:6:4"
},
"nodeType": "YulFunctionCall",
"src": "114:50:4"
},
"nodeType": "YulIf",
"src": "111:2:4"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "42:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:4",
"type": ""
}
],
"src": "14:173:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "262:126:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "308:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "317:6:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "325:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:4"
},
"nodeType": "YulFunctionCall",
"src": "310:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "310:22:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "283:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "292:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "279:3:4"
},
"nodeType": "YulFunctionCall",
"src": "279:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "304:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "275:3:4"
},
"nodeType": "YulFunctionCall",
"src": "275:32:4"
},
"nodeType": "YulIf",
"src": "272:2:4"
},
{
"nodeType": "YulAssignment",
"src": "343:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "372:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "353:18:4"
},
"nodeType": "YulFunctionCall",
"src": "353:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "343:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "228:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "239:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "251:6:4",
"type": ""
}
],
"src": "192:196:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "480:183:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "526:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "535:6:4"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "543:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "528:6:4"
},
"nodeType": "YulFunctionCall",
"src": "528:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "528:22:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "501:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "510:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "497:3:4"
},
"nodeType": "YulFunctionCall",
"src": "497:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "522:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "493:3:4"
},
"nodeType": "YulFunctionCall",
"src": "493:32:4"
},
"nodeType": "YulIf",
"src": "490:2:4"
},
{
"nodeType": "YulAssignment",
"src": "561:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "590:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "571:18:4"
},
"nodeType": "YulFunctionCall",
"src": "571:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "561:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "609:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "642:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "653:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "638:3:4"
},
"nodeType": "YulFunctionCall",
"src": "638:18:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "619:18:4"
},
"nodeType": "YulFunctionCall",
"src": "619:38:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "609:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "438:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "449:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "461:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "469:6:4",
"type": ""
}
],
"src": "393:270:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "772:234:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "818:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "827:6:4"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "835:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "820:6:4"
},
"nodeType": "YulFunctionCall",
"src": "820:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "820:22:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "793:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "802:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "789:3:4"
},
"nodeType": "YulFunctionCall",
"src": "789:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "814:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "785:3:4"
},
"nodeType": "YulFunctionCall",
"src": "785:32:4"
},
"nodeType": "YulIf",
"src": "782:2:4"
},
{
"nodeType": "YulAssignment",
"src": "853:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "882:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "863:18:4"
},
"nodeType": "YulFunctionCall",
"src": "863:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "853:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "901:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "934:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "945:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "930:3:4"
},
"nodeType": "YulFunctionCall",
"src": "930:18:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "911:18:4"
},
"nodeType": "YulFunctionCall",
"src": "911:38:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "901:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "958:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "985:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "996:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "981:3:4"
},
"nodeType": "YulFunctionCall",
"src": "981:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:4"
},
"nodeType": "YulFunctionCall",
"src": "968:32:4"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "958:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "722:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "733:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "745:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "753:6:4",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "761:6:4",
"type": ""
}
],
"src": "668:338:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1098:177:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1144:26:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1153:6:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1161:6:4"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1146:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1146:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "1146:22:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1119:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1128:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1115:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1115:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1111:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1111:32:4"
},
"nodeType": "YulIf",
"src": "1108:2:4"
},
{
"nodeType": "YulAssignment",
"src": "1179:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1208:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1189:18:4"
},
"nodeType": "YulFunctionCall",
"src": "1189:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1179:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1227:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1254:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1265:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1250:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1250:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1237:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1237:32:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1227:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1056:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1067:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1079:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1087:6:4",
"type": ""
}
],
"src": "1011:264:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1375:92:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1385:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1397:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1408:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1393:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1393:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1385:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1427:9:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1452:6:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1445:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1445:14:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1438:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1438:22:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1420:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1420:41:4"
},
"nodeType": "YulExpressionStatement",
"src": "1420:41:4"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1344:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1355:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1366:4:4",
"type": ""
}
],
"src": "1280:187:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1593:482:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1603:12:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1613:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1607:2:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1631:9:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1642:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1624:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1624:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "1624:21:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1654:27:4",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1674:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1668:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1668:13:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1658:6:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1701:9:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1712:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1697:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1697:18:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1717:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1690:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1690:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "1690:34:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1733:13:4",
"value": {
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1742:4:4"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1737:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1805:90:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1834:9:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1845:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1830:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1830:17:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1849:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1826:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1826:26:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1868:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1876:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1864:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1864:14:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1880:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1860:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1860:23:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1854:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1854:30:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1819:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1819:66:4"
},
"nodeType": "YulExpressionStatement",
"src": "1819:66:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1766:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1769:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1763:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1763:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1777:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1779:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1788:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1791:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1784:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1784:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1779:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1759:3:4",
"statements": []
},
"src": "1755:140:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1929:69:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1958:9:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1969:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1954:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1954:22:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1978:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1950:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1950:31:4"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1983:4:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1943:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1943:45:4"
},
"nodeType": "YulExpressionStatement",
"src": "1943:45:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1910:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1913:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1907:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1907:13:4"
},
"nodeType": "YulIf",
"src": "1904:2:4"
},
{
"nodeType": "YulAssignment",
"src": "2007:62:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2023:9:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2042:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2050:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2038:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2038:15:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2059:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2055:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2055:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2034:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2034:29:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2019:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2019:45:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2066:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2015:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2015:54:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2007:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1562:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1573:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1584:4:4",
"type": ""
}
],
"src": "1472:603:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2254:225:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2271:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2282:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2264:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2264:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "2264:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2305:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2316:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2301:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2301:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2321:2:4",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2294:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2294:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "2294:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2344:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2355:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2340:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2340:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2360:34:4",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2333:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2333:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "2333:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2415:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2426:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2411:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2411:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2431:5:4",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2404:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2404:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "2404:33:4"
},
{
"nodeType": "YulAssignment",
"src": "2446:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2458:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2469:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2454:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2454:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2446:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2231:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2245:4:4",
"type": ""
}
],
"src": "2080:399:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2658:224:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2675:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2686:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2668:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2668:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "2668:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2709:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2720:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2705:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2705:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2725:2:4",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2698:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2698:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "2698:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2748:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2759:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2744:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2744:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2764:34:4",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2737:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2737:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "2737:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2819:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2830:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2815:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2815:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2835:4:4",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2808:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2808:32:4"
},
"nodeType": "YulExpressionStatement",
"src": "2808:32:4"
},
{
"nodeType": "YulAssignment",
"src": "2849:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2861:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2872:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2857:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2857:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2849:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2635:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2649:4:4",
"type": ""
}
],
"src": "2484:398:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:228:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3078:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3071:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3071:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3071:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3112:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3123:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3108:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3108:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3128:2:4",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3101:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3101:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3101:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3151:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3162:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3147:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3147:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3167:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3140:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3140:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3140:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3222:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3233:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3218:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3218:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3238:8:4",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3211:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3211:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "3211:36:4"
},
{
"nodeType": "YulAssignment",
"src": "3256:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3268:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3279:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3264:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3264:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3256:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3038:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3052:4:4",
"type": ""
}
],
"src": "2887:402:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3468:230:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3485:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3496:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3478:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3478:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3478:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3519:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3530:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3515:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3515:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3535:2:4",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3508:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3508:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3508:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3558:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3569:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3554:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3554:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3574:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3547:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3547:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3547:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3629:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3640:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3625:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3625:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3645:10:4",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3618:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3618:38:4"
},
"nodeType": "YulExpressionStatement",
"src": "3618:38:4"
},
{
"nodeType": "YulAssignment",
"src": "3665:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3677:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3688:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3673:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3673:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3665:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3445:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3459:4:4",
"type": ""
}
],
"src": "3294:404:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3877:227:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3894:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3905:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3887:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3887:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3887:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3928:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3939:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3924:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3924:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3944:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3917:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3917:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3917:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3967:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3978:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3963:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3963:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3983:34:4",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3956:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3956:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3956:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4038:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4049:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4034:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4034:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4054:7:4",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4027:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4027:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "4027:35:4"
},
{
"nodeType": "YulAssignment",
"src": "4071:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4083:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4094:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4079:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4079:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4071:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3854:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3868:4:4",
"type": ""
}
],
"src": "3703:401:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4283:226:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4300:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4311:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4293:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4293:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4293:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4334:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4345:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4330:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4330:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4350:2:4",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4323:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4323:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4323:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4373:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4384:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4369:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4369:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4389:34:4",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4362:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4362:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4362:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4444:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4455:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4440:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4440:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4460:6:4",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4433:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4433:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "4433:34:4"
},
{
"nodeType": "YulAssignment",
"src": "4476:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4488:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4499:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4484:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4484:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4476:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4260:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4274:4:4",
"type": ""
}
],
"src": "4109:400:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4688:227:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4705:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4716:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4698:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4698:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4698:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4739:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4750:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4735:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4735:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4755:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4728:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4728:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4728:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4778:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4789:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4774:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4774:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4794:34:4",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4767:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4767:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4767:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4849:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4860:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4845:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4845:18:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4865:7:4",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4838:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4838:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "4838:35:4"
},
{
"nodeType": "YulAssignment",
"src": "4882:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4894:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4905:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4890:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4890:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4882:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4665:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4679:4:4",
"type": ""
}
],
"src": "4514:401:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5021:76:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5031:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5043:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5054:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5039:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5039:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5031:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5073:9:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5084:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5066:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5066:25:4"
},
"nodeType": "YulExpressionStatement",
"src": "5066:25:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4990:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5001:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5012:4:4",
"type": ""
}
],
"src": "4920:177:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5199:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5209:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5221:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5232:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5217:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5217:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5209:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5251:9:4"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5266:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5274:4:4",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5262:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5262:17:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5244:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5244:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "5244:36:4"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5168:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5179:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5190:4:4",
"type": ""
}
],
"src": "5102:184:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5339:80:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5366:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5368:16:4"
},
"nodeType": "YulFunctionCall",
"src": "5368:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "5368:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5355:1:4"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5362:1:4"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5358:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5358:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5352:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5352:13:4"
},
"nodeType": "YulIf",
"src": "5349:2:4"
},
{
"nodeType": "YulAssignment",
"src": "5397:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5408:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5411:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5404:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5404:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5397:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5322:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5325:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5331:3:4",
"type": ""
}
],
"src": "5291:128:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5473:76:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5495:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5497:16:4"
},
"nodeType": "YulFunctionCall",
"src": "5497:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "5497:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5489:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5492:1:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5486:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5486:8:4"
},
"nodeType": "YulIf",
"src": "5483:2:4"
},
{
"nodeType": "YulAssignment",
"src": "5526:17:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5538:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5541:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5534:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5534:9:4"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5526:4:4"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5455:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5458:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5464:4:4",
"type": ""
}
],
"src": "5424:125:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5609:325:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5619:22:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5633:1:4",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5636:4:4"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5629:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5629:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5619:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5650:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5680:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5686:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5676:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5676:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5654:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5727:31:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5729:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5743:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5751:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5739:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5739:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5729:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5707:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5700:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5700:26:4"
},
"nodeType": "YulIf",
"src": "5697:2:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5817:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5838:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5845:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5850:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5841:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5841:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5831:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5831:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "5831:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5882:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5885:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5875:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5875:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "5875:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5910:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5913:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5903:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5903:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "5903:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5773:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5796:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5804:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5793:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5793:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5770:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5770:38:4"
},
"nodeType": "YulIf",
"src": "5767:2:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5589:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5598:6:4",
"type": ""
}
],
"src": "5554:380:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5971:95:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5988:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5995:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6000:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5991:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5991:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5981:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5981:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "5981:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6028:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6031:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6021:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6021:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6021:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6052:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6055:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6045:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6045:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6045:15:4"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5939:127:4"
}
]
},
"contents": "{\n { }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value1, value1) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value2, value2) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := tail\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(headStart, length), 64), tail)\n }\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n mstore(add(headStart, 96), \"ess\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n mstore(add(headStart, 96), \"ss\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n mstore(add(headStart, 96), \"alance\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 40)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n mstore(add(headStart, 96), \"llowance\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n mstore(add(headStart, 96), \"dress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n mstore(add(headStart, 96), \" zero\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xff))\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101c6565b6040516100c391906107e1565b60405180910390f35b6100df6100da3660046107b8565b610258565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f36600461077d565b61026e565b604051601281526020016100c3565b6100df6101313660046107b8565b610324565b6100f361014436600461072a565b6001600160a01b031660009081526020819052604090205490565b6100b661035b565b6100df6101753660046107b8565b61036a565b6100df6101883660046107b8565b610405565b6100f361019b36600461074b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101d590610863565b80601f016020809104026020016040519081016040528092919081815260200182805461020190610863565b801561024e5780601f106102235761010080835404028352916020019161024e565b820191906000526020600020905b81548152906001019060200180831161023157829003601f168201915b5050505050905090565b6000610265338484610412565b50600192915050565b600061027b848484610536565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103055760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103198533610314868561084c565b610412565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610265918590610314908690610834565b6060600480546101d590610863565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102fc565b6103fb3385610314868561084c565b5060019392505050565b6000610265338484610536565b6001600160a01b0383166104745760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102fc565b6001600160a01b0382166104d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661059a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102fc565b6001600160a01b0382166105fc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102fc565b6001600160a01b038316600090815260208190526040902054818110156106745760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102fc565b61067e828261084c565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106b4908490610834565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070091815260200190565b60405180910390a350505050565b80356001600160a01b038116811461072557600080fd5b919050565b60006020828403121561073b578081fd5b6107448261070e565b9392505050565b6000806040838503121561075d578081fd5b6107668361070e565b91506107746020840161070e565b90509250929050565b600080600060608486031215610791578081fd5b61079a8461070e565b92506107a86020850161070e565b9150604084013590509250925092565b600080604083850312156107ca578182fd5b6107d38361070e565b946020939093013593505050565b6000602080835283518082850152825b8181101561080d578581018301518582016040015282016107f1565b8181111561081e5783604083870101525b50601f01601f1916929092016040019392505050565b600082198211156108475761084761089e565b500190565b60008282101561085e5761085e61089e565b500390565b600181811c9082168061087757607f821691505b6020821081141561089857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a39b4c8f4d370a861e687c7be60517968c9a119ea4a77cc44c1d2bdb0409536264736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x7E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x258 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x26E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x324 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x72A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x35B JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x36A JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x405 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x74B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1D5 SWAP1 PUSH2 0x863 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 0x201 SWAP1 PUSH2 0x863 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x24E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x223 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x24E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x231 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x265 CALLER DUP5 DUP5 PUSH2 0x412 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27B DUP5 DUP5 DUP5 PUSH2 0x536 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x305 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x6C6C6F77616E6365 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x319 DUP6 CALLER PUSH2 0x314 DUP7 DUP6 PUSH2 0x84C JUMP JUMPDEST PUSH2 0x412 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x265 SWAP2 DUP6 SWAP1 PUSH2 0x314 SWAP1 DUP7 SWAP1 PUSH2 0x834 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1D5 SWAP1 PUSH2 0x863 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3EC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH2 0x3FB CALLER DUP6 PUSH2 0x314 DUP7 DUP6 PUSH2 0x84C JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x265 CALLER DUP5 DUP5 PUSH2 0x536 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x474 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x674 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FC JUMP JUMPDEST PUSH2 0x67E DUP3 DUP3 PUSH2 0x84C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE SWAP1 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x6B4 SWAP1 DUP5 SWAP1 PUSH2 0x834 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x700 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x725 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x73B JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x744 DUP3 PUSH2 0x70E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x75D JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x766 DUP4 PUSH2 0x70E JUMP JUMPDEST SWAP2 POP PUSH2 0x774 PUSH1 0x20 DUP5 ADD PUSH2 0x70E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x791 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x79A DUP5 PUSH2 0x70E JUMP JUMPDEST SWAP3 POP PUSH2 0x7A8 PUSH1 0x20 DUP6 ADD PUSH2 0x70E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7CA JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x7D3 DUP4 PUSH2 0x70E JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x80D JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x7F1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x81E JUMPI DUP4 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x847 JUMPI PUSH2 0x847 PUSH2 0x89E JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x85E JUMPI PUSH2 0x85E PUSH2 0x89E JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x877 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x898 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG3 SWAP12 0x4C DUP16 0x4D CALLDATACOPY EXP DUP7 0x1E PUSH9 0x7C7BE60517968C9A11 SWAP15 LOG4 0xA7 PUSH29 0xC44C1D2BDB0409536264736F6C63430008040033000000000000000000 ",
"sourceMap": "1321:9279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4174:166;;;;;;:::i;:::-;;:::i;:::-;;;1445:14:4;;1438:22;1420:41;;1408:2;1393:18;4174:166:0;1375:92:4;3165:106:0;3252:12;;3165:106;;;5066:25:4;;;5054:2;5039:18;3165:106:0;5021:76:4;4807:414:0;;;;;;:::i;:::-;;:::i;3014:91::-;;;3096:2;5244:36:4;;5232:2;5217:18;3014:91:0;5199:87:4;5616:212:0;;;;;;:::i;:::-;;:::i;3329:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3429:18:0;3403:7;3429:18;;;;;;;;;;;;3329:125;2288:102;;;:::i;6315:371::-;;;;;;:::i;:::-;;:::i;3657:172::-;;;;;;:::i;:::-;;:::i;3887:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4002:18:0;;;3976:7;4002:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3887:149;2077:98;2131:13;2163:5;2156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98;:::o;4174:166::-;4257:4;4273:39;665:10:3;4296:7:0;4305:6;4273:8;:39::i;:::-;-1:-1:-1;4329:4:0;4174:166;;;;:::o;4807:414::-;4913:4;4929:36;4939:6;4947:9;4958:6;4929:9;:36::i;:::-;-1:-1:-1;;;;;5003:19:0;;4976:24;5003:19;;;:11;:19;;;;;;;;665:10:3;5003:33:0;;;;;;;;5054:26;;;;5046:79;;;;-1:-1:-1;;;5046:79:0;;3496:2:4;5046:79:0;;;3478:21:4;3535:2;3515:18;;;3508:30;3574:34;3554:18;;;3547:62;-1:-1:-1;;;3625:18:4;;;3618:38;3673:19;;5046:79:0;;;;;;;;;5135:57;5144:6;665:10:3;5166:25:0;5185:6;5166:16;:25;:::i;:::-;5135:8;:57::i;:::-;-1:-1:-1;5210:4:0;;4807:414;-1:-1:-1;;;;4807:414:0:o;5616:212::-;665:10:3;5704:4:0;5752:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5752:34:0;;;;;;;;;;5704:4;;5720:80;;5743:7;;5752:47;;5789:10;;5752:47;:::i;2288:102::-;2344:13;2376:7;2369:14;;;;;:::i;6315:371::-;665:10:3;6408:4:0;6451:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6451:34:0;;;;;;;;;;6503:35;;;;6495:85;;;;-1:-1:-1;;;6495:85:0;;4716:2:4;6495:85:0;;;4698:21:4;4755:2;4735:18;;;4728:30;4794:34;4774:18;;;4767:62;-1:-1:-1;;;4845:18:4;;;4838:35;4890:19;;6495:85:0;4688:227:4;6495:85:0;6590:67;665:10:3;6613:7:0;6622:34;6641:15;6622:16;:34;:::i;6590:67::-;-1:-1:-1;6675:4:0;;6315:371;-1:-1:-1;;;6315:371:0:o;3657:172::-;3743:4;3759:42;665:10:3;3783:9:0;3794:6;3759:9;:42::i;9579:340::-;-1:-1:-1;;;;;9680:19:0;;9672:68;;;;-1:-1:-1;;;9672:68:0;;4311:2:4;9672:68:0;;;4293:21:4;4350:2;4330:18;;;4323:30;4389:34;4369:18;;;4362:62;-1:-1:-1;;;4440:18:4;;;4433:34;4484:19;;9672:68:0;4283:226:4;9672:68:0;-1:-1:-1;;;;;9758:21:0;;9750:68;;;;-1:-1:-1;;;9750:68:0;;2686:2:4;9750:68:0;;;2668:21:4;2725:2;2705:18;;;2698:30;2764:34;2744:18;;;2737:62;-1:-1:-1;;;2815:18:4;;;2808:32;2857:19;;9750:68:0;2658:224:4;9750:68:0;-1:-1:-1;;;;;9829:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9880:32;;5066:25:4;;;9880:32:0;;5039:18:4;9880:32:0;;;;;;;9579:340;;;:::o;7160:592::-;-1:-1:-1;;;;;7265:20:0;;7257:70;;;;-1:-1:-1;;;7257:70:0;;3905:2:4;7257:70:0;;;3887:21:4;3944:2;3924:18;;;3917:30;3983:34;3963:18;;;3956:62;-1:-1:-1;;;4034:18:4;;;4027:35;4079:19;;7257:70:0;3877:227:4;7257:70:0;-1:-1:-1;;;;;7345:23:0;;7337:71;;;;-1:-1:-1;;;7337:71:0;;2282:2:4;7337:71:0;;;2264:21:4;2321:2;2301:18;;;2294:30;2360:34;2340:18;;;2333:62;-1:-1:-1;;;2411:18:4;;;2404:33;2454:19;;7337:71:0;2254:225:4;7337:71:0;-1:-1:-1;;;;;7501:17:0;;7477:21;7501:17;;;;;;;;;;;7536:23;;;;7528:74;;;;-1:-1:-1;;;7528:74:0;;3089:2:4;7528:74:0;;;3071:21:4;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:4;;;3211:36;3264:19;;7528:74:0;3061:228:4;7528:74:0;7632:22;7648:6;7632:13;:22;:::i;:::-;-1:-1:-1;;;;;7612:17:0;;;:9;:17;;;;;;;;;;;:42;;;;7664:20;;;;;;;;:30;;7688:6;;7612:9;7664:30;;7688:6;;7664:30;:::i;:::-;;;;;;;;7727:9;-1:-1:-1;;;;;7710:35:0;7719:6;-1:-1:-1;;;;;7710:35:0;;7738:6;7710:35;;;;5066:25:4;;5054:2;5039:18;;5021:76;7710:35:0;;;;;;;;7160:592;;;;:::o;14:173:4:-;82:20;;-1:-1:-1;;;;;131:31:4;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:4:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:4:o;1472:603::-;1584:4;1613:2;1642;1631:9;1624:21;1674:6;1668:13;1717:6;1712:2;1701:9;1697:18;1690:34;1742:4;1755:140;1769:6;1766:1;1763:13;1755:140;;;1864:14;;;1860:23;;1854:30;1830:17;;;1849:2;1826:26;1819:66;1784:10;;1755:140;;;1913:6;1910:1;1907:13;1904:2;;;1983:4;1978:2;1969:6;1958:9;1954:22;1950:31;1943:45;1904:2;-1:-1:-1;2059:2:4;2038:15;-1:-1:-1;;2034:29:4;2019:45;;;;2066:2;2015:54;;1593:482;-1:-1:-1;;;1593:482:4:o;5291:128::-;5331:3;5362:1;5358:6;5355:1;5352:13;5349:2;;;5368:18;;:::i;:::-;-1:-1:-1;5404:9:4;;5339:80::o;5424:125::-;5464:4;5492:1;5489;5486:8;5483:2;;;5497:18;;:::i;:::-;-1:-1:-1;5534:9:4;;5473:76::o;5554:380::-;5633:1;5629:12;;;;5676;;;5697:2;;5751:4;5743:6;5739:17;5729:27;;5697:2;5804;5796:6;5793:14;5773:18;5770:38;5767:2;;;5850:10;5845:3;5841:20;5838:1;5831:31;5885:4;5882:1;5875:15;5913:4;5910:1;5903:15;5767:2;;5609:325;;;:::o;5939:127::-;6000:10;5995:3;5991:20;5988:1;5981:31;6031:4;6028:1;6021:15;6055:4;6052:1;6045:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "456400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "22519",
"balanceOf(address)": "1262",
"decimals()": "266",
"decreaseAllowance(address,uint256)": "23612",
"increaseAllowance(address,uint256)": "23534",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1026",
"transfer(address,uint256)": "44517",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite",
"_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.4+commit.c7e474f2"
},
"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}.",
"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 two 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 overridden; 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/npm/@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol": "ERC20"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol": {
"keccak256": "0xfeccdcbf67b2006a715e5af1a4c7556004d95b2806552b5cc54e46e8eb7e887b",
"license": "MIT",
"urls": [
"bzz-raw://45b1f9043c0fb450272f20ed19ef633fcba1b129d602651a856dfae1a2243a2c",
"dweb:/ipfs/QmUTSQiDikkcNtTtyDpkEwCM5ztVUUh9c1inBukn6HC5Vr"
]
},
".deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
".deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2",
"license": "MIT",
"urls": [
"bzz-raw://d4c3df1a7ca104b633a7d81c6c6f5192367d150cd5a32cba81f7f27012729013",
"dweb:/ipfs/QmSim72e3ZVsfgZt8UceCvbiSuMRHR6WDsiamqNzZahGSY"
]
},
".deps/npm/@openzeppelin/contracts@4.1.0/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"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": "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.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"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": "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": "Interface of the ERC20 standard as defined in the EIP.",
"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": "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."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol": "IERC20"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.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, IERC20Metadata {
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 two 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 override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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
* overridden;
*
* 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 override 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;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), currentAllowance - amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// 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);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6350:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:8",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:8"
},
"nodeType": "YulFunctionCall",
"src": "170:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "246:88:8"
},
"nodeType": "YulFunctionCall",
"src": "246:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:8"
},
{
"nodeType": "YulAssignment",
"src": "348:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:8"
},
"nodeType": "YulFunctionCall",
"src": "355:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:8",
"type": ""
}
],
"src": "7:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "525:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "535:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "601:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "606:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "542:58:8"
},
"nodeType": "YulFunctionCall",
"src": "542:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "535:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "707:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "618:88:8"
},
"nodeType": "YulFunctionCall",
"src": "618:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "618:93:8"
},
{
"nodeType": "YulAssignment",
"src": "720:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:8"
},
"nodeType": "YulFunctionCall",
"src": "727:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "720:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "513:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "521:3:8",
"type": ""
}
],
"src": "379:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "816:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "856:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "838:17:8"
},
"nodeType": "YulFunctionCall",
"src": "838:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "826:6:8"
},
"nodeType": "YulFunctionCall",
"src": "826:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "826:37:8"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "804:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "811:3:8",
"type": ""
}
],
"src": "751:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1056:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1068:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1079:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1064:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1064:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1056:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1103:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1114:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1099:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1122:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1128:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1118:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1118:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1092:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1092:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "1092:47:8"
},
{
"nodeType": "YulAssignment",
"src": "1148:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1282:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1156:124:8"
},
"nodeType": "YulFunctionCall",
"src": "1156:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1148:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1026:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1041:4:8",
"type": ""
}
],
"src": "875:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1471:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1481:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1493:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1504:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1489:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1489:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1481:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1528:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1524:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1524:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1547:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1553:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1543:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1543:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1517:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1517:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "1517:47:8"
},
{
"nodeType": "YulAssignment",
"src": "1573:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1707:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1581:124:8"
},
"nodeType": "YulFunctionCall",
"src": "1581:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1573:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1451:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1466:4:8",
"type": ""
}
],
"src": "1300:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1823:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1833:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1845:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1841:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1841:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1833:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1913:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1937:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1922:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1869:43:8"
},
"nodeType": "YulFunctionCall",
"src": "1869:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "1869:71:8"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1795:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1807:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1818:4:8",
"type": ""
}
],
"src": "1725:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2049:73:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2066:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2071:6:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2059:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2059:19:8"
},
"nodeType": "YulExpressionStatement",
"src": "2059:19:8"
},
{
"nodeType": "YulAssignment",
"src": "2087:29:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2106:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2111:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2102:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2102:14:8"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2087:11:8"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2021:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2026:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2037:11:8",
"type": ""
}
],
"src": "1953:169:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2172:261:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2182:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2205:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2187:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2187:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2182:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2216:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2239:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2221:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2221:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2216:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2379:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2381:16:8"
},
"nodeType": "YulFunctionCall",
"src": "2381:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "2381:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2300:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2307:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2375:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2303:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2303:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2297:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2297:81:8"
},
"nodeType": "YulIf",
"src": "2294:2:8"
},
{
"nodeType": "YulAssignment",
"src": "2411:16:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2422:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2425:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2418:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2418:9:8"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2411:3:8"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2159:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2162:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2168:3:8",
"type": ""
}
],
"src": "2128:305:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2512:775:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2522:15:8",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "2531:6:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2522:5:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2546:14:8",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "2555:5:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2546:4:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:677:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2692:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2694:16:8"
},
"nodeType": "YulFunctionCall",
"src": "2694:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "2694:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2670:4:8"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2680:3:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2685:4:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2676:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2676:14:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2667:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2667:24:8"
},
"nodeType": "YulIf",
"src": "2664:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2759:419:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3139:25:8",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3152:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3159:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3148:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3148:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3139:5:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2734:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2744:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2730:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2730:16:8"
},
"nodeType": "YulIf",
"src": "2727:2:8"
},
{
"nodeType": "YulAssignment",
"src": "3191:23:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3203:4:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3209:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3199:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3199:15:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3191:4:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3227:44:8",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3262:8:8"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "3239:22:8"
},
"nodeType": "YulFunctionCall",
"src": "3239:32:8"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3227:8:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2580:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2590:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2577:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2577:15:8"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2593:2:8",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "2573:3:8",
"statements": []
},
"src": "2569:712:8"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "2467:6:8",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "2475:5:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2482:8:8",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2492:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2500:5:8",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2507:4:8",
"type": ""
}
],
"src": "2439:848:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3357:217:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3367:31:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3393:4:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3375:17:8"
},
"nodeType": "YulFunctionCall",
"src": "3375:23:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3367:4:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3407:37:8",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3435:8:8"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "3419:15:8"
},
"nodeType": "YulFunctionCall",
"src": "3419:25:8"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3407:8:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3454:113:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3484:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3490:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3500:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3463:20:8"
},
"nodeType": "YulFunctionCall",
"src": "3463:104:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3454:5:8"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3332:4:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3338:8:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3351:5:8",
"type": ""
}
],
"src": "3293:281:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3640:1013:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3835:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3837:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3846:1:8",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3837:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "3848:5:8"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3825:8:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3818:6:8"
},
"nodeType": "YulFunctionCall",
"src": "3818:16:8"
},
"nodeType": "YulIf",
"src": "3815:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3880:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3882:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3891:1:8",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3882:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "3893:5:8"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3874:4:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3867:6:8"
},
"nodeType": "YulFunctionCall",
"src": "3867:12:8"
},
"nodeType": "YulIf",
"src": "3864:2:8"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4010:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4012:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4021:1:8",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4012:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "4023:5:8"
}
]
},
"nodeType": "YulCase",
"src": "4003:27:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:1:8",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "4054:176:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4089:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4091:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4091:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4091:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4074:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4084:3:8",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4071:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:8"
},
"nodeType": "YulIf",
"src": "4068:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4124:25:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:1:8",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4140:8:8"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4133:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4133:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4124:5:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4182:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4182:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4182:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4168:5:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4175:3:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4165:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4165:14:8"
},
"nodeType": "YulIf",
"src": "4162:2:8"
},
{
"nodeType": "YulLeave",
"src": "4215:5:8"
}
]
},
"nodeType": "YulCase",
"src": "4039:191:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4044:1:8",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3960:4:8"
},
"nodeType": "YulSwitch",
"src": "3953:277:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4362:123:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4376:28:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4389:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4395:8:8"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4385:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4385:19:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4376:5:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4435:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4437:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4437:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4437:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4423:5:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4430:3:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4420:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4420:14:8"
},
"nodeType": "YulIf",
"src": "4417:2:8"
},
{
"nodeType": "YulLeave",
"src": "4470:5:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4265:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4271:2:8",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4262:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4262:12:8"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4279:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4289:2:8",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4276:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4276:16:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4258:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4258:35:8"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4314:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4320:3:8",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4311:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4311:13:8"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4329:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4339:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4326:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4326:16:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4307:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4307:36:8"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4242:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4242:111:8"
},
"nodeType": "YulIf",
"src": "4239:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4495:57:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4529:1:8",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4532:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4538:8:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4548:3:8"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "4510:18:8"
},
"nodeType": "YulFunctionCall",
"src": "4510:42:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4495:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4502:4:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4591:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4593:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4593:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4593:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4568:5:8"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4579:3:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4584:4:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4575:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4575:14:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4565:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4565:25:8"
},
"nodeType": "YulIf",
"src": "4562:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4622:25:8",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4635:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4642:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4631:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4631:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4622:5:8"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3610:4:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3616:8:8",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "3626:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3634:5:8",
"type": ""
}
],
"src": "3580:1073:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4707:300:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4717:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4740:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4722:17:8"
},
"nodeType": "YulFunctionCall",
"src": "4722:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4717:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4751:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4774:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4756:17:8"
},
"nodeType": "YulFunctionCall",
"src": "4756:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4751:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4949:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4951:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4951:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4951:18:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4861:1:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4854:6:8"
},
"nodeType": "YulFunctionCall",
"src": "4854:9:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4847:6:8"
},
"nodeType": "YulFunctionCall",
"src": "4847:17:8"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4869:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4876:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4944:1:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4872:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4872:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4866:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4866:81:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4843:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4843:105:8"
},
"nodeType": "YulIf",
"src": "4840:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4981:20:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4996:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4999:1:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4992:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4992:9:8"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4981:7:8"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4690:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4693:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "4699:7:8",
"type": ""
}
],
"src": "4659:348:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5058:32:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5068:16:8",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5079:5:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5068:7:8"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5040:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5050:7:8",
"type": ""
}
],
"src": "5013:77:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5139:43:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5149:27:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5164:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5171:4:8",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5160:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5160:16:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5149:7:8"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5121:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5131:7:8",
"type": ""
}
],
"src": "5096:86:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5239:269:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5249:22:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5263:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5269:1:8",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5259:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5259:12:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5249:6:8"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5280:38:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5310:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5316:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5306:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5306:12:8"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5284:18:8",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5357:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5371:27:8",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5385:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5393:4:8",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5381:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5381:17:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5371:6:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5337:18:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5330:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5330:26:8"
},
"nodeType": "YulIf",
"src": "5327:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5460:42:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5474:16:8"
},
"nodeType": "YulFunctionCall",
"src": "5474:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "5474:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5424:18:8"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5447:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5455:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5444:2:8"
},
"nodeType": "YulFunctionCall",
"src": "5444:14:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5421:2:8"
},
"nodeType": "YulFunctionCall",
"src": "5421:38:8"
},
"nodeType": "YulIf",
"src": "5418:2:8"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5223:4:8",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5232:6:8",
"type": ""
}
],
"src": "5188:320:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5542:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5559:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5562:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5552:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5552:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "5552:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5656:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5659:4:8",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5649:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5649:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5649:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5680:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5683:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5673:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5673:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5673:15:8"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5514:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5728:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5745:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5738:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5738:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "5738:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5842:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5845:4:8",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5835:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5835:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5835:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5866:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5869:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5859:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5859:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5859:15:8"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5700:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5937:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5947:34:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5972:1:8",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5975:5:8"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5968:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5968:13:8"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5947:8:8"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5918:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5928:8:8",
"type": ""
}
],
"src": "5886:102:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6100:60:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6122:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6130:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6118:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6118:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6134:18:8",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6111:6:8"
},
"nodeType": "YulFunctionCall",
"src": "6111:42:8"
},
"nodeType": "YulExpressionStatement",
"src": "6111:42:8"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6092:6:8",
"type": ""
}
],
"src": "5994:166:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6272:75:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6294:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6302:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6290:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6290:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6306:33:8",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6283:6:8"
},
"nodeType": "YulFunctionCall",
"src": "6283:57:8"
},
"nodeType": "YulExpressionStatement",
"src": "6283:57:8"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6264:6:8",
"type": ""
}
],
"src": "6166:181:8"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\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_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__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_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\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 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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint8(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n}\n",
"id": 8,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280601081526020017f5075626c69632048617070696e657373000000000000000000000000000000008152506040518060400160405280600481526020017f5048415400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003c7565b508060049080519060200190620000af929190620003c7565b5050506000600560006101000a81548160ff0219169083151502179055506000620000df620001c560201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001bf3362000193620001cd60201b60201c565b600a620001a1919062000600565b6401d6e06f00620001b391906200073d565b620001d660201b60201c565b620008a8565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024090620004f8565b60405180910390fd5b6200025d600083836200033b60201b60201c565b806002600082825462000271919062000548565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c8919062000548565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032f91906200051a565b60405180910390a35050565b6200034b620003ab60201b60201c565b156200038e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038590620004d6565b60405180910390fd5b620003a6838383620003c260201b62000d4d1760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620003d590620007b5565b90600052602060002090601f016020900481019282620003f9576000855562000445565b82601f106200041457805160ff191683800117855562000445565b8280016001018555821562000445579182015b828111156200044457825182559160200191906001019062000427565b5b50905062000454919062000458565b5090565b5b808211156200047357600081600090555060010162000459565b5090565b60006200048660108362000537565b9150620004938262000856565b602082019050919050565b6000620004ad601f8362000537565b9150620004ba826200087f565b602082019050919050565b620004d0816200079e565b82525050565b60006020820190508181036000830152620004f18162000477565b9050919050565b6000602082019050818103600083015262000513816200049e565b9050919050565b6000602082019050620005316000830184620004c5565b92915050565b600082825260208201905092915050565b600062000555826200079e565b915062000562836200079e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200059a5762000599620007eb565b5b828201905092915050565b6000808291508390505b6001851115620005f757808604811115620005cf57620005ce620007eb565b5b6001851615620005df5780820291505b8081029050620005ef8562000849565b9450620005af565b94509492505050565b60006200060d826200079e565b91506200061a83620007a8565b9250620006497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000651565b905092915050565b60008262000663576001905062000736565b8162000673576000905062000736565b81600181146200068c57600281146200069757620006cd565b600191505062000736565b60ff841115620006ac57620006ab620007eb565b5b8360020a915084821115620006c657620006c5620007eb565b5b5062000736565b5060208310610133831016604e8410600b8410161715620007075782820a905083811115620007015762000700620007eb565b5b62000736565b620007168484846001620005a5565b9250905081840481111562000730576200072f620007eb565b5b81810290505b9392505050565b60006200074a826200079e565b915062000757836200079e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007935762000792620007eb565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007ce57607f821691505b60208210811415620007e557620007e46200081a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61211880620008b86000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102d2578063a457c2d7146102f0578063a9059cbb14610320578063dd62ed3e14610350578063f2fde38b1461038057610121565b806370a0823114610254578063715018a61461028457806379cc67901461028e5780638456cb59146102aa5780638da5cb5b146102b457610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633f4ba83a1461021057806342966c681461021a5780635c975abb1461023657610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e61039c565b60405161013b91906118ed565b60405180910390f35b61015e600480360381019061015991906115f3565b61042e565b60405161016b91906118d2565b60405180910390f35b61017c61044c565b6040516101899190611acf565b60405180910390f35b6101ac60048036038101906101a791906115a4565b610456565b6040516101b991906118d2565b60405180910390f35b6101ca610557565b6040516101d79190611aea565b60405180910390f35b6101fa60048036038101906101f591906115f3565b610560565b60405161020791906118d2565b60405180910390f35b61021861060c565b005b610234600480360381019061022f919061162f565b610692565b005b61023e6106a6565b60405161024b91906118d2565b60405180910390f35b61026e6004803603810190610269919061153f565b6106bd565b60405161027b9190611acf565b60405180910390f35b61028c610705565b005b6102a860048036038101906102a391906115f3565b610842565b005b6102b26108c6565b005b6102bc61094c565b6040516102c991906118b7565b60405180910390f35b6102da610976565b6040516102e791906118ed565b60405180910390f35b61030a600480360381019061030591906115f3565b610a08565b60405161031791906118d2565b60405180910390f35b61033a600480360381019061033591906115f3565b610afc565b60405161034791906118d2565b60405180910390f35b61036a60048036038101906103659190611568565b610b1a565b6040516103779190611acf565b60405180910390f35b61039a6004803603810190610395919061153f565b610ba1565b005b6060600380546103ab90611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790611c33565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b600061044261043b610d52565b8484610d5a565b6001905092915050565b6000600254905090565b6000610463848484610f25565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ae610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610525906119ef565b60405180910390fd5b61054b8561053a610d52565b85846105469190611b77565b610d5a565b60019150509392505050565b60006012905090565b600061060261056d610d52565b84846001600061057b610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105fd9190611b21565b610d5a565b6001905092915050565b610614610d52565b73ffffffffffffffffffffffffffffffffffffffff1661063261094c565b73ffffffffffffffffffffffffffffffffffffffff1614610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611a0f565b60405180910390fd5b6106906111a4565b565b6106a361069d610d52565b82611246565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070d610d52565b73ffffffffffffffffffffffffffffffffffffffff1661072b61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061085583610850610d52565b610b1a565b90508181101561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611a2f565b60405180910390fd5b6108b7836108a6610d52565b84846108b29190611b77565b610d5a565b6108c18383611246565b505050565b6108ce610d52565b73ffffffffffffffffffffffffffffffffffffffff166108ec61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990611a0f565b60405180910390fd5b61094a61141a565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098590611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546109b190611c33565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b60008060016000610a17610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611aaf565b60405180910390fd5b610af1610adf610d52565b858584610aec9190611b77565b610d5a565b600191505092915050565b6000610b10610b09610d52565b8484610f25565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba9610d52565b73ffffffffffffffffffffffffffffffffffffffff16610bc761094c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061196f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190611a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061198f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f189190611acf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611a6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061190f565b60405180910390fd5b6110108383836114bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906119af565b60405180910390fd5b81816110a29190611b77565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111329190611b21565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111969190611acf565b60405180910390a350505050565b6111ac6106a6565b6111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061192f565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61122f610d52565b60405161123c91906118b7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90611a4f565b60405180910390fd5b6112c2826000836114bd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061194f565b60405180910390fd5b81816113549190611b77565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113a89190611b77565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140d9190611acf565b60405180910390a3505050565b6114226106a6565b15611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906119cf565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114a6610d52565b6040516114b391906118b7565b60405180910390a1565b6114c56106a6565b15611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906119cf565b60405180910390fd5b611510838383610d4d565b505050565b600081359050611524816120b4565b92915050565b600081359050611539816120cb565b92915050565b60006020828403121561155157600080fd5b600061155f84828501611515565b91505092915050565b6000806040838503121561157b57600080fd5b600061158985828601611515565b925050602061159a85828601611515565b9150509250929050565b6000806000606084860312156115b957600080fd5b60006115c786828701611515565b93505060206115d886828701611515565b92505060406115e98682870161152a565b9150509250925092565b6000806040838503121561160657600080fd5b600061161485828601611515565b92505060206116258582860161152a565b9150509250929050565b60006020828403121561164157600080fd5b600061164f8482850161152a565b91505092915050565b61166181611bab565b82525050565b61167081611bbd565b82525050565b600061168182611b05565b61168b8185611b10565b935061169b818560208601611c00565b6116a481611cc3565b840191505092915050565b60006116bc602383611b10565b91506116c782611cd4565b604082019050919050565b60006116df601483611b10565b91506116ea82611d23565b602082019050919050565b6000611702602283611b10565b915061170d82611d4c565b604082019050919050565b6000611725602683611b10565b915061173082611d9b565b604082019050919050565b6000611748602283611b10565b915061175382611dea565b604082019050919050565b600061176b602683611b10565b915061177682611e39565b604082019050919050565b600061178e601083611b10565b915061179982611e88565b602082019050919050565b60006117b1602883611b10565b91506117bc82611eb1565b604082019050919050565b60006117d4602083611b10565b91506117df82611f00565b602082019050919050565b60006117f7602483611b10565b915061180282611f29565b604082019050919050565b600061181a602183611b10565b915061182582611f78565b604082019050919050565b600061183d602583611b10565b915061184882611fc7565b604082019050919050565b6000611860602483611b10565b915061186b82612016565b604082019050919050565b6000611883602583611b10565b915061188e82612065565b604082019050919050565b6118a281611be9565b82525050565b6118b181611bf3565b82525050565b60006020820190506118cc6000830184611658565b92915050565b60006020820190506118e76000830184611667565b92915050565b600060208201905081810360008301526119078184611676565b905092915050565b60006020820190508181036000830152611928816116af565b9050919050565b60006020820190508181036000830152611948816116d2565b9050919050565b60006020820190508181036000830152611968816116f5565b9050919050565b6000602082019050818103600083015261198881611718565b9050919050565b600060208201905081810360008301526119a88161173b565b9050919050565b600060208201905081810360008301526119c88161175e565b9050919050565b600060208201905081810360008301526119e881611781565b9050919050565b60006020820190508181036000830152611a08816117a4565b9050919050565b60006020820190508181036000830152611a28816117c7565b9050919050565b60006020820190508181036000830152611a48816117ea565b9050919050565b60006020820190508181036000830152611a688161180d565b9050919050565b60006020820190508181036000830152611a8881611830565b9050919050565b60006020820190508181036000830152611aa881611853565b9050919050565b60006020820190508181036000830152611ac881611876565b9050919050565b6000602082019050611ae46000830184611899565b92915050565b6000602082019050611aff60008301846118a8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b2c82611be9565b9150611b3783611be9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b6c57611b6b611c65565b5b828201905092915050565b6000611b8282611be9565b9150611b8d83611be9565b925082821015611ba057611b9f611c65565b5b828203905092915050565b6000611bb682611bc9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c1e578082015181840152602081019050611c03565b83811115611c2d576000848401525b50505050565b60006002820490506001821680611c4b57607f821691505b60208210811415611c5f57611c5e611c94565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120bd81611bab565b81146120c857600080fd5b50565b6120d481611be9565b81146120df57600080fd5b5056fea2646970667358221220424b1412fd68d55f5352ed08e04c8ff2185fce7e874a3bf2e48b4afdacd4f6f464736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5075626C69632048617070696E65737300000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5048415400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x3C7 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x3C7 JUMP JUMPDEST POP POP POP PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH3 0xDF PUSH3 0x1C5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH3 0x1BF CALLER PUSH3 0x193 PUSH3 0x1CD PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x1A1 SWAP2 SWAP1 PUSH3 0x600 JUMP JUMPDEST PUSH5 0x1D6E06F00 PUSH3 0x1B3 SWAP2 SWAP1 PUSH3 0x73D JUMP JUMPDEST PUSH3 0x1D6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x8A8 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x249 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x240 SWAP1 PUSH3 0x4F8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x25D PUSH1 0x0 DUP4 DUP4 PUSH3 0x33B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x271 SWAP2 SWAP1 PUSH3 0x548 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x2C8 SWAP2 SWAP1 PUSH3 0x548 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x32F SWAP2 SWAP1 PUSH3 0x51A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x34B PUSH3 0x3AB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x38E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x385 SWAP1 PUSH3 0x4D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x3A6 DUP4 DUP4 DUP4 PUSH3 0x3C2 PUSH1 0x20 SHL PUSH3 0xD4D OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x3D5 SWAP1 PUSH3 0x7B5 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3F9 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x445 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x414 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x445 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x445 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x444 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x427 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x454 SWAP2 SWAP1 PUSH3 0x458 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x473 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x459 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x486 PUSH1 0x10 DUP4 PUSH3 0x537 JUMP JUMPDEST SWAP2 POP PUSH3 0x493 DUP3 PUSH3 0x856 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4AD PUSH1 0x1F DUP4 PUSH3 0x537 JUMP JUMPDEST SWAP2 POP PUSH3 0x4BA DUP3 PUSH3 0x87F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x4D0 DUP2 PUSH3 0x79E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x4F1 DUP2 PUSH3 0x477 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x513 DUP2 PUSH3 0x49E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x531 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x4C5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x555 DUP3 PUSH3 0x79E JUMP JUMPDEST SWAP2 POP PUSH3 0x562 DUP4 PUSH3 0x79E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x59A JUMPI PUSH3 0x599 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x5F7 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x5CF JUMPI PUSH3 0x5CE PUSH3 0x7EB JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x5DF JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x5EF DUP6 PUSH3 0x849 JUMP JUMPDEST SWAP5 POP PUSH3 0x5AF JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x60D DUP3 PUSH3 0x79E JUMP JUMPDEST SWAP2 POP PUSH3 0x61A DUP4 PUSH3 0x7A8 JUMP JUMPDEST SWAP3 POP PUSH3 0x649 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x651 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x663 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x736 JUMP JUMPDEST DUP2 PUSH3 0x673 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x736 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x68C JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x697 JUMPI PUSH3 0x6CD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x736 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x6AC JUMPI PUSH3 0x6AB PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x6C6 JUMPI PUSH3 0x6C5 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST POP PUSH3 0x736 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x707 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x701 JUMPI PUSH3 0x700 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST PUSH3 0x736 JUMP JUMPDEST PUSH3 0x716 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x5A5 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x730 JUMPI PUSH3 0x72F PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x74A DUP3 PUSH3 0x79E JUMP JUMPDEST SWAP2 POP PUSH3 0x757 DUP4 PUSH3 0x79E JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x793 JUMPI PUSH3 0x792 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x7CE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7E5 JUMPI PUSH3 0x7E4 PUSH3 0x81A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2118 DUP1 PUSH3 0x8B8 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x380 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x254 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x2AA JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B4 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x236 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x39C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x42E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH2 0x44C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x15A4 JUMP JUMPDEST PUSH2 0x456 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B9 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x1AEA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x560 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x218 PUSH2 0x60C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x162F JUMP JUMPDEST PUSH2 0x692 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x23E PUSH2 0x6A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x269 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27B SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28C PUSH2 0x705 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x842 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH2 0x8C6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2BC PUSH2 0x94C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DA PUSH2 0x976 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xAFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x1568 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x377 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0xBA1 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3AB SWAP1 PUSH2 0x1C33 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 0x3D7 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x424 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x424 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x407 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x442 PUSH2 0x43B PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x463 DUP5 DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x4AE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x52E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x525 SWAP1 PUSH2 0x19EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x54B DUP6 PUSH2 0x53A PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x546 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x602 PUSH2 0x56D PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x57B PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5FD SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x614 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x632 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x688 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67F SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x690 PUSH2 0x11A4 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x6A3 PUSH2 0x69D PUSH2 0xD52 JUMP JUMPDEST DUP3 PUSH2 0x1246 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x70D PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x72B PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x781 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x778 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x855 DUP4 PUSH2 0x850 PUSH2 0xD52 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x89A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x891 SWAP1 PUSH2 0x1A2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B7 DUP4 PUSH2 0x8A6 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH2 0x8C1 DUP4 DUP4 PUSH2 0x1246 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8CE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8EC PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x942 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x939 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x94A PUSH2 0x141A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x985 SWAP1 PUSH2 0x1C33 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 0x9B1 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x9E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0xA17 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0xAD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACB SWAP1 PUSH2 0x1AAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAF1 PUSH2 0xADF PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAEC SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB10 PUSH2 0xB09 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA9 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBC7 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC1D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC14 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC84 SWAP1 PUSH2 0x196F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDCA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDC1 SWAP1 PUSH2 0x1A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE31 SWAP1 PUSH2 0x198F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0xF18 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF8C SWAP1 PUSH2 0x1A6F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1005 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFFC SWAP1 PUSH2 0x190F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1010 DUP4 DUP4 DUP4 PUSH2 0x14BD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1096 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x108D SWAP1 PUSH2 0x19AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x10A2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1132 SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1196 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x11AC PUSH2 0x6A6 JUMP JUMPDEST PUSH2 0x11EB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E2 SWAP1 PUSH2 0x192F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x122F PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x123C SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x12B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12AD SWAP1 PUSH2 0x1A4F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12C2 DUP3 PUSH1 0x0 DUP4 PUSH2 0x14BD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1348 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x133F SWAP1 PUSH2 0x194F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x1354 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x13A8 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x140D SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1422 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1462 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1459 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x14A6 PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B3 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x14C5 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1505 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14FC SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1510 DUP4 DUP4 DUP4 PUSH2 0xD4D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1524 DUP2 PUSH2 0x20B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1539 DUP2 PUSH2 0x20CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP5 DUP3 DUP6 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x157B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1589 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x159A DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15C7 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x15D8 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15E9 DUP7 DUP3 DUP8 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1606 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1614 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1625 DUP6 DUP3 DUP7 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1641 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164F DUP5 DUP3 DUP6 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1661 DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1670 DUP2 PUSH2 0x1BBD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1681 DUP3 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0x168B DUP2 DUP6 PUSH2 0x1B10 JUMP JUMPDEST SWAP4 POP PUSH2 0x169B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1C00 JUMP JUMPDEST PUSH2 0x16A4 DUP2 PUSH2 0x1CC3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16BC PUSH1 0x23 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16C7 DUP3 PUSH2 0x1CD4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DF PUSH1 0x14 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16EA DUP3 PUSH2 0x1D23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1702 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x170D DUP3 PUSH2 0x1D4C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1725 PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1730 DUP3 PUSH2 0x1D9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1748 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1753 DUP3 PUSH2 0x1DEA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176B PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1776 DUP3 PUSH2 0x1E39 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x178E PUSH1 0x10 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1799 DUP3 PUSH2 0x1E88 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B1 PUSH1 0x28 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17BC DUP3 PUSH2 0x1EB1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D4 PUSH1 0x20 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17DF DUP3 PUSH2 0x1F00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F7 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1802 DUP3 PUSH2 0x1F29 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x181A PUSH1 0x21 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1825 DUP3 PUSH2 0x1F78 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x183D PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1848 DUP3 PUSH2 0x1FC7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1860 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x186B DUP3 PUSH2 0x2016 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1883 PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x188E DUP3 PUSH2 0x2065 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18A2 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x18B1 DUP2 PUSH2 0x1BF3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18CC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1658 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1667 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1907 DUP2 DUP5 PUSH2 0x1676 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1928 DUP2 PUSH2 0x16AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1948 DUP2 PUSH2 0x16D2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1968 DUP2 PUSH2 0x16F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1988 DUP2 PUSH2 0x1718 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19A8 DUP2 PUSH2 0x173B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19C8 DUP2 PUSH2 0x175E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19E8 DUP2 PUSH2 0x1781 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A08 DUP2 PUSH2 0x17A4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A28 DUP2 PUSH2 0x17C7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A48 DUP2 PUSH2 0x17EA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A68 DUP2 PUSH2 0x180D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A88 DUP2 PUSH2 0x1830 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AA8 DUP2 PUSH2 0x1853 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AC8 DUP2 PUSH2 0x1876 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AE4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1899 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AFF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18A8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B2C DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B37 DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1B6C JUMPI PUSH2 0x1B6B PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B82 DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B8D DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1BA0 JUMPI PUSH2 0x1B9F PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB6 DUP3 PUSH2 0x1BC9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1C1E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1C03 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1C2D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1C4B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x1C94 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x20BD DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP2 EQ PUSH2 0x20C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x20D4 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP2 EQ PUSH2 0x20DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 TIMESTAMP 0x4B EQ SLT REVERT PUSH9 0xD55F5352ED08E04C8F CALLCODE XOR 0x5F 0xCE PUSH31 0x874A3BF2E48B4AFDACD4F6F464736F6C634300080400330000000000000000 ",
"sourceMap": "322:522:7:-:0;;;396:113;;;;;;;;;;1898:114:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973:5;1965;:13;;;;;;;;;;;;:::i;:::-;;1998:7;1988;:17;;;;;;;;;;;;:::i;:::-;;1898:114;;935:5:1;925:7;;:15;;;;;;;;;;;;;;;;;;867:17:0;887:12;:10;;;:12;;:::i;:::-;867:32;;918:9;909:6;;:18;;;;;;;;;;;;;;;;;;975:9;942:43;;971:1;942:43;;;;;;;;;;;;842:150;454:48:7::1;460:10;491;:8;;;:10;;:::i;:::-;485:2;:16;;;;:::i;:::-;472:10;:29;;;;:::i;:::-;454:5;;;:48;;:::i;:::-;322:522:::0;;586:96:6;639:7;665:10;658:17;;586:96;:::o;3014:91:2:-;3072:5;3096:2;3089:9;;3014:91;:::o;8023:330::-;8125:1;8106:21;;:7;:21;;;;8098:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8174:49;8203:1;8207:7;8216:6;8174:20;;;:49;;:::i;:::-;8250:6;8234:12;;:22;;;;;;;:::i;:::-;;;;;;;;8288:6;8266:9;:18;8276:7;8266:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8330:7;8309:37;;8326:1;8309:37;;;8339:6;8309:37;;;;;;:::i;:::-;;;;;;;;8023:330;;:::o;649:193:7:-;1356:8:1;:6;;;:8;;:::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;791:44:7::1;818:4;824:2;828:6;791:26;;;;;:44;;:::i;:::-;649:193:::0;;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;10506:92:2:-;;;;:::o;322:522:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:366:8:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;153:220;;;:::o;379:366::-;521:3;542:67;606:2;601:3;542:67;:::i;:::-;535:74;;618:93;707:3;618:93;:::i;:::-;736:2;731:3;727:12;720:19;;525:220;;;:::o;751:118::-;838:24;856:5;838:24;:::i;:::-;833:3;826:37;816:53;;:::o;875:419::-;1041:4;1079:2;1068:9;1064:18;1056:26;;1128:9;1122:4;1118:20;1114:1;1103:9;1099:17;1092:47;1156:131;1282:4;1156:131;:::i;:::-;1148:139;;1046:248;;;:::o;1300:419::-;1466:4;1504:2;1493:9;1489:18;1481:26;;1553:9;1547:4;1543:20;1539:1;1528:9;1524:17;1517:47;1581:131;1707:4;1581:131;:::i;:::-;1573:139;;1471:248;;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1823:124;;;;:::o;1953:169::-;2037:11;2071:6;2066:3;2059:19;2111:4;2106:3;2102:14;2087:29;;2049:73;;;;:::o;2128:305::-;2168:3;2187:20;2205:1;2187:20;:::i;:::-;2182:25;;2221:20;2239:1;2221:20;:::i;:::-;2216:25;;2375:1;2307:66;2303:74;2300:1;2297:81;2294:2;;;2381:18;;:::i;:::-;2294:2;2425:1;2422;2418:9;2411:16;;2172:261;;;;:::o;2439:848::-;2500:5;2507:4;2531:6;2522:15;;2555:5;2546:14;;2569:712;2590:1;2580:8;2577:15;2569:712;;;2685:4;2680:3;2676:14;2670:4;2667:24;2664:2;;;2694:18;;:::i;:::-;2664:2;2744:1;2734:8;2730:16;2727:2;;;3159:4;3152:5;3148:16;3139:25;;2727:2;3209:4;3203;3199:15;3191:23;;3239:32;3262:8;3239:32;:::i;:::-;3227:44;;2569:712;;;2512:775;;;;;;;:::o;3293:281::-;3351:5;3375:23;3393:4;3375:23;:::i;:::-;3367:31;;3419:25;3435:8;3419:25;:::i;:::-;3407:37;;3463:104;3500:66;3490:8;3484:4;3463:104;:::i;:::-;3454:113;;3357:217;;;;:::o;3580:1073::-;3634:5;3825:8;3815:2;;3846:1;3837:10;;3848:5;;3815:2;3874:4;3864:2;;3891:1;3882:10;;3893:5;;3864:2;3960:4;4008:1;4003:27;;;;4044:1;4039:191;;;;3953:277;;4003:27;4021:1;4012:10;;4023:5;;;4039:191;4084:3;4074:8;4071:17;4068:2;;;4091:18;;:::i;:::-;4068:2;4140:8;4137:1;4133:16;4124:25;;4175:3;4168:5;4165:14;4162:2;;;4182:18;;:::i;:::-;4162:2;4215:5;;;3953:277;;4339:2;4329:8;4326:16;4320:3;4314:4;4311:13;4307:36;4289:2;4279:8;4276:16;4271:2;4265:4;4262:12;4258:35;4242:111;4239:2;;;4395:8;4389:4;4385:19;4376:28;;4430:3;4423:5;4420:14;4417:2;;;4437:18;;:::i;:::-;4417:2;4470:5;;4239:2;4510:42;4548:3;4538:8;4532:4;4529:1;4510:42;:::i;:::-;4495:57;;;;4584:4;4579:3;4575:14;4568:5;4565:25;4562:2;;;4593:18;;:::i;:::-;4562:2;4642:4;4635:5;4631:16;4622:25;;3640:1013;;;;;;:::o;4659:348::-;4699:7;4722:20;4740:1;4722:20;:::i;:::-;4717:25;;4756:20;4774:1;4756:20;:::i;:::-;4751:25;;4944:1;4876:66;4872:74;4869:1;4866:81;4861:1;4854:9;4847:17;4843:105;4840:2;;;4951:18;;:::i;:::-;4840:2;4999:1;4996;4992:9;4981:20;;4707:300;;;;:::o;5013:77::-;5050:7;5079:5;5068:16;;5058:32;;;:::o;5096:86::-;5131:7;5171:4;5164:5;5160:16;5149:27;;5139:43;;;:::o;5188:320::-;5232:6;5269:1;5263:4;5259:12;5249:22;;5316:1;5310:4;5306:12;5337:18;5327:2;;5393:4;5385:6;5381:17;5371:27;;5327:2;5455;5447:6;5444:14;5424:18;5421:38;5418:2;;;5474:18;;:::i;:::-;5418:2;5239:269;;;;:::o;5514:180::-;5562:77;5559:1;5552:88;5659:4;5656:1;5649:15;5683:4;5680:1;5673:15;5700:180;5748:77;5745:1;5738:88;5845:4;5842:1;5835:15;5869:4;5866:1;5859:15;5886:102;5928:8;5975:5;5972:1;5968:13;5947:34;;5937:51;;;:::o;5994:166::-;6134:18;6130:1;6122:6;6118:14;6111:42;6100:60;:::o;6166:181::-;6306:33;6302:1;6294:6;6290:14;6283:57;6272:75;:::o;322:522:7:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:21159:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:8",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:8"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:8"
},
"nodeType": "YulFunctionCall",
"src": "78:20:8"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:8"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:8"
},
"nodeType": "YulFunctionCall",
"src": "107:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:8"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:8",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:8",
"type": ""
}
],
"src": "7:139:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:8",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:8"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:8"
},
"nodeType": "YulFunctionCall",
"src": "223:20:8"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:8"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:8"
},
"nodeType": "YulFunctionCall",
"src": "252:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:8"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:8",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:8",
"type": ""
}
],
"src": "152:139:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:8"
},
"nodeType": "YulFunctionCall",
"src": "411:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:8"
},
"nodeType": "YulFunctionCall",
"src": "380:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:8"
},
"nodeType": "YulFunctionCall",
"src": "376:32:8"
},
"nodeType": "YulIf",
"src": "373:2:8"
},
{
"nodeType": "YulBlock",
"src": "435:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:8"
},
"nodeType": "YulFunctionCall",
"src": "510:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:8"
},
"nodeType": "YulFunctionCall",
"src": "489:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:8",
"type": ""
}
],
"src": "297:262:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:8"
},
"nodeType": "YulFunctionCall",
"src": "696:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:8"
},
"nodeType": "YulFunctionCall",
"src": "665:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:8"
},
"nodeType": "YulFunctionCall",
"src": "661:32:8"
},
"nodeType": "YulIf",
"src": "658:2:8"
},
{
"nodeType": "YulBlock",
"src": "720:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:8"
},
"nodeType": "YulFunctionCall",
"src": "795:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:8"
},
"nodeType": "YulFunctionCall",
"src": "774:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:8",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:8"
},
"nodeType": "YulFunctionCall",
"src": "923:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:8"
},
"nodeType": "YulFunctionCall",
"src": "902:53:8"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:8",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:8",
"type": ""
}
],
"src": "565:407:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:8",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:8"
},
"nodeType": "YulIf",
"src": "1088:2:8"
},
{
"nodeType": "YulBlock",
"src": "1150:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:8",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:8"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:8",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:8"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:8"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:8",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:8",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:8",
"type": ""
}
],
"src": "978:552:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:8"
},
"nodeType": "YulIf",
"src": "1629:2:8"
},
{
"nodeType": "YulBlock",
"src": "1691:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:8",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:8"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:8"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:8",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:8",
"type": ""
}
],
"src": "1536:407:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2015:196:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2061:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2073:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2063:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2063:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "2063:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2036:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2045:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2032:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2032:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2057:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2028:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2028:32:8"
},
"nodeType": "YulIf",
"src": "2025:2:8"
},
{
"nodeType": "YulBlock",
"src": "2087:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2102:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2116:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2106:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:8"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:8"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2131:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1985:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1996:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2008:6:8",
"type": ""
}
],
"src": "1949:262:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2282:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2299:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2322:5:8"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2304:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2304:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2292:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2292:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "2292:37:8"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2270:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2277:3:8",
"type": ""
}
],
"src": "2217:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2400:50:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2417:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2437:5:8"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2422:14:8"
},
"nodeType": "YulFunctionCall",
"src": "2422:21:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2410:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2410:34:8"
},
"nodeType": "YulExpressionStatement",
"src": "2410:34:8"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2388:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2395:3:8",
"type": ""
}
],
"src": "2341:109:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2548:272:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2558:53:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2605:5:8"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2572:32:8"
},
"nodeType": "YulFunctionCall",
"src": "2572:39:8"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2562:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2620:78:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2686:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2691:6:8"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2627:58:8"
},
"nodeType": "YulFunctionCall",
"src": "2627:71:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2620:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2733:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2729:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2729:16:8"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2747:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2752:6:8"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2707:21:8"
},
"nodeType": "YulFunctionCall",
"src": "2707:52:8"
},
"nodeType": "YulExpressionStatement",
"src": "2707:52:8"
},
{
"nodeType": "YulAssignment",
"src": "2768:46:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2779:3:8"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2806:6:8"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2784:21:8"
},
"nodeType": "YulFunctionCall",
"src": "2784:29:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2775:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2775:39:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2768:3:8"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2529:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2536:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:8",
"type": ""
}
],
"src": "2456:364:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2972:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2982:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3048:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3053:2:8",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2989:58:8"
},
"nodeType": "YulFunctionCall",
"src": "2989:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2982:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3154:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "3065:88:8"
},
"nodeType": "YulFunctionCall",
"src": "3065:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "3065:93:8"
},
{
"nodeType": "YulAssignment",
"src": "3167:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3178:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3183:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3174:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3174:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3167:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2960:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2968:3:8",
"type": ""
}
],
"src": "2826:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3344:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3354:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3420:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3425:2:8",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3361:58:8"
},
"nodeType": "YulFunctionCall",
"src": "3361:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3354:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3526:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulIdentifier",
"src": "3437:88:8"
},
"nodeType": "YulFunctionCall",
"src": "3437:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "3437:93:8"
},
{
"nodeType": "YulAssignment",
"src": "3539:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3550:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3555:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3546:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3546:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3539:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3332:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3340:3:8",
"type": ""
}
],
"src": "3198:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3792:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3797:2:8",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3733:58:8"
},
"nodeType": "YulFunctionCall",
"src": "3733:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3726:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3898:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulIdentifier",
"src": "3809:88:8"
},
"nodeType": "YulFunctionCall",
"src": "3809:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "3809:93:8"
},
{
"nodeType": "YulAssignment",
"src": "3911:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3922:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3927:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3918:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3918:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3911:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3704:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3712:3:8",
"type": ""
}
],
"src": "3570:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4088:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4098:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4164:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:2:8",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4105:58:8"
},
"nodeType": "YulFunctionCall",
"src": "4105:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4098:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4270:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "4181:88:8"
},
"nodeType": "YulFunctionCall",
"src": "4181:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "4181:93:8"
},
{
"nodeType": "YulAssignment",
"src": "4283:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4294:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4299:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4290:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4283:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4076:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4084:3:8",
"type": ""
}
],
"src": "3942:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4460:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4470:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4536:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4541:2:8",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4477:58:8"
},
"nodeType": "YulFunctionCall",
"src": "4477:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4470:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4642:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "4553:88:8"
},
"nodeType": "YulFunctionCall",
"src": "4553:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "4553:93:8"
},
{
"nodeType": "YulAssignment",
"src": "4655:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4666:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4671:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4662:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4662:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4655:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4448:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4456:3:8",
"type": ""
}
],
"src": "4314:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4832:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4842:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4908:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4913:2:8",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4849:58:8"
},
"nodeType": "YulFunctionCall",
"src": "4849:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4842:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5014:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4925:88:8"
},
"nodeType": "YulFunctionCall",
"src": "4925:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "4925:93:8"
},
{
"nodeType": "YulAssignment",
"src": "5027:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5038:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5043:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5034:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5034:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5027:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4820:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4828:3:8",
"type": ""
}
],
"src": "4686:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5204:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5214:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5280:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5285:2:8",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5221:58:8"
},
"nodeType": "YulFunctionCall",
"src": "5221:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5214:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5386:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "5297:88:8"
},
"nodeType": "YulFunctionCall",
"src": "5297:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "5297:93:8"
},
{
"nodeType": "YulAssignment",
"src": "5399:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5410:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5415:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5406:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5399:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5192:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5200:3:8",
"type": ""
}
],
"src": "5058:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5576:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5586:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5652:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5657:2:8",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5593:58:8"
},
"nodeType": "YulFunctionCall",
"src": "5593:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5586:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5758:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "5669:88:8"
},
"nodeType": "YulFunctionCall",
"src": "5669:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "5669:93:8"
},
{
"nodeType": "YulAssignment",
"src": "5771:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5782:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5787:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5778:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5778:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5771:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5564:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5572:3:8",
"type": ""
}
],
"src": "5430:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5948:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5958:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6024:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6029:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5965:58:8"
},
"nodeType": "YulFunctionCall",
"src": "5965:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5958:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6130:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "6041:88:8"
},
"nodeType": "YulFunctionCall",
"src": "6041:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "6041:93:8"
},
{
"nodeType": "YulAssignment",
"src": "6143:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6154:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6159:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6150:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6150:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6143:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5936:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5944:3:8",
"type": ""
}
],
"src": "5802:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6320:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6330:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6396:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6401:2:8",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6337:58:8"
},
"nodeType": "YulFunctionCall",
"src": "6337:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6502:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db",
"nodeType": "YulIdentifier",
"src": "6413:88:8"
},
"nodeType": "YulFunctionCall",
"src": "6413:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "6413:93:8"
},
{
"nodeType": "YulAssignment",
"src": "6515:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6526:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6531:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6522:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6522:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6515:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6308:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6316:3:8",
"type": ""
}
],
"src": "6174:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6692:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6702:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6768:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6773:2:8",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6709:58:8"
},
"nodeType": "YulFunctionCall",
"src": "6709:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6702:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6874:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulIdentifier",
"src": "6785:88:8"
},
"nodeType": "YulFunctionCall",
"src": "6785:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "6785:93:8"
},
{
"nodeType": "YulAssignment",
"src": "6887:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6898:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6903:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6894:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6894:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6887:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6680:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6688:3:8",
"type": ""
}
],
"src": "6546:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7064:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7074:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7140:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7145:2:8",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7081:58:8"
},
"nodeType": "YulFunctionCall",
"src": "7081:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7074:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7246:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "7157:88:8"
},
"nodeType": "YulFunctionCall",
"src": "7157:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "7157:93:8"
},
{
"nodeType": "YulAssignment",
"src": "7259:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7270:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7275:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7266:3:8"
},
"nodeType": "YulFunctionCall",
"src": "7266:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7259:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7052:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7060:3:8",
"type": ""
}
],
"src": "6918:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7436:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7446:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7512:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7517:2:8",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7453:58:8"
},
"nodeType": "YulFunctionCall",
"src": "7453:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7446:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7618:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "7529:88:8"
},
"nodeType": "YulFunctionCall",
"src": "7529:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "7529:93:8"
},
{
"nodeType": "YulAssignment",
"src": "7631:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7642:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7647:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7638:3:8"
},
"nodeType": "YulFunctionCall",
"src": "7638:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7631:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7424:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7432:3:8",
"type": ""
}
],
"src": "7290:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7808:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7818:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7884:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7889:2:8",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7825:58:8"
},
"nodeType": "YulFunctionCall",
"src": "7825:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7818:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7990:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "7901:88:8"
},
"nodeType": "YulFunctionCall",
"src": "7901:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "7901:93:8"
},
{
"nodeType": "YulAssignment",
"src": "8003:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8014:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8019:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8010:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8010:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8003:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7796:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7804:3:8",
"type": ""
}
],
"src": "7662:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8099:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8116:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8139:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8121:17:8"
},
"nodeType": "YulFunctionCall",
"src": "8121:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8109:6:8"
},
"nodeType": "YulFunctionCall",
"src": "8109:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "8109:37:8"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8087:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8094:3:8",
"type": ""
}
],
"src": "8034:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8219:51:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8236:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8257:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "8241:15:8"
},
"nodeType": "YulFunctionCall",
"src": "8241:22:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8229:6:8"
},
"nodeType": "YulFunctionCall",
"src": "8229:35:8"
},
"nodeType": "YulExpressionStatement",
"src": "8229:35:8"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8207:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8214:3:8",
"type": ""
}
],
"src": "8158:112:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8374:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8384:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8396:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8407:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8392:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8392:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8384:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8464:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8477:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8488:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8473:17:8"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "8420:43:8"
},
"nodeType": "YulFunctionCall",
"src": "8420:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "8420:71:8"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8346:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8358:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8369:4:8",
"type": ""
}
],
"src": "8276:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8596:118:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8606:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8618:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8629:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8614:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8614:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8606:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8680:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8693:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8704:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8689:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8689:17:8"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "8642:37:8"
},
"nodeType": "YulFunctionCall",
"src": "8642:65:8"
},
"nodeType": "YulExpressionStatement",
"src": "8642:65:8"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8568:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8580:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8591:4:8",
"type": ""
}
],
"src": "8504:210:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8838:195:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8848:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8860:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8871:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8856:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8856:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8848:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8895:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8906:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8891:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8891:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8914:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8920:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8910:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8910:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8884:6:8"
},
"nodeType": "YulFunctionCall",
"src": "8884:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "8884:47:8"
},
{
"nodeType": "YulAssignment",
"src": "8940:86:8",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9012:6:8"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9021:4:8"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8948:63:8"
},
"nodeType": "YulFunctionCall",
"src": "8948:78:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8940:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8810:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8822:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8833:4:8",
"type": ""
}
],
"src": "8720:313:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9210:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9220:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9232:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9243:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9228:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9228:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9220:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9267:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9278:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9263:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9263:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9286:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9292:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9282:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9282:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9256:6:8"
},
"nodeType": "YulFunctionCall",
"src": "9256:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "9256:47:8"
},
{
"nodeType": "YulAssignment",
"src": "9312:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9446:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9320:124:8"
},
"nodeType": "YulFunctionCall",
"src": "9320:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9312:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9190:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9205:4:8",
"type": ""
}
],
"src": "9039:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9635:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9645:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9657:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9668:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9653:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9653:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9645:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9692:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9703:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9688:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9688:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9711:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9717:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9707:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9707:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9681:6:8"
},
"nodeType": "YulFunctionCall",
"src": "9681:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "9681:47:8"
},
{
"nodeType": "YulAssignment",
"src": "9737:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9871:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9745:124:8"
},
"nodeType": "YulFunctionCall",
"src": "9745:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9737:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9615:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9630:4:8",
"type": ""
}
],
"src": "9464:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10060:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10070:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10082:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10093:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10078:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10078:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10070:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10117:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10128:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10113:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10113:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10136:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10142:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10132:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10132:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10106:6:8"
},
"nodeType": "YulFunctionCall",
"src": "10106:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "10106:47:8"
},
{
"nodeType": "YulAssignment",
"src": "10162:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10296:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10170:124:8"
},
"nodeType": "YulFunctionCall",
"src": "10170:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10162:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10040:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10055:4:8",
"type": ""
}
],
"src": "9889:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10485:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10495:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10507:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10518:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10503:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10503:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10495:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10542:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10553:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10538:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10538:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10561:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10567:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10557:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10557:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10531:6:8"
},
"nodeType": "YulFunctionCall",
"src": "10531:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "10531:47:8"
},
{
"nodeType": "YulAssignment",
"src": "10587:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10721:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10595:124:8"
},
"nodeType": "YulFunctionCall",
"src": "10595:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10587:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10465:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10480:4:8",
"type": ""
}
],
"src": "10314:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10910:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10920:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10932:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10943:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10928:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10928:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10920:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10967:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10978:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10963:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10963:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10986:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10992:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10982:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10982:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10956:6:8"
},
"nodeType": "YulFunctionCall",
"src": "10956:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "10956:47:8"
},
{
"nodeType": "YulAssignment",
"src": "11012:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11146:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11020:124:8"
},
"nodeType": "YulFunctionCall",
"src": "11020:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11012:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10890:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10905:4:8",
"type": ""
}
],
"src": "10739:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11335:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11345:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11357:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11368:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11353:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11353:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11345:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11392:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11403:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11388:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11388:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11411:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11417:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11407:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11407:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11381:6:8"
},
"nodeType": "YulFunctionCall",
"src": "11381:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "11381:47:8"
},
{
"nodeType": "YulAssignment",
"src": "11437:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11571:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11445:124:8"
},
"nodeType": "YulFunctionCall",
"src": "11445:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11437:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11315:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11330:4:8",
"type": ""
}
],
"src": "11164:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11760:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11770:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11782:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11793:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11778:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11778:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11770:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11817:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11828:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11813:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11813:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11836:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11842:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11832:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11832:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11806:6:8"
},
"nodeType": "YulFunctionCall",
"src": "11806:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "11806:47:8"
},
{
"nodeType": "YulAssignment",
"src": "11862:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11996:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11870:124:8"
},
"nodeType": "YulFunctionCall",
"src": "11870:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11862:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11740:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11755:4:8",
"type": ""
}
],
"src": "11589:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12185:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12195:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12207:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12218:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12203:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12203:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12195:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12242:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12253:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12238:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12238:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12261:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12267:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12257:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12257:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12231:6:8"
},
"nodeType": "YulFunctionCall",
"src": "12231:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "12231:47:8"
},
{
"nodeType": "YulAssignment",
"src": "12287:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12421:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12295:124:8"
},
"nodeType": "YulFunctionCall",
"src": "12295:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12287:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12165:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12180:4:8",
"type": ""
}
],
"src": "12014:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12610:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12620:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12632:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12643:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12628:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12628:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12620:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12667:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12678:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12663:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12663:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12686:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12692:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12682:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12682:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12656:6:8"
},
"nodeType": "YulFunctionCall",
"src": "12656:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "12656:47:8"
},
{
"nodeType": "YulAssignment",
"src": "12712:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12846:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12720:124:8"
},
"nodeType": "YulFunctionCall",
"src": "12720:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12712:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12590:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12605:4:8",
"type": ""
}
],
"src": "12439:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13035:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13045:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13057:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13068:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13053:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13053:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13045:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13092:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13103:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13088:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13088:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13111:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13117:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13107:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13107:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13081:6:8"
},
"nodeType": "YulFunctionCall",
"src": "13081:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "13081:47:8"
},
{
"nodeType": "YulAssignment",
"src": "13137:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13271:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13145:124:8"
},
"nodeType": "YulFunctionCall",
"src": "13145:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13137:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13015:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13030:4:8",
"type": ""
}
],
"src": "12864:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13460:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13470:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13482:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13493:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13478:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13478:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13470:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13517:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13528:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13513:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13513:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13536:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13542:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13532:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13532:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13506:6:8"
},
"nodeType": "YulFunctionCall",
"src": "13506:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "13506:47:8"
},
{
"nodeType": "YulAssignment",
"src": "13562:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13696:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13570:124:8"
},
"nodeType": "YulFunctionCall",
"src": "13570:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13562:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13440:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13455:4:8",
"type": ""
}
],
"src": "13289:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13885:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13895:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13907:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13918:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13903:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13903:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13895:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13942:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13953:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13938:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13938:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13961:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13967:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13957:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13957:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13931:6:8"
},
"nodeType": "YulFunctionCall",
"src": "13931:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "13931:47:8"
},
{
"nodeType": "YulAssignment",
"src": "13987:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14121:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13995:124:8"
},
"nodeType": "YulFunctionCall",
"src": "13995:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13987:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13865:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13880:4:8",
"type": ""
}
],
"src": "13714:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14310:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14320:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14332:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14343:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14328:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14328:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14320:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14367:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14378:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14363:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14363:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14386:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14392:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14382:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14382:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14356:6:8"
},
"nodeType": "YulFunctionCall",
"src": "14356:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "14356:47:8"
},
{
"nodeType": "YulAssignment",
"src": "14412:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14546:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14420:124:8"
},
"nodeType": "YulFunctionCall",
"src": "14420:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14412:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14290:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14305:4:8",
"type": ""
}
],
"src": "14139:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14735:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14745:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14757:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14768:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14753:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14753:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14745:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14792:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14803:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14788:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14788:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14811:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14817:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14807:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14807:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14781:6:8"
},
"nodeType": "YulFunctionCall",
"src": "14781:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "14781:47:8"
},
{
"nodeType": "YulAssignment",
"src": "14837:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14971:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14845:124:8"
},
"nodeType": "YulFunctionCall",
"src": "14845:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14837:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14715:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14730:4:8",
"type": ""
}
],
"src": "14564:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15087:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15097:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15109:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15120:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15105:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15105:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15097:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15177:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15190:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15201:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15186:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15186:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15133:43:8"
},
"nodeType": "YulFunctionCall",
"src": "15133:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "15133:71:8"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15059:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15071:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15082:4:8",
"type": ""
}
],
"src": "14989:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15311:120:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15321:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15333:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15344:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15329:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15329:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15321:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15397:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15410:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15421:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15406:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15406:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "15357:39:8"
},
"nodeType": "YulFunctionCall",
"src": "15357:67:8"
},
"nodeType": "YulExpressionStatement",
"src": "15357:67:8"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15283:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15295:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15306:4:8",
"type": ""
}
],
"src": "15217:214:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15496:40:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15507:22:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15523:5:8"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "15517:5:8"
},
"nodeType": "YulFunctionCall",
"src": "15517:12:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15507:6:8"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15479:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15489:6:8",
"type": ""
}
],
"src": "15437:99:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15638:73:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15655:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15660:6:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15648:6:8"
},
"nodeType": "YulFunctionCall",
"src": "15648:19:8"
},
"nodeType": "YulExpressionStatement",
"src": "15648:19:8"
},
{
"nodeType": "YulAssignment",
"src": "15676:29:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15695:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15700:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15691:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15691:14:8"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "15676:11:8"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15610:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15615:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "15626:11:8",
"type": ""
}
],
"src": "15542:169:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15761:261:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15771:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15794:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15776:17:8"
},
"nodeType": "YulFunctionCall",
"src": "15776:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15771:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15805:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15828:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15810:17:8"
},
"nodeType": "YulFunctionCall",
"src": "15810:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15805:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15968:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "15970:16:8"
},
"nodeType": "YulFunctionCall",
"src": "15970:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "15970:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15889:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15896:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15964:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15892:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15892:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15886:2:8"
},
"nodeType": "YulFunctionCall",
"src": "15886:81:8"
},
"nodeType": "YulIf",
"src": "15883:2:8"
},
{
"nodeType": "YulAssignment",
"src": "16000:16:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16011:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16014:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16007:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16007:9:8"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "16000:3:8"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15748:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15751:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "15757:3:8",
"type": ""
}
],
"src": "15717:305:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16073:146:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16083:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16106:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16088:17:8"
},
"nodeType": "YulFunctionCall",
"src": "16088:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16083:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16117:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16140:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16122:17:8"
},
"nodeType": "YulFunctionCall",
"src": "16122:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16117:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16164:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16166:16:8"
},
"nodeType": "YulFunctionCall",
"src": "16166:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "16166:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16158:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16161:1:8"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16155:2:8"
},
"nodeType": "YulFunctionCall",
"src": "16155:8:8"
},
"nodeType": "YulIf",
"src": "16152:2:8"
},
{
"nodeType": "YulAssignment",
"src": "16196:17:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16208:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16211:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16204:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16204:9:8"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "16196:4:8"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16059:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16062:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "16068:4:8",
"type": ""
}
],
"src": "16028:191:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16270:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16280:35:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16309:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "16291:17:8"
},
"nodeType": "YulFunctionCall",
"src": "16291:24:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16280:7:8"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16252:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16262:7:8",
"type": ""
}
],
"src": "16225:96:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16369:48:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16379:32:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16404:5:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16397:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16397:13:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16390:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16390:21:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16379:7:8"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16351:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16361:7:8",
"type": ""
}
],
"src": "16327:90:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16468:81:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16478:65:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16493:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16500:42:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16489:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16489:54:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16478:7:8"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16450:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16460:7:8",
"type": ""
}
],
"src": "16423:126:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16600:32:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16610:16:8",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "16621:5:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16610:7:8"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16582:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16592:7:8",
"type": ""
}
],
"src": "16555:77:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16681:43:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16691:27:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16706:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16713:4:8",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16702:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16702:16:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16691:7:8"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16663:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16673:7:8",
"type": ""
}
],
"src": "16638:86:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16779:258:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16789:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16798:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "16793:1:8",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16858:63:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "16883:3:8"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16888:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16879:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16879:11:8"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "16902:3:8"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16907:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16898:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16898:11:8"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "16892:5:8"
},
"nodeType": "YulFunctionCall",
"src": "16892:18:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16872:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16872:39:8"
},
"nodeType": "YulExpressionStatement",
"src": "16872:39:8"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16819:1:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16822:6:8"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16816:2:8"
},
"nodeType": "YulFunctionCall",
"src": "16816:13:8"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "16830:19:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16832:15:8",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16841:1:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16844:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16837:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16837:10:8"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16832:1:8"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "16812:3:8",
"statements": []
},
"src": "16808:113:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16955:76:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17005:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17010:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17001:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17001:16:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17019:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16994:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16994:27:8"
},
"nodeType": "YulExpressionStatement",
"src": "16994:27:8"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16936:1:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16939:6:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16933:2:8"
},
"nodeType": "YulFunctionCall",
"src": "16933:13:8"
},
"nodeType": "YulIf",
"src": "16930:2:8"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "16761:3:8",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "16766:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16771:6:8",
"type": ""
}
],
"src": "16730:307:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17094:269:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17104:22:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17118:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17124:1:8",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "17114:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17114:12:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17104:6:8"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17135:38:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17165:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17171:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17161:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17161:12:8"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "17139:18:8",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17212:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17226:27:8",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17240:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17248:4:8",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17236:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17236:17:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17226:6:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17192:18:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17185:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17185:26:8"
},
"nodeType": "YulIf",
"src": "17182:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17315:42:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "17329:16:8"
},
"nodeType": "YulFunctionCall",
"src": "17329:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "17329:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17279:18:8"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17302:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17310:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17299:2:8"
},
"nodeType": "YulFunctionCall",
"src": "17299:14:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17276:2:8"
},
"nodeType": "YulFunctionCall",
"src": "17276:38:8"
},
"nodeType": "YulIf",
"src": "17273:2:8"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "17078:4:8",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17087:6:8",
"type": ""
}
],
"src": "17043:320:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17397:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17414:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17417:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17407:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17407:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "17407:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17511:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17514:4:8",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17504:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17504:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17504:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17535:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17538:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17528:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17528:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17528:15:8"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "17369:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17583:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17600:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17603:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17593:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17593:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "17593:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17697:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17700:4:8",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17690:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17690:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17690:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17721:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17724:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17714:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17714:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17714:15:8"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "17555:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17789:54:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17799:38:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17817:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17824:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17813:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17813:14:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17833:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "17829:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17829:7:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17809:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17809:28:8"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "17799:6:8"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17772:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "17782:6:8",
"type": ""
}
],
"src": "17741:102:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17955:116:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17977:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17985:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17973:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17973:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17989:34:8",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17966:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17966:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "17966:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18045:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18053:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18041:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18041:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18058:5:8",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18034:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18034:30:8"
},
"nodeType": "YulExpressionStatement",
"src": "18034:30:8"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17947:6:8",
"type": ""
}
],
"src": "17849:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18183:64:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18205:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18213:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18201:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18201:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18217:22:8",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18194:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18194:46:8"
},
"nodeType": "YulExpressionStatement",
"src": "18194:46:8"
}
]
},
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18175:6:8",
"type": ""
}
],
"src": "18077:170:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18359:115:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18381:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18389:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18377:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18377:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18393:34:8",
"type": "",
"value": "ERC20: burn amount exceeds balan"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18370:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18370:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "18370:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18449:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18457:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18445:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18445:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18462:4:8",
"type": "",
"value": "ce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18438:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18438:29:8"
},
"nodeType": "YulExpressionStatement",
"src": "18438:29:8"
}
]
},
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18351:6:8",
"type": ""
}
],
"src": "18253:221:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18586:119:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18608:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18616:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18604:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18604:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18620:34:8",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18597:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18597:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "18597:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18676:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18684:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18672:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18672:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18689:8:8",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18665:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18665:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "18665:33:8"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18578:6:8",
"type": ""
}
],
"src": "18480:225:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18817:115:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18839:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18847:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18835:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18835:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18851:34:8",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18828:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18828:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "18828:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18907:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18915:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18903:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18903:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18920:4:8",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18896:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18896:29:8"
},
"nodeType": "YulExpressionStatement",
"src": "18896:29:8"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18809:6:8",
"type": ""
}
],
"src": "18711:221:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19044:119:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19066:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19074:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19062:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19062:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19078:34:8",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19055:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19055:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19055:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19134:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19142:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19130:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19130:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19147:8:8",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19123:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19123:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "19123:33:8"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19036:6:8",
"type": ""
}
],
"src": "18938:225:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19275:60:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19297:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19305:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19293:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19293:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19309:18:8",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19286:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19286:42:8"
},
"nodeType": "YulExpressionStatement",
"src": "19286:42:8"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19267:6:8",
"type": ""
}
],
"src": "19169:166:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19447:121:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19469:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19477:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19465:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19465:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19481:34:8",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19458:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19458:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19458:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19537:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19545:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19533:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19533:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19550:10:8",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19526:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19526:35:8"
},
"nodeType": "YulExpressionStatement",
"src": "19526:35:8"
}
]
},
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19439:6:8",
"type": ""
}
],
"src": "19341:227:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19680:76:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19702:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19710:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19698:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19698:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19714:34:8",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19691:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19691:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19691:58:8"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19672:6:8",
"type": ""
}
],
"src": "19574:182:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19868:117:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19890:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19898:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19886:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19886:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19902:34:8",
"type": "",
"value": "ERC20: burn amount exceeds allow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19879:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19879:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19879:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19958:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19966:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19954:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19954:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19971:6:8",
"type": "",
"value": "ance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19947:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19947:31:8"
},
"nodeType": "YulExpressionStatement",
"src": "19947:31:8"
}
]
},
"name": "store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19860:6:8",
"type": ""
}
],
"src": "19762:223:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20097:114:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20119:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20127:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20115:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20115:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20131:34:8",
"type": "",
"value": "ERC20: burn from the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20108:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20108:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20108:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20187:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20195:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20183:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20183:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20200:3:8",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20176:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20176:28:8"
},
"nodeType": "YulExpressionStatement",
"src": "20176:28:8"
}
]
},
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20089:6:8",
"type": ""
}
],
"src": "19991:220:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20323:118:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20345:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20353:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20341:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20341:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20357:34:8",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20334:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20334:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20334:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20413:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20421:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20409:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20409:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20426:7:8",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20402:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20402:32:8"
},
"nodeType": "YulExpressionStatement",
"src": "20402:32:8"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20315:6:8",
"type": ""
}
],
"src": "20217:224:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20553:117:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20575:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20583:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20571:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20571:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20587:34:8",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20564:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20564:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20564:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20643:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20651:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20639:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20639:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20656:6:8",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20632:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20632:31:8"
},
"nodeType": "YulExpressionStatement",
"src": "20632:31:8"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20545:6:8",
"type": ""
}
],
"src": "20447:223:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20782:118:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20804:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20812:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20800:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20800:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20816:34:8",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20793:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20793:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20793:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20872:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20880:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20868:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20868:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20885:7:8",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20861:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20861:32:8"
},
"nodeType": "YulExpressionStatement",
"src": "20861:32:8"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20774:6:8",
"type": ""
}
],
"src": "20676:224:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20949:79:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21006:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21015:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21018:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21008:6:8"
},
"nodeType": "YulFunctionCall",
"src": "21008:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "21008:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20972:5:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20997:5:8"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "20979:17:8"
},
"nodeType": "YulFunctionCall",
"src": "20979:24:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "20969:2:8"
},
"nodeType": "YulFunctionCall",
"src": "20969:35:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20962:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20962:43:8"
},
"nodeType": "YulIf",
"src": "20959:2:8"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20942:5:8",
"type": ""
}
],
"src": "20906:122:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21077:79:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21134:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21143:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21146:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21136:6:8"
},
"nodeType": "YulFunctionCall",
"src": "21136:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "21136:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21100:5:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21125:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21107:17:8"
},
"nodeType": "YulFunctionCall",
"src": "21107:24:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21097:2:8"
},
"nodeType": "YulFunctionCall",
"src": "21097:35:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21090:6:8"
},
"nodeType": "YulFunctionCall",
"src": "21090:43:8"
},
"nodeType": "YulIf",
"src": "21087:2:8"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21070:5:8",
"type": ""
}
],
"src": "21034:122:8"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\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(0, 0) }\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 abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\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 abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\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 abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_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(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\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_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_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\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_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(pos)\n end := add(pos, 64)\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_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_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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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_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 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 abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__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_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__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_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\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 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 function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\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 abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__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_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__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_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack( tail)\n\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 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 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 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_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 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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(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 if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\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 store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(memPtr, 32), \"ce\")\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\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 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 store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds allow\")\n\n mstore(add(memPtr, 32), \"ance\")\n\n }\n\n function store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\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 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 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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 8,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102d2578063a457c2d7146102f0578063a9059cbb14610320578063dd62ed3e14610350578063f2fde38b1461038057610121565b806370a0823114610254578063715018a61461028457806379cc67901461028e5780638456cb59146102aa5780638da5cb5b146102b457610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633f4ba83a1461021057806342966c681461021a5780635c975abb1461023657610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e61039c565b60405161013b91906118ed565b60405180910390f35b61015e600480360381019061015991906115f3565b61042e565b60405161016b91906118d2565b60405180910390f35b61017c61044c565b6040516101899190611acf565b60405180910390f35b6101ac60048036038101906101a791906115a4565b610456565b6040516101b991906118d2565b60405180910390f35b6101ca610557565b6040516101d79190611aea565b60405180910390f35b6101fa60048036038101906101f591906115f3565b610560565b60405161020791906118d2565b60405180910390f35b61021861060c565b005b610234600480360381019061022f919061162f565b610692565b005b61023e6106a6565b60405161024b91906118d2565b60405180910390f35b61026e6004803603810190610269919061153f565b6106bd565b60405161027b9190611acf565b60405180910390f35b61028c610705565b005b6102a860048036038101906102a391906115f3565b610842565b005b6102b26108c6565b005b6102bc61094c565b6040516102c991906118b7565b60405180910390f35b6102da610976565b6040516102e791906118ed565b60405180910390f35b61030a600480360381019061030591906115f3565b610a08565b60405161031791906118d2565b60405180910390f35b61033a600480360381019061033591906115f3565b610afc565b60405161034791906118d2565b60405180910390f35b61036a60048036038101906103659190611568565b610b1a565b6040516103779190611acf565b60405180910390f35b61039a6004803603810190610395919061153f565b610ba1565b005b6060600380546103ab90611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790611c33565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b600061044261043b610d52565b8484610d5a565b6001905092915050565b6000600254905090565b6000610463848484610f25565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ae610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610525906119ef565b60405180910390fd5b61054b8561053a610d52565b85846105469190611b77565b610d5a565b60019150509392505050565b60006012905090565b600061060261056d610d52565b84846001600061057b610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105fd9190611b21565b610d5a565b6001905092915050565b610614610d52565b73ffffffffffffffffffffffffffffffffffffffff1661063261094c565b73ffffffffffffffffffffffffffffffffffffffff1614610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611a0f565b60405180910390fd5b6106906111a4565b565b6106a361069d610d52565b82611246565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070d610d52565b73ffffffffffffffffffffffffffffffffffffffff1661072b61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061085583610850610d52565b610b1a565b90508181101561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611a2f565b60405180910390fd5b6108b7836108a6610d52565b84846108b29190611b77565b610d5a565b6108c18383611246565b505050565b6108ce610d52565b73ffffffffffffffffffffffffffffffffffffffff166108ec61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990611a0f565b60405180910390fd5b61094a61141a565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098590611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546109b190611c33565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b60008060016000610a17610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611aaf565b60405180910390fd5b610af1610adf610d52565b858584610aec9190611b77565b610d5a565b600191505092915050565b6000610b10610b09610d52565b8484610f25565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba9610d52565b73ffffffffffffffffffffffffffffffffffffffff16610bc761094c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061196f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190611a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061198f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f189190611acf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611a6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061190f565b60405180910390fd5b6110108383836114bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906119af565b60405180910390fd5b81816110a29190611b77565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111329190611b21565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111969190611acf565b60405180910390a350505050565b6111ac6106a6565b6111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061192f565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61122f610d52565b60405161123c91906118b7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90611a4f565b60405180910390fd5b6112c2826000836114bd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061194f565b60405180910390fd5b81816113549190611b77565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113a89190611b77565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140d9190611acf565b60405180910390a3505050565b6114226106a6565b15611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906119cf565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114a6610d52565b6040516114b391906118b7565b60405180910390a1565b6114c56106a6565b15611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906119cf565b60405180910390fd5b611510838383610d4d565b505050565b600081359050611524816120b4565b92915050565b600081359050611539816120cb565b92915050565b60006020828403121561155157600080fd5b600061155f84828501611515565b91505092915050565b6000806040838503121561157b57600080fd5b600061158985828601611515565b925050602061159a85828601611515565b9150509250929050565b6000806000606084860312156115b957600080fd5b60006115c786828701611515565b93505060206115d886828701611515565b92505060406115e98682870161152a565b9150509250925092565b6000806040838503121561160657600080fd5b600061161485828601611515565b92505060206116258582860161152a565b9150509250929050565b60006020828403121561164157600080fd5b600061164f8482850161152a565b91505092915050565b61166181611bab565b82525050565b61167081611bbd565b82525050565b600061168182611b05565b61168b8185611b10565b935061169b818560208601611c00565b6116a481611cc3565b840191505092915050565b60006116bc602383611b10565b91506116c782611cd4565b604082019050919050565b60006116df601483611b10565b91506116ea82611d23565b602082019050919050565b6000611702602283611b10565b915061170d82611d4c565b604082019050919050565b6000611725602683611b10565b915061173082611d9b565b604082019050919050565b6000611748602283611b10565b915061175382611dea565b604082019050919050565b600061176b602683611b10565b915061177682611e39565b604082019050919050565b600061178e601083611b10565b915061179982611e88565b602082019050919050565b60006117b1602883611b10565b91506117bc82611eb1565b604082019050919050565b60006117d4602083611b10565b91506117df82611f00565b602082019050919050565b60006117f7602483611b10565b915061180282611f29565b604082019050919050565b600061181a602183611b10565b915061182582611f78565b604082019050919050565b600061183d602583611b10565b915061184882611fc7565b604082019050919050565b6000611860602483611b10565b915061186b82612016565b604082019050919050565b6000611883602583611b10565b915061188e82612065565b604082019050919050565b6118a281611be9565b82525050565b6118b181611bf3565b82525050565b60006020820190506118cc6000830184611658565b92915050565b60006020820190506118e76000830184611667565b92915050565b600060208201905081810360008301526119078184611676565b905092915050565b60006020820190508181036000830152611928816116af565b9050919050565b60006020820190508181036000830152611948816116d2565b9050919050565b60006020820190508181036000830152611968816116f5565b9050919050565b6000602082019050818103600083015261198881611718565b9050919050565b600060208201905081810360008301526119a88161173b565b9050919050565b600060208201905081810360008301526119c88161175e565b9050919050565b600060208201905081810360008301526119e881611781565b9050919050565b60006020820190508181036000830152611a08816117a4565b9050919050565b60006020820190508181036000830152611a28816117c7565b9050919050565b60006020820190508181036000830152611a48816117ea565b9050919050565b60006020820190508181036000830152611a688161180d565b9050919050565b60006020820190508181036000830152611a8881611830565b9050919050565b60006020820190508181036000830152611aa881611853565b9050919050565b60006020820190508181036000830152611ac881611876565b9050919050565b6000602082019050611ae46000830184611899565b92915050565b6000602082019050611aff60008301846118a8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b2c82611be9565b9150611b3783611be9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b6c57611b6b611c65565b5b828201905092915050565b6000611b8282611be9565b9150611b8d83611be9565b925082821015611ba057611b9f611c65565b5b828203905092915050565b6000611bb682611bc9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c1e578082015181840152602081019050611c03565b83811115611c2d576000848401525b50505050565b60006002820490506001821680611c4b57607f821691505b60208210811415611c5f57611c5e611c94565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120bd81611bab565b81146120c857600080fd5b50565b6120d481611be9565b81146120df57600080fd5b5056fea2646970667358221220424b1412fd68d55f5352ed08e04c8ff2185fce7e874a3bf2e48b4afdacd4f6f464736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x380 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x254 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x2AA JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B4 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x236 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x39C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x42E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH2 0x44C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x15A4 JUMP JUMPDEST PUSH2 0x456 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B9 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x1AEA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x560 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x218 PUSH2 0x60C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x162F JUMP JUMPDEST PUSH2 0x692 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x23E PUSH2 0x6A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x269 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27B SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28C PUSH2 0x705 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x842 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH2 0x8C6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2BC PUSH2 0x94C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DA PUSH2 0x976 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xAFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x1568 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x377 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0xBA1 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3AB SWAP1 PUSH2 0x1C33 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 0x3D7 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x424 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x424 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x407 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x442 PUSH2 0x43B PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x463 DUP5 DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x4AE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x52E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x525 SWAP1 PUSH2 0x19EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x54B DUP6 PUSH2 0x53A PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x546 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x602 PUSH2 0x56D PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x57B PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5FD SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x614 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x632 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x688 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67F SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x690 PUSH2 0x11A4 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x6A3 PUSH2 0x69D PUSH2 0xD52 JUMP JUMPDEST DUP3 PUSH2 0x1246 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x70D PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x72B PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x781 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x778 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x855 DUP4 PUSH2 0x850 PUSH2 0xD52 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x89A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x891 SWAP1 PUSH2 0x1A2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B7 DUP4 PUSH2 0x8A6 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH2 0x8C1 DUP4 DUP4 PUSH2 0x1246 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8CE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8EC PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x942 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x939 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x94A PUSH2 0x141A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x985 SWAP1 PUSH2 0x1C33 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 0x9B1 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x9E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0xA17 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0xAD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACB SWAP1 PUSH2 0x1AAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAF1 PUSH2 0xADF PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAEC SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB10 PUSH2 0xB09 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA9 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBC7 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC1D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC14 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC84 SWAP1 PUSH2 0x196F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDCA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDC1 SWAP1 PUSH2 0x1A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE31 SWAP1 PUSH2 0x198F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0xF18 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF8C SWAP1 PUSH2 0x1A6F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1005 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFFC SWAP1 PUSH2 0x190F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1010 DUP4 DUP4 DUP4 PUSH2 0x14BD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1096 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x108D SWAP1 PUSH2 0x19AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x10A2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1132 SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1196 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x11AC PUSH2 0x6A6 JUMP JUMPDEST PUSH2 0x11EB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E2 SWAP1 PUSH2 0x192F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x122F PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x123C SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x12B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12AD SWAP1 PUSH2 0x1A4F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12C2 DUP3 PUSH1 0x0 DUP4 PUSH2 0x14BD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1348 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x133F SWAP1 PUSH2 0x194F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x1354 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x13A8 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x140D SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1422 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1462 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1459 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x14A6 PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B3 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x14C5 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1505 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14FC SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1510 DUP4 DUP4 DUP4 PUSH2 0xD4D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1524 DUP2 PUSH2 0x20B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1539 DUP2 PUSH2 0x20CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP5 DUP3 DUP6 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x157B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1589 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x159A DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15C7 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x15D8 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15E9 DUP7 DUP3 DUP8 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1606 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1614 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1625 DUP6 DUP3 DUP7 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1641 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164F DUP5 DUP3 DUP6 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1661 DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1670 DUP2 PUSH2 0x1BBD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1681 DUP3 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0x168B DUP2 DUP6 PUSH2 0x1B10 JUMP JUMPDEST SWAP4 POP PUSH2 0x169B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1C00 JUMP JUMPDEST PUSH2 0x16A4 DUP2 PUSH2 0x1CC3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16BC PUSH1 0x23 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16C7 DUP3 PUSH2 0x1CD4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DF PUSH1 0x14 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16EA DUP3 PUSH2 0x1D23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1702 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x170D DUP3 PUSH2 0x1D4C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1725 PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1730 DUP3 PUSH2 0x1D9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1748 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1753 DUP3 PUSH2 0x1DEA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176B PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1776 DUP3 PUSH2 0x1E39 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x178E PUSH1 0x10 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1799 DUP3 PUSH2 0x1E88 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B1 PUSH1 0x28 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17BC DUP3 PUSH2 0x1EB1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D4 PUSH1 0x20 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17DF DUP3 PUSH2 0x1F00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F7 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1802 DUP3 PUSH2 0x1F29 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x181A PUSH1 0x21 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1825 DUP3 PUSH2 0x1F78 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x183D PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1848 DUP3 PUSH2 0x1FC7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1860 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x186B DUP3 PUSH2 0x2016 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1883 PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x188E DUP3 PUSH2 0x2065 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18A2 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x18B1 DUP2 PUSH2 0x1BF3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18CC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1658 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1667 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1907 DUP2 DUP5 PUSH2 0x1676 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1928 DUP2 PUSH2 0x16AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1948 DUP2 PUSH2 0x16D2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1968 DUP2 PUSH2 0x16F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1988 DUP2 PUSH2 0x1718 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19A8 DUP2 PUSH2 0x173B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19C8 DUP2 PUSH2 0x175E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19E8 DUP2 PUSH2 0x1781 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A08 DUP2 PUSH2 0x17A4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A28 DUP2 PUSH2 0x17C7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A48 DUP2 PUSH2 0x17EA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A68 DUP2 PUSH2 0x180D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A88 DUP2 PUSH2 0x1830 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AA8 DUP2 PUSH2 0x1853 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AC8 DUP2 PUSH2 0x1876 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AE4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1899 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AFF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18A8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B2C DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B37 DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1B6C JUMPI PUSH2 0x1B6B PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B82 DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B8D DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1BA0 JUMPI PUSH2 0x1B9F PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB6 DUP3 PUSH2 0x1BC9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1C1E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1C03 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1C2D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1C4B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x1C94 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x20BD DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP2 EQ PUSH2 0x20C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x20D4 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP2 EQ PUSH2 0x20DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 TIMESTAMP 0x4B EQ SLT REVERT PUSH9 0xD55F5352ED08E04C8F CALLCODE XOR 0x5F 0xCE PUSH31 0x874A3BF2E48B4AFDACD4F6F464736F6C634300080400330000000000000000 ",
"sourceMap": "322:522:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4174:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3165:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3014:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5616:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;580:63:7;;;:::i;:::-;;487:89:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1042:84:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3329:125:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1700:145:0;;;:::i;:::-;;882:327:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;515:59:7;;;:::i;:::-;;1068:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2288:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6315:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3657:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3887:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1994:240:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2077:98:2;2131:13;2163:5;2156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98;:::o;4174:166::-;4257:4;4273:39;4282:12;:10;:12::i;:::-;4296:7;4305:6;4273:8;:39::i;:::-;4329:4;4322:11;;4174:166;;;;:::o;3165:106::-;3226:7;3252:12;;3245:19;;3165:106;:::o;4807:414::-;4913:4;4929:36;4939:6;4947:9;4958:6;4929:9;:36::i;:::-;4976:24;5003:11;:19;5015:6;5003:19;;;;;;;;;;;;;;;:33;5023:12;:10;:12::i;:::-;5003:33;;;;;;;;;;;;;;;;4976:60;;5074:6;5054:16;:26;;5046:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5135:57;5144:6;5152:12;:10;:12::i;:::-;5185:6;5166:16;:25;;;;:::i;:::-;5135:8;:57::i;:::-;5210:4;5203:11;;;4807:414;;;;;:::o;3014:91::-;3072:5;3096:2;3089:9;;3014:91;:::o;5616:212::-;5704:4;5720:80;5729:12;:10;:12::i;:::-;5743:7;5789:10;5752:11;:25;5764:12;:10;:12::i;:::-;5752:25;;;;;;;;;;;;;;;:34;5778:7;5752:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5720:8;:80::i;:::-;5817:4;5810:11;;5616:212;;;;:::o;580:63:7:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;626:10:7::1;:8;:10::i;:::-;580:63::o:0;487:89:4:-;542:27;548:12;:10;:12::i;:::-;562:6;542:5;:27::i;:::-;487:89;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;3329:125:2:-;3403:7;3429:9;:18;3439:7;3429:18;;;;;;;;;;;;;;;;3422:25;;3329:125;;;:::o;1700:145:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1806:1:::1;1769:40;;1790:6;;;;;;;;;;;1769:40;;;;;;;;;;;;1836:1;1819:6;;:19;;;;;;;;;;;;;;;;;;1700:145::o:0;882:327:4:-;958:24;985:32;995:7;1004:12;:10;:12::i;:::-;985:9;:32::i;:::-;958:59;;1055:6;1035:16;:26;;1027:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1112:58;1121:7;1130:12;:10;:12::i;:::-;1163:6;1144:16;:25;;;;:::i;:::-;1112:8;:58::i;:::-;1180:22;1186:7;1195:6;1180:5;:22::i;:::-;882:327;;;:::o;515:59:7:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;559:8:7::1;:6;:8::i;:::-;515:59::o:0;1068:85:0:-;1114:7;1140:6;;;;;;;;;;;1133:13;;1068:85;:::o;2288:102:2:-;2344:13;2376:7;2369:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:102;:::o;6315:371::-;6408:4;6424:24;6451:11;:25;6463:12;:10;:12::i;:::-;6451:25;;;;;;;;;;;;;;;:34;6477:7;6451:34;;;;;;;;;;;;;;;;6424:61;;6523:15;6503:16;:35;;6495:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6590:67;6599:12;:10;:12::i;:::-;6613:7;6641:15;6622:16;:34;;;;:::i;:::-;6590:8;:67::i;:::-;6675:4;6668:11;;;6315:371;;;;:::o;3657:172::-;3743:4;3759:42;3769:12;:10;:12::i;:::-;3783:9;3794:6;3759:9;:42::i;:::-;3818:4;3811:11;;3657:172;;;;:::o;3887:149::-;3976:7;4002:11;:18;4014:5;4002:18;;;;;;;;;;;;;;;:27;4021:7;4002:27;;;;;;;;;;;;;;;;3995:34;;3887:149;;;;:::o;1994:240:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2102:1:::1;2082:22;;:8;:22;;;;2074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2191:8;2162:38;;2183:6;;;;;;;;;;;2162:38;;;;;;;;;;;;2219:8;2210:6;;:17;;;;;;;;;;;;;;;;;;1994:240:::0;:::o;10506:92:2:-;;;;:::o;586:96:6:-;639:7;665:10;658:17;;586:96;:::o;9579:340:2:-;9697:1;9680:19;;:5;:19;;;;9672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9777:1;9758:21;;:7;:21;;;;9750:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9859:6;9829:11;:18;9841:5;9829:18;;;;;;;;;;;;;;;:27;9848:7;9829:27;;;;;;;;;;;;;;;:36;;;;9896:7;9880:32;;9889:5;9880:32;;;9905:6;9880:32;;;;;;:::i;:::-;;;;;;;;9579:340;;;:::o;7160:592::-;7283:1;7265:20;;:6;:20;;;;7257:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7366:1;7345:23;;:9;:23;;;;7337:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7419:47;7440:6;7448:9;7459:6;7419:20;:47::i;:::-;7477:21;7501:9;:17;7511:6;7501:17;;;;;;;;;;;;;;;;7477:41;;7553:6;7536:13;:23;;7528:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7648:6;7632:13;:22;;;;:::i;:::-;7612:9;:17;7622:6;7612:17;;;;;;;;;;;;;;;:42;;;;7688:6;7664:9;:20;7674:9;7664:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7727:9;7710:35;;7719:6;7710:35;;;7738:6;7710:35;;;;;;:::i;:::-;;;;;;;;7160:592;;;;:::o;2054:117:1:-;1621:8;:6;:8::i;:::-;1613:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2122:5:::1;2112:7;;:15;;;;;;;;;;;;;;;;;;2142:22;2151:12;:10;:12::i;:::-;2142:22;;;;;;:::i;:::-;;;;;;;;2054:117::o:0;8673:483:2:-;8775:1;8756:21;;:7;:21;;;;8748:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8826:49;8847:7;8864:1;8868:6;8826:20;:49::i;:::-;8886:22;8911:9;:18;8921:7;8911:18;;;;;;;;;;;;;;;;8886:43;;8965:6;8947:14;:24;;8939:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9058:6;9041:14;:23;;;;:::i;:::-;9020:9;:18;9030:7;9020:18;;;;;;;;;;;;;;;:44;;;;9090:6;9074:12;;:22;;;;;;;:::i;:::-;;;;;;;;9138:1;9112:37;;9121:7;9112:37;;;9142:6;9112:37;;;;;;:::i;:::-;;;;;;;;8673:483;;;:::o;1807:115:1:-;1356:8;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1876:4:::1;1866:7;;:14;;;;;;;;;;;;;;;;;;1895:20;1902:12;:10;:12::i;:::-;1895:20;;;;;;:::i;:::-;;;;;;;;1807:115::o:0;649:193:7:-;1356:8:1;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;791:44:7::1;818:4;824:2;828:6;791:26;:44::i;:::-;649:193:::0;;;:::o;7:139:8:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:170::-;18217:22;18213:1;18205:6;18201:14;18194:46;18183:64;:::o;18253:221::-;18393:34;18389:1;18381:6;18377:14;18370:58;18462:4;18457:2;18449:6;18445:15;18438:29;18359:115;:::o;18480:225::-;18620:34;18616:1;18608:6;18604:14;18597:58;18689:8;18684:2;18676:6;18672:15;18665:33;18586:119;:::o;18711:221::-;18851:34;18847:1;18839:6;18835:14;18828:58;18920:4;18915:2;18907:6;18903:15;18896:29;18817:115;:::o;18938:225::-;19078:34;19074:1;19066:6;19062:14;19055:58;19147:8;19142:2;19134:6;19130:15;19123:33;19044:119;:::o;19169:166::-;19309:18;19305:1;19297:6;19293:14;19286:42;19275:60;:::o;19341:227::-;19481:34;19477:1;19469:6;19465:14;19458:58;19550:10;19545:2;19537:6;19533:15;19526:35;19447:121;:::o;19574:182::-;19714:34;19710:1;19702:6;19698:14;19691:58;19680:76;:::o;19762:223::-;19902:34;19898:1;19890:6;19886:14;19879:58;19971:6;19966:2;19958:6;19954:15;19947:31;19868:117;:::o;19991:220::-;20131:34;20127:1;20119:6;20115:14;20108:58;20200:3;20195:2;20187:6;20183:15;20176:28;20097:114;:::o;20217:224::-;20357:34;20353:1;20345:6;20341:14;20334:58;20426:7;20421:2;20413:6;20409:15;20402:32;20323:118;:::o;20447:223::-;20587:34;20583:1;20575:6;20571:14;20564:58;20656:6;20651:2;20643:6;20639:15;20632:31;20553:117;:::o;20676:224::-;20816:34;20812:1;20804:6;20800:14;20793:58;20885:7;20880:2;20872:6;20868:15;20861:32;20782:118;:::o;20906:122::-;20979:24;20997:5;20979:24;:::i;:::-;20972:5;20969:35;20959:2;;21018:1;21015;21008:12;20959:2;20949:79;:::o;21034:122::-;21107:24;21125:5;21107:24;:::i;:::-;21100:5;21097:35;21087:2;;21146:1;21143;21136:12;21087:2;21077:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1694400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1564",
"burn(uint256)": "infinite",
"burnFrom(address,uint256)": "infinite",
"decimals()": "366",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "1383",
"pause()": "infinite",
"paused()": "1290",
"renounceOwnership()": "24527",
"symbol()": "infinite",
"totalSupply()": "1205",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "24941",
"unpause()": "infinite"
},
"internal": {
"_beforeTokenTransfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"unpause()": "3f4ba83a"
}
},
"abi": [
{
"inputs": [],
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"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}."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"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 overridden; 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."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-02fb053cab.sol": "PublicHappiness"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.1.0/access/Ownable.sol": {
"keccak256": "0x1cae4f85f114ff17b90414f5da67365b1d00337abb5bce9bf944eb78a2c0673c",
"license": "MIT",
"urls": [
"bzz-raw://d5ff16b336ce8f906478d5f2eecc6435e00833bdc0b92f6b209cf9e92cb5b2b7",
"dweb:/ipfs/QmRD1rAZEqQ73C33cdA3QoUyBDMEWnNKNMc6PNkAZWHeQQ"
]
},
"@openzeppelin/contracts@4.1.0/security/Pausable.sol": {
"keccak256": "0xab1f67e4c96dfe0e3875d22883c3dee5411914f40ce0c54ef407f030d803512e",
"license": "MIT",
"urls": [
"bzz-raw://b651c0571e3ecc124b3af7a598357a19406969b21b8a3fa06eeaf5e5c9150d6c",
"dweb:/ipfs/QmPfcAhbGVfsSd7VKet77fuST397b7XSFU2myXxLdok79v"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol": {
"keccak256": "0xfeccdcbf67b2006a715e5af1a4c7556004d95b2806552b5cc54e46e8eb7e887b",
"license": "MIT",
"urls": [
"bzz-raw://45b1f9043c0fb450272f20ed19ef633fcba1b129d602651a856dfae1a2243a2c",
"dweb:/ipfs/QmUTSQiDikkcNtTtyDpkEwCM5ztVUUh9c1inBukn6HC5Vr"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol": {
"keccak256": "0xb8cc16fa5514ccbff1123c566ec0a21682f1ded0ca7e5df719c6bd0b7429390a",
"license": "MIT",
"urls": [
"bzz-raw://80a57501e3b11616e3e252ee40b4479dc09f831a9aaf83224179eb1ccd54b7eb",
"dweb:/ipfs/QmZcREGkEbu9NoMiYXrXdJBAWNfeC41uM13rFaVL9VQafS"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2",
"license": "MIT",
"urls": [
"bzz-raw://d4c3df1a7ca104b633a7d81c6c6f5192367d150cd5a32cba81f7f27012729013",
"dweb:/ipfs/QmSim72e3ZVsfgZt8UceCvbiSuMRHR6WDsiamqNzZahGSY"
]
},
"@openzeppelin/contracts@4.1.0/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"contract-02fb053cab.sol": {
"keccak256": "0x08f4ecb09b0f0fa4b01bccc3fb0eb161fd9030efbd35982db8a84397a8ff3399",
"license": "MIT",
"urls": [
"bzz-raw://31f57309cda1c7f89094a5a7d24125808bb2a2b2be827c9acc97d3a989e69b40",
"dweb:/ipfs/QmUb5MFU3fnoRuExbdeAcAeTF7vWbhFapPDHxB6Yp61Hhp"
]
}
},
"version": 1
}
{
"accounts": {},
"linkReferences": {},
"transactions": [],
"abis": {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts@4.1.0/security/Pausable.sol";
import "@openzeppelin/contracts@4.1.0/access/Ownable.sol";
contract PublicHappiness is ERC20, ERC20Burnable, Pausable, Ownable {
constructor() ERC20("Public Happiness", "PHAT") {
_mint(msg.sender, 7900000000 * 10 ** decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from, to, amount);
}
}
This file has been truncated, but you can view the full file.
PK
pr�R remixbackup/PK
pr�Rremixbackup/.workspaces/PK
pr�R*remixbackup/.workspaces/default_workspace/PK
pr�R4remixbackup/.workspaces/default_workspace/contracts/PK
pr�R�����Aremixbackup/.workspaces/default_workspace/contracts/1_Storage.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}PK
pr�RT��\��?remixbackup/.workspaces/default_workspace/contracts/2_Owner.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}PK
pr�R(Ǩ�@remixbackup/.workspaces/default_workspace/contracts/3_Ballot.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
PK
pr�R2remixbackup/.workspaces/default_workspace/scripts/PK
pr�RҾjR��@remixbackup/.workspaces/default_workspace/scripts/deploy_web3.js// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
let contract = new web3.eth.Contract(metadata.abi)
contract = contract.deploy({
data: metadata.data.bytecode.object,
arguments: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()PK
pr�R��^�Bremixbackup/.workspaces/default_workspace/scripts/deploy_ethers.js// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner()
let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer);
let contract = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()PK
pr�R0remixbackup/.workspaces/default_workspace/tests/PK
pr�Rj�i�ffAremixbackup/.workspaces/default_workspace/tests/4_Ballot_test.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
PK
pr�R�)I���4remixbackup/.workspaces/default_workspace/README.txtREMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
PK
pr�R"remixbackup/.workspaces/PHM-Token/PK
pr�R,remixbackup/.workspaces/PHM-Token/contracts/PK
pr�R�����9remixbackup/.workspaces/PHM-Token/contracts/1_Storage.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}PK
pr�RT��\��7remixbackup/.workspaces/PHM-Token/contracts/2_Owner.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}PK
pr�R(Ǩ�8remixbackup/.workspaces/PHM-Token/contracts/3_Ballot.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
PK
pr�R*remixbackup/.workspaces/PHM-Token/scripts/PK
pr�RҾjR��8remixbackup/.workspaces/PHM-Token/scripts/deploy_web3.js// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
let contract = new web3.eth.Contract(metadata.abi)
contract = contract.deploy({
data: metadata.data.bytecode.object,
arguments: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()PK
pr�R��^�:remixbackup/.workspaces/PHM-Token/scripts/deploy_ethers.js// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner()
let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer);
let contract = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()PK
pr�R(remixbackup/.workspaces/PHM-Token/tests/PK
pr�Rj�i�ff9remixbackup/.workspaces/PHM-Token/tests/4_Ballot_test.sol// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
PK
pr�R�)I���,remixbackup/.workspaces/PHM-Token/README.txtREMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
PK
pr�R$remixbackup/.workspaces/code-sample/PK
pr�R����MM@remixbackup/.workspaces/code-sample/contract-publichappiness.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts@4.1.0/security/Pausable.sol";
import "@openzeppelin/contracts@4.1.0/access/Ownable.sol";
contract PublicHappiness is ERC20, ERC20Burnable, Pausable, Ownable {
constructor() ERC20("Public Happiness", "PHAT") {
_mint(msg.sender, 7900000000 * 10 ** decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from, to, amount);
}
}
PK
pr�R*remixbackup/.workspaces/code-sample/.deps/PK
pr�R.remixbackup/.workspaces/code-sample/.deps/npm/PK
pr�R<remixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/PK
pr�RLremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/PK
pr�RSremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/access/PK
pr�R����^remixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/access/Ownable.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
PK
pr�RUremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/security/PK
pr�R*�I�~~aremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/security/Pausable.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
PK
pr�RRremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/PK
pr�RXremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/PK
pr�Rcremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/extensions/PK
pr�R�Gy���tremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), currentAllowance - amount);
_burn(account, amount);
}
}
PK
pr�RK�P^^uremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/extensions/IERC20Metadata.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
PK
pr�R8)`�i)i)aremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.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, IERC20Metadata {
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 two 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 override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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
* overridden;
*
* 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 override 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 { }
}
PK
pr�R�l���
bremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol// 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);
}
PK
pr�RRremixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/utils/PK
pr�RbM����]remixbackup/.workspaces/code-sample/.deps/npm/@openzeppelin/contracts@4.1.0/utils/Context.sol// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
PK
pr�R.remixbackup/.workspaces/code-sample/artifacts/PK
pr�Rw��qM7M7Kremixbackup/.workspaces/code-sample/artifacts/PublicHappiness_metadata.json{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"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}."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"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 overridden; 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."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-publichappiness.sol": "PublicHappiness"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.1.0/access/Ownable.sol": {
"keccak256": "0x1cae4f85f114ff17b90414f5da67365b1d00337abb5bce9bf944eb78a2c0673c",
"license": "MIT",
"urls": [
"bzz-raw://d5ff16b336ce8f906478d5f2eecc6435e00833bdc0b92f6b209cf9e92cb5b2b7",
"dweb:/ipfs/QmRD1rAZEqQ73C33cdA3QoUyBDMEWnNKNMc6PNkAZWHeQQ"
]
},
"@openzeppelin/contracts@4.1.0/security/Pausable.sol": {
"keccak256": "0xab1f67e4c96dfe0e3875d22883c3dee5411914f40ce0c54ef407f030d803512e",
"license": "MIT",
"urls": [
"bzz-raw://b651c0571e3ecc124b3af7a598357a19406969b21b8a3fa06eeaf5e5c9150d6c",
"dweb:/ipfs/QmPfcAhbGVfsSd7VKet77fuST397b7XSFU2myXxLdok79v"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol": {
"keccak256": "0xfeccdcbf67b2006a715e5af1a4c7556004d95b2806552b5cc54e46e8eb7e887b",
"license": "MIT",
"urls": [
"bzz-raw://45b1f9043c0fb450272f20ed19ef633fcba1b129d602651a856dfae1a2243a2c",
"dweb:/ipfs/QmUTSQiDikkcNtTtyDpkEwCM5ztVUUh9c1inBukn6HC5Vr"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol": {
"keccak256": "0xb8cc16fa5514ccbff1123c566ec0a21682f1ded0ca7e5df719c6bd0b7429390a",
"license": "MIT",
"urls": [
"bzz-raw://80a57501e3b11616e3e252ee40b4479dc09f831a9aaf83224179eb1ccd54b7eb",
"dweb:/ipfs/QmZcREGkEbu9NoMiYXrXdJBAWNfeC41uM13rFaVL9VQafS"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2",
"license": "MIT",
"urls": [
"bzz-raw://d4c3df1a7ca104b633a7d81c6c6f5192367d150cd5a32cba81f7f27012729013",
"dweb:/ipfs/QmSim72e3ZVsfgZt8UceCvbiSuMRHR6WDsiamqNzZahGSY"
]
},
"@openzeppelin/contracts@4.1.0/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"contract-publichappiness.sol": {
"keccak256": "0x08f4ecb09b0f0fa4b01bccc3fb0eb161fd9030efbd35982db8a84397a8ff3399",
"license": "MIT",
"urls": [
"bzz-raw://31f57309cda1c7f89094a5a7d24125808bb2a2b2be827c9acc97d3a989e69b40",
"dweb:/ipfs/QmUb5MFU3fnoRuExbdeAcAeTF7vWbhFapPDHxB6Yp61Hhp"
]
}
},
"version": 1
}PK
pr�R��JdJ�J�Bremixbackup/.workspaces/code-sample/artifacts/PublicHappiness.json{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6350:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:8",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:8"
},
"nodeType": "YulFunctionCall",
"src": "170:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "246:88:8"
},
"nodeType": "YulFunctionCall",
"src": "246:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:8"
},
{
"nodeType": "YulAssignment",
"src": "348:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:8"
},
"nodeType": "YulFunctionCall",
"src": "355:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:8",
"type": ""
}
],
"src": "7:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "525:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "535:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "601:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "606:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "542:58:8"
},
"nodeType": "YulFunctionCall",
"src": "542:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "535:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "707:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "618:88:8"
},
"nodeType": "YulFunctionCall",
"src": "618:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "618:93:8"
},
{
"nodeType": "YulAssignment",
"src": "720:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:8"
},
"nodeType": "YulFunctionCall",
"src": "727:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "720:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "513:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "521:3:8",
"type": ""
}
],
"src": "379:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "816:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "856:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "838:17:8"
},
"nodeType": "YulFunctionCall",
"src": "838:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "826:6:8"
},
"nodeType": "YulFunctionCall",
"src": "826:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "826:37:8"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "804:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "811:3:8",
"type": ""
}
],
"src": "751:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1056:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1068:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1079:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1064:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1064:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1056:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1103:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1114:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1099:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1122:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1128:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1118:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1118:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1092:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1092:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "1092:47:8"
},
{
"nodeType": "YulAssignment",
"src": "1148:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1282:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1156:124:8"
},
"nodeType": "YulFunctionCall",
"src": "1156:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1148:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1026:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1041:4:8",
"type": ""
}
],
"src": "875:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1471:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1481:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1493:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1504:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1489:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1489:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1481:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1528:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1524:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1524:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1547:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1553:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1543:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1543:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1517:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1517:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "1517:47:8"
},
{
"nodeType": "YulAssignment",
"src": "1573:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1707:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1581:124:8"
},
"nodeType": "YulFunctionCall",
"src": "1581:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1573:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1451:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1466:4:8",
"type": ""
}
],
"src": "1300:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1823:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1833:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1845:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1841:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1841:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1833:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1913:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1937:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1922:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1869:43:8"
},
"nodeType": "YulFunctionCall",
"src": "1869:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "1869:71:8"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1795:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1807:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1818:4:8",
"type": ""
}
],
"src": "1725:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2049:73:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2066:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2071:6:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2059:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2059:19:8"
},
"nodeType": "YulExpressionStatement",
"src": "2059:19:8"
},
{
"nodeType": "YulAssignment",
"src": "2087:29:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2106:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2111:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2102:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2102:14:8"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2087:11:8"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2021:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2026:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2037:11:8",
"type": ""
}
],
"src": "1953:169:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2172:261:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2182:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2205:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2187:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2187:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2182:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2216:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2239:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2221:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2221:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2216:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2379:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2381:16:8"
},
"nodeType": "YulFunctionCall",
"src": "2381:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "2381:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2300:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2307:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2375:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2303:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2303:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2297:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2297:81:8"
},
"nodeType": "YulIf",
"src": "2294:2:8"
},
{
"nodeType": "YulAssignment",
"src": "2411:16:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2422:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2425:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2418:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2418:9:8"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2411:3:8"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2159:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2162:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2168:3:8",
"type": ""
}
],
"src": "2128:305:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2512:775:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2522:15:8",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "2531:6:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2522:5:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2546:14:8",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "2555:5:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2546:4:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:677:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2692:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2694:16:8"
},
"nodeType": "YulFunctionCall",
"src": "2694:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "2694:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2670:4:8"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2680:3:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2685:4:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2676:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2676:14:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2667:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2667:24:8"
},
"nodeType": "YulIf",
"src": "2664:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2759:419:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3139:25:8",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3152:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3159:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3148:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3148:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3139:5:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2734:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2744:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2730:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2730:16:8"
},
"nodeType": "YulIf",
"src": "2727:2:8"
},
{
"nodeType": "YulAssignment",
"src": "3191:23:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3203:4:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3209:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3199:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3199:15:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3191:4:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3227:44:8",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3262:8:8"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "3239:22:8"
},
"nodeType": "YulFunctionCall",
"src": "3239:32:8"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3227:8:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2580:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2590:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2577:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2577:15:8"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2593:2:8",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "2573:3:8",
"statements": []
},
"src": "2569:712:8"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "2467:6:8",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "2475:5:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2482:8:8",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2492:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2500:5:8",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2507:4:8",
"type": ""
}
],
"src": "2439:848:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3357:217:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3367:31:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3393:4:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3375:17:8"
},
"nodeType": "YulFunctionCall",
"src": "3375:23:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3367:4:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3407:37:8",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3435:8:8"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "3419:15:8"
},
"nodeType": "YulFunctionCall",
"src": "3419:25:8"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3407:8:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3454:113:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3484:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3490:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3500:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3463:20:8"
},
"nodeType": "YulFunctionCall",
"src": "3463:104:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3454:5:8"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3332:4:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3338:8:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3351:5:8",
"type": ""
}
],
"src": "3293:281:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3640:1013:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3835:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3837:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3846:1:8",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3837:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "3848:5:8"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3825:8:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3818:6:8"
},
"nodeType": "YulFunctionCall",
"src": "3818:16:8"
},
"nodeType": "YulIf",
"src": "3815:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3880:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3882:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3891:1:8",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3882:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "3893:5:8"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3874:4:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3867:6:8"
},
"nodeType": "YulFunctionCall",
"src": "3867:12:8"
},
"nodeType": "YulIf",
"src": "3864:2:8"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4010:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4012:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4021:1:8",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4012:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "4023:5:8"
}
]
},
"nodeType": "YulCase",
"src": "4003:27:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:1:8",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "4054:176:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4089:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4091:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4091:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4091:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4074:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4084:3:8",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4071:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:8"
},
"nodeType": "YulIf",
"src": "4068:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4124:25:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:1:8",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4140:8:8"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4133:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4133:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4124:5:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4182:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4182:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4182:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4168:5:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4175:3:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4165:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4165:14:8"
},
"nodeType": "YulIf",
"src": "4162:2:8"
},
{
"nodeType": "YulLeave",
"src": "4215:5:8"
}
]
},
"nodeType": "YulCase",
"src": "4039:191:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4044:1:8",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3960:4:8"
},
"nodeType": "YulSwitch",
"src": "3953:277:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4362:123:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4376:28:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4389:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4395:8:8"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4385:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4385:19:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4376:5:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4435:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4437:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4437:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4437:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4423:5:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4430:3:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4420:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4420:14:8"
},
"nodeType": "YulIf",
"src": "4417:2:8"
},
{
"nodeType": "YulLeave",
"src": "4470:5:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4265:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4271:2:8",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4262:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4262:12:8"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4279:8:8"
},
{
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment