Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HoneyIsMoney/38a8992f6bbfac7d2e8c32c95dcbaaae to your computer and use it in GitHub Desktop.
Save HoneyIsMoney/38a8992f6bbfac7d2e8c32c95dcbaaae 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.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
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() {
_transferOwnership(_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 {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
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 Contracts guidelines: functions revert
* instead 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 default 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, 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) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][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) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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:
*
* - `account` 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);
_afterTokenTransfer(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");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(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 Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - 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 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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
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
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
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
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
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) {
return msg.data;
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads for the 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.
{
"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": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"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.9+commit.e5eed63a"
},
"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": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Vesting.sol": "IERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/Vesting.sol": {
"keccak256": "0x7bd52a3ef52381e92a9dc833e57800e23e2352f613cac63e207089a18e7a327c",
"license": "MIT",
"urls": [
"bzz-raw://e5df2eb4483a49a4a37a29232f840c32e2a324857f7fd64e77540c59a7bf57c6",
"dweb:/ipfs/QmRkcJFuhuEviRXgwpEwGcVBENygTGFNeFeq4q8ZLMvYh3"
]
}
},
"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": {
"functionDebugData": {
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_240": {
"entryPoint": null,
"id": 240,
"parameterSlots": 5,
"returnSlots": 0
},
"@_msgSender_116": {
"entryPoint": 532,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 540,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 819,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 878,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256_fromMemory": {
"entryPoint": 901,
"id": null,
"parameterSlots": 2,
"returnSlots": 5
},
"abi_encode_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1539,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1133,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1247,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1578,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1172,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1286,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1037,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1367,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 773,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 741,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 842,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1320,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 736,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d": {
"entryPoint": 1460,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111": {
"entryPoint": 1054,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42": {
"entryPoint": 1206,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 793,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 852,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5888:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:3"
},
"nodeType": "YulFunctionCall",
"src": "400:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:3",
"type": ""
}
],
"src": "334:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "532:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:3",
"type": ""
}
],
"src": "466:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:3"
},
"nodeType": "YulFunctionCall",
"src": "670:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:3"
},
"nodeType": "YulFunctionCall",
"src": "641:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:3"
},
"nodeType": "YulFunctionCall",
"src": "631:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:3"
},
"nodeType": "YulFunctionCall",
"src": "624:43:3"
},
"nodeType": "YulIf",
"src": "621:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:3",
"type": ""
}
],
"src": "568:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "759:80:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "769:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "784:6:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "778:5:3"
},
"nodeType": "YulFunctionCall",
"src": "778:13:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "769:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "827:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "800:26:3"
},
"nodeType": "YulFunctionCall",
"src": "800:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "800:33:3"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "737:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "745:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "753:5:3",
"type": ""
}
],
"src": "696:143:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "890:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "900:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "911:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "900:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "872:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "882:7:3",
"type": ""
}
],
"src": "845:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "971:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1028:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1037:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1040:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1030:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1030:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1030:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "994:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1019:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1001:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1001:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "991:2:3"
},
"nodeType": "YulFunctionCall",
"src": "991:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "984:6:3"
},
"nodeType": "YulFunctionCall",
"src": "984:43:3"
},
"nodeType": "YulIf",
"src": "981:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "964:5:3",
"type": ""
}
],
"src": "928:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1119:80:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1129:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1144:6:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1138:5:3"
},
"nodeType": "YulFunctionCall",
"src": "1138:13:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1129:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1187:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1160:26:3"
},
"nodeType": "YulFunctionCall",
"src": "1160:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "1160:33:3"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1097:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1105:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1113:5:3",
"type": ""
}
],
"src": "1056:143:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1350:832:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1397:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1399:77:3"
},
"nodeType": "YulFunctionCall",
"src": "1399:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "1399:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1371:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1380:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1367:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1367:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1392:3:3",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1363:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1363:33:3"
},
"nodeType": "YulIf",
"src": "1360:120:3"
},
{
"nodeType": "YulBlock",
"src": "1490:128:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1505:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1519:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1509:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1534:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1580:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1591:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1576:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1576:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1600:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1544:31:3"
},
"nodeType": "YulFunctionCall",
"src": "1544:64:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1534:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1628:129:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1643:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1657:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1647:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1673:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1719:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1730:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1715:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1715:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1739:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1683:31:3"
},
"nodeType": "YulFunctionCall",
"src": "1683:64:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1673:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1767:129:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1782:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1796:2:3",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1786:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1812:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1858:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1869:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1854:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1854:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1878:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "1822:31:3"
},
"nodeType": "YulFunctionCall",
"src": "1822:64:3"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1812:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1906:129:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1921:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1935:2:3",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1925:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1951:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1997:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2008:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1993:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1993:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2017:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "1961:31:3"
},
"nodeType": "YulFunctionCall",
"src": "1961:64:3"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1951:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2045:130:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2060:17:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2074:3:3",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2064:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2091:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2137:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2148:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2133:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2133:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2157:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "2101:31:3"
},
"nodeType": "YulFunctionCall",
"src": "2101:64:3"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2091:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1288:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1299:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1311:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1319:6:3",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1327:6:3",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1335:6:3",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1343:6:3",
"type": ""
}
],
"src": "1205:977:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2284:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2301:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2306:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2294:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2294:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "2294:19:3"
},
{
"nodeType": "YulAssignment",
"src": "2322:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2341:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2346:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2337:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2322:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2256:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2261:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2272:11:3",
"type": ""
}
],
"src": "2188:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2469:117:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2491:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2499:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2487:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2487:14:3"
},
{
"hexValue": "56657374696e673a20636c696666206973206c6f6e676572207468616e206669",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2503:34:3",
"type": "",
"value": "Vesting: cliff is longer than fi"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2480:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2480:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "2480:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2559:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2567:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2555:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2555:15:3"
},
{
"hexValue": "6e697368",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2572:6:3",
"type": "",
"value": "nish"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2548:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2548:31:3"
},
"nodeType": "YulExpressionStatement",
"src": "2548:31:3"
}
]
},
"name": "store_literal_in_memory_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2461:6:3",
"type": ""
}
],
"src": "2363:223:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2738:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2748:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2814:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2819:2:3",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2755:58:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2748:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2920:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111",
"nodeType": "YulIdentifier",
"src": "2831:88:3"
},
"nodeType": "YulFunctionCall",
"src": "2831:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "2831:93:3"
},
{
"nodeType": "YulAssignment",
"src": "2933:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2944:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2949:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2940:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2940:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2933:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2726:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2734:3:3",
"type": ""
}
],
"src": "2592:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3145:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3157:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3168:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3153:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3153:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3145:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3192:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3203:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3188:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3188:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3211:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3217:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3207:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3207:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3181:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3181:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "3181:47:3"
},
{
"nodeType": "YulAssignment",
"src": "3237:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3371:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3245:124:3"
},
"nodeType": "YulFunctionCall",
"src": "3245:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3237:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3115:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3130:4:3",
"type": ""
}
],
"src": "2964:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3495:64:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3517:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3525:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3513:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3513:14:3"
},
{
"hexValue": "56657374696e673a2066696e6973682069732030",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3529:22:3",
"type": "",
"value": "Vesting: finish is 0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3506:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3506:46:3"
},
"nodeType": "YulExpressionStatement",
"src": "3506:46:3"
}
]
},
"name": "store_literal_in_memory_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3487:6:3",
"type": ""
}
],
"src": "3389:170:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3711:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3721:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3787:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3792:2:3",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3728:58:3"
},
"nodeType": "YulFunctionCall",
"src": "3728:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3721:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3893:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42",
"nodeType": "YulIdentifier",
"src": "3804:88:3"
},
"nodeType": "YulFunctionCall",
"src": "3804:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "3804:93:3"
},
{
"nodeType": "YulAssignment",
"src": "3906:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3917:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3922:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3913:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3913:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3906:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3699:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3707:3:3",
"type": ""
}
],
"src": "3565:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4108:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4118:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4130:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4141:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4126:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4126:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4118:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4165:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4176:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4161:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4161:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4184:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4190:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4180:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4180:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4154:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4154:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "4154:47:3"
},
{
"nodeType": "YulAssignment",
"src": "4210:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4344:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4218:124:3"
},
"nodeType": "YulFunctionCall",
"src": "4218:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4210:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4088:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4103:4:3",
"type": ""
}
],
"src": "3937:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4390:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4407:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4410:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4400:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4400:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "4400:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4504:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4507:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4497:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4497:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "4497:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4528:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4531:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4521:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4521:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "4521:15:3"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4362:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4592:261:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4602:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4625:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4607:17:3"
},
"nodeType": "YulFunctionCall",
"src": "4607:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4602:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4636:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4659:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4641:17:3"
},
"nodeType": "YulFunctionCall",
"src": "4641:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4636:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4799:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4801:16:3"
},
"nodeType": "YulFunctionCall",
"src": "4801:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "4801:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4720:1:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4727:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4795:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4723:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4723:74:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4717:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4717:81:3"
},
"nodeType": "YulIf",
"src": "4714:107:3"
},
{
"nodeType": "YulAssignment",
"src": "4831:16:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4842:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4845:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4838:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4838:9:3"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4831:3:3"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4579:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4582:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4588:3:3",
"type": ""
}
],
"src": "4548:305:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4965:123:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4987:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4995:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4983:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4983:14:3"
},
{
"hexValue": "56657374696e673a2066696e616c2074696d65206973206265666f7265206375",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4999:34:3",
"type": "",
"value": "Vesting: final time is before cu"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4976:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4976:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "4976:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5055:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5063:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5051:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5051:15:3"
},
{
"hexValue": "7272656e742074696d65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5068:12:3",
"type": "",
"value": "rrent time"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5044:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5044:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "5044:37:3"
}
]
},
"name": "store_literal_in_memory_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4957:6:3",
"type": ""
}
],
"src": "4859:229:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5240:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5250:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5316:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5321:2:3",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5257:58:3"
},
"nodeType": "YulFunctionCall",
"src": "5257:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5250:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5422:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d",
"nodeType": "YulIdentifier",
"src": "5333:88:3"
},
"nodeType": "YulFunctionCall",
"src": "5333:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "5333:93:3"
},
{
"nodeType": "YulAssignment",
"src": "5435:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5446:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5451:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5442:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5442:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5435:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5228:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5236:3:3",
"type": ""
}
],
"src": "5094:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5637:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5647:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5659:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5670:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5655:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5655:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5647:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5694:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5705:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5690:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5690:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5713:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5719:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5709:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5709:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5683:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5683:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "5683:47:3"
},
{
"nodeType": "YulAssignment",
"src": "5739:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5873:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5747:124:3"
},
"nodeType": "YulFunctionCall",
"src": "5747:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5739:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5617:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5632:4:3",
"type": ""
}
],
"src": "5466:419:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: cliff is longer than fi\")\n\n mstore(add(memPtr, 32), \"nish\")\n\n }\n\n function abi_encode_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111__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_3449a10dcd26bd0d1ed18bfc16a62af78ce4fd75d175b021aa5fe363eb480111_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: finish is 0\")\n\n }\n\n function abi_encode_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42__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_8e904dbb0cf673604de17b76c5a33d222a52962ff699a4c4909994da7a23cf42_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_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 store_literal_in_memory_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: final time is before cu\")\n\n mstore(add(memPtr, 32), \"rrent time\")\n\n }\n\n function abi_encode_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d__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_21db3f221bfb862fcc1841c8b6526e09749e0917d6741f0a85e841c7d7a38d0d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162001be038038062001be0833981810160405281019062000037919062000385565b620000576200004b6200021460201b60201c565b6200021c60201b60201c565b808211156200009d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000949062000494565b60405180910390fd5b60008111620000e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000da9062000506565b60405180910390fd5b428184620000f2919062000557565b1162000135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012c906200062a565b60405180910390fd5b84600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260018190555081836200018b919062000557565b60028190555080836200019f919062000557565b60038190555060006007819055506000600860006101000a81548160ff02191690831515021790555083600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050506200064c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200031282620002e5565b9050919050565b620003248162000305565b81146200033057600080fd5b50565b600081519050620003448162000319565b92915050565b6000819050919050565b6200035f816200034a565b81146200036b57600080fd5b50565b6000815190506200037f8162000354565b92915050565b600080600080600060a08688031215620003a457620003a3620002e0565b5b6000620003b48882890162000333565b9550506020620003c78882890162000333565b9450506040620003da888289016200036e565b9350506060620003ed888289016200036e565b925050608062000400888289016200036e565b9150509295509295909350565b600082825260208201905092915050565b7f56657374696e673a20636c696666206973206c6f6e676572207468616e20666960008201527f6e69736800000000000000000000000000000000000000000000000000000000602082015250565b60006200047c6024836200040d565b915062000489826200041e565b604082019050919050565b60006020820190508181036000830152620004af816200046d565b9050919050565b7f56657374696e673a2066696e6973682069732030000000000000000000000000600082015250565b6000620004ee6014836200040d565b9150620004fb82620004b6565b602082019050919050565b600060208201905081810360008301526200052181620004df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000564826200034a565b915062000571836200034a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a957620005a862000528565b5b828201905092915050565b7f56657374696e673a2066696e616c2074696d65206973206265666f726520637560008201527f7272656e742074696d6500000000000000000000000000000000000000000000602082015250565b600062000612602a836200040d565b91506200061f82620005b4565b604082019050919050565b60006020820190508181036000830152620006458162000603565b9050919050565b611584806200065c6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a6146101a15780638146f323146101ab5780638da5cb5b146101c9578063a4399263146101e7578063daf6ca30146101f1578063f2fde38b1461020f576100b4565b806309e69ede146100b957806318d85e53146100ea578063191655871461010657806334c76b2514610122578063384711cc146101405780637143059f14610170575b600080fd5b6100d360048036038101906100ce9190610d3e565b61022b565b6040516100e1929190610d84565b60405180910390f35b61010460048036038101906100ff9190610dd9565b61024f565b005b610120600480360381019061011b9190610d3e565b610626565b005b61012a61080c565b6040516101379190610e78565b60405180910390f35b61015a60048036038101906101559190610d3e565b610832565b6040516101679190610e93565b60405180910390f35b61018a60048036038101906101859190610d3e565b6108e4565b604051610198929190610d84565b60405180910390f35b6101a961093e565b005b6101b36109c6565b6040516101c09190610ec9565b60405180910390f35b6101d16109d9565b6040516101de9190610ef3565b60405180910390f35b6101ef610a02565b005b6101f9610af1565b6040516102069190610ef3565b60405180910390f35b61022960048036038101906102249190610d3e565b610b17565b005b60046020528060005260406000206000915090508060000154908060010154905082565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154146102d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d090610f6b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161036090610ffd565b60405180910390fd5b60001515600860009054906101000a900460ff161515146103bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b69061108f565b60405180910390fd5b600754600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161041d9190610ef3565b60206040518083038186803b15801561043557600080fd5b505afa158015610449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046d91906110c4565b6104779190611120565b8310156104b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b0906111c6565b60405180910390fd5b60405180604001604052808481526020016000815250600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105809190610ef3565b60206040518083038186803b15801561059857600080fd5b505afa1580156105ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d091906110c4565b600760008282546105e191906111e6565b925050819055507f287ab65235aa9a0baeed5b973fda48c77ebdc6f3dd931cfda1c082c0aecc1e73828460405161061992919061123c565b60405180910390a1505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816001015461067984610832565b6106839190611120565b9050600081116106c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bf906112b1565b60405180910390fd5b8082600101546106d891906111e6565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161077b92919061123c565b602060405180830381600087803b15801561079557600080fd5b505af11580156107a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cd91906112fd565b507fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e83826040516107ff92919061123c565b60405180910390a1505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600254421015610894576000925050506108df565b6003546001546108a491906111e6565b42106108b45780925050506108df565b600354600154426108c59190611120565b826108d0919061132a565b6108da91906113b3565b925050505b919050565b6000806000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050806000015481600101549250925050915091565b610946610c0f565b73ffffffffffffffffffffffffffffffffffffffff166109646109d9565b73ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190611430565b60405180910390fd5b6109c46000610c17565b565b600860009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a0a610c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a286109d9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611430565b60405180910390fd5b60001515600860009054906101000a900460ff16151514610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb9061149c565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b1f610c0f565b73ffffffffffffffffffffffffffffffffffffffff16610b3d6109d9565b73ffffffffffffffffffffffffffffffffffffffff1614610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90611430565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa9061152e565b60405180910390fd5b610c0c81610c17565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d0b82610ce0565b9050919050565b610d1b81610d00565b8114610d2657600080fd5b50565b600081359050610d3881610d12565b92915050565b600060208284031215610d5457610d53610cdb565b5b6000610d6284828501610d29565b91505092915050565b6000819050919050565b610d7e81610d6b565b82525050565b6000604082019050610d996000830185610d75565b610da66020830184610d75565b9392505050565b610db681610d6b565b8114610dc157600080fd5b50565b600081359050610dd381610dad565b92915050565b60008060408385031215610df057610def610cdb565b5b6000610dfe85828601610dc4565b9250506020610e0f85828601610d29565b9150509250929050565b6000819050919050565b6000610e3e610e39610e3484610ce0565b610e19565b610ce0565b9050919050565b6000610e5082610e23565b9050919050565b6000610e6282610e45565b9050919050565b610e7281610e57565b82525050565b6000602082019050610e8d6000830184610e69565b92915050565b6000602082019050610ea86000830184610d75565b92915050565b60008115159050919050565b610ec381610eae565b82525050565b6000602082019050610ede6000830184610eba565b92915050565b610eed81610d00565b82525050565b6000602082019050610f086000830184610ee4565b92915050565b600082825260208201905092915050565b7f56657374696e673a205573657220616c72656164792070617274697061746564600082015250565b6000610f55602083610f0e565b9150610f6082610f1f565b602082019050919050565b60006020820190508181036000830152610f8481610f48565b9050919050565b7f56657374696e673a204f6e6c792073616c6520636f6e74726163742063616e2060008201527f616464207061727469636970616e740000000000000000000000000000000000602082015250565b6000610fe7602f83610f0e565b9150610ff282610f8b565b604082019050919050565b6000602082019050818103600083015261101681610fda565b9050919050565b7f56657374696e673a2056657374696e6720636f6e74726163742069732066696e60008201527f616c697365640000000000000000000000000000000000000000000000000000602082015250565b6000611079602683610f0e565b91506110848261101d565b604082019050919050565b600060208201905081810360008301526110a88161106c565b9050919050565b6000815190506110be81610dad565b92915050565b6000602082840312156110da576110d9610cdb565b5b60006110e8848285016110af565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112b82610d6b565b915061113683610d6b565b925082821015611149576111486110f1565b5b828203905092915050565b7f56657374696e673a206e6f7420656e6f75676820636e616d6520746f2076657360008201527f7420616d6f756e74000000000000000000000000000000000000000000000000602082015250565b60006111b0602883610f0e565b91506111bb82611154565b604082019050919050565b600060208201905081810360008301526111df816111a3565b9050919050565b60006111f182610d6b565b91506111fc83610d6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611231576112306110f1565b5b828201905092915050565b60006040820190506112516000830185610ee4565b61125e6020830184610d75565b9392505050565b7f56657374696e673a206e6f20746f6b656e732061726520647565000000000000600082015250565b600061129b601a83610f0e565b91506112a682611265565b602082019050919050565b600060208201905081810360008301526112ca8161128e565b9050919050565b6112da81610eae565b81146112e557600080fd5b50565b6000815190506112f7816112d1565b92915050565b60006020828403121561131357611312610cdb565b5b6000611321848285016112e8565b91505092915050565b600061133582610d6b565b915061134083610d6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611379576113786110f1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006113be82610d6b565b91506113c983610d6b565b9250826113d9576113d8611384565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061141a602083610f0e565b9150611425826113e4565b602082019050919050565b600060208201905081810360008301526114498161140d565b9050919050565b7f56657374696e673a20616c72656164792066696e616c69736564000000000000600082015250565b6000611486601a83610f0e565b915061149182611450565b602082019050919050565b600060208201905081810360008301526114b581611479565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611518602683610f0e565b9150611523826114bc565b604082019050919050565b600060208201905081810360008301526115478161150b565b905091905056fea2646970667358221220c0a7eef667641b1b0605980c095dbc6e69d8a689812af90064617e350e90f9cd64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1BE0 CODESIZE SUB DUP1 PUSH3 0x1BE0 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x385 JUMP JUMPDEST PUSH3 0x57 PUSH3 0x4B PUSH3 0x214 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x21C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x9D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x94 SWAP1 PUSH3 0x494 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 GT PUSH3 0xE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xDA SWAP1 PUSH3 0x506 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP DUP2 DUP5 PUSH3 0xF2 SWAP2 SWAP1 PUSH3 0x557 JUMP JUMPDEST GT PUSH3 0x135 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x12C SWAP1 PUSH3 0x62A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP2 DUP4 PUSH3 0x18B SWAP2 SWAP1 PUSH3 0x557 JUMP JUMPDEST PUSH1 0x2 DUP2 SWAP1 SSTORE POP DUP1 DUP4 PUSH3 0x19F SWAP2 SWAP1 PUSH3 0x557 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP4 PUSH1 0x6 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP POP POP POP PUSH3 0x64C JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x312 DUP3 PUSH3 0x2E5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x324 DUP2 PUSH3 0x305 JUMP JUMPDEST DUP2 EQ PUSH3 0x330 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x344 DUP2 PUSH3 0x319 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x35F DUP2 PUSH3 0x34A JUMP JUMPDEST DUP2 EQ PUSH3 0x36B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x37F DUP2 PUSH3 0x354 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH3 0x3A4 JUMPI PUSH3 0x3A3 PUSH3 0x2E0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x3B4 DUP9 DUP3 DUP10 ADD PUSH3 0x333 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH3 0x3C7 DUP9 DUP3 DUP10 ADD PUSH3 0x333 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH3 0x3DA DUP9 DUP3 DUP10 ADD PUSH3 0x36E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH3 0x3ED DUP9 DUP3 DUP10 ADD PUSH3 0x36E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH3 0x400 DUP9 DUP3 DUP10 ADD PUSH3 0x36E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x56657374696E673A20636C696666206973206C6F6E676572207468616E206669 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E69736800000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x47C PUSH1 0x24 DUP4 PUSH3 0x40D JUMP JUMPDEST SWAP2 POP PUSH3 0x489 DUP3 PUSH3 0x41E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x4AF DUP2 PUSH3 0x46D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A2066696E6973682069732030000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4EE PUSH1 0x14 DUP4 PUSH3 0x40D JUMP JUMPDEST SWAP2 POP PUSH3 0x4FB DUP3 PUSH3 0x4B6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x521 DUP2 PUSH3 0x4DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x564 DUP3 PUSH3 0x34A JUMP JUMPDEST SWAP2 POP PUSH3 0x571 DUP4 PUSH3 0x34A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x5A9 JUMPI PUSH3 0x5A8 PUSH3 0x528 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x56657374696E673A2066696E616C2074696D65206973206265666F7265206375 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7272656E742074696D6500000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x612 PUSH1 0x2A DUP4 PUSH3 0x40D JUMP JUMPDEST SWAP2 POP PUSH3 0x61F DUP3 PUSH3 0x5B4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x645 DUP2 PUSH3 0x603 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1584 DUP1 PUSH3 0x65C 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 0xB4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x8146F323 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0xA4399263 EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0xDAF6CA30 EQ PUSH2 0x1F1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x20F JUMPI PUSH2 0xB4 JUMP JUMPDEST DUP1 PUSH4 0x9E69EDE EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x18D85E53 EQ PUSH2 0xEA JUMPI DUP1 PUSH4 0x19165587 EQ PUSH2 0x106 JUMPI DUP1 PUSH4 0x34C76B25 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x384711CC EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x7143059F EQ PUSH2 0x170 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCE SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x22B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE1 SWAP3 SWAP2 SWAP1 PUSH2 0xD84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFF SWAP2 SWAP1 PUSH2 0xDD9 JUMP JUMPDEST PUSH2 0x24F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11B SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x626 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x12A PUSH2 0x80C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0xE78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x832 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x185 SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x8E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP3 SWAP2 SWAP1 PUSH2 0xD84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A9 PUSH2 0x93E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1B3 PUSH2 0x9C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C0 SWAP2 SWAP1 PUSH2 0xEC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D1 PUSH2 0x9D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH2 0xA02 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F9 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0xB17 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD EQ PUSH2 0x2D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D0 SWAP1 PUSH2 0xF6B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x369 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x360 SWAP1 PUSH2 0xFFD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x3BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B6 SWAP1 PUSH2 0x108F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x41D SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x435 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x449 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x46D SWAP2 SWAP1 PUSH2 0x10C4 JUMP JUMPDEST PUSH2 0x477 SWAP2 SWAP1 PUSH2 0x1120 JUMP JUMPDEST DUP4 LT ISZERO PUSH2 0x4B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B0 SWAP1 PUSH2 0x11C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP PUSH1 0x4 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 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x580 SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x598 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5AC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5D0 SWAP2 SWAP1 PUSH2 0x10C4 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x5E1 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0x287AB65235AA9A0BAEED5B973FDA48C77EBDC6F3DD931CFDA1C082C0AECC1E73 DUP3 DUP5 PUSH1 0x40 MLOAD PUSH2 0x619 SWAP3 SWAP2 SWAP1 PUSH2 0x123C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD PUSH2 0x679 DUP5 PUSH2 0x832 JUMP JUMPDEST PUSH2 0x683 SWAP2 SWAP1 PUSH2 0x1120 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x6C8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6BF SWAP1 PUSH2 0x12B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 DUP3 PUSH1 0x1 ADD SLOAD PUSH2 0x6D8 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x77B SWAP3 SWAP2 SWAP1 PUSH2 0x123C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x795 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7A9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7CD SWAP2 SWAP1 PUSH2 0x12FD JUMP JUMPDEST POP PUSH32 0xB21FB52D5749B80F3182F8C6992236B5E5576681880914484D7F4C9B062E619E DUP4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x7FF SWAP3 SWAP2 SWAP1 PUSH2 0x123C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP PUSH1 0x2 SLOAD TIMESTAMP LT ISZERO PUSH2 0x894 JUMPI PUSH1 0x0 SWAP3 POP POP POP PUSH2 0x8DF JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 SLOAD PUSH2 0x8A4 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST TIMESTAMP LT PUSH2 0x8B4 JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x8DF JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 SLOAD TIMESTAMP PUSH2 0x8C5 SWAP2 SWAP1 PUSH2 0x1120 JUMP JUMPDEST DUP3 PUSH2 0x8D0 SWAP2 SWAP1 PUSH2 0x132A JUMP JUMPDEST PUSH2 0x8DA SWAP2 SWAP1 PUSH2 0x13B3 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD DUP2 PUSH1 0x1 ADD SLOAD SWAP3 POP SWAP3 POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH2 0x946 PUSH2 0xC0F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x964 PUSH2 0x9D9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9BA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B1 SWAP1 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9C4 PUSH1 0x0 PUSH2 0xC17 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xA0A PUSH2 0xC0F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA28 PUSH2 0x9D9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA7E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA75 SWAP1 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0xAD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACB SWAP1 PUSH2 0x149C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0xB1F PUSH2 0xC0F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB3D PUSH2 0x9D9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB93 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB8A SWAP1 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC03 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBFA SWAP1 PUSH2 0x152E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC0C DUP2 PUSH2 0xC17 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD0B DUP3 PUSH2 0xCE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD1B DUP2 PUSH2 0xD00 JUMP JUMPDEST DUP2 EQ PUSH2 0xD26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD38 DUP2 PUSH2 0xD12 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD54 JUMPI PUSH2 0xD53 PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD62 DUP5 DUP3 DUP6 ADD PUSH2 0xD29 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD7E DUP2 PUSH2 0xD6B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xD99 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xDA6 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD75 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xDB6 DUP2 PUSH2 0xD6B JUMP JUMPDEST DUP2 EQ PUSH2 0xDC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDD3 DUP2 PUSH2 0xDAD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDF0 JUMPI PUSH2 0xDEF PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDFE DUP6 DUP3 DUP7 ADD PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE0F DUP6 DUP3 DUP7 ADD PUSH2 0xD29 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE3E PUSH2 0xE39 PUSH2 0xE34 DUP5 PUSH2 0xCE0 JUMP JUMPDEST PUSH2 0xE19 JUMP JUMPDEST PUSH2 0xCE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE50 DUP3 PUSH2 0xE23 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE62 DUP3 PUSH2 0xE45 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE72 DUP2 PUSH2 0xE57 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE8D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEA8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEC3 DUP2 PUSH2 0xEAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEDE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEBA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xEED DUP2 PUSH2 0xD00 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF08 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEE4 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 PUSH32 0x56657374696E673A205573657220616C72656164792070617274697061746564 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF55 PUSH1 0x20 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0xF60 DUP3 PUSH2 0xF1F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF84 DUP2 PUSH2 0xF48 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A204F6E6C792073616C6520636F6E74726163742063616E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616464207061727469636970616E740000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFE7 PUSH1 0x2F DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0xFF2 DUP3 PUSH2 0xF8B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1016 DUP2 PUSH2 0xFDA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A2056657374696E6720636F6E74726163742069732066696E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C697365640000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1079 PUSH1 0x26 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1084 DUP3 PUSH2 0x101D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10A8 DUP2 PUSH2 0x106C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x10BE DUP2 PUSH2 0xDAD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10DA JUMPI PUSH2 0x10D9 PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10E8 DUP5 DUP3 DUP6 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x112B DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x1136 DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1149 JUMPI PUSH2 0x1148 PUSH2 0x10F1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x56657374696E673A206E6F7420656E6F75676820636E616D6520746F20766573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7420616D6F756E74000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11B0 PUSH1 0x28 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x11BB DUP3 PUSH2 0x1154 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11DF DUP2 PUSH2 0x11A3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11F1 DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x11FC DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1231 JUMPI PUSH2 0x1230 PUSH2 0x10F1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1251 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xEE4 JUMP JUMPDEST PUSH2 0x125E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD75 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x56657374696E673A206E6F20746F6B656E732061726520647565000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x129B PUSH1 0x1A DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x12A6 DUP3 PUSH2 0x1265 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12CA DUP2 PUSH2 0x128E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12DA DUP2 PUSH2 0xEAE JUMP JUMPDEST DUP2 EQ PUSH2 0x12E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x12F7 DUP2 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1313 JUMPI PUSH2 0x1312 PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1321 DUP5 DUP3 DUP6 ADD PUSH2 0x12E8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1335 DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x1340 DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1379 JUMPI PUSH2 0x1378 PUSH2 0x10F1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x13BE DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x13C9 DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x13D9 JUMPI PUSH2 0x13D8 PUSH2 0x1384 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x141A PUSH1 0x20 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1425 DUP3 PUSH2 0x13E4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1449 DUP2 PUSH2 0x140D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A20616C72656164792066696E616C69736564000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1486 PUSH1 0x1A DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1491 DUP3 PUSH2 0x1450 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14B5 DUP2 PUSH2 0x1479 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1518 PUSH1 0x26 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1523 DUP3 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1547 DUP2 PUSH2 0x150B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC0 0xA7 0xEE 0xF6 PUSH8 0x641B1B0605980C09 0x5D 0xBC PUSH15 0x69D8A689812AF90064617E350E90F9 0xCD PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "617:3370:2:-:0;;;1281:554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;1409:7:2;1399:6;:17;;1391:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1485:1;1475:7;:11;1467:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;1548:15;1538:7;1529:6;:16;;;;:::i;:::-;:34;1521:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1636:5;1621;;:21;;;;;;;;;;;;;;;;;;1660:6;1652:5;:14;;;;1693:6;1684;:15;;;;:::i;:::-;1676:5;:23;;;;1729:7;1720:6;:16;;;;:::i;:::-;1709:8;:27;;;;1760:1;1746:11;:15;;;;1785:5;1771:11;;:19;;;;;;;;;;;;;;;;;;1815:13;1800:12;;:28;;;;;;;;;;;;;;;;;;1281:554;;;;;617:3370;;640:96:1;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;88:117:3:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:143::-;753:5;784:6;778:13;769:22;;800:33;827:5;800:33;:::i;:::-;696:143;;;;:::o;845:77::-;882:7;911:5;900:16;;845:77;;;:::o;928:122::-;1001:24;1019:5;1001:24;:::i;:::-;994:5;991:35;981:63;;1040:1;1037;1030:12;981:63;928:122;:::o;1056:143::-;1113:5;1144:6;1138:13;1129:22;;1160:33;1187:5;1160:33;:::i;:::-;1056:143;;;;:::o;1205:977::-;1311:6;1319;1327;1335;1343;1392:3;1380:9;1371:7;1367:23;1363:33;1360:120;;;1399:79;;:::i;:::-;1360:120;1519:1;1544:64;1600:7;1591:6;1580:9;1576:22;1544:64;:::i;:::-;1534:74;;1490:128;1657:2;1683:64;1739:7;1730:6;1719:9;1715:22;1683:64;:::i;:::-;1673:74;;1628:129;1796:2;1822:64;1878:7;1869:6;1858:9;1854:22;1822:64;:::i;:::-;1812:74;;1767:129;1935:2;1961:64;2017:7;2008:6;1997:9;1993:22;1961:64;:::i;:::-;1951:74;;1906:129;2074:3;2101:64;2157:7;2148:6;2137:9;2133:22;2101:64;:::i;:::-;2091:74;;2045:130;1205:977;;;;;;;;:::o;2188:169::-;2272:11;2306:6;2301:3;2294:19;2346:4;2341:3;2337:14;2322:29;;2188:169;;;;:::o;2363:223::-;2503:34;2499:1;2491:6;2487:14;2480:58;2572:6;2567:2;2559:6;2555:15;2548:31;2363:223;:::o;2592:366::-;2734:3;2755:67;2819:2;2814:3;2755:67;:::i;:::-;2748:74;;2831:93;2920:3;2831:93;:::i;:::-;2949:2;2944:3;2940:12;2933:19;;2592:366;;;:::o;2964:419::-;3130:4;3168:2;3157:9;3153:18;3145:26;;3217:9;3211:4;3207:20;3203:1;3192:9;3188:17;3181:47;3245:131;3371:4;3245:131;:::i;:::-;3237:139;;2964:419;;;:::o;3389:170::-;3529:22;3525:1;3517:6;3513:14;3506:46;3389:170;:::o;3565:366::-;3707:3;3728:67;3792:2;3787:3;3728:67;:::i;:::-;3721:74;;3804:93;3893:3;3804:93;:::i;:::-;3922:2;3917:3;3913:12;3906:19;;3565:366;;;:::o;3937:419::-;4103:4;4141:2;4130:9;4126:18;4118:26;;4190:9;4184:4;4180:20;4176:1;4165:9;4161:17;4154:47;4218:131;4344:4;4218:131;:::i;:::-;4210:139;;3937:419;;;:::o;4362:180::-;4410:77;4407:1;4400:88;4507:4;4504:1;4497:15;4531:4;4528:1;4521:15;4548:305;4588:3;4607:20;4625:1;4607:20;:::i;:::-;4602:25;;4641:20;4659:1;4641:20;:::i;:::-;4636:25;;4795:1;4727:66;4723:74;4720:1;4717:81;4714:107;;;4801:18;;:::i;:::-;4714:107;4845:1;4842;4838:9;4831:16;;4548:305;;;;:::o;4859:229::-;4999:34;4995:1;4987:6;4983:14;4976:58;5068:12;5063:2;5055:6;5051:15;5044:37;4859:229;:::o;5094:366::-;5236:3;5257:67;5321:2;5316:3;5257:67;:::i;:::-;5250:74;;5333:93;5422:3;5333:93;:::i;:::-;5451:2;5446:3;5442:12;5435:19;;5094:366;;;:::o;5466:419::-;5632:4;5670:2;5659:9;5655:18;5647:26;;5719:9;5713:4;5709:20;5705:1;5694:9;5690:17;5683:47;5747:131;5873:4;5747:131;:::i;:::-;5739:139;;5466:419;;;:::o;617:3370:2:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_msgSender_116": {
"entryPoint": 3087,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 3095,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@addParticipant_318": {
"entryPoint": 591,
"id": 318,
"parameterSlots": 2,
"returnSlots": 0
},
"@cname_150": {
"entryPoint": 2060,
"id": 150,
"parameterSlots": 0,
"returnSlots": 0
},
"@finalise_409": {
"entryPoint": 2562,
"id": 409,
"parameterSlots": 0,
"returnSlots": 0
},
"@getParticipant_341": {
"entryPoint": 2276,
"id": 341,
"parameterSlots": 1,
"returnSlots": 2
},
"@isFinalised_156": {
"entryPoint": 2502,
"id": 156,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 2521,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@participants_147": {
"entryPoint": 555,
"id": 147,
"parameterSlots": 0,
"returnSlots": 0
},
"@release_392": {
"entryPoint": 1574,
"id": 392,
"parameterSlots": 1,
"returnSlots": 0
},
"@renounceOwnership_60": {
"entryPoint": 2366,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@saleContract_152": {
"entryPoint": 2801,
"id": 152,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 2839,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@vestedAmount_458": {
"entryPoint": 2098,
"id": 458,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3369,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 4840,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3524,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 4271,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3390,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 4861,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 4292,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address": {
"entryPoint": 3545,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 3812,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3770,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_contract$_IERC20_$526_to_t_address_fromStack": {
"entryPoint": 3689,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5387,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5241,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4204,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4750,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5133,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4058,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3445,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 3827,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 4668,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3785,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_IERC20_$526__to_t_address__fromStack_reversed": {
"entryPoint": 3704,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5422,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3947,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5276,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4550,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4239,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4785,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5168,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4093,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3731,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 3460,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3854,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4582,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 5043,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 4906,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 4384,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 3328,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3758,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3296,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3435,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_IERC20_$526_to_t_address": {
"entryPoint": 3671,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 3653,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 3619,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 3609,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 4337,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 4996,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 3291,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 5308,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd": {
"entryPoint": 3871,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b": {
"entryPoint": 5200,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95": {
"entryPoint": 4436,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce": {
"entryPoint": 4125,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef": {
"entryPoint": 4709,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 5092,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26": {
"entryPoint": 3979,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 3346,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 4817,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 3501,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:15502:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:3"
},
"nodeType": "YulFunctionCall",
"src": "400:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:3",
"type": ""
}
],
"src": "334:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "532:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:3",
"type": ""
}
],
"src": "466:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:3"
},
"nodeType": "YulFunctionCall",
"src": "670:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:3"
},
"nodeType": "YulFunctionCall",
"src": "641:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:3"
},
"nodeType": "YulFunctionCall",
"src": "631:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:3"
},
"nodeType": "YulFunctionCall",
"src": "624:43:3"
},
"nodeType": "YulIf",
"src": "621:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:3",
"type": ""
}
],
"src": "568:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "748:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "758:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "780:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "767:12:3"
},
"nodeType": "YulFunctionCall",
"src": "767:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "758:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "823:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "796:26:3"
},
"nodeType": "YulFunctionCall",
"src": "796:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "796:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "726:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "734:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "742:5:3",
"type": ""
}
],
"src": "696:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "907:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "953:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "955:77:3"
},
"nodeType": "YulFunctionCall",
"src": "955:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "955:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "928:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "937:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "924:3:3"
},
"nodeType": "YulFunctionCall",
"src": "924:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "949:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "920:3:3"
},
"nodeType": "YulFunctionCall",
"src": "920:32:3"
},
"nodeType": "YulIf",
"src": "917:119:3"
},
{
"nodeType": "YulBlock",
"src": "1046:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1061:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1065:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1090:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1125:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1136:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1121:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1121:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1145:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1100:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1100:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1090:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "877:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "888:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "900:6:3",
"type": ""
}
],
"src": "841:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1221:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1231:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1242:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1231:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1203:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1213:7:3",
"type": ""
}
],
"src": "1176:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1346:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:3",
"type": ""
}
],
"src": "1259:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1509:206:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1519:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1531:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1542:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1527:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1527:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1519:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1599:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1612:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1623:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1608:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1608:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1555:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1555:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1555:71:3"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1680:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1693:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1704:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1689:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1689:18:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1636:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1636:72:3"
},
"nodeType": "YulExpressionStatement",
"src": "1636:72:3"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1473:9:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1485:6:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1493:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1504:4:3",
"type": ""
}
],
"src": "1383:332:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1764:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1821:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1830:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1833:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1823:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1823:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1823:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1787:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1812:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1794:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1794:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1784:2:3"
},
"nodeType": "YulFunctionCall",
"src": "1784:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1777:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1777:43:3"
},
"nodeType": "YulIf",
"src": "1774:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:3",
"type": ""
}
],
"src": "1721:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1901:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1911:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1933:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1920:12:3"
},
"nodeType": "YulFunctionCall",
"src": "1920:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1911:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1949:26:3"
},
"nodeType": "YulFunctionCall",
"src": "1949:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "1949:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1879:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1887:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1895:5:3",
"type": ""
}
],
"src": "1849:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2077:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2123:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2125:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2125:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2125:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2098:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2107:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2094:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2094:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2119:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2090:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2090:32:3"
},
"nodeType": "YulIf",
"src": "2087:119:3"
},
{
"nodeType": "YulBlock",
"src": "2216:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2231:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2245:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2235:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2260:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2295:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2306:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2291:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2291:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2315:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2270:20:3"
},
"nodeType": "YulFunctionCall",
"src": "2270:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2260:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2343:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2358:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2372:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2362:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2388:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2423:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2434:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2419:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2419:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2443:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2398:20:3"
},
"nodeType": "YulFunctionCall",
"src": "2398:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2388:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2039:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2050:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2062:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2070:6:3",
"type": ""
}
],
"src": "1994:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2506:28:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2516:12:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2523:5:3"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2516:3:3"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2492:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2502:3:3",
"type": ""
}
],
"src": "2474:60:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2600:82:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2610:66:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2668:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2650:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2650:24:3"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "2641:8:3"
},
"nodeType": "YulFunctionCall",
"src": "2641:34:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2623:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2623:53:3"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2610:9:3"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2580:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2590:9:3",
"type": ""
}
],
"src": "2540:142:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2748:66:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2758:50:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2802:5:3"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "2771:30:3"
},
"nodeType": "YulFunctionCall",
"src": "2771:37:3"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2758:9:3"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2728:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2738:9:3",
"type": ""
}
],
"src": "2688:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2894:66:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2904:50:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2948:5:3"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "2917:30:3"
},
"nodeType": "YulFunctionCall",
"src": "2917:37:3"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2904:9:3"
}
]
}
]
},
"name": "convert_t_contract$_IERC20_$526_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2874:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2884:9:3",
"type": ""
}
],
"src": "2820:140:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3045:80:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3062:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3112:5:3"
}
],
"functionName": {
"name": "convert_t_contract$_IERC20_$526_to_t_address",
"nodeType": "YulIdentifier",
"src": "3067:44:3"
},
"nodeType": "YulFunctionCall",
"src": "3067:51:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3055:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3055:64:3"
},
"nodeType": "YulExpressionStatement",
"src": "3055:64:3"
}
]
},
"name": "abi_encode_t_contract$_IERC20_$526_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3033:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3040:3:3",
"type": ""
}
],
"src": "2966:159:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3243:138:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3253:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3265:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3276:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3261:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3261:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3253:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3347:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3360:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3371:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3356:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3356:17:3"
}
],
"functionName": {
"name": "abi_encode_t_contract$_IERC20_$526_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3289:57:3"
},
"nodeType": "YulFunctionCall",
"src": "3289:85:3"
},
"nodeType": "YulExpressionStatement",
"src": "3289:85:3"
}
]
},
"name": "abi_encode_tuple_t_contract$_IERC20_$526__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3215:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3227:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3238:4:3",
"type": ""
}
],
"src": "3131:250:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3485:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3495:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3507:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3518:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3503:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3503:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3495:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3575:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3588:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3599:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3584:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3584:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3531:43:3"
},
"nodeType": "YulFunctionCall",
"src": "3531:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "3531:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3457:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3469:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3480:4:3",
"type": ""
}
],
"src": "3387:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3657:48:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3667:32:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3692:5:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3685:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3685:13:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3678:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3678:21:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3667:7:3"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3639:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3649:7:3",
"type": ""
}
],
"src": "3615:90:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3770:50:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3787:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3807:5:3"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3792:14:3"
},
"nodeType": "YulFunctionCall",
"src": "3792:21:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3780:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3780:34:3"
},
"nodeType": "YulExpressionStatement",
"src": "3780:34:3"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3758:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3765:3:3",
"type": ""
}
],
"src": "3711:109:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3918:118:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3928:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3940:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3951:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3936:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3936:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3928:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4002:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4015:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4026:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4011:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4011:17:3"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3964:37:3"
},
"nodeType": "YulFunctionCall",
"src": "3964:65:3"
},
"nodeType": "YulExpressionStatement",
"src": "3964:65:3"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3890:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3902:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3913:4:3",
"type": ""
}
],
"src": "3826:210:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4107:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4124:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4147:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4129:17:3"
},
"nodeType": "YulFunctionCall",
"src": "4129:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4117:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4117:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "4117:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4095:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4102:3:3",
"type": ""
}
],
"src": "4042:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4264:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4274:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4286:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4282:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4282:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4274:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4354:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4367:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4378:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4363:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4363:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4310:43:3"
},
"nodeType": "YulFunctionCall",
"src": "4310:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "4310:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4236:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4248:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4259:4:3",
"type": ""
}
],
"src": "4166:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4490:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4507:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4512:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4500:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4500:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "4500:19:3"
},
{
"nodeType": "YulAssignment",
"src": "4528:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4547:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4552:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4543:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4543:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4528:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4462:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4467:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4478:11:3",
"type": ""
}
],
"src": "4394:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4675:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4697:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4705:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4693:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4693:14:3"
},
{
"hexValue": "56657374696e673a205573657220616c72656164792070617274697061746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4709:34:3",
"type": "",
"value": "Vesting: User already partipated"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4686:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4686:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "4686:58:3"
}
]
},
"name": "store_literal_in_memory_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4667:6:3",
"type": ""
}
],
"src": "4569:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4903:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4913:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4979:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4984:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4920:58:3"
},
"nodeType": "YulFunctionCall",
"src": "4920:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4913:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5085:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd",
"nodeType": "YulIdentifier",
"src": "4996:88:3"
},
"nodeType": "YulFunctionCall",
"src": "4996:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "4996:93:3"
},
{
"nodeType": "YulAssignment",
"src": "5098:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5109:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5114:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5105:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5105:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5098:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4891:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4899:3:3",
"type": ""
}
],
"src": "4757:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5300:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5310:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5322:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5333:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5318:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5318:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5310:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5357:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5368:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5353:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5353:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5376:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5382:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5372:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5372:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5346:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5346:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "5346:47:3"
},
{
"nodeType": "YulAssignment",
"src": "5402:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5536:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5410:124:3"
},
"nodeType": "YulFunctionCall",
"src": "5410:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5402:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5280:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5295:4:3",
"type": ""
}
],
"src": "5129:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5660:128:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5682:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5690:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5678:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5678:14:3"
},
{
"hexValue": "56657374696e673a204f6e6c792073616c6520636f6e74726163742063616e20",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5694:34:3",
"type": "",
"value": "Vesting: Only sale contract can "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5671:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5671:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "5671:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5750:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5758:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5746:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5746:15:3"
},
{
"hexValue": "616464207061727469636970616e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5763:17:3",
"type": "",
"value": "add participant"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5739:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5739:42:3"
},
"nodeType": "YulExpressionStatement",
"src": "5739:42:3"
}
]
},
"name": "store_literal_in_memory_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5652:6:3",
"type": ""
}
],
"src": "5554:234:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5940:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5950:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6016:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6021:2:3",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5957:58:3"
},
"nodeType": "YulFunctionCall",
"src": "5957:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5950:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6122:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26",
"nodeType": "YulIdentifier",
"src": "6033:88:3"
},
"nodeType": "YulFunctionCall",
"src": "6033:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "6033:93:3"
},
{
"nodeType": "YulAssignment",
"src": "6135:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6146:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6151:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6142:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6142:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6135:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5928:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5936:3:3",
"type": ""
}
],
"src": "5794:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6337:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6347:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6359:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6370:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6355:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6355:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6347:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6394:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6405:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6390:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6390:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6413:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6419:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6409:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6409:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6383:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6383:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "6383:47:3"
},
{
"nodeType": "YulAssignment",
"src": "6439:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6573:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6447:124:3"
},
"nodeType": "YulFunctionCall",
"src": "6447:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6439:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6317:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6332:4:3",
"type": ""
}
],
"src": "6166:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6697:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6719:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6727:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6715:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6715:14:3"
},
{
"hexValue": "56657374696e673a2056657374696e6720636f6e74726163742069732066696e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6731:34:3",
"type": "",
"value": "Vesting: Vesting contract is fin"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6708:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6708:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "6708:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6787:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6795:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6783:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6783:15:3"
},
{
"hexValue": "616c69736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6800:8:3",
"type": "",
"value": "alised"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6776:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6776:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "6776:33:3"
}
]
},
"name": "store_literal_in_memory_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6689:6:3",
"type": ""
}
],
"src": "6591:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6968:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6978:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7044:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7049:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6985:58:3"
},
"nodeType": "YulFunctionCall",
"src": "6985:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6978:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7150:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce",
"nodeType": "YulIdentifier",
"src": "7061:88:3"
},
"nodeType": "YulFunctionCall",
"src": "7061:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "7061:93:3"
},
{
"nodeType": "YulAssignment",
"src": "7163:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7174:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7179:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7170:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7170:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7163:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6956:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6964:3:3",
"type": ""
}
],
"src": "6822:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7365:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7375:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7387:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7398:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7383:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7383:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7375:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7422:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7433:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7418:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7418:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7441:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7447:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7437:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7437:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7411:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7411:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "7411:47:3"
},
{
"nodeType": "YulAssignment",
"src": "7467:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7601:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7475:124:3"
},
"nodeType": "YulFunctionCall",
"src": "7475:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7467:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7345:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7360:4:3",
"type": ""
}
],
"src": "7194:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7682:80:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7692:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7707:6:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7701:5:3"
},
"nodeType": "YulFunctionCall",
"src": "7701:13:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7692:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7750:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "7723:26:3"
},
"nodeType": "YulFunctionCall",
"src": "7723:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "7723:33:3"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7660:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7668:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7676:5:3",
"type": ""
}
],
"src": "7619:143:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7845:274:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7891:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7893:77:3"
},
"nodeType": "YulFunctionCall",
"src": "7893:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "7893:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7866:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7875:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7862:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7862:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7887:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7858:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7858:32:3"
},
"nodeType": "YulIf",
"src": "7855:119:3"
},
{
"nodeType": "YulBlock",
"src": "7984:128:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7999:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8013:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8003:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8028:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8074:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8085:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8070:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8070:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8094:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "8038:31:3"
},
"nodeType": "YulFunctionCall",
"src": "8038:64:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8028:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7815:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7826:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7838:6:3",
"type": ""
}
],
"src": "7768:351:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8153:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8170:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8173:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8163:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8163:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "8163:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8267:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8270:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8260:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8260:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "8260:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8291:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8294:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8284:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8284:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "8284:15:3"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "8125:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8356:146:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8366:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8389:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8371:17:3"
},
"nodeType": "YulFunctionCall",
"src": "8371:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8366:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8400:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8423:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8405:17:3"
},
"nodeType": "YulFunctionCall",
"src": "8405:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8400:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8447:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8449:16:3"
},
"nodeType": "YulFunctionCall",
"src": "8449:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "8449:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8441:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8444:1:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8438:2:3"
},
"nodeType": "YulFunctionCall",
"src": "8438:8:3"
},
"nodeType": "YulIf",
"src": "8435:34:3"
},
{
"nodeType": "YulAssignment",
"src": "8479:17:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8491:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8494:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8487:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8487:9:3"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "8479:4:3"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8342:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8345:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "8351:4:3",
"type": ""
}
],
"src": "8311:191:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8614:121:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8636:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8644:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8632:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8632:14:3"
},
{
"hexValue": "56657374696e673a206e6f7420656e6f75676820636e616d6520746f20766573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8648:34:3",
"type": "",
"value": "Vesting: not enough cname to ves"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8625:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8625:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "8625:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8704:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8712:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8700:3:3"
},
"nodeType": "YulFunctionCall",
"src": "8700:15:3"
},
{
"hexValue": "7420616d6f756e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8717:10:3",
"type": "",
"value": "t amount"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8693:6:3"
},
"nodeType": "YulFunctionCall",
"src": "8693:35:3"
},
"nodeType": "YulExpressionStatement",
"src": "8693:35:3"
}
]
},
"name": "store_literal_in_memory_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8606:6:3",
"type": ""
}
],
"src": "8508:227:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8887:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8897:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8963:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8968:2:3",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8904:58:3"
},
"nodeType": "YulFunctionCall",
"src": "8904:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8897:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9069:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95",
"nodeType": "YulIdentifier",
"src": "8980:88:3"
},
"nodeType": "YulFunctionCall",
"src": "8980:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "8980:93:3"
},
{
"nodeType": "YulAssignment",
"src": "9082:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9093:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9098:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9089:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9089:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9082:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8875:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8883:3:3",
"type": ""
}
],
"src": "8741:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9284:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9294:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9306:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9317:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9302:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9302:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9294:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9341:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9352:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9337:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9337:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9360:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9366:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9356:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9356:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9330:6:3"
},
"nodeType": "YulFunctionCall",
"src": "9330:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "9330:47:3"
},
{
"nodeType": "YulAssignment",
"src": "9386:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9520:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9394:124:3"
},
"nodeType": "YulFunctionCall",
"src": "9394:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9386:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9264:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9279:4:3",
"type": ""
}
],
"src": "9113:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9582:261:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9592:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9615:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9597:17:3"
},
"nodeType": "YulFunctionCall",
"src": "9597:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9592:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9626:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9649:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9631:17:3"
},
"nodeType": "YulFunctionCall",
"src": "9631:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9626:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9789:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9791:16:3"
},
"nodeType": "YulFunctionCall",
"src": "9791:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "9791:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9710:1:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9717:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9785:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9713:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9713:74:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9707:2:3"
},
"nodeType": "YulFunctionCall",
"src": "9707:81:3"
},
"nodeType": "YulIf",
"src": "9704:107:3"
},
{
"nodeType": "YulAssignment",
"src": "9821:16:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9832:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9835:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9828:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9828:9:3"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9821:3:3"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9569:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9572:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9578:3:3",
"type": ""
}
],
"src": "9538:305:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9975:206:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9985:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9997:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10008:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9993:3:3"
},
"nodeType": "YulFunctionCall",
"src": "9993:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9985:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10065:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10078:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10089:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10074:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10074:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "10021:43:3"
},
"nodeType": "YulFunctionCall",
"src": "10021:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "10021:71:3"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10146:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10159:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10170:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10155:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10155:18:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "10102:43:3"
},
"nodeType": "YulFunctionCall",
"src": "10102:72:3"
},
"nodeType": "YulExpressionStatement",
"src": "10102:72:3"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9939:9:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9951:6:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9959:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9970:4:3",
"type": ""
}
],
"src": "9849:332:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10293:70:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10315:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10323:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10311:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10311:14:3"
},
{
"hexValue": "56657374696e673a206e6f20746f6b656e732061726520647565",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10327:28:3",
"type": "",
"value": "Vesting: no tokens are due"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10304:6:3"
},
"nodeType": "YulFunctionCall",
"src": "10304:52:3"
},
"nodeType": "YulExpressionStatement",
"src": "10304:52:3"
}
]
},
"name": "store_literal_in_memory_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10285:6:3",
"type": ""
}
],
"src": "10187:176:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10515:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10525:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10591:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10596:2:3",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10532:58:3"
},
"nodeType": "YulFunctionCall",
"src": "10532:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10525:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10697:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef",
"nodeType": "YulIdentifier",
"src": "10608:88:3"
},
"nodeType": "YulFunctionCall",
"src": "10608:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "10608:93:3"
},
{
"nodeType": "YulAssignment",
"src": "10710:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10721:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10726:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10717:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10717:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10710:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10503:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10511:3:3",
"type": ""
}
],
"src": "10369:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10912:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10922:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10934:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10945:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10930:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10930:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10922:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10969:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10980:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10965:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10965:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10988:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10994:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10984:3:3"
},
"nodeType": "YulFunctionCall",
"src": "10984:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10958:6:3"
},
"nodeType": "YulFunctionCall",
"src": "10958:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "10958:47:3"
},
{
"nodeType": "YulAssignment",
"src": "11014:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11148:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11022:124:3"
},
"nodeType": "YulFunctionCall",
"src": "11022:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11014:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10892:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10907:4:3",
"type": ""
}
],
"src": "10741:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11206:76:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11260:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11269:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11272:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11262:6:3"
},
"nodeType": "YulFunctionCall",
"src": "11262:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "11262:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11229:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11251:5:3"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "11236:14:3"
},
"nodeType": "YulFunctionCall",
"src": "11236:21:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11226:2:3"
},
"nodeType": "YulFunctionCall",
"src": "11226:32:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11219:6:3"
},
"nodeType": "YulFunctionCall",
"src": "11219:40:3"
},
"nodeType": "YulIf",
"src": "11216:60:3"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11199:5:3",
"type": ""
}
],
"src": "11166:116:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11348:77:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11358:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11373:6:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11367:5:3"
},
"nodeType": "YulFunctionCall",
"src": "11367:13:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11358:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11413:5:3"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "11389:23:3"
},
"nodeType": "YulFunctionCall",
"src": "11389:30:3"
},
"nodeType": "YulExpressionStatement",
"src": "11389:30:3"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11326:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11334:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11342:5:3",
"type": ""
}
],
"src": "11288:137:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11505:271:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11551:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11553:77:3"
},
"nodeType": "YulFunctionCall",
"src": "11553:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "11553:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11526:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11535:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11522:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11522:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11547:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11518:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11518:32:3"
},
"nodeType": "YulIf",
"src": "11515:119:3"
},
{
"nodeType": "YulBlock",
"src": "11644:125:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11659:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11673:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11663:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11688:71:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11731:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11742:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11727:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11727:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11751:7:3"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "11698:28:3"
},
"nodeType": "YulFunctionCall",
"src": "11698:61:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11688:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11475:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11486:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11498:6:3",
"type": ""
}
],
"src": "11431:345:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11830:300:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11840:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11863:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11845:17:3"
},
"nodeType": "YulFunctionCall",
"src": "11845:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11840:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11874:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11897:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11879:17:3"
},
"nodeType": "YulFunctionCall",
"src": "11879:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11874:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12072:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "12074:16:3"
},
"nodeType": "YulFunctionCall",
"src": "12074:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "12074:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11984:1:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11977:6:3"
},
"nodeType": "YulFunctionCall",
"src": "11977:9:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11970:6:3"
},
"nodeType": "YulFunctionCall",
"src": "11970:17:3"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11992:1:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11999:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12067:1:3"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11995:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11995:74:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11989:2:3"
},
"nodeType": "YulFunctionCall",
"src": "11989:81:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11966:3:3"
},
"nodeType": "YulFunctionCall",
"src": "11966:105:3"
},
"nodeType": "YulIf",
"src": "11963:131:3"
},
{
"nodeType": "YulAssignment",
"src": "12104:20:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12119:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12122:1:3"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "12115:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12115:9:3"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "12104:7:3"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11813:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11816:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "11822:7:3",
"type": ""
}
],
"src": "11782:348:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12164:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12181:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12184:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12174:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12174:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "12174:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12278:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12281:4:3",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12271:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12271:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "12271:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12302:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12305:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12295:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12295:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "12295:15:3"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "12136:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12364:143:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12374:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12397:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12379:17:3"
},
"nodeType": "YulFunctionCall",
"src": "12379:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12374:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12408:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12431:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12413:17:3"
},
"nodeType": "YulFunctionCall",
"src": "12413:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12408:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12455:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "12457:16:3"
},
"nodeType": "YulFunctionCall",
"src": "12457:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "12457:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12452:1:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12445:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12445:9:3"
},
"nodeType": "YulIf",
"src": "12442:35:3"
},
{
"nodeType": "YulAssignment",
"src": "12487:14:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12496:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12499:1:3"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "12492:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12492:9:3"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "12487:1:3"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "12353:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "12356:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "12362:1:3",
"type": ""
}
],
"src": "12322:185:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12619:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12641:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12649:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12637:3:3"
},
"nodeType": "YulFunctionCall",
"src": "12637:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12653:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12630:6:3"
},
"nodeType": "YulFunctionCall",
"src": "12630:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "12630:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12611:6:3",
"type": ""
}
],
"src": "12513:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12847:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12857:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12923:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12928:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12864:58:3"
},
"nodeType": "YulFunctionCall",
"src": "12864:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12857:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13029:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "12940:88:3"
},
"nodeType": "YulFunctionCall",
"src": "12940:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "12940:93:3"
},
{
"nodeType": "YulAssignment",
"src": "13042:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13053:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13058:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13049:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13049:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13042:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12835:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12843:3:3",
"type": ""
}
],
"src": "12701:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13244:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13254:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13266:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13277:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13262:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13262:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13254:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13301:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13312:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13297:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13297:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13320:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13326:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13316:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13316:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13290:6:3"
},
"nodeType": "YulFunctionCall",
"src": "13290:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "13290:47:3"
},
{
"nodeType": "YulAssignment",
"src": "13346:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13480:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13354:124:3"
},
"nodeType": "YulFunctionCall",
"src": "13354:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13346:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13224:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13239:4:3",
"type": ""
}
],
"src": "13073:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13604:70:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13626:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13634:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13622:3:3"
},
"nodeType": "YulFunctionCall",
"src": "13622:14:3"
},
{
"hexValue": "56657374696e673a20616c72656164792066696e616c69736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13638:28:3",
"type": "",
"value": "Vesting: already finalised"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13615:6:3"
},
"nodeType": "YulFunctionCall",
"src": "13615:52:3"
},
"nodeType": "YulExpressionStatement",
"src": "13615:52:3"
}
]
},
"name": "store_literal_in_memory_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13596:6:3",
"type": ""
}
],
"src": "13498:176:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13826:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13836:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13902:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13907:2:3",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13843:58:3"
},
"nodeType": "YulFunctionCall",
"src": "13843:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13836:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14008:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b",
"nodeType": "YulIdentifier",
"src": "13919:88:3"
},
"nodeType": "YulFunctionCall",
"src": "13919:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "13919:93:3"
},
{
"nodeType": "YulAssignment",
"src": "14021:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14032:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14037:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14028:3:3"
},
"nodeType": "YulFunctionCall",
"src": "14028:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14021:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13814:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13822:3:3",
"type": ""
}
],
"src": "13680:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14223:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14233:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14245:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14256:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14241:3:3"
},
"nodeType": "YulFunctionCall",
"src": "14241:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14233:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14280:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14291:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14276:3:3"
},
"nodeType": "YulFunctionCall",
"src": "14276:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14299:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14305:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14295:3:3"
},
"nodeType": "YulFunctionCall",
"src": "14295:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14269:6:3"
},
"nodeType": "YulFunctionCall",
"src": "14269:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "14269:47:3"
},
{
"nodeType": "YulAssignment",
"src": "14325:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14459:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14333:124:3"
},
"nodeType": "YulFunctionCall",
"src": "14333:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14325:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14203:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14218:4:3",
"type": ""
}
],
"src": "14052:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14583:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14605:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14613:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14601:3:3"
},
"nodeType": "YulFunctionCall",
"src": "14601:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14617:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14594:6:3"
},
"nodeType": "YulFunctionCall",
"src": "14594:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "14594:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14673:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14681:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14669:3:3"
},
"nodeType": "YulFunctionCall",
"src": "14669:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14686:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14662:6:3"
},
"nodeType": "YulFunctionCall",
"src": "14662:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "14662:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14575:6:3",
"type": ""
}
],
"src": "14477:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14854:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14864:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14930:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14935:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14871:58:3"
},
"nodeType": "YulFunctionCall",
"src": "14871:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14864:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15036:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "14947:88:3"
},
"nodeType": "YulFunctionCall",
"src": "14947:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "14947:93:3"
},
{
"nodeType": "YulAssignment",
"src": "15049:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15060:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15065:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15056:3:3"
},
"nodeType": "YulFunctionCall",
"src": "15056:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15049:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14842:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14850:3:3",
"type": ""
}
],
"src": "14708:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15251:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15261:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15273:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15284:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15269:3:3"
},
"nodeType": "YulFunctionCall",
"src": "15269:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15261:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15308:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15319:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15304:3:3"
},
"nodeType": "YulFunctionCall",
"src": "15304:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15327:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15333:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15323:3:3"
},
"nodeType": "YulFunctionCall",
"src": "15323:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15297:6:3"
},
"nodeType": "YulFunctionCall",
"src": "15297:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "15297:47:3"
},
{
"nodeType": "YulAssignment",
"src": "15353:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15487:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15361:124:3"
},
"nodeType": "YulFunctionCall",
"src": "15361:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15353:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15231:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15246:4:3",
"type": ""
}
],
"src": "15080:419:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(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 identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_contract$_IERC20_$526_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_contract$_IERC20_$526_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_IERC20_$526_to_t_address(value))\n }\n\n function abi_encode_tuple_t_contract$_IERC20_$526__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_IERC20_$526_to_t_address_fromStack(value0, add(headStart, 0))\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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: User already partipated\")\n\n }\n\n function abi_encode_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd__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_5939e013d59c47a6024af551e0be15348d90067fee136b7e00da953cf77b1bfd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: Only sale contract can \")\n\n mstore(add(memPtr, 32), \"add participant\")\n\n }\n\n function abi_encode_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26__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_99a3188d553c7fce0b934bbc774063374a0d2d67a9e97b6d01102b222b839b26_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: Vesting contract is fin\")\n\n mstore(add(memPtr, 32), \"alised\")\n\n }\n\n function abi_encode_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce__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_6e8deb058700bbda25c725335a297d3052260050cc58472e1f5f49eab35d38ce_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function store_literal_in_memory_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: not enough cname to ves\")\n\n mstore(add(memPtr, 32), \"t amount\")\n\n }\n\n function abi_encode_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95__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_6e4a76df884f5f0da8bd26258387eaa22361005824246ea7659167edeaca4b95_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\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 abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: no tokens are due\")\n\n }\n\n function abi_encode_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 26)\n store_literal_in_memory_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef__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_931efa6709acff8fff0c69554d84259b7e4e774a141cdb5441b34cc8777d33ef_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\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 panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\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 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_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 store_literal_in_memory_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b(memPtr) {\n\n mstore(add(memPtr, 0), \"Vesting: already finalised\")\n\n }\n\n function abi_encode_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 26)\n store_literal_in_memory_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b__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_6a93803a86edc7c6ad7b633e7966b72687f32295ef4e0485ba24a0b9c525833b_to_t_string_memory_ptr_fromStack( tail)\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 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_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}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a6146101a15780638146f323146101ab5780638da5cb5b146101c9578063a4399263146101e7578063daf6ca30146101f1578063f2fde38b1461020f576100b4565b806309e69ede146100b957806318d85e53146100ea578063191655871461010657806334c76b2514610122578063384711cc146101405780637143059f14610170575b600080fd5b6100d360048036038101906100ce9190610d3e565b61022b565b6040516100e1929190610d84565b60405180910390f35b61010460048036038101906100ff9190610dd9565b61024f565b005b610120600480360381019061011b9190610d3e565b610626565b005b61012a61080c565b6040516101379190610e78565b60405180910390f35b61015a60048036038101906101559190610d3e565b610832565b6040516101679190610e93565b60405180910390f35b61018a60048036038101906101859190610d3e565b6108e4565b604051610198929190610d84565b60405180910390f35b6101a961093e565b005b6101b36109c6565b6040516101c09190610ec9565b60405180910390f35b6101d16109d9565b6040516101de9190610ef3565b60405180910390f35b6101ef610a02565b005b6101f9610af1565b6040516102069190610ef3565b60405180910390f35b61022960048036038101906102249190610d3e565b610b17565b005b60046020528060005260406000206000915090508060000154908060010154905082565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154146102d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d090610f6b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161036090610ffd565b60405180910390fd5b60001515600860009054906101000a900460ff161515146103bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b69061108f565b60405180910390fd5b600754600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161041d9190610ef3565b60206040518083038186803b15801561043557600080fd5b505afa158015610449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046d91906110c4565b6104779190611120565b8310156104b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b0906111c6565b60405180910390fd5b60405180604001604052808481526020016000815250600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105809190610ef3565b60206040518083038186803b15801561059857600080fd5b505afa1580156105ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d091906110c4565b600760008282546105e191906111e6565b925050819055507f287ab65235aa9a0baeed5b973fda48c77ebdc6f3dd931cfda1c082c0aecc1e73828460405161061992919061123c565b60405180910390a1505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816001015461067984610832565b6106839190611120565b9050600081116106c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bf906112b1565b60405180910390fd5b8082600101546106d891906111e6565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161077b92919061123c565b602060405180830381600087803b15801561079557600080fd5b505af11580156107a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cd91906112fd565b507fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e83826040516107ff92919061123c565b60405180910390a1505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600254421015610894576000925050506108df565b6003546001546108a491906111e6565b42106108b45780925050506108df565b600354600154426108c59190611120565b826108d0919061132a565b6108da91906113b3565b925050505b919050565b6000806000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050806000015481600101549250925050915091565b610946610c0f565b73ffffffffffffffffffffffffffffffffffffffff166109646109d9565b73ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190611430565b60405180910390fd5b6109c46000610c17565b565b600860009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a0a610c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a286109d9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611430565b60405180910390fd5b60001515600860009054906101000a900460ff16151514610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb9061149c565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b1f610c0f565b73ffffffffffffffffffffffffffffffffffffffff16610b3d6109d9565b73ffffffffffffffffffffffffffffffffffffffff1614610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90611430565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa9061152e565b60405180910390fd5b610c0c81610c17565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d0b82610ce0565b9050919050565b610d1b81610d00565b8114610d2657600080fd5b50565b600081359050610d3881610d12565b92915050565b600060208284031215610d5457610d53610cdb565b5b6000610d6284828501610d29565b91505092915050565b6000819050919050565b610d7e81610d6b565b82525050565b6000604082019050610d996000830185610d75565b610da66020830184610d75565b9392505050565b610db681610d6b565b8114610dc157600080fd5b50565b600081359050610dd381610dad565b92915050565b60008060408385031215610df057610def610cdb565b5b6000610dfe85828601610dc4565b9250506020610e0f85828601610d29565b9150509250929050565b6000819050919050565b6000610e3e610e39610e3484610ce0565b610e19565b610ce0565b9050919050565b6000610e5082610e23565b9050919050565b6000610e6282610e45565b9050919050565b610e7281610e57565b82525050565b6000602082019050610e8d6000830184610e69565b92915050565b6000602082019050610ea86000830184610d75565b92915050565b60008115159050919050565b610ec381610eae565b82525050565b6000602082019050610ede6000830184610eba565b92915050565b610eed81610d00565b82525050565b6000602082019050610f086000830184610ee4565b92915050565b600082825260208201905092915050565b7f56657374696e673a205573657220616c72656164792070617274697061746564600082015250565b6000610f55602083610f0e565b9150610f6082610f1f565b602082019050919050565b60006020820190508181036000830152610f8481610f48565b9050919050565b7f56657374696e673a204f6e6c792073616c6520636f6e74726163742063616e2060008201527f616464207061727469636970616e740000000000000000000000000000000000602082015250565b6000610fe7602f83610f0e565b9150610ff282610f8b565b604082019050919050565b6000602082019050818103600083015261101681610fda565b9050919050565b7f56657374696e673a2056657374696e6720636f6e74726163742069732066696e60008201527f616c697365640000000000000000000000000000000000000000000000000000602082015250565b6000611079602683610f0e565b91506110848261101d565b604082019050919050565b600060208201905081810360008301526110a88161106c565b9050919050565b6000815190506110be81610dad565b92915050565b6000602082840312156110da576110d9610cdb565b5b60006110e8848285016110af565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112b82610d6b565b915061113683610d6b565b925082821015611149576111486110f1565b5b828203905092915050565b7f56657374696e673a206e6f7420656e6f75676820636e616d6520746f2076657360008201527f7420616d6f756e74000000000000000000000000000000000000000000000000602082015250565b60006111b0602883610f0e565b91506111bb82611154565b604082019050919050565b600060208201905081810360008301526111df816111a3565b9050919050565b60006111f182610d6b565b91506111fc83610d6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611231576112306110f1565b5b828201905092915050565b60006040820190506112516000830185610ee4565b61125e6020830184610d75565b9392505050565b7f56657374696e673a206e6f20746f6b656e732061726520647565000000000000600082015250565b600061129b601a83610f0e565b91506112a682611265565b602082019050919050565b600060208201905081810360008301526112ca8161128e565b9050919050565b6112da81610eae565b81146112e557600080fd5b50565b6000815190506112f7816112d1565b92915050565b60006020828403121561131357611312610cdb565b5b6000611321848285016112e8565b91505092915050565b600061133582610d6b565b915061134083610d6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611379576113786110f1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006113be82610d6b565b91506113c983610d6b565b9250826113d9576113d8611384565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061141a602083610f0e565b9150611425826113e4565b602082019050919050565b600060208201905081810360008301526114498161140d565b9050919050565b7f56657374696e673a20616c72656164792066696e616c69736564000000000000600082015250565b6000611486601a83610f0e565b915061149182611450565b602082019050919050565b600060208201905081810360008301526114b581611479565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611518602683610f0e565b9150611523826114bc565b604082019050919050565b600060208201905081810360008301526115478161150b565b905091905056fea2646970667358221220c0a7eef667641b1b0605980c095dbc6e69d8a689812af90064617e350e90f9cd64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xB4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x8146F323 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0xA4399263 EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0xDAF6CA30 EQ PUSH2 0x1F1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x20F JUMPI PUSH2 0xB4 JUMP JUMPDEST DUP1 PUSH4 0x9E69EDE EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x18D85E53 EQ PUSH2 0xEA JUMPI DUP1 PUSH4 0x19165587 EQ PUSH2 0x106 JUMPI DUP1 PUSH4 0x34C76B25 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x384711CC EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x7143059F EQ PUSH2 0x170 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCE SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x22B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE1 SWAP3 SWAP2 SWAP1 PUSH2 0xD84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFF SWAP2 SWAP1 PUSH2 0xDD9 JUMP JUMPDEST PUSH2 0x24F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11B SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x626 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x12A PUSH2 0x80C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0xE78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x832 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x185 SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0x8E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP3 SWAP2 SWAP1 PUSH2 0xD84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A9 PUSH2 0x93E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1B3 PUSH2 0x9C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C0 SWAP2 SWAP1 PUSH2 0xEC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D1 PUSH2 0x9D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH2 0xA02 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F9 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0xD3E JUMP JUMPDEST PUSH2 0xB17 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD EQ PUSH2 0x2D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D0 SWAP1 PUSH2 0xF6B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x369 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x360 SWAP1 PUSH2 0xFFD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x3BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B6 SWAP1 PUSH2 0x108F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x41D SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x435 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x449 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x46D SWAP2 SWAP1 PUSH2 0x10C4 JUMP JUMPDEST PUSH2 0x477 SWAP2 SWAP1 PUSH2 0x1120 JUMP JUMPDEST DUP4 LT ISZERO PUSH2 0x4B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B0 SWAP1 PUSH2 0x11C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP PUSH1 0x4 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 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x580 SWAP2 SWAP1 PUSH2 0xEF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x598 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5AC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5D0 SWAP2 SWAP1 PUSH2 0x10C4 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x5E1 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0x287AB65235AA9A0BAEED5B973FDA48C77EBDC6F3DD931CFDA1C082C0AECC1E73 DUP3 DUP5 PUSH1 0x40 MLOAD PUSH2 0x619 SWAP3 SWAP2 SWAP1 PUSH2 0x123C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD PUSH2 0x679 DUP5 PUSH2 0x832 JUMP JUMPDEST PUSH2 0x683 SWAP2 SWAP1 PUSH2 0x1120 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x6C8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6BF SWAP1 PUSH2 0x12B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 DUP3 PUSH1 0x1 ADD SLOAD PUSH2 0x6D8 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x77B SWAP3 SWAP2 SWAP1 PUSH2 0x123C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x795 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7A9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7CD SWAP2 SWAP1 PUSH2 0x12FD JUMP JUMPDEST POP PUSH32 0xB21FB52D5749B80F3182F8C6992236B5E5576681880914484D7F4C9B062E619E DUP4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x7FF SWAP3 SWAP2 SWAP1 PUSH2 0x123C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP PUSH1 0x2 SLOAD TIMESTAMP LT ISZERO PUSH2 0x894 JUMPI PUSH1 0x0 SWAP3 POP POP POP PUSH2 0x8DF JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 SLOAD PUSH2 0x8A4 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST TIMESTAMP LT PUSH2 0x8B4 JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x8DF JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 SLOAD TIMESTAMP PUSH2 0x8C5 SWAP2 SWAP1 PUSH2 0x1120 JUMP JUMPDEST DUP3 PUSH2 0x8D0 SWAP2 SWAP1 PUSH2 0x132A JUMP JUMPDEST PUSH2 0x8DA SWAP2 SWAP1 PUSH2 0x13B3 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD DUP2 PUSH1 0x1 ADD SLOAD SWAP3 POP SWAP3 POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH2 0x946 PUSH2 0xC0F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x964 PUSH2 0x9D9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9BA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B1 SWAP1 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9C4 PUSH1 0x0 PUSH2 0xC17 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xA0A PUSH2 0xC0F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA28 PUSH2 0x9D9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA7E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA75 SWAP1 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0xAD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACB SWAP1 PUSH2 0x149C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0xB1F PUSH2 0xC0F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB3D PUSH2 0x9D9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB93 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB8A SWAP1 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC03 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBFA SWAP1 PUSH2 0x152E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC0C DUP2 PUSH2 0xC17 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD0B DUP3 PUSH2 0xCE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD1B DUP2 PUSH2 0xD00 JUMP JUMPDEST DUP2 EQ PUSH2 0xD26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD38 DUP2 PUSH2 0xD12 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD54 JUMPI PUSH2 0xD53 PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD62 DUP5 DUP3 DUP6 ADD PUSH2 0xD29 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD7E DUP2 PUSH2 0xD6B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xD99 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xDA6 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD75 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xDB6 DUP2 PUSH2 0xD6B JUMP JUMPDEST DUP2 EQ PUSH2 0xDC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDD3 DUP2 PUSH2 0xDAD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDF0 JUMPI PUSH2 0xDEF PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDFE DUP6 DUP3 DUP7 ADD PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE0F DUP6 DUP3 DUP7 ADD PUSH2 0xD29 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE3E PUSH2 0xE39 PUSH2 0xE34 DUP5 PUSH2 0xCE0 JUMP JUMPDEST PUSH2 0xE19 JUMP JUMPDEST PUSH2 0xCE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE50 DUP3 PUSH2 0xE23 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE62 DUP3 PUSH2 0xE45 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE72 DUP2 PUSH2 0xE57 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE8D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEA8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEC3 DUP2 PUSH2 0xEAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEDE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEBA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xEED DUP2 PUSH2 0xD00 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF08 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEE4 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 PUSH32 0x56657374696E673A205573657220616C72656164792070617274697061746564 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF55 PUSH1 0x20 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0xF60 DUP3 PUSH2 0xF1F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF84 DUP2 PUSH2 0xF48 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A204F6E6C792073616C6520636F6E74726163742063616E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616464207061727469636970616E740000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFE7 PUSH1 0x2F DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0xFF2 DUP3 PUSH2 0xF8B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1016 DUP2 PUSH2 0xFDA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A2056657374696E6720636F6E74726163742069732066696E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C697365640000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1079 PUSH1 0x26 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1084 DUP3 PUSH2 0x101D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10A8 DUP2 PUSH2 0x106C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x10BE DUP2 PUSH2 0xDAD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10DA JUMPI PUSH2 0x10D9 PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10E8 DUP5 DUP3 DUP6 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x112B DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x1136 DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1149 JUMPI PUSH2 0x1148 PUSH2 0x10F1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x56657374696E673A206E6F7420656E6F75676820636E616D6520746F20766573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7420616D6F756E74000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11B0 PUSH1 0x28 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x11BB DUP3 PUSH2 0x1154 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11DF DUP2 PUSH2 0x11A3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11F1 DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x11FC DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1231 JUMPI PUSH2 0x1230 PUSH2 0x10F1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1251 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xEE4 JUMP JUMPDEST PUSH2 0x125E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD75 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x56657374696E673A206E6F20746F6B656E732061726520647565000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x129B PUSH1 0x1A DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x12A6 DUP3 PUSH2 0x1265 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12CA DUP2 PUSH2 0x128E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12DA DUP2 PUSH2 0xEAE JUMP JUMPDEST DUP2 EQ PUSH2 0x12E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x12F7 DUP2 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1313 JUMPI PUSH2 0x1312 PUSH2 0xCDB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1321 DUP5 DUP3 DUP6 ADD PUSH2 0x12E8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1335 DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x1340 DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1379 JUMPI PUSH2 0x1378 PUSH2 0x10F1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x13BE DUP3 PUSH2 0xD6B JUMP JUMPDEST SWAP2 POP PUSH2 0x13C9 DUP4 PUSH2 0xD6B JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x13D9 JUMPI PUSH2 0x13D8 PUSH2 0x1384 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x141A PUSH1 0x20 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1425 DUP3 PUSH2 0x13E4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1449 DUP2 PUSH2 0x140D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x56657374696E673A20616C72656164792066696E616C69736564000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1486 PUSH1 0x1A DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1491 DUP3 PUSH2 0x1450 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14B5 DUP2 PUSH2 0x1479 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1518 PUSH1 0x26 DUP4 PUSH2 0xF0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1523 DUP3 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1547 DUP2 PUSH2 0x150B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC0 0xA7 0xEE 0xF6 PUSH8 0x641B1B0605980C09 0x5D 0xBC PUSH15 0x69D8A689812AF90064617E350E90F9 0xCD PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "617:3370:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;2121:658;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2984:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1035:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3554:431;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2785:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;:::i;:::-;;1126:23:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3405:143:2;;;:::i;:::-;;1060:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;984:45:2;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2121:658::-;2201:17;2221:12;:25;2234:11;2221:25;;;;;;;;;;;;;;;2201:45;;2279:1;2264:4;:11;;;:16;2256:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2349:12;;;;;;;;;;;2335:26;;:10;:26;;;2327:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;2446:5;2431:20;;:11;;;;;;;;;;;:20;;;2423:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2555:11;;2522:5;;;;;;;;;;;:15;;;2546:4;2522:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;;;:::i;:::-;2512:6;:54;;2504:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2650:15;;;;;;;;2655:6;2650:15;;;;2663:1;2650:15;;;2622:12;:25;2635:11;2622:25;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;;2690:5;;;;;;;;;;;:15;;;2714:4;2690:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2675:11;;:45;;;;;;;:::i;:::-;;;;;;;;2735:37;2752:11;2765:6;2735:37;;;;;;;:::i;:::-;;;;;;;;2191:588;2121:658;;:::o;2984:415::-;3041:17;3061:12;:25;3074:11;3061:25;;;;;;;;;;;;;;;3041:45;;3096:18;3145:4;:13;;;3117:25;3130:11;3117:12;:25::i;:::-;:41;;;;:::i;:::-;3096:62;;3189:1;3176:10;:14;3168:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;3285:10;3269:4;:13;;;:26;;;;:::i;:::-;3232:12;:25;3245:11;3232:25;;;;;;;;;;;;;;;:34;;:63;;;;3305:5;;;;;;;;;;;:14;;;3320:11;3333:10;3305:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3359:33;3368:11;3381:10;3359:33;;;;;;;:::i;:::-;;;;;;;;3031:368;;2984:415;:::o;1035:19::-;;;;;;;;;;;;;:::o;3554:431::-;3618:7;3637:17;3657:12;:25;3670:11;3657:25;;;;;;;;;;;;;;;3637:45;;3692:20;3715:4;:11;;;3692:34;;3759:5;;3741:15;:23;3737:242;;;3787:1;3780:8;;;;;;3737:242;3836:8;;3828:5;;:16;;;;:::i;:::-;3809:15;:35;3805:174;;3867:12;3860:19;;;;;;3805:174;3960:8;;3951:5;;3933:15;:23;;;;:::i;:::-;3917:12;:40;;;;:::i;:::-;:51;;;;:::i;:::-;3910:58;;;;3554:431;;;;:::o;2785:193::-;2853:7;2862;2880:17;2900:12;:26;2913:12;2900:26;;;;;;;;;;;;;;;2880:46;;2944:4;:11;;;2957:4;:13;;;2936:35;;;;;2785:193;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1126:23:2:-;;;;;;;;;;;;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;3405:143:2:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3477:5:2::1;3462:20;;:11;;;;;;;;;;;:20;;;3454:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;3537:4;3523:11;;:18;;;;;;;;;;;;;;;;;;3405:143::o:0;1060:27::-;;;;;;;;;;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;88:117:3:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:332::-;1504:4;1542:2;1531:9;1527:18;1519:26;;1555:71;1623:1;1612:9;1608:17;1599:6;1555:71;:::i;:::-;1636:72;1704:2;1693:9;1689:18;1680:6;1636:72;:::i;:::-;1383:332;;;;;:::o;1721:122::-;1794:24;1812:5;1794:24;:::i;:::-;1787:5;1784:35;1774:63;;1833:1;1830;1823:12;1774:63;1721:122;:::o;1849:139::-;1895:5;1933:6;1920:20;1911:29;;1949:33;1976:5;1949:33;:::i;:::-;1849:139;;;;:::o;1994:474::-;2062:6;2070;2119:2;2107:9;2098:7;2094:23;2090:32;2087:119;;;2125:79;;:::i;:::-;2087:119;2245:1;2270:53;2315:7;2306:6;2295:9;2291:22;2270:53;:::i;:::-;2260:63;;2216:117;2372:2;2398:53;2443:7;2434:6;2423:9;2419:22;2398:53;:::i;:::-;2388:63;;2343:118;1994:474;;;;;:::o;2474:60::-;2502:3;2523:5;2516:12;;2474:60;;;:::o;2540:142::-;2590:9;2623:53;2641:34;2650:24;2668:5;2650:24;:::i;:::-;2641:34;:::i;:::-;2623:53;:::i;:::-;2610:66;;2540:142;;;:::o;2688:126::-;2738:9;2771:37;2802:5;2771:37;:::i;:::-;2758:50;;2688:126;;;:::o;2820:140::-;2884:9;2917:37;2948:5;2917:37;:::i;:::-;2904:50;;2820:140;;;:::o;2966:159::-;3067:51;3112:5;3067:51;:::i;:::-;3062:3;3055:64;2966:159;;:::o;3131:250::-;3238:4;3276:2;3265:9;3261:18;3253:26;;3289:85;3371:1;3360:9;3356:17;3347:6;3289:85;:::i;:::-;3131:250;;;;:::o;3387:222::-;3480:4;3518:2;3507:9;3503:18;3495:26;;3531:71;3599:1;3588:9;3584:17;3575:6;3531:71;:::i;:::-;3387:222;;;;:::o;3615:90::-;3649:7;3692:5;3685:13;3678:21;3667:32;;3615:90;;;:::o;3711:109::-;3792:21;3807:5;3792:21;:::i;:::-;3787:3;3780:34;3711:109;;:::o;3826:210::-;3913:4;3951:2;3940:9;3936:18;3928:26;;3964:65;4026:1;4015:9;4011:17;4002:6;3964:65;:::i;:::-;3826:210;;;;:::o;4042:118::-;4129:24;4147:5;4129:24;:::i;:::-;4124:3;4117:37;4042:118;;:::o;4166:222::-;4259:4;4297:2;4286:9;4282:18;4274:26;;4310:71;4378:1;4367:9;4363:17;4354:6;4310:71;:::i;:::-;4166:222;;;;:::o;4394:169::-;4478:11;4512:6;4507:3;4500:19;4552:4;4547:3;4543:14;4528:29;;4394:169;;;;:::o;4569:182::-;4709:34;4705:1;4697:6;4693:14;4686:58;4569:182;:::o;4757:366::-;4899:3;4920:67;4984:2;4979:3;4920:67;:::i;:::-;4913:74;;4996:93;5085:3;4996:93;:::i;:::-;5114:2;5109:3;5105:12;5098:19;;4757:366;;;:::o;5129:419::-;5295:4;5333:2;5322:9;5318:18;5310:26;;5382:9;5376:4;5372:20;5368:1;5357:9;5353:17;5346:47;5410:131;5536:4;5410:131;:::i;:::-;5402:139;;5129:419;;;:::o;5554:234::-;5694:34;5690:1;5682:6;5678:14;5671:58;5763:17;5758:2;5750:6;5746:15;5739:42;5554:234;:::o;5794:366::-;5936:3;5957:67;6021:2;6016:3;5957:67;:::i;:::-;5950:74;;6033:93;6122:3;6033:93;:::i;:::-;6151:2;6146:3;6142:12;6135:19;;5794:366;;;:::o;6166:419::-;6332:4;6370:2;6359:9;6355:18;6347:26;;6419:9;6413:4;6409:20;6405:1;6394:9;6390:17;6383:47;6447:131;6573:4;6447:131;:::i;:::-;6439:139;;6166:419;;;:::o;6591:225::-;6731:34;6727:1;6719:6;6715:14;6708:58;6800:8;6795:2;6787:6;6783:15;6776:33;6591:225;:::o;6822:366::-;6964:3;6985:67;7049:2;7044:3;6985:67;:::i;:::-;6978:74;;7061:93;7150:3;7061:93;:::i;:::-;7179:2;7174:3;7170:12;7163:19;;6822:366;;;:::o;7194:419::-;7360:4;7398:2;7387:9;7383:18;7375:26;;7447:9;7441:4;7437:20;7433:1;7422:9;7418:17;7411:47;7475:131;7601:4;7475:131;:::i;:::-;7467:139;;7194:419;;;:::o;7619:143::-;7676:5;7707:6;7701:13;7692:22;;7723:33;7750:5;7723:33;:::i;:::-;7619:143;;;;:::o;7768:351::-;7838:6;7887:2;7875:9;7866:7;7862:23;7858:32;7855:119;;;7893:79;;:::i;:::-;7855:119;8013:1;8038:64;8094:7;8085:6;8074:9;8070:22;8038:64;:::i;:::-;8028:74;;7984:128;7768:351;;;;:::o;8125:180::-;8173:77;8170:1;8163:88;8270:4;8267:1;8260:15;8294:4;8291:1;8284:15;8311:191;8351:4;8371:20;8389:1;8371:20;:::i;:::-;8366:25;;8405:20;8423:1;8405:20;:::i;:::-;8400:25;;8444:1;8441;8438:8;8435:34;;;8449:18;;:::i;:::-;8435:34;8494:1;8491;8487:9;8479:17;;8311:191;;;;:::o;8508:227::-;8648:34;8644:1;8636:6;8632:14;8625:58;8717:10;8712:2;8704:6;8700:15;8693:35;8508:227;:::o;8741:366::-;8883:3;8904:67;8968:2;8963:3;8904:67;:::i;:::-;8897:74;;8980:93;9069:3;8980:93;:::i;:::-;9098:2;9093:3;9089:12;9082:19;;8741:366;;;:::o;9113:419::-;9279:4;9317:2;9306:9;9302:18;9294:26;;9366:9;9360:4;9356:20;9352:1;9341:9;9337:17;9330:47;9394:131;9520:4;9394:131;:::i;:::-;9386:139;;9113:419;;;:::o;9538:305::-;9578:3;9597:20;9615:1;9597:20;:::i;:::-;9592:25;;9631:20;9649:1;9631:20;:::i;:::-;9626:25;;9785:1;9717:66;9713:74;9710:1;9707:81;9704:107;;;9791:18;;:::i;:::-;9704:107;9835:1;9832;9828:9;9821:16;;9538:305;;;;:::o;9849:332::-;9970:4;10008:2;9997:9;9993:18;9985:26;;10021:71;10089:1;10078:9;10074:17;10065:6;10021:71;:::i;:::-;10102:72;10170:2;10159:9;10155:18;10146:6;10102:72;:::i;:::-;9849:332;;;;;:::o;10187:176::-;10327:28;10323:1;10315:6;10311:14;10304:52;10187:176;:::o;10369:366::-;10511:3;10532:67;10596:2;10591:3;10532:67;:::i;:::-;10525:74;;10608:93;10697:3;10608:93;:::i;:::-;10726:2;10721:3;10717:12;10710:19;;10369:366;;;:::o;10741:419::-;10907:4;10945:2;10934:9;10930:18;10922:26;;10994:9;10988:4;10984:20;10980:1;10969:9;10965:17;10958:47;11022:131;11148:4;11022:131;:::i;:::-;11014:139;;10741:419;;;:::o;11166:116::-;11236:21;11251:5;11236:21;:::i;:::-;11229:5;11226:32;11216:60;;11272:1;11269;11262:12;11216:60;11166:116;:::o;11288:137::-;11342:5;11373:6;11367:13;11358:22;;11389:30;11413:5;11389:30;:::i;:::-;11288:137;;;;:::o;11431:345::-;11498:6;11547:2;11535:9;11526:7;11522:23;11518:32;11515:119;;;11553:79;;:::i;:::-;11515:119;11673:1;11698:61;11751:7;11742:6;11731:9;11727:22;11698:61;:::i;:::-;11688:71;;11644:125;11431:345;;;;:::o;11782:348::-;11822:7;11845:20;11863:1;11845:20;:::i;:::-;11840:25;;11879:20;11897:1;11879:20;:::i;:::-;11874:25;;12067:1;11999:66;11995:74;11992:1;11989:81;11984:1;11977:9;11970:17;11966:105;11963:131;;;12074:18;;:::i;:::-;11963:131;12122:1;12119;12115:9;12104:20;;11782:348;;;;:::o;12136:180::-;12184:77;12181:1;12174:88;12281:4;12278:1;12271:15;12305:4;12302:1;12295:15;12322:185;12362:1;12379:20;12397:1;12379:20;:::i;:::-;12374:25;;12413:20;12431:1;12413:20;:::i;:::-;12408:25;;12452:1;12442:35;;12457:18;;:::i;:::-;12442:35;12499:1;12496;12492:9;12487:14;;12322:185;;;;:::o;12513:182::-;12653:34;12649:1;12641:6;12637:14;12630:58;12513:182;:::o;12701:366::-;12843:3;12864:67;12928:2;12923:3;12864:67;:::i;:::-;12857:74;;12940:93;13029:3;12940:93;:::i;:::-;13058:2;13053:3;13049:12;13042:19;;12701:366;;;:::o;13073:419::-;13239:4;13277:2;13266:9;13262:18;13254:26;;13326:9;13320:4;13316:20;13312:1;13301:9;13297:17;13290:47;13354:131;13480:4;13354:131;:::i;:::-;13346:139;;13073:419;;;:::o;13498:176::-;13638:28;13634:1;13626:6;13622:14;13615:52;13498:176;:::o;13680:366::-;13822:3;13843:67;13907:2;13902:3;13843:67;:::i;:::-;13836:74;;13919:93;14008:3;13919:93;:::i;:::-;14037:2;14032:3;14028:12;14021:19;;13680:366;;;:::o;14052:419::-;14218:4;14256:2;14245:9;14241:18;14233:26;;14305:9;14299:4;14295:20;14291:1;14280:9;14276:17;14269:47;14333:131;14459:4;14333:131;:::i;:::-;14325:139;;14052:419;;;:::o;14477:225::-;14617:34;14613:1;14605:6;14601:14;14594:58;14686:8;14681:2;14673:6;14669:15;14662:33;14477:225;:::o;14708:366::-;14850:3;14871:67;14935:2;14930:3;14871:67;:::i;:::-;14864:74;;14947:93;15036:3;14947:93;:::i;:::-;15065:2;15060:3;15056:12;15049:19;;14708:366;;;:::o;15080:419::-;15246:4;15284:2;15273:9;15269:18;15261:26;;15333:9;15327:4;15323:20;15319:1;15308:9;15304:17;15297:47;15361:131;15487:4;15361:131;:::i;:::-;15353:139;;15080:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1101600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"addParticipant(uint256,address)": "infinite",
"cname()": "infinite",
"finalise()": "28888",
"getParticipant(address)": "infinite",
"isFinalised()": "2493",
"owner()": "2566",
"participants(address)": "infinite",
"release(address)": "infinite",
"renounceOwnership()": "30374",
"saleContract()": "2602",
"transferOwnership(address)": "30833",
"vestedAmount(address)": "infinite"
}
},
"methodIdentifiers": {
"addParticipant(uint256,address)": "18d85e53",
"cname()": "34c76b25",
"finalise()": "a4399263",
"getParticipant(address)": "7143059f",
"isFinalised()": "8146f323",
"owner()": "8da5cb5b",
"participants(address)": "09e69ede",
"release(address)": "19165587",
"renounceOwnership()": "715018a6",
"saleContract()": "daf6ca30",
"transferOwnership(address)": "f2fde38b",
"vestedAmount(address)": "384711cc"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "address",
"name": "_saleContract",
"type": "address"
},
{
"internalType": "uint256",
"name": "_start",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_cliff",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_finish",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "participant",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "ParticipantAdded",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "participants",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Released",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "participant",
"type": "address"
}
],
"name": "addParticipant",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "cname",
"outputs": [
{
"internalType": "contract IERC20",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "finalise",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_participant",
"type": "address"
}
],
"name": "getParticipant",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "isFinalised",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "participants",
"outputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "released",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "participant",
"type": "address"
}
],
"name": "release",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "saleContract",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "participant",
"type": "address"
}
],
"name": "vestedAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "address",
"name": "_saleContract",
"type": "address"
},
{
"internalType": "uint256",
"name": "_start",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_cliff",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_finish",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "participant",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "ParticipantAdded",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "participants",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Released",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "participant",
"type": "address"
}
],
"name": "addParticipant",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "cname",
"outputs": [
{
"internalType": "contract IERC20",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "finalise",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_participant",
"type": "address"
}
],
"name": "getParticipant",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "isFinalised",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "participants",
"outputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "released",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "participant",
"type": "address"
}
],
"name": "release",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "saleContract",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "participant",
"type": "address"
}
],
"name": "vestedAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"addParticipant(uint256,address)": {
"details": "Add a participant to the vesting contract. This should be called by the tokensale contract. The function first checks if enough tokens have been added TODO: make role based: only the token sale contract should be able to call this function"
},
"owner()": {
"details": "Returns the address of the current owner."
},
"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."
},
"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": {
"contracts/Vesting.sol": "Vesting"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/Vesting.sol": {
"keccak256": "0x7bd52a3ef52381e92a9dc833e57800e23e2352f613cac63e207089a18e7a327c",
"license": "MIT",
"urls": [
"bzz-raw://e5df2eb4483a49a4a37a29232f840c32e2a324857f7fd64e77540c59a7bf57c6",
"dweb:/ipfs/QmRkcJFuhuEviRXgwpEwGcVBENygTGFNeFeq4q8ZLMvYh3"
]
}
},
"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": {
"functionDebugData": {
"@_149": {
"entryPoint": null,
"id": 149,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_844": {
"entryPoint": null,
"id": 844,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_691": {
"entryPoint": 876,
"id": 691,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_680": {
"entryPoint": 871,
"id": 680,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_509": {
"entryPoint": 494,
"id": 509,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_807": {
"entryPoint": 279,
"id": 807,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 287,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@decimals_179": {
"entryPoint": 485,
"id": 179,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1703,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1869,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1742,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1886,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1645,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1776,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 1117,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 1467,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 1208,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 1548,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1444,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 1454,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1962,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1057,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1915,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_right_1_unsigned": {
"entryPoint": 1104,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1662,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5381:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:6"
},
"nodeType": "YulFunctionCall",
"src": "45:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:6"
},
"nodeType": "YulFunctionCall",
"src": "142:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:6"
},
"nodeType": "YulFunctionCall",
"src": "166:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "7:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:34:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "279:1:6",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "282:5:6"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "275:3:6"
},
"nodeType": "YulFunctionCall",
"src": "275:13:6"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "254:8:6"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "225:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "235:8:6",
"type": ""
}
],
"src": "193:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "374:775:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "384:15:6",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "393:6:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "384:5:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "408:14:6",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "417:5:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "408:4:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "466:677:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "554:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "556:16:6"
},
"nodeType": "YulFunctionCall",
"src": "556:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "556:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "532:4:6"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "542:3:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "547:4:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "538:3:6"
},
"nodeType": "YulFunctionCall",
"src": "538:14:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "529:2:6"
},
"nodeType": "YulFunctionCall",
"src": "529:24:6"
},
"nodeType": "YulIf",
"src": "526:50:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "621:419:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1001:25:6",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1014:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1021:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1010:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1010:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1001:5:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "596:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "606:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "592:3:6"
},
"nodeType": "YulFunctionCall",
"src": "592:16:6"
},
"nodeType": "YulIf",
"src": "589:451:6"
},
{
"nodeType": "YulAssignment",
"src": "1053:23:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1065:4:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1071:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1061:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1061:15:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1053:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1089:44:6",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1124:8:6"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "1101:22:6"
},
"nodeType": "YulFunctionCall",
"src": "1101:32:6"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1089:8:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "442:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "452:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "439:2:6"
},
"nodeType": "YulFunctionCall",
"src": "439:15:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "455:2:6",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "435:3:6",
"statements": []
},
"src": "431:712:6"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "329:6:6",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "337:5:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "344:8:6",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "354:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "362:5:6",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "369:4:6",
"type": ""
}
],
"src": "301:848:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1215:1013:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1410:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1412:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1421:1:6",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1412:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "1423:5:6"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1400:8:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1393:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1393:16:6"
},
"nodeType": "YulIf",
"src": "1390:40:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1455:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1457:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1466:1:6",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1457:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "1468:5:6"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1449:4:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1442:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1442:12:6"
},
"nodeType": "YulIf",
"src": "1439:36:6"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "1585:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1587:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1596:1:6",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1587:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "1598:5:6"
}
]
},
"nodeType": "YulCase",
"src": "1578:27:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1583:1:6",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "1629:176:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1664:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1666:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1666:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1666:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1649:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:3:6",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1646:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1646:17:6"
},
"nodeType": "YulIf",
"src": "1643:43:6"
},
{
"nodeType": "YulAssignment",
"src": "1699:25:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1712:1:6",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1715:8:6"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "1708:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1708:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1699:5:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1755:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1757:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1757:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1757:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1743:5:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "1750:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1740:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1740:14:6"
},
"nodeType": "YulIf",
"src": "1737:40:6"
},
{
"nodeType": "YulLeave",
"src": "1790:5:6"
}
]
},
"nodeType": "YulCase",
"src": "1614:191:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1619:1:6",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "1535:4:6"
},
"nodeType": "YulSwitch",
"src": "1528:277:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1937:123:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1951:28:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1964:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1970:8:6"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "1960:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1960:19:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1951:5:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2010:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2012:16:6"
},
"nodeType": "YulFunctionCall",
"src": "2012:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "2012:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1998:5:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2005:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1995:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1995:14:6"
},
"nodeType": "YulIf",
"src": "1992:40:6"
},
{
"nodeType": "YulLeave",
"src": "2045:5:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1840:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1846:2:6",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1837:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1837:12:6"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1854:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1864:2:6",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1851:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1851:16:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1833:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1833:35:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1889:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:3:6",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1886:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1886:13:6"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1904:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1914:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1901:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1901:16:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1882:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1882:36:6"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1817:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1817:111:6"
},
"nodeType": "YulIf",
"src": "1814:246:6"
},
{
"nodeType": "YulAssignment",
"src": "2070:57:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2104:1:6",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2107:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2113:8:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2123:3:6"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "2085:18:6"
},
"nodeType": "YulFunctionCall",
"src": "2085:42:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2070:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2077:4:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2166:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2168:16:6"
},
"nodeType": "YulFunctionCall",
"src": "2168:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "2168:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2143:5:6"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2154:3:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2159:4:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2150:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2150:14:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2140:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2140:25:6"
},
"nodeType": "YulIf",
"src": "2137:51:6"
},
{
"nodeType": "YulAssignment",
"src": "2197:25:6",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2210:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2217:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2206:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2206:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2197:5:6"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "1185:4:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "1191:8:6",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "1201:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "1209:5:6",
"type": ""
}
],
"src": "1155:1073:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2279:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2289:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2300:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2289:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2261:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2271:7:6",
"type": ""
}
],
"src": "2234:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2360:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2370:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2385:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2392:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2381:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2381:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2370:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2342:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2352:7:6",
"type": ""
}
],
"src": "2317:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2473:217:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2483:31:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2509:4:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2491:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2491:23:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2483:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2523:37:6",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2551:8:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "2535:15:6"
},
"nodeType": "YulFunctionCall",
"src": "2535:25:6"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2523:8:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2570:113:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2600:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2606:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2616:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "2579:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2579:104:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2570:5:6"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2448:4:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2454:8:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2467:5:6",
"type": ""
}
],
"src": "2409:281:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2744:300:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2754:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2777:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2759:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2759:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2754:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2788:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2811:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2793:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2793:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2788:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2986:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2988:16:6"
},
"nodeType": "YulFunctionCall",
"src": "2988:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "2988:18:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2898:1:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2891:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2891:9:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2884:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2884:17:6"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2906:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2913:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2981:1:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2909:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2909:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2903:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2903:81:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2880:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2880:105:6"
},
"nodeType": "YulIf",
"src": "2877:131:6"
},
{
"nodeType": "YulAssignment",
"src": "3018:20:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3033:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3036:1:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3029:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3029:9:6"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "3018:7:6"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2727:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2730:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "2736:7:6",
"type": ""
}
],
"src": "2696:348:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3146:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3163:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3168:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3156:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3156:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "3156:19:6"
},
{
"nodeType": "YulAssignment",
"src": "3184:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3203:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3208:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3199:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3199:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3184:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3118:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3123:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3134:11:6",
"type": ""
}
],
"src": "3050:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3331:75:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3353:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3361:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3349:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3349:14:6"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3365:33:6",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3342:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3342:57:6"
},
"nodeType": "YulExpressionStatement",
"src": "3342:57:6"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3323:6:6",
"type": ""
}
],
"src": "3225:181:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3558:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3568:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3634:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3639:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3575:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3575:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3568:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3740:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "3651:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3651:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3651:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3753:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3764:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3769:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3760:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3760:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3753:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3546:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3554:3:6",
"type": ""
}
],
"src": "3412:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3955:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3965:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3977:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3973:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3973:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3965:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4012:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4023:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4008:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4008:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4031:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4037:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4027:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4027:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4001:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4001:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "4001:47:6"
},
{
"nodeType": "YulAssignment",
"src": "4057:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4191:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4065:124:6"
},
"nodeType": "YulFunctionCall",
"src": "4065:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4057:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3935:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3950:4:6",
"type": ""
}
],
"src": "3784:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4253:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4263:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4286:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4268:17:6"
},
"nodeType": "YulFunctionCall",
"src": "4268:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4263:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4297:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4320:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4302:17:6"
},
"nodeType": "YulFunctionCall",
"src": "4302:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4297:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4460:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4462:16:6"
},
"nodeType": "YulFunctionCall",
"src": "4462:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "4462:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4381:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4388:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4456:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4384:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4384:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4378:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4378:81:6"
},
"nodeType": "YulIf",
"src": "4375:107:6"
},
{
"nodeType": "YulAssignment",
"src": "4492:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4503:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4506:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4499:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4499:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4492:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4240:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4243:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4249:3:6",
"type": ""
}
],
"src": "4209:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4585:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4602:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4625:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4607:17:6"
},
"nodeType": "YulFunctionCall",
"src": "4607:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4595:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4595:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "4595:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4573:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4580:3:6",
"type": ""
}
],
"src": "4520:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4742:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4752:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4764:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4775:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4760:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4760:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4752:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4832:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4845:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4856:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4841:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4841:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4788:43:6"
},
"nodeType": "YulFunctionCall",
"src": "4788:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "4788:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4714:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4726:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4737:4:6",
"type": ""
}
],
"src": "4644:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4900:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4917:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4920:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4910:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4910:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "4910:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5014:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5017:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5007:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5007:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "5007:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5038:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5041:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5031:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5031:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "5031:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4872:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5109:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5119:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5133:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5139:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5129:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5129:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5119:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5150:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5180:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5186:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5176:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5176:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5154:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5227:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5241:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5255:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5263:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5251:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5251:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5241:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5207:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5200:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5200:26:6"
},
"nodeType": "YulIf",
"src": "5197:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5330:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5344:16:6"
},
"nodeType": "YulFunctionCall",
"src": "5344:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "5344:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5294:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5317:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5325:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5314:2:6"
},
"nodeType": "YulFunctionCall",
"src": "5314:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5291:2:6"
},
"nodeType": "YulFunctionCall",
"src": "5291:38:6"
},
"nodeType": "YulIf",
"src": "5288:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5093:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5102:6:6",
"type": ""
}
],
"src": "5058:320:6"
}
]
},
"contents": "{\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 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_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 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 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_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 array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\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_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 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 abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600581526020017f434e616d650000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434e4d450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000371565b508060049080519060200190620000af92919062000371565b505050620000d2620000c66200011760201b60201c565b6200011f60201b60201c565b6200011133620000e7620001e560201b60201c565b600a620000f59190620005bb565b620f42406200010591906200060c565b620001ee60201b60201c565b620007e0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025890620006ce565b60405180910390fd5b62000275600083836200036760201b60201c565b8060026000828254620002899190620006f0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e09190620006f0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034791906200075e565b60405180910390a362000363600083836200036c60201b60201c565b5050565b505050565b505050565b8280546200037f90620007aa565b90600052602060002090601f016020900481019282620003a35760008555620003ef565b82601f10620003be57805160ff1916838001178555620003ef565b82800160010185558215620003ef579182015b82811115620003ee578251825591602001919060010190620003d1565b5b509050620003fe919062000402565b5090565b5b808211156200041d57600081600090555060010162000403565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004af5780860481111562000487576200048662000421565b5b6001851615620004975780820291505b8081029050620004a78562000450565b945062000467565b94509492505050565b600082620004ca57600190506200059d565b81620004da57600090506200059d565b8160018114620004f35760028114620004fe5762000534565b60019150506200059d565b60ff84111562000513576200051262000421565b5b8360020a9150848211156200052d576200052c62000421565b5b506200059d565b5060208310610133831016604e8410600b84101617156200056e5782820a90508381111562000568576200056762000421565b5b6200059d565b6200057d84848460016200045d565b9250905081840481111562000597576200059662000421565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005c882620005a4565b9150620005d583620005ae565b9250620006047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004b8565b905092915050565b60006200061982620005a4565b91506200062683620005a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000662576200066162000421565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006b6601f836200066d565b9150620006c3826200067e565b602082019050919050565b60006020820190508181036000830152620006e981620006a7565b9050919050565b6000620006fd82620005a4565b91506200070a83620005a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000742576200074162000421565b5b828201905092915050565b6200075881620005a4565b82525050565b60006020820190506200077560008301846200074d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c357607f821691505b60208210811415620007da57620007d96200077b565b5b50919050565b6119e880620007f06000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061110e565b60405180910390f35b610132600480360381019061012d91906111c9565b6103b4565b60405161013f9190611224565b60405180910390f35b6101506103d7565b60405161015d919061124e565b60405180910390f35b610180600480360381019061017b9190611269565b6103e1565b60405161018d9190611224565b60405180910390f35b61019e610410565b6040516101ab91906112d8565b60405180910390f35b6101ce60048036038101906101c991906111c9565b610419565b6040516101db9190611224565b60405180910390f35b6101fe60048036038101906101f991906111c9565b6104c3565b005b61021a600480360381019061021591906112f3565b61054d565b604051610227919061124e565b60405180910390f35b610238610595565b005b61024261061d565b60405161024f919061132f565b60405180910390f35b610260610647565b60405161026d919061110e565b60405180910390f35b610290600480360381019061028b91906111c9565b6106d9565b60405161029d9190611224565b60405180910390f35b6102c060048036038101906102bb91906111c9565b6107c3565b6040516102cd9190611224565b60405180910390f35b6102f060048036038101906102eb919061134a565b6107e6565b6040516102fd919061124e565b60405180910390f35b610320600480360381019061031b91906112f3565b61086d565b005b606060038054610331906113b9565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906113b9565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610965565b90506103cc81858561096d565b600191505092915050565b6000600254905090565b6000806103ec610965565b90506103f9858285610b38565b610404858585610bc4565b60019150509392505050565b60006012905090565b600080610424610965565b90506104b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104b3919061141a565b61096d565b600191505092915050565b6104cb610965565b73ffffffffffffffffffffffffffffffffffffffff166104e961061d565b73ffffffffffffffffffffffffffffffffffffffff161461053f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610536906114bc565b60405180910390fd5b6105498282610e45565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61059d610965565b73ffffffffffffffffffffffffffffffffffffffff166105bb61061d565b73ffffffffffffffffffffffffffffffffffffffff1614610611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610608906114bc565b60405180910390fd5b61061b6000610fa5565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610656906113b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610682906113b9565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b6000806106e4610965565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a19061154e565b60405180910390fd5b6107b7828686840361096d565b60019250505092915050565b6000806107ce610965565b90506107db818585610bc4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610875610965565b73ffffffffffffffffffffffffffffffffffffffff1661089361061d565b73ffffffffffffffffffffffffffffffffffffffff16146108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e0906114bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906115e0565b60405180910390fd5b61096281610fa5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490611672565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611704565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2b919061124e565b60405180910390a3505050565b6000610b4484846107e6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbe5781811015610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611770565b60405180910390fd5b610bbd848484840361096d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90611802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611894565b60405180910390fd5b610caf83838361106b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90611926565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc8919061141a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e2c919061124e565b60405180910390a3610e3f848484611070565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90611992565b60405180910390fd5b610ec16000838361106b565b8060026000828254610ed3919061141a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f28919061141a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f8d919061124e565b60405180910390a3610fa160008383611070565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110af578082015181840152602081019050611094565b838111156110be576000848401525b50505050565b6000601f19601f8301169050919050565b60006110e082611075565b6110ea8185611080565b93506110fa818560208601611091565b611103816110c4565b840191505092915050565b6000602082019050818103600083015261112881846110d5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061116082611135565b9050919050565b61117081611155565b811461117b57600080fd5b50565b60008135905061118d81611167565b92915050565b6000819050919050565b6111a681611193565b81146111b157600080fd5b50565b6000813590506111c38161119d565b92915050565b600080604083850312156111e0576111df611130565b5b60006111ee8582860161117e565b92505060206111ff858286016111b4565b9150509250929050565b60008115159050919050565b61121e81611209565b82525050565b60006020820190506112396000830184611215565b92915050565b61124881611193565b82525050565b6000602082019050611263600083018461123f565b92915050565b60008060006060848603121561128257611281611130565b5b60006112908682870161117e565b93505060206112a18682870161117e565b92505060406112b2868287016111b4565b9150509250925092565b600060ff82169050919050565b6112d2816112bc565b82525050565b60006020820190506112ed60008301846112c9565b92915050565b60006020828403121561130957611308611130565b5b60006113178482850161117e565b91505092915050565b61132981611155565b82525050565b60006020820190506113446000830184611320565b92915050565b6000806040838503121561136157611360611130565b5b600061136f8582860161117e565b92505060206113808582860161117e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113d157607f821691505b602082108114156113e5576113e461138a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061142582611193565b915061143083611193565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611465576114646113eb565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114a6602083611080565b91506114b182611470565b602082019050919050565b600060208201905081810360008301526114d581611499565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611538602583611080565b9150611543826114dc565b604082019050919050565b600060208201905081810360008301526115678161152b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115ca602683611080565b91506115d58261156e565b604082019050919050565b600060208201905081810360008301526115f9816115bd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061165c602483611080565b915061166782611600565b604082019050919050565b6000602082019050818103600083015261168b8161164f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116ee602283611080565b91506116f982611692565b604082019050919050565b6000602082019050818103600083015261171d816116e1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061175a601d83611080565b915061176582611724565b602082019050919050565b600060208201905081810360008301526117898161174d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ec602583611080565b91506117f782611790565b604082019050919050565b6000602082019050818103600083015261181b816117df565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061187e602383611080565b915061188982611822565b604082019050919050565b600060208201905081810360008301526118ad81611871565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611910602683611080565b915061191b826118b4565b604082019050919050565b6000602082019050818103600083015261193f81611903565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061197c601f83611080565b915061198782611946565b602082019050919050565b600060208201905081810360008301526119ab8161196f565b905091905056fea2646970667358221220b1110998de88435a0e58f3302c5718f4aaeb89a02a54541789e9569b7b4a7c3a64736f6c63430008090033",
"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 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x434E616D65000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x434E4D4500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x371 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x371 JUMP JUMPDEST POP POP POP PUSH3 0xD2 PUSH3 0xC6 PUSH3 0x117 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x11F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x111 CALLER PUSH3 0xE7 PUSH3 0x1E5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0xF5 SWAP2 SWAP1 PUSH3 0x5BB JUMP JUMPDEST PUSH3 0xF4240 PUSH3 0x105 SWAP2 SWAP1 PUSH3 0x60C JUMP JUMPDEST PUSH3 0x1EE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x7E0 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x258 SWAP1 PUSH3 0x6CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x275 PUSH1 0x0 DUP4 DUP4 PUSH3 0x367 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x289 SWAP2 SWAP1 PUSH3 0x6F0 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 0x2E0 SWAP2 SWAP1 PUSH3 0x6F0 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 0x347 SWAP2 SWAP1 PUSH3 0x75E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x363 PUSH1 0x0 DUP4 DUP4 PUSH3 0x36C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x37F SWAP1 PUSH3 0x7AA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3A3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x3EF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x3BE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x3EF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x3EF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x3EE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x3D1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x3FE SWAP2 SWAP1 PUSH3 0x402 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x41D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x403 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x4AF JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x487 JUMPI PUSH3 0x486 PUSH3 0x421 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x497 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x4A7 DUP6 PUSH3 0x450 JUMP JUMPDEST SWAP5 POP PUSH3 0x467 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x4CA JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x59D JUMP JUMPDEST DUP2 PUSH3 0x4DA JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x59D JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x4F3 JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x4FE JUMPI PUSH3 0x534 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x59D JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x513 JUMPI PUSH3 0x512 PUSH3 0x421 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x52D JUMPI PUSH3 0x52C PUSH3 0x421 JUMP JUMPDEST JUMPDEST POP PUSH3 0x59D JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x56E JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x568 JUMPI PUSH3 0x567 PUSH3 0x421 JUMP JUMPDEST JUMPDEST PUSH3 0x59D JUMP JUMPDEST PUSH3 0x57D DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x45D JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x597 JUMPI PUSH3 0x596 PUSH3 0x421 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP 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 PUSH3 0x5C8 DUP3 PUSH3 0x5A4 JUMP JUMPDEST SWAP2 POP PUSH3 0x5D5 DUP4 PUSH3 0x5AE JUMP JUMPDEST SWAP3 POP PUSH3 0x604 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x4B8 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x619 DUP3 PUSH3 0x5A4 JUMP JUMPDEST SWAP2 POP PUSH3 0x626 DUP4 PUSH3 0x5A4 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x662 JUMPI PUSH3 0x661 PUSH3 0x421 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6B6 PUSH1 0x1F DUP4 PUSH3 0x66D JUMP JUMPDEST SWAP2 POP PUSH3 0x6C3 DUP3 PUSH3 0x67E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x6E9 DUP2 PUSH3 0x6A7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6FD DUP3 PUSH3 0x5A4 JUMP JUMPDEST SWAP2 POP PUSH3 0x70A DUP4 PUSH3 0x5A4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x742 JUMPI PUSH3 0x741 PUSH3 0x421 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x758 DUP2 PUSH3 0x5A4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x775 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x74D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x7C3 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7DA JUMPI PUSH3 0x7D9 PUSH3 0x77B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x19E8 DUP1 PUSH3 0x7F0 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 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2D6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x306 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x258 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1E4 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x148 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x102 PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x132 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x3B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x150 PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15D SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x1269 JUMP JUMPDEST PUSH2 0x3E1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19E PUSH2 0x410 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x12D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C9 SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x419 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F9 SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x4C3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x54D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x238 PUSH2 0x595 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x242 PUSH2 0x61D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24F SWAP2 SWAP1 PUSH2 0x132F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH2 0x647 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x290 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x6D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x7C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EB SWAP2 SWAP1 PUSH2 0x134A JUMP JUMPDEST PUSH2 0x7E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FD SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x320 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x86D JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x331 SWAP1 PUSH2 0x13B9 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 0x35D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3AA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3AA 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 0x38D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3BF PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x3CC DUP2 DUP6 DUP6 PUSH2 0x96D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3EC PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x3F9 DUP6 DUP3 DUP6 PUSH2 0xB38 JUMP JUMPDEST PUSH2 0x404 DUP6 DUP6 DUP6 PUSH2 0xBC4 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 DUP1 PUSH2 0x424 PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x4B8 DUP2 DUP6 DUP6 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 DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x4B3 SWAP2 SWAP1 PUSH2 0x141A JUMP JUMPDEST PUSH2 0x96D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4CB PUSH2 0x965 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4E9 PUSH2 0x61D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x53F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x536 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x549 DUP3 DUP3 PUSH2 0xE45 JUMP JUMPDEST POP POP 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 0x59D PUSH2 0x965 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5BB PUSH2 0x61D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x611 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x608 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x61B PUSH1 0x0 PUSH2 0xFA5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x656 SWAP1 PUSH2 0x13B9 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 0x682 SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6CF 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 0x6B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x6E4 PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x7AA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A1 SWAP1 PUSH2 0x154E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7B7 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x96D JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7CE PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x7DB DUP2 DUP6 DUP6 PUSH2 0xBC4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x875 PUSH2 0x965 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x893 PUSH2 0x61D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8E0 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x959 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x950 SWAP1 PUSH2 0x15E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x962 DUP2 PUSH2 0xFA5 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x9DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D4 SWAP1 PUSH2 0x1672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA4D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA44 SWAP1 PUSH2 0x1704 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 0xB2B SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB44 DUP5 DUP5 PUSH2 0x7E6 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xBBE JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xBB0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBA7 SWAP1 PUSH2 0x1770 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBBD DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x96D JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC34 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC2B SWAP1 PUSH2 0x1802 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCA4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC9B SWAP1 PUSH2 0x1894 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xCAF DUP4 DUP4 DUP4 PUSH2 0x106B 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 0xD35 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD2C SWAP1 PUSH2 0x1926 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB 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 0xDC8 SWAP2 SWAP1 PUSH2 0x141A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE2C SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE3F DUP5 DUP5 DUP5 PUSH2 0x1070 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEB5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEAC SWAP1 PUSH2 0x1992 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEC1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x106B JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xED3 SWAP2 SWAP1 PUSH2 0x141A 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 PUSH2 0xF28 SWAP2 SWAP1 PUSH2 0x141A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xF8D SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xFA1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1070 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10AF JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1094 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10BE JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10E0 DUP3 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x10EA DUP2 DUP6 PUSH2 0x1080 JUMP JUMPDEST SWAP4 POP PUSH2 0x10FA DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1091 JUMP JUMPDEST PUSH2 0x1103 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1128 DUP2 DUP5 PUSH2 0x10D5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1160 DUP3 PUSH2 0x1135 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1170 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP2 EQ PUSH2 0x117B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x118D DUP2 PUSH2 0x1167 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11A6 DUP2 PUSH2 0x1193 JUMP JUMPDEST DUP2 EQ PUSH2 0x11B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x11C3 DUP2 PUSH2 0x119D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E0 JUMPI PUSH2 0x11DF PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11EE DUP6 DUP3 DUP7 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x11FF DUP6 DUP3 DUP7 ADD PUSH2 0x11B4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x121E DUP2 PUSH2 0x1209 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1239 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1215 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1248 DUP2 PUSH2 0x1193 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1263 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x123F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1282 JUMPI PUSH2 0x1281 PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1290 DUP7 DUP3 DUP8 ADD PUSH2 0x117E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x12A1 DUP7 DUP3 DUP8 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x12B2 DUP7 DUP3 DUP8 ADD PUSH2 0x11B4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12D2 DUP2 PUSH2 0x12BC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x12ED PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x12C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1309 JUMPI PUSH2 0x1308 PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1317 DUP5 DUP3 DUP6 ADD PUSH2 0x117E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1329 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1344 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1320 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH2 0x1360 PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x136F DUP6 DUP3 DUP7 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1380 DUP6 DUP3 DUP7 ADD PUSH2 0x117E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x13D1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x13E5 JUMPI PUSH2 0x13E4 PUSH2 0x138A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1425 DUP3 PUSH2 0x1193 JUMP JUMPDEST SWAP2 POP PUSH2 0x1430 DUP4 PUSH2 0x1193 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1465 JUMPI PUSH2 0x1464 PUSH2 0x13EB JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14A6 PUSH1 0x20 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x14B1 DUP3 PUSH2 0x1470 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14D5 DUP2 PUSH2 0x1499 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1538 PUSH1 0x25 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1543 DUP3 PUSH2 0x14DC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1567 DUP2 PUSH2 0x152B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15CA PUSH1 0x26 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x15D5 DUP3 PUSH2 0x156E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x15F9 DUP2 PUSH2 0x15BD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x165C PUSH1 0x24 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1667 DUP3 PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x168B DUP2 PUSH2 0x164F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16EE PUSH1 0x22 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x16F9 DUP3 PUSH2 0x1692 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x171D DUP2 PUSH2 0x16E1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x175A PUSH1 0x1D DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1765 DUP3 PUSH2 0x1724 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1789 DUP2 PUSH2 0x174D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17EC PUSH1 0x25 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x17F7 DUP3 PUSH2 0x1790 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x181B DUP2 PUSH2 0x17DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x187E PUSH1 0x23 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1889 DUP3 PUSH2 0x1822 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18AD DUP2 PUSH2 0x1871 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1910 PUSH1 0x26 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x191B DUP3 PUSH2 0x18B4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x193F DUP2 PUSH2 0x1903 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x197C PUSH1 0x1F DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1987 DUP3 PUSH2 0x1946 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19AB DUP2 PUSH2 0x196F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 GT MULMOD SWAP9 0xDE DUP9 NUMBER GAS 0xE PC RETURN ADDRESS 0x2C JUMPI XOR DELEGATECALL 0xAA 0xEB DUP10 LOG0 0x2A SLOAD SLOAD OR DUP10 0xE9 JUMP SWAP12 PUSH28 0x4A7C3A64736F6C634300080900330000000000000000000000000000 ",
"sourceMap": "167:239:5:-:0;;;206:99;;;;;;;;;;1978:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2052:5;2044;:13;;;;;;;;;;;;:::i;:::-;;2077:7;2067;:17;;;;;;;;;;;;:::i;:::-;;1978:113;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;253:45:5::1;259:10;287;:8;;;:10;;:::i;:::-;281:2;:16;;;;:::i;:::-;271:7;:26;;;;:::i;:::-;253:5;;;:45;;:::i;:::-;167:239:::0;;640:96:4;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;3093:91:1:-;3151:5;3175:2;3168:9;;3093:91;:::o;8415:389::-;8517:1;8498:21;;:7;:21;;;;8490:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8566:49;8595:1;8599:7;8608:6;8566:20;;;:49;;:::i;:::-;8642:6;8626:12;;:22;;;;;;;:::i;:::-;;;;;;;;8680:6;8658:9;:18;8668:7;8658:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8722:7;8701:37;;8718:1;8701:37;;;8731:6;8701:37;;;;;;:::i;:::-;;;;;;;;8749:48;8777:1;8781:7;8790:6;8749:19;;;:48;;:::i;:::-;8415:389;;:::o;11795:121::-;;;;:::o;12504:120::-;;;;:::o;167:239:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:180:6:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:102;235:8;282:5;279:1;275:13;254:34;;193:102;;;:::o;301:848::-;362:5;369:4;393:6;384:15;;417:5;408:14;;431:712;452:1;442:8;439:15;431:712;;;547:4;542:3;538:14;532:4;529:24;526:50;;;556:18;;:::i;:::-;526:50;606:1;596:8;592:16;589:451;;;1021:4;1014:5;1010:16;1001:25;;589:451;1071:4;1065;1061:15;1053:23;;1101:32;1124:8;1101:32;:::i;:::-;1089:44;;431:712;;;301:848;;;;;;;:::o;1155:1073::-;1209:5;1400:8;1390:40;;1421:1;1412:10;;1423:5;;1390:40;1449:4;1439:36;;1466:1;1457:10;;1468:5;;1439:36;1535:4;1583:1;1578:27;;;;1619:1;1614:191;;;;1528:277;;1578:27;1596:1;1587:10;;1598:5;;;1614:191;1659:3;1649:8;1646:17;1643:43;;;1666:18;;:::i;:::-;1643:43;1715:8;1712:1;1708:16;1699:25;;1750:3;1743:5;1740:14;1737:40;;;1757:18;;:::i;:::-;1737:40;1790:5;;;1528:277;;1914:2;1904:8;1901:16;1895:3;1889:4;1886:13;1882:36;1864:2;1854:8;1851:16;1846:2;1840:4;1837:12;1833:35;1817:111;1814:246;;;1970:8;1964:4;1960:19;1951:28;;2005:3;1998:5;1995:14;1992:40;;;2012:18;;:::i;:::-;1992:40;2045:5;;1814:246;2085:42;2123:3;2113:8;2107:4;2104:1;2085:42;:::i;:::-;2070:57;;;;2159:4;2154:3;2150:14;2143:5;2140:25;2137:51;;;2168:18;;:::i;:::-;2137:51;2217:4;2210:5;2206:16;2197:25;;1155:1073;;;;;;:::o;2234:77::-;2271:7;2300:5;2289:16;;2234:77;;;:::o;2317:86::-;2352:7;2392:4;2385:5;2381:16;2370:27;;2317:86;;;:::o;2409:281::-;2467:5;2491:23;2509:4;2491:23;:::i;:::-;2483:31;;2535:25;2551:8;2535:25;:::i;:::-;2523:37;;2579:104;2616:66;2606:8;2600:4;2579:104;:::i;:::-;2570:113;;2409:281;;;;:::o;2696:348::-;2736:7;2759:20;2777:1;2759:20;:::i;:::-;2754:25;;2793:20;2811:1;2793:20;:::i;:::-;2788:25;;2981:1;2913:66;2909:74;2906:1;2903:81;2898:1;2891:9;2884:17;2880:105;2877:131;;;2988:18;;:::i;:::-;2877:131;3036:1;3033;3029:9;3018:20;;2696:348;;;;:::o;3050:169::-;3134:11;3168:6;3163:3;3156:19;3208:4;3203:3;3199:14;3184:29;;3050:169;;;;:::o;3225:181::-;3365:33;3361:1;3353:6;3349:14;3342:57;3225:181;:::o;3412:366::-;3554:3;3575:67;3639:2;3634:3;3575:67;:::i;:::-;3568:74;;3651:93;3740:3;3651:93;:::i;:::-;3769:2;3764:3;3760:12;3753:19;;3412:366;;;:::o;3784:419::-;3950:4;3988:2;3977:9;3973:18;3965:26;;4037:9;4031:4;4027:20;4023:1;4012:9;4008:17;4001:47;4065:131;4191:4;4065:131;:::i;:::-;4057:139;;3784:419;;;:::o;4209:305::-;4249:3;4268:20;4286:1;4268:20;:::i;:::-;4263:25;;4302:20;4320:1;4302:20;:::i;:::-;4297:25;;4456:1;4388:66;4384:74;4381:1;4378:81;4375:107;;;4462:18;;:::i;:::-;4375:107;4506:1;4503;4499:9;4492:16;;4209:305;;;;:::o;4520:118::-;4607:24;4625:5;4607:24;:::i;:::-;4602:3;4595:37;4520:118;;:::o;4644:222::-;4737:4;4775:2;4764:9;4760:18;4752:26;;4788:71;4856:1;4845:9;4841:17;4832:6;4788:71;:::i;:::-;4644:222;;;;:::o;4872:180::-;4920:77;4917:1;4910:88;5017:4;5014:1;5007:15;5041:4;5038:1;5031:15;5058:320;5102:6;5139:1;5133:4;5129:12;5119:22;;5186:1;5180:4;5176:12;5207:18;5197:81;;5263:4;5255:6;5251:17;5241:27;;5197:81;5325:2;5317:6;5314:14;5294:18;5291:38;5288:84;;;5344:18;;:::i;:::-;5288:84;5109:269;5058:320;;;:::o;167:239:5:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_691": {
"entryPoint": 4208,
"id": 691,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_626": {
"entryPoint": 2413,
"id": 626,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_680": {
"entryPoint": 4203,
"id": 680,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_509": {
"entryPoint": 3653,
"id": 509,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_807": {
"entryPoint": 2405,
"id": 807,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_669": {
"entryPoint": 2872,
"id": 669,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_103": {
"entryPoint": 4005,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_453": {
"entryPoint": 3012,
"id": 453,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_246": {
"entryPoint": 2022,
"id": 246,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_271": {
"entryPoint": 948,
"id": 271,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_203": {
"entryPoint": 1357,
"id": 203,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_179": {
"entryPoint": 1040,
"id": 179,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_376": {
"entryPoint": 1753,
"id": 376,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_334": {
"entryPoint": 1049,
"id": 334,
"parameterSlots": 2,
"returnSlots": 1
},
"@mint_859": {
"entryPoint": 1219,
"id": 859,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_159": {
"entryPoint": 802,
"id": 159,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": 1565,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 1429,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_169": {
"entryPoint": 1607,
"id": 169,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_189": {
"entryPoint": 983,
"id": 189,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_304": {
"entryPoint": 993,
"id": 304,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_83": {
"entryPoint": 2157,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_228": {
"entryPoint": 1987,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 4478,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 4532,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 4851,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 4938,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 4713,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 4553,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 4896,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 4629,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4309,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6257,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5565,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5857,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5965,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6403,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6111,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5711,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6511,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 4671,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 4809,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 4911,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 4644,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4366,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6292,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5600,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5892,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6000,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6438,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5308,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6146,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5746,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5454,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4686,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 4824,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4213,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4224,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 5146,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 4437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 4617,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 4405,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 4499,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 4796,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 4241,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 5049,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 5099,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 5002,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4400,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4292,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 6178,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 5486,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 5778,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 5924,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 6324,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 5232,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 6032,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 5632,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 5340,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 6470,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 4455,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 4509,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:17210:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:6"
},
"nodeType": "YulFunctionCall",
"src": "87:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:6"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:6",
"type": ""
}
],
"src": "7:99:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:6"
},
"nodeType": "YulFunctionCall",
"src": "218:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:6"
},
{
"nodeType": "YulAssignment",
"src": "246:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:6"
},
"nodeType": "YulFunctionCall",
"src": "261:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:6",
"type": ""
}
],
"src": "112:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "336:258:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "346:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "355:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "350:1:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "415:63:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "440:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "445:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "436:3:6"
},
"nodeType": "YulFunctionCall",
"src": "436:11:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "459:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "464:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "455:3:6"
},
"nodeType": "YulFunctionCall",
"src": "455:11:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "449:5:6"
},
"nodeType": "YulFunctionCall",
"src": "449:18:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "429:6:6"
},
"nodeType": "YulFunctionCall",
"src": "429:39:6"
},
"nodeType": "YulExpressionStatement",
"src": "429:39:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "376:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "379:6:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "373:2:6"
},
"nodeType": "YulFunctionCall",
"src": "373:13:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "387:19:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:15:6",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "398:1:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "394:3:6"
},
"nodeType": "YulFunctionCall",
"src": "394:10:6"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:6"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "369:3:6",
"statements": []
},
"src": "365:113:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "512:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "562:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "567:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:6"
},
"nodeType": "YulFunctionCall",
"src": "558:16:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "576:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "551:6:6"
},
"nodeType": "YulFunctionCall",
"src": "551:27:6"
},
"nodeType": "YulExpressionStatement",
"src": "551:27:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "493:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "496:6:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "490:2:6"
},
"nodeType": "YulFunctionCall",
"src": "490:13:6"
},
"nodeType": "YulIf",
"src": "487:101:6"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "318:3:6",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "323:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "328:6:6",
"type": ""
}
],
"src": "287:307:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:54:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "658:38:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "683:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:6"
},
"nodeType": "YulFunctionCall",
"src": "672:14:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "692:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "688:3:6"
},
"nodeType": "YulFunctionCall",
"src": "688:7:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "668:3:6"
},
"nodeType": "YulFunctionCall",
"src": "668:28:6"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "658:6:6"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "631:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "641:6:6",
"type": ""
}
],
"src": "600:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "800:272:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "810:53:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "857:5:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "824:32:6"
},
"nodeType": "YulFunctionCall",
"src": "824:39:6"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "814:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "872:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "938:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "943:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "879:58:6"
},
"nodeType": "YulFunctionCall",
"src": "879:71:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "872:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "985:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "992:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "981:3:6"
},
"nodeType": "YulFunctionCall",
"src": "981:16:6"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "999:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1004:6:6"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "959:21:6"
},
"nodeType": "YulFunctionCall",
"src": "959:52:6"
},
"nodeType": "YulExpressionStatement",
"src": "959:52:6"
},
{
"nodeType": "YulAssignment",
"src": "1020:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1031:3:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1058:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1036:21:6"
},
"nodeType": "YulFunctionCall",
"src": "1036:29:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1027:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1027:39:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1020:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "781:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "788:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "796:3:6",
"type": ""
}
],
"src": "708:364:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:195:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1206:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1218:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1229:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1214:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1214:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1206:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1253:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1264:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1249:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1249:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1272:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1278:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1268:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1268:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1242:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1242:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "1242:47:6"
},
{
"nodeType": "YulAssignment",
"src": "1298:86:6",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1370:6:6"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1379:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1306:63:6"
},
"nodeType": "YulFunctionCall",
"src": "1306:78:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1298:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1168:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1180:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1191:4:6",
"type": ""
}
],
"src": "1078:313:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1437:35:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1447:19:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1463:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1457:5:6"
},
"nodeType": "YulFunctionCall",
"src": "1457:9:6"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1447:6:6"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1430:6:6",
"type": ""
}
],
"src": "1397:75:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1567:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1587:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1577:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1577:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "1577:12:6"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1478:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1690:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1707:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1710:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1700:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1700:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "1700:12:6"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1601:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1769:81:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1779:65:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1794:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1801:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1790:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1790:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1779:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1751:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1761:7:6",
"type": ""
}
],
"src": "1724:126:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1901:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1911:35:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1940:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1922:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1922:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1911:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1883:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1893:7:6",
"type": ""
}
],
"src": "1856:96:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2001:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2058:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2067:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2060:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2060:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2060:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2024:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2049:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2031:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2031:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2021:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2021:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2014:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2014:43:6"
},
"nodeType": "YulIf",
"src": "2011:63:6"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1994:5:6",
"type": ""
}
],
"src": "1958:122:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2138:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2148:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2170:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2157:12:6"
},
"nodeType": "YulFunctionCall",
"src": "2157:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2148:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2186:26:6"
},
"nodeType": "YulFunctionCall",
"src": "2186:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "2186:33:6"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2116:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2124:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2132:5:6",
"type": ""
}
],
"src": "2086:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2276:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2286:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2297:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2286:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2258:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2268:7:6",
"type": ""
}
],
"src": "2231:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2357:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2414:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2423:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2426:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2416:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2416:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2416:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2380:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2405:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2387:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2387:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2377:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2377:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2370:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2370:43:6"
},
"nodeType": "YulIf",
"src": "2367:63:6"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2350:5:6",
"type": ""
}
],
"src": "2314:122:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2494:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2504:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2526:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2513:12:6"
},
"nodeType": "YulFunctionCall",
"src": "2513:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2504:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2569:5:6"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2542:26:6"
},
"nodeType": "YulFunctionCall",
"src": "2542:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "2542:33:6"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2472:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2480:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2488:5:6",
"type": ""
}
],
"src": "2442:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2670:391:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2716:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2718:77:6"
},
"nodeType": "YulFunctionCall",
"src": "2718:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "2718:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2691:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2700:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2687:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2687:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2712:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2683:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2683:32:6"
},
"nodeType": "YulIf",
"src": "2680:119:6"
},
{
"nodeType": "YulBlock",
"src": "2809:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2824:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2838:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2828:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2853:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2888:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2899:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2884:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2884:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2908:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2863:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2863:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2853:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2936:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2951:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2965:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2955:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2981:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3016:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3027:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3012:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3012:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3036:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2991:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2991:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2981:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2632:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2643:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2655:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2663:6:6",
"type": ""
}
],
"src": "2587:474:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3109:48:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3119:32:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3144:5:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3137:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3137:13:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3130:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3130:21:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3119:7:6"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3091:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3101:7:6",
"type": ""
}
],
"src": "3067:90:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3222:50:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3239:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3259:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3244:14:6"
},
"nodeType": "YulFunctionCall",
"src": "3244:21:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3232:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3232:34:6"
},
"nodeType": "YulExpressionStatement",
"src": "3232:34:6"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3210:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3217:3:6",
"type": ""
}
],
"src": "3163:109:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3370:118:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3380:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3392:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3403:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3388:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3388:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3380:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3454:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3467:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3478:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3463:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3463:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3416:37:6"
},
"nodeType": "YulFunctionCall",
"src": "3416:65:6"
},
"nodeType": "YulExpressionStatement",
"src": "3416:65:6"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3342:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3354:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3365:4:6",
"type": ""
}
],
"src": "3278:210:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3559:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3576:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3599:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3581:17:6"
},
"nodeType": "YulFunctionCall",
"src": "3581:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3569:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3569:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "3569:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3547:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3554:3:6",
"type": ""
}
],
"src": "3494:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3738:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3749:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3734:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3734:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3726:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3806:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3819:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3830:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3815:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3815:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3762:43:6"
},
"nodeType": "YulFunctionCall",
"src": "3762:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "3762:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3688:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3700:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3711:4:6",
"type": ""
}
],
"src": "3618:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3946:519:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3992:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3994:77:6"
},
"nodeType": "YulFunctionCall",
"src": "3994:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "3994:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3967:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3976:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3963:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3963:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:2:6",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3959:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3959:32:6"
},
"nodeType": "YulIf",
"src": "3956:119:6"
},
{
"nodeType": "YulBlock",
"src": "4085:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4100:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4114:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4104:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4129:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4164:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4175:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4160:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4160:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4184:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4139:20:6"
},
"nodeType": "YulFunctionCall",
"src": "4139:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4129:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4212:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4227:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4241:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4231:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4257:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4292:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4303:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4288:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4288:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4312:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4267:20:6"
},
"nodeType": "YulFunctionCall",
"src": "4267:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4257:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4340:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4355:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:2:6",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4359:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4385:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4420:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4431:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4416:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4416:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4440:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4395:20:6"
},
"nodeType": "YulFunctionCall",
"src": "4395:53:6"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4385:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3900:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3911:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3923:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3931:6:6",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3939:6:6",
"type": ""
}
],
"src": "3846:619:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4514:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4524:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4539:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4546:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4535:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4535:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4524:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4496:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4506:7:6",
"type": ""
}
],
"src": "4471:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4624:51:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4641:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4662:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4646:15:6"
},
"nodeType": "YulFunctionCall",
"src": "4646:22:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4634:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4634:35:6"
},
"nodeType": "YulExpressionStatement",
"src": "4634:35:6"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4612:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4619:3:6",
"type": ""
}
],
"src": "4563:112:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4775:120:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4785:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4797:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4808:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4793:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4793:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4785:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4861:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4874:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4885:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4870:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4870:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4821:39:6"
},
"nodeType": "YulFunctionCall",
"src": "4821:67:6"
},
"nodeType": "YulExpressionStatement",
"src": "4821:67:6"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4747:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4759:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4770:4:6",
"type": ""
}
],
"src": "4681:214:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4967:263:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5013:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5015:77:6"
},
"nodeType": "YulFunctionCall",
"src": "5015:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "5015:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4988:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4997:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4984:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4984:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5009:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4980:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4980:32:6"
},
"nodeType": "YulIf",
"src": "4977:119:6"
},
{
"nodeType": "YulBlock",
"src": "5106:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5121:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5135:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5125:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5150:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5185:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5196:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5181:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5181:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5205:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5160:20:6"
},
"nodeType": "YulFunctionCall",
"src": "5160:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5150:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4937:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4948:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4960:6:6",
"type": ""
}
],
"src": "4901:329:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5301:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5318:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5341:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5323:17:6"
},
"nodeType": "YulFunctionCall",
"src": "5323:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5311:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5311:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "5311:37:6"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5289:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5296:3:6",
"type": ""
}
],
"src": "5236:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5458:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5468:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5480:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5491:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5476:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5476:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5468:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5548:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5561:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5572:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5557:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5557:17:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "5504:43:6"
},
"nodeType": "YulFunctionCall",
"src": "5504:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "5504:71:6"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5430:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5442:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5453:4:6",
"type": ""
}
],
"src": "5360:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5671:391:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5717:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5719:77:6"
},
"nodeType": "YulFunctionCall",
"src": "5719:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "5719:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5692:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5701:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5688:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5688:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5713:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5684:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5684:32:6"
},
"nodeType": "YulIf",
"src": "5681:119:6"
},
{
"nodeType": "YulBlock",
"src": "5810:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5825:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5839:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5829:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5854:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5889:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5900:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5885:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5885:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5909:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5864:20:6"
},
"nodeType": "YulFunctionCall",
"src": "5864:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5854:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5937:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5952:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5966:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5956:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5982:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6017:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6028:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6013:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6013:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6037:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5992:20:6"
},
"nodeType": "YulFunctionCall",
"src": "5992:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5982:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5633:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5644:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5656:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5664:6:6",
"type": ""
}
],
"src": "5588:474:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6096:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6113:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6116:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6106:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6106:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "6106:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6210:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6213:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6203:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6203:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "6203:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6234:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6237:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6227:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6227:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "6227:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6068:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6305:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6315:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6329:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6335:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6325:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6325:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6315:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6346:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6376:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6382:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6372:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6372:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6350:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6423:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6437:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6451:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6459:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6447:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6447:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6437:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6403:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6396:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6396:26:6"
},
"nodeType": "YulIf",
"src": "6393:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6526:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6540:16:6"
},
"nodeType": "YulFunctionCall",
"src": "6540:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "6540:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6490:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6513:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6521:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6510:2:6"
},
"nodeType": "YulFunctionCall",
"src": "6510:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6487:2:6"
},
"nodeType": "YulFunctionCall",
"src": "6487:38:6"
},
"nodeType": "YulIf",
"src": "6484:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6289:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6298:6:6",
"type": ""
}
],
"src": "6254:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6608:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6625:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6628:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6618:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6618:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "6618:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6722:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6725:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6715:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6715:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "6715:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6746:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6749:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6739:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6739:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "6739:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6580:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6810:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6820:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6843:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6825:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6825:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6820:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6854:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6877:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6859:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6859:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6854:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7017:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7019:16:6"
},
"nodeType": "YulFunctionCall",
"src": "7019:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "7019:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6938:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6945:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7013:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6941:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6941:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6935:2:6"
},
"nodeType": "YulFunctionCall",
"src": "6935:81:6"
},
"nodeType": "YulIf",
"src": "6932:107:6"
},
{
"nodeType": "YulAssignment",
"src": "7049:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7060:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7063:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7056:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7056:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "7049:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6797:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6800:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6806:3:6",
"type": ""
}
],
"src": "6766:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7183:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7205:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7213:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7201:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7201:14:6"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7217:34:6",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7194:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7194:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "7194:58:6"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7175:6:6",
"type": ""
}
],
"src": "7077:182:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7411:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7421:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7487:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7492:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7428:58:6"
},
"nodeType": "YulFunctionCall",
"src": "7428:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7421:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7593:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "7504:88:6"
},
"nodeType": "YulFunctionCall",
"src": "7504:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "7504:93:6"
},
{
"nodeType": "YulAssignment",
"src": "7606:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7617:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7622:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7613:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7613:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7606:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7399:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7407:3:6",
"type": ""
}
],
"src": "7265:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7808:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7818:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7830:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7841:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7826:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7826:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7818:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7865:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7876:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7861:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7861:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7884:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7890:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7880:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7880:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7854:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7854:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "7854:47:6"
},
{
"nodeType": "YulAssignment",
"src": "7910:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8044:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7918:124:6"
},
"nodeType": "YulFunctionCall",
"src": "7918:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7910:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7788:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7803:4:6",
"type": ""
}
],
"src": "7637:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8168:118:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8190:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8198:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8186:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8186:14:6"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8202:34:6",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8179:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8179:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "8179:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8258:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8266:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8254:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8254:15:6"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8271:7:6",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8247:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8247:32:6"
},
"nodeType": "YulExpressionStatement",
"src": "8247:32:6"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8160:6:6",
"type": ""
}
],
"src": "8062:224:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8438:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8448:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8514:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8519:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8455:58:6"
},
"nodeType": "YulFunctionCall",
"src": "8455:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8448:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8620:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "8531:88:6"
},
"nodeType": "YulFunctionCall",
"src": "8531:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "8531:93:6"
},
{
"nodeType": "YulAssignment",
"src": "8633:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8644:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8649:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8640:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8640:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8633:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8426:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8434:3:6",
"type": ""
}
],
"src": "8292:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8835:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8845:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8857:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8868:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8853:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8853:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8845:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8892:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8903:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8888:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8888:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8911:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8917:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8907:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8907:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8881:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8881:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "8881:47:6"
},
{
"nodeType": "YulAssignment",
"src": "8937:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9071:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8945:124:6"
},
"nodeType": "YulFunctionCall",
"src": "8945:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8937:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8815:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8830:4:6",
"type": ""
}
],
"src": "8664:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9195:119:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9217:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9225:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9213:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9213:14:6"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9229:34:6",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9206:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9206:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "9206:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9285:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9293:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9281:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9281:15:6"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9298:8:6",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9274:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9274:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "9274:33:6"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9187:6:6",
"type": ""
}
],
"src": "9089:225:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9466:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9476:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9542:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9547:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9483:58:6"
},
"nodeType": "YulFunctionCall",
"src": "9483:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9476:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9648:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "9559:88:6"
},
"nodeType": "YulFunctionCall",
"src": "9559:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "9559:93:6"
},
{
"nodeType": "YulAssignment",
"src": "9661:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9672:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9677:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9668:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9668:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9661:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9454:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9462:3:6",
"type": ""
}
],
"src": "9320:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9863:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9873:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9885:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9896:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9881:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9881:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9873:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9920:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9931:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9916:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9916:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9939:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9945:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9935:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9935:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9909:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9909:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9909:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9965:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10099:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9973:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9973:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9965:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9843:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9858:4:6",
"type": ""
}
],
"src": "9692:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10223:117:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10245:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10253:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10241:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10241:14:6"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10257:34:6",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10234:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10234:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "10234:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10313:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10321:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10309:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10309:15:6"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10326:6:6",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10302:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10302:31:6"
},
"nodeType": "YulExpressionStatement",
"src": "10302:31:6"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10215:6:6",
"type": ""
}
],
"src": "10117:223:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10492:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10502:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10568:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10573:2:6",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10509:58:6"
},
"nodeType": "YulFunctionCall",
"src": "10509:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10502:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10674:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "10585:88:6"
},
"nodeType": "YulFunctionCall",
"src": "10585:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "10585:93:6"
},
{
"nodeType": "YulAssignment",
"src": "10687:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10698:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10703:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10694:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10694:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10687:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10480:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10488:3:6",
"type": ""
}
],
"src": "10346:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10889:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10899:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10911:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10922:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10907:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10907:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10899:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10946:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10957:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10942:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10942:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10965:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10971:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10961:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10961:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10935:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10935:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10935:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10991:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11125:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10999:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10999:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10991:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10869:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10884:4:6",
"type": ""
}
],
"src": "10718:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11249:115:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11271:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11279:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11267:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11267:14:6"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11283:34:6",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11260:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11260:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "11260:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11339:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11347:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11335:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11335:15:6"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11352:4:6",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11328:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11328:29:6"
},
"nodeType": "YulExpressionStatement",
"src": "11328:29:6"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11241:6:6",
"type": ""
}
],
"src": "11143:221:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11516:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11526:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11592:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11597:2:6",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11533:58:6"
},
"nodeType": "YulFunctionCall",
"src": "11533:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11526:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11698:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "11609:88:6"
},
"nodeType": "YulFunctionCall",
"src": "11609:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "11609:93:6"
},
{
"nodeType": "YulAssignment",
"src": "11711:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11722:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11727:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11718:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11718:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11711:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11504:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11512:3:6",
"type": ""
}
],
"src": "11370:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11913:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11923:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11935:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11946:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11931:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11931:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11923:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11970:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11981:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11966:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11966:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11989:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11995:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11985:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11985:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11959:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11959:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "11959:47:6"
},
{
"nodeType": "YulAssignment",
"src": "12015:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12149:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12023:124:6"
},
"nodeType": "YulFunctionCall",
"src": "12023:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12015:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11893:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11908:4:6",
"type": ""
}
],
"src": "11742:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12273:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12295:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12303:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12291:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12291:14:6"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12307:31:6",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12284:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12284:55:6"
},
"nodeType": "YulExpressionStatement",
"src": "12284:55:6"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12265:6:6",
"type": ""
}
],
"src": "12167:179:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12498:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12508:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12574:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12579:2:6",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12515:58:6"
},
"nodeType": "YulFunctionCall",
"src": "12515:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12508:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12680:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "12591:88:6"
},
"nodeType": "YulFunctionCall",
"src": "12591:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "12591:93:6"
},
{
"nodeType": "YulAssignment",
"src": "12693:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12704:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12709:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12700:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12700:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12693:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12486:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12494:3:6",
"type": ""
}
],
"src": "12352:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12895:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12905:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12917:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12928:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12913:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12913:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12905:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12952:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12963:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12948:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12948:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12971:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12977:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12967:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12967:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12941:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12941:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "12941:47:6"
},
{
"nodeType": "YulAssignment",
"src": "12997:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13131:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13005:124:6"
},
"nodeType": "YulFunctionCall",
"src": "13005:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12997:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12875:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12890:4:6",
"type": ""
}
],
"src": "12724:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13255:118:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13277:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13285:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13273:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13273:14:6"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13289:34:6",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13266:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13266:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "13266:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13345:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13353:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13341:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13341:15:6"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13358:7:6",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13334:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13334:32:6"
},
"nodeType": "YulExpressionStatement",
"src": "13334:32:6"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13247:6:6",
"type": ""
}
],
"src": "13149:224:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13525:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13535:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13601:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13606:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13542:58:6"
},
"nodeType": "YulFunctionCall",
"src": "13542:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13535:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13707:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "13618:88:6"
},
"nodeType": "YulFunctionCall",
"src": "13618:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "13618:93:6"
},
{
"nodeType": "YulAssignment",
"src": "13720:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13731:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13736:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13727:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13727:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13720:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13513:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13521:3:6",
"type": ""
}
],
"src": "13379:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13922:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13932:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13944:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13955:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13940:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13940:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13932:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13979:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13990:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13975:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13975:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13998:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14004:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13994:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13994:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13968:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13968:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "13968:47:6"
},
{
"nodeType": "YulAssignment",
"src": "14024:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14158:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14032:124:6"
},
"nodeType": "YulFunctionCall",
"src": "14032:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14024:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13902:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13917:4:6",
"type": ""
}
],
"src": "13751:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14282:116:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14304:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14312:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14300:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14300:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14316:34:6",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14293:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14293:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "14293:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14372:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14380:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14368:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14368:15:6"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14385:5:6",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14361:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14361:30:6"
},
"nodeType": "YulExpressionStatement",
"src": "14361:30:6"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14274:6:6",
"type": ""
}
],
"src": "14176:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14550:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14560:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14626:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14631:2:6",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14567:58:6"
},
"nodeType": "YulFunctionCall",
"src": "14567:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14560:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14732:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "14643:88:6"
},
"nodeType": "YulFunctionCall",
"src": "14643:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "14643:93:6"
},
{
"nodeType": "YulAssignment",
"src": "14745:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14756:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14761:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14752:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14752:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14745:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14538:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14546:3:6",
"type": ""
}
],
"src": "14404:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14947:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14957:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14969:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14980:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14965:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14965:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14957:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15004:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15015:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15000:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15000:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15023:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15029:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15019:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15019:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14993:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14993:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "14993:47:6"
},
{
"nodeType": "YulAssignment",
"src": "15049:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15183:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15057:124:6"
},
"nodeType": "YulFunctionCall",
"src": "15057:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15049:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14927:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14942:4:6",
"type": ""
}
],
"src": "14776:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15307:119:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15329:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15337:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15325:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15325:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15341:34:6",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15318:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15318:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "15318:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15397:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15405:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15393:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15393:15:6"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15410:8:6",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15386:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15386:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "15386:33:6"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15299:6:6",
"type": ""
}
],
"src": "15201:225:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15578:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15588:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15654:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15659:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15595:58:6"
},
"nodeType": "YulFunctionCall",
"src": "15595:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15588:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15760:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "15671:88:6"
},
"nodeType": "YulFunctionCall",
"src": "15671:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "15671:93:6"
},
{
"nodeType": "YulAssignment",
"src": "15773:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15784:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15789:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15780:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15780:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15773:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15566:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15574:3:6",
"type": ""
}
],
"src": "15432:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15975:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15985:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15997:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16008:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15993:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15993:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15985:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16032:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16043:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16028:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16028:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16051:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16057:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16047:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16047:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16021:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16021:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "16021:47:6"
},
{
"nodeType": "YulAssignment",
"src": "16077:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16211:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16085:124:6"
},
"nodeType": "YulFunctionCall",
"src": "16085:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16077:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15955:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15970:4:6",
"type": ""
}
],
"src": "15804:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16335:75:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16357:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16365:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16353:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16353:14:6"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16369:33:6",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16346:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16346:57:6"
},
"nodeType": "YulExpressionStatement",
"src": "16346:57:6"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16327:6:6",
"type": ""
}
],
"src": "16229:181:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16562:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16572:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16638:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16643:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16579:58:6"
},
"nodeType": "YulFunctionCall",
"src": "16579:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16572:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16744:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "16655:88:6"
},
"nodeType": "YulFunctionCall",
"src": "16655:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "16655:93:6"
},
{
"nodeType": "YulAssignment",
"src": "16757:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16768:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16773:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16764:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16764:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16757:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16550:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16558:3:6",
"type": ""
}
],
"src": "16416:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16959:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16969:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16981:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16992:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16977:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16977:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16969:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17016:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17027:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17012:3:6"
},
"nodeType": "YulFunctionCall",
"src": "17012:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17035:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17041:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17031:3:6"
},
"nodeType": "YulFunctionCall",
"src": "17031:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17005:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17005:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "17005:47:6"
},
{
"nodeType": "YulAssignment",
"src": "17061:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17195:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17069:124:6"
},
"nodeType": "YulFunctionCall",
"src": "17069:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17061:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16939:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16954:4:6",
"type": ""
}
],
"src": "16788:419:6"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\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_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 store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_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 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_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 store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\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_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}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061110e565b60405180910390f35b610132600480360381019061012d91906111c9565b6103b4565b60405161013f9190611224565b60405180910390f35b6101506103d7565b60405161015d919061124e565b60405180910390f35b610180600480360381019061017b9190611269565b6103e1565b60405161018d9190611224565b60405180910390f35b61019e610410565b6040516101ab91906112d8565b60405180910390f35b6101ce60048036038101906101c991906111c9565b610419565b6040516101db9190611224565b60405180910390f35b6101fe60048036038101906101f991906111c9565b6104c3565b005b61021a600480360381019061021591906112f3565b61054d565b604051610227919061124e565b60405180910390f35b610238610595565b005b61024261061d565b60405161024f919061132f565b60405180910390f35b610260610647565b60405161026d919061110e565b60405180910390f35b610290600480360381019061028b91906111c9565b6106d9565b60405161029d9190611224565b60405180910390f35b6102c060048036038101906102bb91906111c9565b6107c3565b6040516102cd9190611224565b60405180910390f35b6102f060048036038101906102eb919061134a565b6107e6565b6040516102fd919061124e565b60405180910390f35b610320600480360381019061031b91906112f3565b61086d565b005b606060038054610331906113b9565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906113b9565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610965565b90506103cc81858561096d565b600191505092915050565b6000600254905090565b6000806103ec610965565b90506103f9858285610b38565b610404858585610bc4565b60019150509392505050565b60006012905090565b600080610424610965565b90506104b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104b3919061141a565b61096d565b600191505092915050565b6104cb610965565b73ffffffffffffffffffffffffffffffffffffffff166104e961061d565b73ffffffffffffffffffffffffffffffffffffffff161461053f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610536906114bc565b60405180910390fd5b6105498282610e45565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61059d610965565b73ffffffffffffffffffffffffffffffffffffffff166105bb61061d565b73ffffffffffffffffffffffffffffffffffffffff1614610611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610608906114bc565b60405180910390fd5b61061b6000610fa5565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610656906113b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610682906113b9565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b6000806106e4610965565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a19061154e565b60405180910390fd5b6107b7828686840361096d565b60019250505092915050565b6000806107ce610965565b90506107db818585610bc4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610875610965565b73ffffffffffffffffffffffffffffffffffffffff1661089361061d565b73ffffffffffffffffffffffffffffffffffffffff16146108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e0906114bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906115e0565b60405180910390fd5b61096281610fa5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490611672565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611704565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2b919061124e565b60405180910390a3505050565b6000610b4484846107e6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbe5781811015610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611770565b60405180910390fd5b610bbd848484840361096d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90611802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611894565b60405180910390fd5b610caf83838361106b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90611926565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc8919061141a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e2c919061124e565b60405180910390a3610e3f848484611070565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90611992565b60405180910390fd5b610ec16000838361106b565b8060026000828254610ed3919061141a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f28919061141a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f8d919061124e565b60405180910390a3610fa160008383611070565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110af578082015181840152602081019050611094565b838111156110be576000848401525b50505050565b6000601f19601f8301169050919050565b60006110e082611075565b6110ea8185611080565b93506110fa818560208601611091565b611103816110c4565b840191505092915050565b6000602082019050818103600083015261112881846110d5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061116082611135565b9050919050565b61117081611155565b811461117b57600080fd5b50565b60008135905061118d81611167565b92915050565b6000819050919050565b6111a681611193565b81146111b157600080fd5b50565b6000813590506111c38161119d565b92915050565b600080604083850312156111e0576111df611130565b5b60006111ee8582860161117e565b92505060206111ff858286016111b4565b9150509250929050565b60008115159050919050565b61121e81611209565b82525050565b60006020820190506112396000830184611215565b92915050565b61124881611193565b82525050565b6000602082019050611263600083018461123f565b92915050565b60008060006060848603121561128257611281611130565b5b60006112908682870161117e565b93505060206112a18682870161117e565b92505060406112b2868287016111b4565b9150509250925092565b600060ff82169050919050565b6112d2816112bc565b82525050565b60006020820190506112ed60008301846112c9565b92915050565b60006020828403121561130957611308611130565b5b60006113178482850161117e565b91505092915050565b61132981611155565b82525050565b60006020820190506113446000830184611320565b92915050565b6000806040838503121561136157611360611130565b5b600061136f8582860161117e565b92505060206113808582860161117e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113d157607f821691505b602082108114156113e5576113e461138a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061142582611193565b915061143083611193565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611465576114646113eb565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114a6602083611080565b91506114b182611470565b602082019050919050565b600060208201905081810360008301526114d581611499565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611538602583611080565b9150611543826114dc565b604082019050919050565b600060208201905081810360008301526115678161152b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115ca602683611080565b91506115d58261156e565b604082019050919050565b600060208201905081810360008301526115f9816115bd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061165c602483611080565b915061166782611600565b604082019050919050565b6000602082019050818103600083015261168b8161164f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116ee602283611080565b91506116f982611692565b604082019050919050565b6000602082019050818103600083015261171d816116e1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061175a601d83611080565b915061176582611724565b602082019050919050565b600060208201905081810360008301526117898161174d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ec602583611080565b91506117f782611790565b604082019050919050565b6000602082019050818103600083015261181b816117df565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061187e602383611080565b915061188982611822565b604082019050919050565b600060208201905081810360008301526118ad81611871565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611910602683611080565b915061191b826118b4565b604082019050919050565b6000602082019050818103600083015261193f81611903565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061197c601f83611080565b915061198782611946565b602082019050919050565b600060208201905081810360008301526119ab8161196f565b905091905056fea2646970667358221220b1110998de88435a0e58f3302c5718f4aaeb89a02a54541789e9569b7b4a7c3a64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2D6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x306 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x258 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1E4 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x148 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x102 PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x132 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x3B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x150 PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15D SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x1269 JUMP JUMPDEST PUSH2 0x3E1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19E PUSH2 0x410 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x12D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C9 SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x419 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F9 SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x4C3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x54D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x238 PUSH2 0x595 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x242 PUSH2 0x61D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24F SWAP2 SWAP1 PUSH2 0x132F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH2 0x647 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x290 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x6D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x7C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EB SWAP2 SWAP1 PUSH2 0x134A JUMP JUMPDEST PUSH2 0x7E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FD SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x320 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x86D JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x331 SWAP1 PUSH2 0x13B9 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 0x35D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3AA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3AA 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 0x38D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3BF PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x3CC DUP2 DUP6 DUP6 PUSH2 0x96D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3EC PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x3F9 DUP6 DUP3 DUP6 PUSH2 0xB38 JUMP JUMPDEST PUSH2 0x404 DUP6 DUP6 DUP6 PUSH2 0xBC4 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 DUP1 PUSH2 0x424 PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x4B8 DUP2 DUP6 DUP6 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 DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x4B3 SWAP2 SWAP1 PUSH2 0x141A JUMP JUMPDEST PUSH2 0x96D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4CB PUSH2 0x965 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4E9 PUSH2 0x61D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x53F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x536 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x549 DUP3 DUP3 PUSH2 0xE45 JUMP JUMPDEST POP POP 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 0x59D PUSH2 0x965 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5BB PUSH2 0x61D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x611 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x608 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x61B PUSH1 0x0 PUSH2 0xFA5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x656 SWAP1 PUSH2 0x13B9 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 0x682 SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6CF 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 0x6B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x6E4 PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x7AA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A1 SWAP1 PUSH2 0x154E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7B7 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x96D JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7CE PUSH2 0x965 JUMP JUMPDEST SWAP1 POP PUSH2 0x7DB DUP2 DUP6 DUP6 PUSH2 0xBC4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x875 PUSH2 0x965 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x893 PUSH2 0x61D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8E0 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x959 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x950 SWAP1 PUSH2 0x15E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x962 DUP2 PUSH2 0xFA5 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x9DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D4 SWAP1 PUSH2 0x1672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA4D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA44 SWAP1 PUSH2 0x1704 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 0xB2B SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB44 DUP5 DUP5 PUSH2 0x7E6 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xBBE JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xBB0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBA7 SWAP1 PUSH2 0x1770 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBBD DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x96D JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC34 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC2B SWAP1 PUSH2 0x1802 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCA4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC9B SWAP1 PUSH2 0x1894 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xCAF DUP4 DUP4 DUP4 PUSH2 0x106B 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 0xD35 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD2C SWAP1 PUSH2 0x1926 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB 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 0xDC8 SWAP2 SWAP1 PUSH2 0x141A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE2C SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE3F DUP5 DUP5 DUP5 PUSH2 0x1070 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEB5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEAC SWAP1 PUSH2 0x1992 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEC1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x106B JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xED3 SWAP2 SWAP1 PUSH2 0x141A 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 PUSH2 0xF28 SWAP2 SWAP1 PUSH2 0x141A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xF8D SWAP2 SWAP1 PUSH2 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xFA1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1070 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10AF JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1094 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10BE JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10E0 DUP3 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x10EA DUP2 DUP6 PUSH2 0x1080 JUMP JUMPDEST SWAP4 POP PUSH2 0x10FA DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1091 JUMP JUMPDEST PUSH2 0x1103 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1128 DUP2 DUP5 PUSH2 0x10D5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1160 DUP3 PUSH2 0x1135 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1170 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP2 EQ PUSH2 0x117B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x118D DUP2 PUSH2 0x1167 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11A6 DUP2 PUSH2 0x1193 JUMP JUMPDEST DUP2 EQ PUSH2 0x11B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x11C3 DUP2 PUSH2 0x119D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E0 JUMPI PUSH2 0x11DF PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11EE DUP6 DUP3 DUP7 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x11FF DUP6 DUP3 DUP7 ADD PUSH2 0x11B4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x121E DUP2 PUSH2 0x1209 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1239 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1215 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1248 DUP2 PUSH2 0x1193 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1263 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x123F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1282 JUMPI PUSH2 0x1281 PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1290 DUP7 DUP3 DUP8 ADD PUSH2 0x117E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x12A1 DUP7 DUP3 DUP8 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x12B2 DUP7 DUP3 DUP8 ADD PUSH2 0x11B4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12D2 DUP2 PUSH2 0x12BC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x12ED PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x12C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1309 JUMPI PUSH2 0x1308 PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1317 DUP5 DUP3 DUP6 ADD PUSH2 0x117E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1329 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1344 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1320 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH2 0x1360 PUSH2 0x1130 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x136F DUP6 DUP3 DUP7 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1380 DUP6 DUP3 DUP7 ADD PUSH2 0x117E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x13D1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x13E5 JUMPI PUSH2 0x13E4 PUSH2 0x138A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1425 DUP3 PUSH2 0x1193 JUMP JUMPDEST SWAP2 POP PUSH2 0x1430 DUP4 PUSH2 0x1193 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1465 JUMPI PUSH2 0x1464 PUSH2 0x13EB JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14A6 PUSH1 0x20 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x14B1 DUP3 PUSH2 0x1470 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14D5 DUP2 PUSH2 0x1499 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1538 PUSH1 0x25 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1543 DUP3 PUSH2 0x14DC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1567 DUP2 PUSH2 0x152B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15CA PUSH1 0x26 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x15D5 DUP3 PUSH2 0x156E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x15F9 DUP2 PUSH2 0x15BD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x165C PUSH1 0x24 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1667 DUP3 PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x168B DUP2 PUSH2 0x164F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16EE PUSH1 0x22 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x16F9 DUP3 PUSH2 0x1692 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x171D DUP2 PUSH2 0x16E1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x175A PUSH1 0x1D DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1765 DUP3 PUSH2 0x1724 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1789 DUP2 PUSH2 0x174D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17EC PUSH1 0x25 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x17F7 DUP3 PUSH2 0x1790 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x181B DUP2 PUSH2 0x17DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x187E PUSH1 0x23 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1889 DUP3 PUSH2 0x1822 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18AD DUP2 PUSH2 0x1871 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1910 PUSH1 0x26 DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x191B DUP3 PUSH2 0x18B4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x193F DUP2 PUSH2 0x1903 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x197C PUSH1 0x1F DUP4 PUSH2 0x1080 JUMP JUMPDEST SWAP2 POP PUSH2 0x1987 DUP3 PUSH2 0x1946 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19AB DUP2 PUSH2 0x196F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 GT MULMOD SWAP9 0xDE DUP9 NUMBER GAS 0xE PC RETURN ADDRESS 0x2C JUMPI XOR DELEGATECALL 0xAA 0xEB DUP10 LOG0 0x2A SLOAD SLOAD OR DUP10 0xE9 JUMP SWAP12 PUSH28 0x4A7C3A64736F6C634300080900330000000000000000000000000000 ",
"sourceMap": "167:239:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4433:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3244:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5192:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3093:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5873:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;311:93:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3408:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;:::i;:::-;;1036:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2367:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6596:429;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3729:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3976:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2156:98:1;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;4433:197::-;4516:4;4532:13;4548:12;:10;:12::i;:::-;4532:28;;4570:32;4579:5;4586:7;4595:6;4570:8;:32::i;:::-;4619:4;4612:11;;;4433:197;;;;:::o;3244:106::-;3305:7;3331:12;;3324:19;;3244:106;:::o;5192:286::-;5319:4;5335:15;5353:12;:10;:12::i;:::-;5335:30;;5375:38;5391:4;5397:7;5406:6;5375:15;:38::i;:::-;5423:27;5433:4;5439:2;5443:6;5423:9;:27::i;:::-;5467:4;5460:11;;;5192:286;;;;;:::o;3093:91::-;3151:5;3175:2;3168:9;;3093:91;:::o;5873:236::-;5961:4;5977:13;5993:12;:10;:12::i;:::-;5977:28;;6015:66;6024:5;6031:7;6070:10;6040:11;:18;6052:5;6040:18;;;;;;;;;;;;;;;:27;6059:7;6040:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;6015:8;:66::i;:::-;6098:4;6091:11;;;5873:236;;;;:::o;311:93:5:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;380:17:5::1;386:2;390:6;380:5;:17::i;:::-;311:93:::0;;:::o;3408:125:1:-;3482:7;3508:9;:18;3518:7;3508:18;;;;;;;;;;;;;;;;3501:25;;3408:125;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;2367:102:1:-;2423:13;2455:7;2448:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2367:102;:::o;6596:429::-;6689:4;6705:13;6721:12;:10;:12::i;:::-;6705:28;;6743:24;6770:11;:18;6782:5;6770:18;;;;;;;;;;;;;;;:27;6789:7;6770:27;;;;;;;;;;;;;;;;6743:54;;6835:15;6815:16;:35;;6807:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6926:60;6935:5;6942:7;6970:15;6951:16;:34;6926:8;:60::i;:::-;7014:4;7007:11;;;;6596:429;;;;:::o;3729:189::-;3808:4;3824:13;3840:12;:10;:12::i;:::-;3824:28;;3862;3872:5;3879:2;3883:6;3862:9;:28::i;:::-;3907:4;3900:11;;;3729:189;;;;:::o;3976:149::-;4065:7;4091:11;:18;4103:5;4091:18;;;;;;;;;;;;;;;:27;4110:7;4091:27;;;;;;;;;;;;;;;;4084:34;;3976:149;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:4:-;693:7;719:10;712:17;;640:96;:::o;10123:370:1:-;10271:1;10254:19;;:5;:19;;;;10246:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10351:1;10332:21;;:7;:21;;;;10324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10433:6;10403:11;:18;10415:5;10403:18;;;;;;;;;;;;;;;:27;10422:7;10403:27;;;;;;;;;;;;;;;:36;;;;10470:7;10454:32;;10463:5;10454:32;;;10479:6;10454:32;;;;;;:::i;:::-;;;;;;;;10123:370;;;:::o;10770:441::-;10900:24;10927:25;10937:5;10944:7;10927:9;:25::i;:::-;10900:52;;10986:17;10966:16;:37;10962:243;;11047:6;11027:16;:26;;11019:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11129:51;11138:5;11145:7;11173:6;11154:16;:25;11129:8;:51::i;:::-;10962:243;10890:321;10770:441;;;:::o;7488:651::-;7630:1;7614:18;;:4;:18;;;;7606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7706:1;7692:16;;:2;:16;;;;7684:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7759:38;7780:4;7786:2;7790:6;7759:20;:38::i;:::-;7808:19;7830:9;:15;7840:4;7830:15;;;;;;;;;;;;;;;;7808:37;;7878:6;7863:11;:21;;7855:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7993:6;7979:11;:20;7961:9;:15;7971:4;7961:15;;;;;;;;;;;;;;;:38;;;;8036:6;8019:9;:13;8029:2;8019:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8073:2;8058:26;;8067:4;8058:26;;;8077:6;8058:26;;;;;;:::i;:::-;;;;;;;;8095:37;8115:4;8121:2;8125:6;8095:19;:37::i;:::-;7596:543;7488:651;;;:::o;8415:389::-;8517:1;8498:21;;:7;:21;;;;8490:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8566:49;8595:1;8599:7;8608:6;8566:20;:49::i;:::-;8642:6;8626:12;;:22;;;;;;;:::i;:::-;;;;;;;;8680:6;8658:9;:18;8668:7;8658:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8722:7;8701:37;;8718:1;8701:37;;;8731:6;8701:37;;;;;;:::i;:::-;;;;;;;;8749:48;8777:1;8781:7;8790:6;8749:19;:48::i;:::-;8415:389;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;11795:121:1:-;;;;:::o;12504:120::-;;;;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:180::-;6628:77;6625:1;6618:88;6725:4;6722:1;6715:15;6749:4;6746:1;6739:15;6766:305;6806:3;6825:20;6843:1;6825:20;:::i;:::-;6820:25;;6859:20;6877:1;6859:20;:::i;:::-;6854:25;;7013:1;6945:66;6941:74;6938:1;6935:81;6932:107;;;7019:18;;:::i;:::-;6932:107;7063:1;7060;7056:9;7049:16;;6766:305;;;;:::o;7077:182::-;7217:34;7213:1;7205:6;7201:14;7194:58;7077:182;:::o;7265:366::-;7407:3;7428:67;7492:2;7487:3;7428:67;:::i;:::-;7421:74;;7504:93;7593:3;7504:93;:::i;:::-;7622:2;7617:3;7613:12;7606:19;;7265:366;;;:::o;7637:419::-;7803:4;7841:2;7830:9;7826:18;7818:26;;7890:9;7884:4;7880:20;7876:1;7865:9;7861:17;7854:47;7918:131;8044:4;7918:131;:::i;:::-;7910:139;;7637:419;;;:::o;8062:224::-;8202:34;8198:1;8190:6;8186:14;8179:58;8271:7;8266:2;8258:6;8254:15;8247:32;8062:224;:::o;8292:366::-;8434:3;8455:67;8519:2;8514:3;8455:67;:::i;:::-;8448:74;;8531:93;8620:3;8531:93;:::i;:::-;8649:2;8644:3;8640:12;8633:19;;8292:366;;;:::o;8664:419::-;8830:4;8868:2;8857:9;8853:18;8845:26;;8917:9;8911:4;8907:20;8903:1;8892:9;8888:17;8881:47;8945:131;9071:4;8945:131;:::i;:::-;8937:139;;8664:419;;;:::o;9089:225::-;9229:34;9225:1;9217:6;9213:14;9206:58;9298:8;9293:2;9285:6;9281:15;9274:33;9089:225;:::o;9320:366::-;9462:3;9483:67;9547:2;9542:3;9483:67;:::i;:::-;9476:74;;9559:93;9648:3;9559:93;:::i;:::-;9677:2;9672:3;9668:12;9661:19;;9320:366;;;:::o;9692:419::-;9858:4;9896:2;9885:9;9881:18;9873:26;;9945:9;9939:4;9935:20;9931:1;9920:9;9916:17;9909:47;9973:131;10099:4;9973:131;:::i;:::-;9965:139;;9692:419;;;:::o;10117:223::-;10257:34;10253:1;10245:6;10241:14;10234:58;10326:6;10321:2;10313:6;10309:15;10302:31;10117:223;:::o;10346:366::-;10488:3;10509:67;10573:2;10568:3;10509:67;:::i;:::-;10502:74;;10585:93;10674:3;10585:93;:::i;:::-;10703:2;10698:3;10694:12;10687:19;;10346:366;;;:::o;10718:419::-;10884:4;10922:2;10911:9;10907:18;10899:26;;10971:9;10965:4;10961:20;10957:1;10946:9;10942:17;10935:47;10999:131;11125:4;10999:131;:::i;:::-;10991:139;;10718:419;;;:::o;11143:221::-;11283:34;11279:1;11271:6;11267:14;11260:58;11352:4;11347:2;11339:6;11335:15;11328:29;11143:221;:::o;11370:366::-;11512:3;11533:67;11597:2;11592:3;11533:67;:::i;:::-;11526:74;;11609:93;11698:3;11609:93;:::i;:::-;11727:2;11722:3;11718:12;11711:19;;11370:366;;;:::o;11742:419::-;11908:4;11946:2;11935:9;11931:18;11923:26;;11995:9;11989:4;11985:20;11981:1;11970:9;11966:17;11959:47;12023:131;12149:4;12023:131;:::i;:::-;12015:139;;11742:419;;;:::o;12167:179::-;12307:31;12303:1;12295:6;12291:14;12284:55;12167:179;:::o;12352:366::-;12494:3;12515:67;12579:2;12574:3;12515:67;:::i;:::-;12508:74;;12591:93;12680:3;12591:93;:::i;:::-;12709:2;12704:3;12700:12;12693:19;;12352:366;;;:::o;12724:419::-;12890:4;12928:2;12917:9;12913:18;12905:26;;12977:9;12971:4;12967:20;12963:1;12952:9;12948:17;12941:47;13005:131;13131:4;13005:131;:::i;:::-;12997:139;;12724:419;;;:::o;13149:224::-;13289:34;13285:1;13277:6;13273:14;13266:58;13358:7;13353:2;13345:6;13341:15;13334:32;13149:224;:::o;13379:366::-;13521:3;13542:67;13606:2;13601:3;13542:67;:::i;:::-;13535:74;;13618:93;13707:3;13618:93;:::i;:::-;13736:2;13731:3;13727:12;13720:19;;13379:366;;;:::o;13751:419::-;13917:4;13955:2;13944:9;13940:18;13932:26;;14004:9;13998:4;13994:20;13990:1;13979:9;13975:17;13968:47;14032:131;14158:4;14032:131;:::i;:::-;14024:139;;13751:419;;;:::o;14176:222::-;14316:34;14312:1;14304:6;14300:14;14293:58;14385:5;14380:2;14372:6;14368:15;14361:30;14176:222;:::o;14404:366::-;14546:3;14567:67;14631:2;14626:3;14567:67;:::i;:::-;14560:74;;14643:93;14732:3;14643:93;:::i;:::-;14761:2;14756:3;14752:12;14745:19;;14404:366;;;:::o;14776:419::-;14942:4;14980:2;14969:9;14965:18;14957:26;;15029:9;15023:4;15019:20;15015:1;15004:9;15000:17;14993:47;15057:131;15183:4;15057:131;:::i;:::-;15049:139;;14776:419;;;:::o;15201:225::-;15341:34;15337:1;15329:6;15325:14;15318:58;15410:8;15405:2;15397:6;15393:15;15386:33;15201:225;:::o;15432:366::-;15574:3;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15671:93;15760:3;15671:93;:::i;:::-;15789:2;15784:3;15780:12;15773:19;;15432:366;;;:::o;15804:419::-;15970:4;16008:2;15997:9;15993:18;15985:26;;16057:9;16051:4;16047:20;16043:1;16032:9;16028:17;16021:47;16085:131;16211:4;16085:131;:::i;:::-;16077:139;;15804:419;;;:::o;16229:181::-;16369:33;16365:1;16357:6;16353:14;16346:57;16229:181;:::o;16416:366::-;16558:3;16579:67;16643:2;16638:3;16579:67;:::i;:::-;16572:74;;16655:93;16744:3;16655:93;:::i;:::-;16773:2;16768:3;16764:12;16757:19;;16416:366;;;:::o;16788:419::-;16954:4;16992:2;16981:9;16977:18;16969:26;;17041:9;17035:4;17031:20;17027:1;17016:9;17012:17;17005:47;17069:131;17195:4;17069:131;:::i;:::-;17061:139;;16788:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1326400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2864",
"decimals()": "388",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "2589",
"renounceOwnership()": "30419",
"symbol()": "infinite",
"totalSupply()": "2505",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "30811"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b"
}
},
"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": 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": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"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": "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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"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"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"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": 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": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"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": "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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"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"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"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."
},
"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: - `to` 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}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'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": {
"contracts/mocks/CName.sol": "CName"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0xdadd41acb749920eccf40aeaa8d291adf9751399a7343561bad13e7a8d99be0b",
"license": "MIT",
"urls": [
"bzz-raw://12af4ac016f9fdf3be5d15824f4292272aa11f6b2e0192a0f7320f5ad49bbbf0",
"dweb:/ipfs/QmRXMpdqCgA3TYuYxBodqs5p9jGbnMW6xa2gvjppvq4TWk"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xbbc8ac883ac3c0078ce5ad3e288fbb3ffcc8a30c3a98c0fda0114d64fc44fca2",
"license": "MIT",
"urls": [
"bzz-raw://87a7a5d2f6f63f84598af02b8c50ca2df2631cb8ba2453e8d95fcb17e4be9824",
"dweb:/ipfs/QmR76hqtAcRqoFj33tmNjcWTLrgNsAaakYwnKZ8zoJtKei"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/mocks/CName.sol": {
"keccak256": "0xc4daac2aaf695652778b4fa92fcfccf2470c1a99e88d1ad2a89a32b6fb922946",
"license": "MIT",
"urls": [
"bzz-raw://d8d9b6bfbc72d5d0c6b55acbdbbe6771f076f54978193b78eac6354d58634cfb",
"dweb:/ipfs/QmdQr7Y9T4Da693YRMuLTd5XVLNqM5n3pxAF8v3qgzdAf4"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract CName is ERC20, Ownable {
constructor() ERC20("CName", "CNME") {
_mint(msg.sender, 1000000 * 10 ** decimals());
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
// 0. contract is deployed
// 1. participants are added to the contract as an when they buy tokens from the tokensale contract.
// The tokens are sent from the tokensale contract to the to the vesting contract, and a new `Lock`
// is created.
// 2. the vesting contract is finalised, at which point no further participants can be added
// 3. once the vesting contract is finalised, anyone can call release() with the address of a participant,
// releasing the tokens to that participants address.
contract Vesting is Ownable{
struct Lock {
uint256 amount;
uint256 released;
}
// https://www.unixtimestamp.com/
// 18 month vesting with 3 month cliff starting 1st April
uint256 private start; // 1-4-2022: 1648756800
uint256 private cliff; // 3 months: 7889229
uint256 private duration; // 18 months: 47335384
mapping (address => Lock) public participants;
IERC20 public cname;
address public saleContract;
uint256 private cnameFunded;
bool public isFinalised;
event ParticipantAdded(address participant, uint256 amount);
event Released(address participants, uint256 amount);
constructor (address token, address _saleContract, uint256 _start, uint256 _cliff, uint256 _finish) {
require(_cliff <= _finish, "Vesting: cliff is longer than finish");
require(_finish > 0, "Vesting: finish is 0");
require(_start + _finish > block.timestamp, "Vesting: final time is before current time");
cname = IERC20(token);
start = _start;
cliff = _start + _cliff;
duration = _start + _finish;
cnameFunded = 0;
isFinalised = false;
saleContract = _saleContract;
}
/**
* @dev Add a participant to the vesting contract. This should be called by the tokensale contract.
* The function first checks if enough tokens have been added
* TODO: make role based: only the token sale contract should be able to call this function
*/
function addParticipant(uint256 amount, address participant) external {
Lock storage lock = participants[participant];
require(lock.amount == 0, "Vesting: User already partipated");
require(msg.sender == saleContract, "Vesting: Only sale contract can add participant");
require(isFinalised == false, "Vesting: Vesting contract is finalised");
require(amount >= cname.balanceOf(address(this)) - cnameFunded, "Vesting: not enough cname to vest amount");
participants[participant] = Lock(amount, 0);
cnameFunded += cname.balanceOf(address(this));
emit ParticipantAdded(participant, amount);
}
function getParticipant(address _participant) external view returns(uint256, uint256){
Lock storage lock = participants[_participant];
return (lock.amount, lock.released);
}
function release(address participant) external {
Lock storage lock = participants[participant];
uint256 unreleased = vestedAmount(participant) - lock.released;
require(unreleased > 0, "Vesting: no tokens are due");
participants[participant].released = lock.released + unreleased;
cname.transfer(participant, unreleased);
emit Released(participant, unreleased);
}
function finalise() external onlyOwner {
require(isFinalised == false, "Vesting: already finalised");
isFinalised = true;
}
function vestedAmount(address participant) public view returns (uint256) {
Lock storage lock = participants[participant];
uint256 totalBalance = lock.amount;
if (block.timestamp < cliff) {
return 0;
} else if (block.timestamp >= start + duration) {
return totalBalance;
} else {
return totalBalance * (block.timestamp - start) / duration;
}
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// 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)
}
})()
// 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)
}
})()
// 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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment