ERC-20
Overview
Max Total Supply
10,761,340.46 CRUNCH
Holders
397
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CrunchToken
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "./erc677/ERC677.sol"; contract CrunchToken is ERC677, ERC20Burnable { constructor() ERC20("Crunch Token", "CRUNCH") { _mint(msg.sender, 10765163 * 10**decimals()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./ERC677.sol"; import "./IERC677.sol"; import "./IERC677Receiver.sol"; abstract contract ERC677 is IERC677, ERC20 { function transferAndCall( address recipient, uint256 amount, bytes memory data ) public virtual override returns (bool success) { super.transfer(recipient, amount); emit TransferAndCall(msg.sender, recipient, amount, data); if (isContract(recipient)) { IERC677Receiver receiver = IERC677Receiver(recipient); receiver.onTokenTransfer(msg.sender, amount, data); } return true; } function isContract(address addr) private view returns (bool hasCode) { uint256 length; assembly { length := extcodesize(addr) } return length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; interface IERC677 is IERC20 { /** * @dev transfer token to a contract address with additional data if the recipient is a contact. * @param recipient The address to transfer to. * @param amount The amount to be transferred. * @param data The extra data to be passed to the receiving contract. */ function transferAndCall( address recipient, uint256 amount, bytes memory data ) external returns (bool success); event TransferAndCall( address indexed from, address indexed to, uint256 value, bytes data ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC677Receiver { function onTokenTransfer( address sender, uint256 value, bytes memory data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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; } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"},{"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"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"TransferAndCall","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f4372756e636820546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f4352554e4348000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000283565b508060049080519060200190620000af92919062000283565b505050620000f133620000c7620000f760201b60201c565b600a620000d5919062000473565b62a4436b620000e59190620005b0565b6200010060201b60201c565b620006f2565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016a906200036b565b60405180910390fd5b62000187600083836200027960201b60201c565b80600260008282546200019b9190620003bb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f29190620003bb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025991906200038d565b60405180910390a362000275600083836200027e60201b60201c565b5050565b505050565b505050565b828054620002919062000628565b90600052602060002090601f016020900481019282620002b5576000855562000301565b82601f10620002d057805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000300578251825591602001919060010190620002e3565b5b50905062000310919062000314565b5090565b5b808211156200032f57600081600090555060010162000315565b5090565b600062000342601f83620003aa565b91506200034f82620006c9565b602082019050919050565b620003658162000611565b82525050565b60006020820190508181036000830152620003868162000333565b9050919050565b6000602082019050620003a460008301846200035a565b92915050565b600082825260208201905092915050565b6000620003c88262000611565b9150620003d58362000611565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200040d576200040c6200065e565b5b828201905092915050565b6000808291508390505b60018511156200046a578086048111156200044257620004416200065e565b5b6001851615620004525780820291505b80810290506200046285620006bc565b945062000422565b94509492505050565b6000620004808262000611565b91506200048d836200061b565b9250620004bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c4565b905092915050565b600082620004d65760019050620005a9565b81620004e65760009050620005a9565b8160018114620004ff57600281146200050a5762000540565b6001915050620005a9565b60ff8411156200051f576200051e6200065e565b5b8360020a9150848211156200053957620005386200065e565b5b50620005a9565b5060208310610133831016604e8410600b84101617156200057a5782820a9050838111156200057457620005736200065e565b5b620005a9565b62000589848484600162000418565b92509050818404811115620005a357620005a26200065e565b5b81810290505b9392505050565b6000620005bd8262000611565b9150620005ca8362000611565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200060657620006056200065e565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200064157607f821691505b602082108114156200065857620006576200068d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c6b80620007026000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610271578063a457c2d71461028f578063a9059cbb146102bf578063dd62ed3e146102ef576100ea565b806342966c681461020957806370a082311461022557806379cc679014610255576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780634000aea0146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190611465565b60405180910390f35b61012760048036038101906101229190611124565b6103b1565b604051610134919061144a565b60405180910390f35b6101456103cf565b60405161015291906115c7565b60405180910390f35b610175600480360381019061017091906110d1565b6103d9565b604051610182919061144a565b60405180910390f35b6101936104d1565b6040516101a09190611612565b60405180910390f35b6101c360048036038101906101be9190611124565b6104da565b6040516101d0919061144a565b60405180910390f35b6101f360048036038101906101ee9190611164565b610586565b604051610200919061144a565b60405180910390f35b610223600480360381019061021e91906111d3565b610689565b005b61023f600480360381019061023a9190611064565b61069d565b60405161024c91906115c7565b60405180910390f35b61026f600480360381019061026a9190611124565b6106e5565b005b610279610760565b6040516102869190611465565b60405180910390f35b6102a960048036038101906102a49190611124565b6107f2565b6040516102b6919061144a565b60405180910390f35b6102d960048036038101906102d49190611124565b6108dd565b6040516102e6919061144a565b60405180910390f35b61030960048036038101906103049190611091565b6108fb565b60405161031691906115c7565b60405180910390f35b60606003805461032e906117dc565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906117dc565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610982565b848461098a565b6001905092915050565b6000600254905090565b60006103e6848484610b55565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a890611507565b60405180910390fd5b6104c5856104bd610982565b85840361098a565b60019150509392505050565b60006012905090565b600061057c6104e7610982565b8484600160006104f5610982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461057791906116bb565b61098a565b6001905092915050565b600061059284846108dd565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fce8124fd2ae9fd7904103e5a9ebe88b527b9ca0e32a32fd497845c82706542d385856040516105f29291906115e2565b60405180910390a361060384610dd6565b1561067e5760008490508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363386866040518463ffffffff1660e01b815260040161064a9392919061140c565b600060405180830381600087803b15801561066457600080fd5b505af1158015610678573d6000803e3d6000fd5b50505050505b600190509392505050565b61069a610694610982565b82610de9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106f8836106f3610982565b6108fb565b90508181101561073d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073490611527565b60405180910390fd5b61075183610749610982565b84840361098a565b61075b8383610de9565b505050565b60606004805461076f906117dc565b80601f016020809104026020016040519081016040528092919081815260200182805461079b906117dc565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60008060016000610801610982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b5906115a7565b60405180910390fd5b6108d26108c9610982565b8585840361098a565b600191505092915050565b60006108f16108ea610982565b8484610b55565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611587565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906114c7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4891906115c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90611567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90611487565b60405180910390fd5b610c40838383610fc0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd906114e7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5991906116bb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbd91906115c7565b60405180910390a3610dd0848484610fc5565b50505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090611547565b60405180910390fd5b610e6582600083610fc0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906114a7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610f429190611711565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa791906115c7565b60405180910390a3610fbb83600084610fc5565b505050565b505050565b505050565b6000610fdd610fd884611652565b61162d565b905082815260208101848484011115610ff957610ff86118d1565b5b61100484828561179a565b509392505050565b60008135905061101b81611c07565b92915050565b600082601f830112611036576110356118cc565b5b8135611046848260208601610fca565b91505092915050565b60008135905061105e81611c1e565b92915050565b60006020828403121561107a576110796118db565b5b60006110888482850161100c565b91505092915050565b600080604083850312156110a8576110a76118db565b5b60006110b68582860161100c565b92505060206110c78582860161100c565b9150509250929050565b6000806000606084860312156110ea576110e96118db565b5b60006110f88682870161100c565b93505060206111098682870161100c565b925050604061111a8682870161104f565b9150509250925092565b6000806040838503121561113b5761113a6118db565b5b60006111498582860161100c565b925050602061115a8582860161104f565b9150509250929050565b60008060006060848603121561117d5761117c6118db565b5b600061118b8682870161100c565b935050602061119c8682870161104f565b925050604084013567ffffffffffffffff8111156111bd576111bc6118d6565b5b6111c986828701611021565b9150509250925092565b6000602082840312156111e9576111e86118db565b5b60006111f78482850161104f565b91505092915050565b61120981611745565b82525050565b61121881611757565b82525050565b600061122982611683565b6112338185611699565b93506112438185602086016117a9565b61124c816118e0565b840191505092915050565b60006112628261168e565b61126c81856116aa565b935061127c8185602086016117a9565b611285816118e0565b840191505092915050565b600061129d6023836116aa565b91506112a8826118f1565b604082019050919050565b60006112c06022836116aa565b91506112cb82611940565b604082019050919050565b60006112e36022836116aa565b91506112ee8261198f565b604082019050919050565b60006113066026836116aa565b9150611311826119de565b604082019050919050565b60006113296028836116aa565b915061133482611a2d565b604082019050919050565b600061134c6024836116aa565b915061135782611a7c565b604082019050919050565b600061136f6021836116aa565b915061137a82611acb565b604082019050919050565b60006113926025836116aa565b915061139d82611b1a565b604082019050919050565b60006113b56024836116aa565b91506113c082611b69565b604082019050919050565b60006113d86025836116aa565b91506113e382611bb8565b604082019050919050565b6113f781611783565b82525050565b6114068161178d565b82525050565b60006060820190506114216000830186611200565b61142e60208301856113ee565b8181036040830152611440818461121e565b9050949350505050565b600060208201905061145f600083018461120f565b92915050565b6000602082019050818103600083015261147f8184611257565b905092915050565b600060208201905081810360008301526114a081611290565b9050919050565b600060208201905081810360008301526114c0816112b3565b9050919050565b600060208201905081810360008301526114e0816112d6565b9050919050565b60006020820190508181036000830152611500816112f9565b9050919050565b600060208201905081810360008301526115208161131c565b9050919050565b600060208201905081810360008301526115408161133f565b9050919050565b6000602082019050818103600083015261156081611362565b9050919050565b6000602082019050818103600083015261158081611385565b9050919050565b600060208201905081810360008301526115a0816113a8565b9050919050565b600060208201905081810360008301526115c0816113cb565b9050919050565b60006020820190506115dc60008301846113ee565b92915050565b60006040820190506115f760008301856113ee565b8181036020830152611609818461121e565b90509392505050565b600060208201905061162760008301846113fd565b92915050565b6000611637611648565b9050611643828261180e565b919050565b6000604051905090565b600067ffffffffffffffff82111561166d5761166c61189d565b5b611676826118e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006116c682611783565b91506116d183611783565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117065761170561183f565b5b828201905092915050565b600061171c82611783565b915061172783611783565b92508282101561173a5761173961183f565b5b828203905092915050565b600061175082611763565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156117c75780820151818401526020810190506117ac565b838111156117d6576000848401525b50505050565b600060028204905060018216806117f457607f821691505b602082108114156118085761180761186e565b5b50919050565b611817826118e0565b810181811067ffffffffffffffff821117156118365761183561189d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c1081611745565b8114611c1b57600080fd5b50565b611c2781611783565b8114611c3257600080fd5b5056fea2646970667358221220352d81ae97eceff3d8b1f40f93c739a3509ce2a5f4be02d1370dc0ba9b06c8a664736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610271578063a457c2d71461028f578063a9059cbb146102bf578063dd62ed3e146102ef576100ea565b806342966c681461020957806370a082311461022557806379cc679014610255576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780634000aea0146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190611465565b60405180910390f35b61012760048036038101906101229190611124565b6103b1565b604051610134919061144a565b60405180910390f35b6101456103cf565b60405161015291906115c7565b60405180910390f35b610175600480360381019061017091906110d1565b6103d9565b604051610182919061144a565b60405180910390f35b6101936104d1565b6040516101a09190611612565b60405180910390f35b6101c360048036038101906101be9190611124565b6104da565b6040516101d0919061144a565b60405180910390f35b6101f360048036038101906101ee9190611164565b610586565b604051610200919061144a565b60405180910390f35b610223600480360381019061021e91906111d3565b610689565b005b61023f600480360381019061023a9190611064565b61069d565b60405161024c91906115c7565b60405180910390f35b61026f600480360381019061026a9190611124565b6106e5565b005b610279610760565b6040516102869190611465565b60405180910390f35b6102a960048036038101906102a49190611124565b6107f2565b6040516102b6919061144a565b60405180910390f35b6102d960048036038101906102d49190611124565b6108dd565b6040516102e6919061144a565b60405180910390f35b61030960048036038101906103049190611091565b6108fb565b60405161031691906115c7565b60405180910390f35b60606003805461032e906117dc565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906117dc565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610982565b848461098a565b6001905092915050565b6000600254905090565b60006103e6848484610b55565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a890611507565b60405180910390fd5b6104c5856104bd610982565b85840361098a565b60019150509392505050565b60006012905090565b600061057c6104e7610982565b8484600160006104f5610982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461057791906116bb565b61098a565b6001905092915050565b600061059284846108dd565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fce8124fd2ae9fd7904103e5a9ebe88b527b9ca0e32a32fd497845c82706542d385856040516105f29291906115e2565b60405180910390a361060384610dd6565b1561067e5760008490508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363386866040518463ffffffff1660e01b815260040161064a9392919061140c565b600060405180830381600087803b15801561066457600080fd5b505af1158015610678573d6000803e3d6000fd5b50505050505b600190509392505050565b61069a610694610982565b82610de9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106f8836106f3610982565b6108fb565b90508181101561073d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073490611527565b60405180910390fd5b61075183610749610982565b84840361098a565b61075b8383610de9565b505050565b60606004805461076f906117dc565b80601f016020809104026020016040519081016040528092919081815260200182805461079b906117dc565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60008060016000610801610982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b5906115a7565b60405180910390fd5b6108d26108c9610982565b8585840361098a565b600191505092915050565b60006108f16108ea610982565b8484610b55565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611587565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906114c7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4891906115c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90611567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90611487565b60405180910390fd5b610c40838383610fc0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd906114e7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5991906116bb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbd91906115c7565b60405180910390a3610dd0848484610fc5565b50505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090611547565b60405180910390fd5b610e6582600083610fc0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906114a7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610f429190611711565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa791906115c7565b60405180910390a3610fbb83600084610fc5565b505050565b505050565b505050565b6000610fdd610fd884611652565b61162d565b905082815260208101848484011115610ff957610ff86118d1565b5b61100484828561179a565b509392505050565b60008135905061101b81611c07565b92915050565b600082601f830112611036576110356118cc565b5b8135611046848260208601610fca565b91505092915050565b60008135905061105e81611c1e565b92915050565b60006020828403121561107a576110796118db565b5b60006110888482850161100c565b91505092915050565b600080604083850312156110a8576110a76118db565b5b60006110b68582860161100c565b92505060206110c78582860161100c565b9150509250929050565b6000806000606084860312156110ea576110e96118db565b5b60006110f88682870161100c565b93505060206111098682870161100c565b925050604061111a8682870161104f565b9150509250925092565b6000806040838503121561113b5761113a6118db565b5b60006111498582860161100c565b925050602061115a8582860161104f565b9150509250929050565b60008060006060848603121561117d5761117c6118db565b5b600061118b8682870161100c565b935050602061119c8682870161104f565b925050604084013567ffffffffffffffff8111156111bd576111bc6118d6565b5b6111c986828701611021565b9150509250925092565b6000602082840312156111e9576111e86118db565b5b60006111f78482850161104f565b91505092915050565b61120981611745565b82525050565b61121881611757565b82525050565b600061122982611683565b6112338185611699565b93506112438185602086016117a9565b61124c816118e0565b840191505092915050565b60006112628261168e565b61126c81856116aa565b935061127c8185602086016117a9565b611285816118e0565b840191505092915050565b600061129d6023836116aa565b91506112a8826118f1565b604082019050919050565b60006112c06022836116aa565b91506112cb82611940565b604082019050919050565b60006112e36022836116aa565b91506112ee8261198f565b604082019050919050565b60006113066026836116aa565b9150611311826119de565b604082019050919050565b60006113296028836116aa565b915061133482611a2d565b604082019050919050565b600061134c6024836116aa565b915061135782611a7c565b604082019050919050565b600061136f6021836116aa565b915061137a82611acb565b604082019050919050565b60006113926025836116aa565b915061139d82611b1a565b604082019050919050565b60006113b56024836116aa565b91506113c082611b69565b604082019050919050565b60006113d86025836116aa565b91506113e382611bb8565b604082019050919050565b6113f781611783565b82525050565b6114068161178d565b82525050565b60006060820190506114216000830186611200565b61142e60208301856113ee565b8181036040830152611440818461121e565b9050949350505050565b600060208201905061145f600083018461120f565b92915050565b6000602082019050818103600083015261147f8184611257565b905092915050565b600060208201905081810360008301526114a081611290565b9050919050565b600060208201905081810360008301526114c0816112b3565b9050919050565b600060208201905081810360008301526114e0816112d6565b9050919050565b60006020820190508181036000830152611500816112f9565b9050919050565b600060208201905081810360008301526115208161131c565b9050919050565b600060208201905081810360008301526115408161133f565b9050919050565b6000602082019050818103600083015261156081611362565b9050919050565b6000602082019050818103600083015261158081611385565b9050919050565b600060208201905081810360008301526115a0816113a8565b9050919050565b600060208201905081810360008301526115c0816113cb565b9050919050565b60006020820190506115dc60008301846113ee565b92915050565b60006040820190506115f760008301856113ee565b8181036020830152611609818461121e565b90509392505050565b600060208201905061162760008301846113fd565b92915050565b6000611637611648565b9050611643828261180e565b919050565b6000604051905090565b600067ffffffffffffffff82111561166d5761166c61189d565b5b611676826118e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006116c682611783565b91506116d183611783565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117065761170561183f565b5b828201905092915050565b600061171c82611783565b915061172783611783565b92508282101561173a5761173961183f565b5b828203905092915050565b600061175082611763565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156117c75780820151818401526020810190506117ac565b838111156117d6576000848401525b50505050565b600060028204905060018216806117f457607f821691505b602082108114156118085761180761186e565b5b50919050565b611817826118e0565b810181811067ffffffffffffffff821117156118365761183561189d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c1081611745565b8114611c1b57600080fd5b50565b611c2781611783565b8114611c3257600080fd5b5056fea2646970667358221220352d81ae97eceff3d8b1f40f93c739a3509ce2a5f4be02d1370dc0ba9b06c8a664736f6c63430008070033
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.