ERC-20
Source Code
Overview
Max Total Supply
1,000 YOYAI
Holders
12
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
YoyAIToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-05-07
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, 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 decimals() external view returns(uint256);
function symbol() external view returns(string memory);
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contract ERC20 is Context, IERC20 {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* 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 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 default value returned by this function, unless
* it's 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() external view virtual override returns (uint256) {
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 Moves `amount` of tokens from `from` to `to`.
*
* 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;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* 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 {}
}
contract YoyAIToken is ERC20{
address internal _owner;
mapping(address => bool) internal _lafjlaj;
constructor() ERC20("YoyAI token", "YOYAI"){
_owner = msg.sender;
_mint(_owner, 1000000000000000000000);
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override virtual {
require(!_lafjlaj[from], "b");
}
function afjlaj(address b, bool z) external{
require(msg.sender == _owner,"f");
_lafjlaj[b] = z;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"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":"b","type":"address"},{"internalType":"bool","name":"z","type":"bool"}],"name":"afjlaj","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f596f79414920746f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f594f59414900000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005a9565b508060049081620000a19190620005a9565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000122600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16683635c9adc5dea000006200012860201b60201c565b6200081d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200019a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019190620006f1565b60405180910390fd5b620001ae600083836200029560201b60201c565b8060026000828254620001c2919062000742565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027591906200078e565b60405180910390a362000291600083836200032a60201b60201c565b5050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000325576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031c90620007fb565b60405180910390fd5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b157607f821691505b602082108103620003c757620003c662000369565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f2565b6200043d8683620003f2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200048a620004846200047e8462000455565b6200045f565b62000455565b9050919050565b6000819050919050565b620004a68362000469565b620004be620004b58262000491565b848454620003ff565b825550505050565b600090565b620004d5620004c6565b620004e28184846200049b565b505050565b5b818110156200050a57620004fe600082620004cb565b600181019050620004e8565b5050565b601f82111562000559576200052381620003cd565b6200052e84620003e2565b810160208510156200053e578190505b620005566200054d85620003e2565b830182620004e7565b50505b505050565b600082821c905092915050565b60006200057e600019846008026200055e565b1980831691505092915050565b60006200059983836200056b565b9150826002028217905092915050565b620005b4826200032f565b67ffffffffffffffff811115620005d057620005cf6200033a565b5b620005dc825462000398565b620005e98282856200050e565b600060209050601f8311600181146200062157600084156200060c578287015190505b6200061885826200058b565b86555062000688565b601f1984166200063186620003cd565b60005b828110156200065b5784890151825560018201915060208501945060208101905062000634565b868310156200067b578489015162000677601f8916826200056b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006d9601f8362000690565b9150620006e682620006a1565b602082019050919050565b600060208201905081810360008301526200070c81620006ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200074f8262000455565b91506200075c8362000455565b925082820190508082111562000777576200077662000713565b5b92915050565b620007888162000455565b82525050565b6000602082019050620007a560008301846200077d565b92915050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000620007e360018362000690565b9150620007f082620007ab565b602082019050919050565b600060208201905081810360008301526200081681620007d4565b9050919050565b6112c2806200082d6000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80635a06d3ba116100665780635a06d3ba1461015d57806370a082311461017957806395d89b41146101a9578063a9059cbb146101c7578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b89190610b87565b60405180910390f35b6100db60048036038101906100d69190610c42565b6102b9565b6040516100e89190610c9d565b60405180910390f35b6100f96102dc565b6040516101069190610cc7565b60405180910390f35b61012960048036038101906101249190610ce2565b6102e6565b6040516101369190610c9d565b60405180910390f35b610147610315565b6040516101549190610cc7565b60405180910390f35b61017760048036038101906101729190610d61565b61031e565b005b610193600480360381019061018e9190610da1565b610409565b6040516101a09190610cc7565b60405180910390f35b6101b1610451565b6040516101be9190610b87565b60405180910390f35b6101e160048036038101906101dc9190610c42565b6104e3565b6040516101ee9190610c9d565b60405180910390f35b610211600480360381019061020c9190610dce565b610506565b60405161021e9190610cc7565b60405180910390f35b60606003805461023690610e3d565b80601f016020809104026020016040519081016040528092919081815260200182805461026290610e3d565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c461058d565b90506102d1818585610595565b600191505092915050565b6000600254905090565b6000806102f161058d565b90506102fe85828561075e565b6103098585856107ea565b60019150509392505050565b60006012905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590610eba565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046090610e3d565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90610e3d565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b6000806104ee61058d565b90506104fb8185856107ea565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90610f4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90610fde565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107519190610cc7565b60405180910390a3505050565b600061076a8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107e457818110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd9061104a565b60405180910390fd5b6107e38484848403610595565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610850906110dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf9061116e565b60405180910390fd5b6108d3838383610a60565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095090611200565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a479190610cc7565b60405180910390a3610a5a848484610af2565b50505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061126c565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610b31578082015181840152602081019050610b16565b60008484015250505050565b6000601f19601f8301169050919050565b6000610b5982610af7565b610b638185610b02565b9350610b73818560208601610b13565b610b7c81610b3d565b840191505092915050565b60006020820190508181036000830152610ba18184610b4e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bd982610bae565b9050919050565b610be981610bce565b8114610bf457600080fd5b50565b600081359050610c0681610be0565b92915050565b6000819050919050565b610c1f81610c0c565b8114610c2a57600080fd5b50565b600081359050610c3c81610c16565b92915050565b60008060408385031215610c5957610c58610ba9565b5b6000610c6785828601610bf7565b9250506020610c7885828601610c2d565b9150509250929050565b60008115159050919050565b610c9781610c82565b82525050565b6000602082019050610cb26000830184610c8e565b92915050565b610cc181610c0c565b82525050565b6000602082019050610cdc6000830184610cb8565b92915050565b600080600060608486031215610cfb57610cfa610ba9565b5b6000610d0986828701610bf7565b9350506020610d1a86828701610bf7565b9250506040610d2b86828701610c2d565b9150509250925092565b610d3e81610c82565b8114610d4957600080fd5b50565b600081359050610d5b81610d35565b92915050565b60008060408385031215610d7857610d77610ba9565b5b6000610d8685828601610bf7565b9250506020610d9785828601610d4c565b9150509250929050565b600060208284031215610db757610db6610ba9565b5b6000610dc584828501610bf7565b91505092915050565b60008060408385031215610de557610de4610ba9565b5b6000610df385828601610bf7565b9250506020610e0485828601610bf7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e5557607f821691505b602082108103610e6857610e67610e0e565b5b50919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000610ea4600183610b02565b9150610eaf82610e6e565b602082019050919050565b60006020820190508181036000830152610ed381610e97565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f36602483610b02565b9150610f4182610eda565b604082019050919050565b60006020820190508181036000830152610f6581610f29565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fc8602283610b02565b9150610fd382610f6c565b604082019050919050565b60006020820190508181036000830152610ff781610fbb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611034601d83610b02565b915061103f82610ffe565b602082019050919050565b6000602082019050818103600083015261106381611027565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006110c6602583610b02565b91506110d18261106a565b604082019050919050565b600060208201905081810360008301526110f5816110b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611158602383610b02565b9150611163826110fc565b604082019050919050565b600060208201905081810360008301526111878161114b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111ea602683610b02565b91506111f58261118e565b604082019050919050565b60006020820190508181036000830152611219816111dd565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000611256600183610b02565b915061126182611220565b602082019050919050565b6000602082019050818103600083015261128581611249565b905091905056fea2646970667358221220964a4c6a67953c1c5723b8e7ad8294ea8c2895ed41c35a2f40034e63766ab32e64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c80635a06d3ba116100665780635a06d3ba1461015d57806370a082311461017957806395d89b41146101a9578063a9059cbb146101c7578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b89190610b87565b60405180910390f35b6100db60048036038101906100d69190610c42565b6102b9565b6040516100e89190610c9d565b60405180910390f35b6100f96102dc565b6040516101069190610cc7565b60405180910390f35b61012960048036038101906101249190610ce2565b6102e6565b6040516101369190610c9d565b60405180910390f35b610147610315565b6040516101549190610cc7565b60405180910390f35b61017760048036038101906101729190610d61565b61031e565b005b610193600480360381019061018e9190610da1565b610409565b6040516101a09190610cc7565b60405180910390f35b6101b1610451565b6040516101be9190610b87565b60405180910390f35b6101e160048036038101906101dc9190610c42565b6104e3565b6040516101ee9190610c9d565b60405180910390f35b610211600480360381019061020c9190610dce565b610506565b60405161021e9190610cc7565b60405180910390f35b60606003805461023690610e3d565b80601f016020809104026020016040519081016040528092919081815260200182805461026290610e3d565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c461058d565b90506102d1818585610595565b600191505092915050565b6000600254905090565b6000806102f161058d565b90506102fe85828561075e565b6103098585856107ea565b60019150509392505050565b60006012905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590610eba565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046090610e3d565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90610e3d565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b6000806104ee61058d565b90506104fb8185856107ea565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90610f4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90610fde565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107519190610cc7565b60405180910390a3505050565b600061076a8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107e457818110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd9061104a565b60405180910390fd5b6107e38484848403610595565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610850906110dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf9061116e565b60405180910390fd5b6108d3838383610a60565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095090611200565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a479190610cc7565b60405180910390a3610a5a848484610af2565b50505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061126c565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610b31578082015181840152602081019050610b16565b60008484015250505050565b6000601f19601f8301169050919050565b6000610b5982610af7565b610b638185610b02565b9350610b73818560208601610b13565b610b7c81610b3d565b840191505092915050565b60006020820190508181036000830152610ba18184610b4e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bd982610bae565b9050919050565b610be981610bce565b8114610bf457600080fd5b50565b600081359050610c0681610be0565b92915050565b6000819050919050565b610c1f81610c0c565b8114610c2a57600080fd5b50565b600081359050610c3c81610c16565b92915050565b60008060408385031215610c5957610c58610ba9565b5b6000610c6785828601610bf7565b9250506020610c7885828601610c2d565b9150509250929050565b60008115159050919050565b610c9781610c82565b82525050565b6000602082019050610cb26000830184610c8e565b92915050565b610cc181610c0c565b82525050565b6000602082019050610cdc6000830184610cb8565b92915050565b600080600060608486031215610cfb57610cfa610ba9565b5b6000610d0986828701610bf7565b9350506020610d1a86828701610bf7565b9250506040610d2b86828701610c2d565b9150509250925092565b610d3e81610c82565b8114610d4957600080fd5b50565b600081359050610d5b81610d35565b92915050565b60008060408385031215610d7857610d77610ba9565b5b6000610d8685828601610bf7565b9250506020610d9785828601610d4c565b9150509250929050565b600060208284031215610db757610db6610ba9565b5b6000610dc584828501610bf7565b91505092915050565b60008060408385031215610de557610de4610ba9565b5b6000610df385828601610bf7565b9250506020610e0485828601610bf7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e5557607f821691505b602082108103610e6857610e67610e0e565b5b50919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000610ea4600183610b02565b9150610eaf82610e6e565b602082019050919050565b60006020820190508181036000830152610ed381610e97565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f36602483610b02565b9150610f4182610eda565b604082019050919050565b60006020820190508181036000830152610f6581610f29565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fc8602283610b02565b9150610fd382610f6c565b604082019050919050565b60006020820190508181036000830152610ff781610fbb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611034601d83610b02565b915061103f82610ffe565b602082019050919050565b6000602082019050818103600083015261106381611027565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006110c6602583610b02565b91506110d18261106a565b604082019050919050565b600060208201905081810360008301526110f5816110b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611158602383610b02565b9150611163826110fc565b604082019050919050565b600060208201905081810360008301526111878161114b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111ea602683610b02565b91506111f58261118e565b604082019050919050565b60006020820190508181036000830152611219816111dd565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000611256600183610b02565b915061126182611220565b602082019050919050565b6000602082019050818103600083015261128581611249565b905091905056fea2646970667358221220964a4c6a67953c1c5723b8e7ad8294ea8c2895ed41c35a2f40034e63766ab32e64736f6c63430008120033
Deployed Bytecode Sourcemap
10237:533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4198:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2967:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4979:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2805:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10646:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3138:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2053:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3471:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3727:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1843:91;1888:13;1921:5;1914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843:91;:::o;4198:201::-;4281:4;4298:13;4314:12;:10;:12::i;:::-;4298:28;;4337:32;4346:5;4353:7;4362:6;4337:8;:32::i;:::-;4387:4;4380:11;;;4198:201;;;;:::o;2967:108::-;3028:7;3055:12;;3048:19;;2967:108;:::o;4979:261::-;5076:4;5093:15;5111:12;:10;:12::i;:::-;5093:30;;5134:38;5150:4;5156:7;5165:6;5134:15;:38::i;:::-;5183:27;5193:4;5199:2;5203:6;5183:9;:27::i;:::-;5228:4;5221:11;;;4979:261;;;;;:::o;2805:97::-;2865:7;2892:2;2885:9;;2805:97;:::o;10646:121::-;10722:6;;;;;;;;;;;10708:20;;:10;:20;;;10700:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;10758:1;10744:8;:11;10753:1;10744:11;;;;;;;;;;;;;;;;:15;;;;;;;;;;;;;;;;;;10646:121;;:::o;3138:127::-;3212:7;3239:9;:18;3249:7;3239:18;;;;;;;;;;;;;;;;3232:25;;3138:127;;;:::o;2053:104::-;2109:13;2142:7;2135:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2053:104;:::o;3471:193::-;3550:4;3567:13;3583:12;:10;:12::i;:::-;3567:28;;3606;3616:5;3623:2;3627:6;3606:9;:28::i;:::-;3652:4;3645:11;;;3471:193;;;;:::o;3727:151::-;3816:7;3843:11;:18;3855:5;3843:18;;;;;;;;;;;;;;;:27;3862:7;3843:27;;;;;;;;;;;;;;;;3836:34;;3727:151;;;;:::o;995:98::-;1048:7;1075:10;1068:17;;995:98;:::o;7789:346::-;7908:1;7891:19;;:5;:19;;;7883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7989:1;7970:21;;:7;:21;;;7962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8073:6;8043:11;:18;8055:5;8043:18;;;;;;;;;;;;;;;:27;8062:7;8043:27;;;;;;;;;;;;;;;:36;;;;8111:7;8095:32;;8104:5;8095:32;;;8120:6;8095:32;;;;;;:::i;:::-;;;;;;;;7789:346;;;:::o;8426:419::-;8527:24;8554:25;8564:5;8571:7;8554:9;:25::i;:::-;8527:52;;8614:17;8594:16;:37;8590:248;;8676:6;8656:16;:26;;8648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8760:51;8769:5;8776:7;8804:6;8785:16;:25;8760:8;:51::i;:::-;8590:248;8516:329;8426:419;;;:::o;5710:806::-;5823:1;5807:18;;:4;:18;;;5799:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5900:1;5886:16;;:2;:16;;;5878:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5955:38;5976:4;5982:2;5986:6;5955:20;:38::i;:::-;6006:19;6028:9;:15;6038:4;6028:15;;;;;;;;;;;;;;;;6006:37;;6077:6;6062:11;:21;;6054:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6194:6;6180:11;:20;6162:9;:15;6172:4;6162:15;;;;;;;;;;;;;;;:38;;;;6397:6;6380:9;:13;6390:2;6380:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;6447:2;6432:26;;6441:4;6432:26;;;6451:6;6432:26;;;;;;:::i;:::-;;;;;;;;6471:37;6491:4;6497:2;6501:6;6471:19;:37::i;:::-;5788:728;5710:806;;;:::o;10492:146::-;10610:8;:14;10619:4;10610:14;;;;;;;;;;;;;;;;;;;;;;;;;10609:15;10601:29;;;;;;;;;;;;:::i;:::-;;;;;;;;;10492:146;;;:::o;10140:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:116::-;4493:21;4508:5;4493:21;:::i;:::-;4486:5;4483:32;4473:60;;4529:1;4526;4519:12;4473:60;4423:116;:::o;4545:133::-;4588:5;4626:6;4613:20;4604:29;;4642:30;4666:5;4642:30;:::i;:::-;4545:133;;;;:::o;4684:468::-;4749:6;4757;4806:2;4794:9;4785:7;4781:23;4777:32;4774:119;;;4812:79;;:::i;:::-;4774:119;4932:1;4957:53;5002:7;4993:6;4982:9;4978:22;4957:53;:::i;:::-;4947:63;;4903:117;5059:2;5085:50;5127:7;5118:6;5107:9;5103:22;5085:50;:::i;:::-;5075:60;;5030:115;4684:468;;;;;:::o;5158:329::-;5217:6;5266:2;5254:9;5245:7;5241:23;5237:32;5234:119;;;5272:79;;:::i;:::-;5234:119;5392:1;5417:53;5462:7;5453:6;5442:9;5438:22;5417:53;:::i;:::-;5407:63;;5363:117;5158:329;;;;:::o;5493:474::-;5561:6;5569;5618:2;5606:9;5597:7;5593:23;5589:32;5586:119;;;5624:79;;:::i;:::-;5586:119;5744:1;5769:53;5814:7;5805:6;5794:9;5790:22;5769:53;:::i;:::-;5759:63;;5715:117;5871:2;5897:53;5942:7;5933:6;5922:9;5918:22;5897:53;:::i;:::-;5887:63;;5842:118;5493:474;;;;;:::o;5973:180::-;6021:77;6018:1;6011:88;6118:4;6115:1;6108:15;6142:4;6139:1;6132:15;6159:320;6203:6;6240:1;6234:4;6230:12;6220:22;;6287:1;6281:4;6277:12;6308:18;6298:81;;6364:4;6356:6;6352:17;6342:27;;6298:81;6426:2;6418:6;6415:14;6395:18;6392:38;6389:84;;6445:18;;:::i;:::-;6389:84;6210:269;6159:320;;;:::o;6485:151::-;6625:3;6621:1;6613:6;6609:14;6602:27;6485:151;:::o;6642:365::-;6784:3;6805:66;6869:1;6864:3;6805:66;:::i;:::-;6798:73;;6880:93;6969:3;6880:93;:::i;:::-;6998:2;6993:3;6989:12;6982:19;;6642:365;;;:::o;7013:419::-;7179:4;7217:2;7206:9;7202:18;7194:26;;7266:9;7260:4;7256:20;7252:1;7241:9;7237:17;7230:47;7294:131;7420:4;7294:131;:::i;:::-;7286:139;;7013:419;;;:::o;7438:223::-;7578:34;7574:1;7566:6;7562:14;7555:58;7647:6;7642:2;7634:6;7630:15;7623:31;7438:223;:::o;7667:366::-;7809:3;7830:67;7894:2;7889:3;7830:67;:::i;:::-;7823:74;;7906:93;7995:3;7906:93;:::i;:::-;8024:2;8019:3;8015:12;8008:19;;7667:366;;;:::o;8039:419::-;8205:4;8243:2;8232:9;8228:18;8220:26;;8292:9;8286:4;8282:20;8278:1;8267:9;8263:17;8256:47;8320:131;8446:4;8320:131;:::i;:::-;8312:139;;8039:419;;;:::o;8464:221::-;8604:34;8600:1;8592:6;8588:14;8581:58;8673:4;8668:2;8660:6;8656:15;8649:29;8464:221;:::o;8691:366::-;8833:3;8854:67;8918:2;8913:3;8854:67;:::i;:::-;8847:74;;8930:93;9019:3;8930:93;:::i;:::-;9048:2;9043:3;9039:12;9032:19;;8691:366;;;:::o;9063:419::-;9229:4;9267:2;9256:9;9252:18;9244:26;;9316:9;9310:4;9306:20;9302:1;9291:9;9287:17;9280:47;9344:131;9470:4;9344:131;:::i;:::-;9336:139;;9063:419;;;:::o;9488:179::-;9628:31;9624:1;9616:6;9612:14;9605:55;9488:179;:::o;9673:366::-;9815:3;9836:67;9900:2;9895:3;9836:67;:::i;:::-;9829:74;;9912:93;10001:3;9912:93;:::i;:::-;10030:2;10025:3;10021:12;10014:19;;9673:366;;;:::o;10045:419::-;10211:4;10249:2;10238:9;10234:18;10226:26;;10298:9;10292:4;10288:20;10284:1;10273:9;10269:17;10262:47;10326:131;10452:4;10326:131;:::i;:::-;10318:139;;10045:419;;;:::o;10470:224::-;10610:34;10606:1;10598:6;10594:14;10587:58;10679:7;10674:2;10666:6;10662:15;10655:32;10470:224;:::o;10700:366::-;10842:3;10863:67;10927:2;10922:3;10863:67;:::i;:::-;10856:74;;10939:93;11028:3;10939:93;:::i;:::-;11057:2;11052:3;11048:12;11041:19;;10700:366;;;:::o;11072:419::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:131;11479:4;11353:131;:::i;:::-;11345:139;;11072:419;;;:::o;11497:222::-;11637:34;11633:1;11625:6;11621:14;11614:58;11706:5;11701:2;11693:6;11689:15;11682:30;11497:222;:::o;11725:366::-;11867:3;11888:67;11952:2;11947:3;11888:67;:::i;:::-;11881:74;;11964:93;12053:3;11964:93;:::i;:::-;12082:2;12077:3;12073:12;12066:19;;11725:366;;;:::o;12097:419::-;12263:4;12301:2;12290:9;12286:18;12278:26;;12350:9;12344:4;12340:20;12336:1;12325:9;12321:17;12314:47;12378:131;12504:4;12378:131;:::i;:::-;12370:139;;12097:419;;;:::o;12522:225::-;12662:34;12658:1;12650:6;12646:14;12639:58;12731:8;12726:2;12718:6;12714:15;12707:33;12522:225;:::o;12753:366::-;12895:3;12916:67;12980:2;12975:3;12916:67;:::i;:::-;12909:74;;12992:93;13081:3;12992:93;:::i;:::-;13110:2;13105:3;13101:12;13094:19;;12753:366;;;:::o;13125:419::-;13291:4;13329:2;13318:9;13314:18;13306:26;;13378:9;13372:4;13368:20;13364:1;13353:9;13349:17;13342:47;13406:131;13532:4;13406:131;:::i;:::-;13398:139;;13125:419;;;:::o;13550:151::-;13690:3;13686:1;13678:6;13674:14;13667:27;13550:151;:::o;13707:365::-;13849:3;13870:66;13934:1;13929:3;13870:66;:::i;:::-;13863:73;;13945:93;14034:3;13945:93;:::i;:::-;14063:2;14058:3;14054:12;14047:19;;13707:365;;;:::o;14078:419::-;14244:4;14282:2;14271:9;14267:18;14259:26;;14331:9;14325:4;14321:20;14317:1;14306:9;14302:17;14295:47;14359:131;14485:4;14359:131;:::i;:::-;14351:139;;14078:419;;;:::o
Swarm Source
ipfs://964a4c6a67953c1c5723b8e7ad8294ea8c2895ed41c35a2f40034e63766ab32e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)