ERC-20
Overview
Max Total Supply
250,000,000 CEP
Holders
98 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000002 ETH (-3.55%)
Onchain Market Cap
$1,045,580.77
Circulating Supply Market Cap
$784,185.58
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:
CeRealToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-03 */ /** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.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 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } 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; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract CeRealToken is ERC20, Ownable { // set upper limit as constant to prevent arbitrary minting uint256 public constant UPPER_LIMIT = 250000000000000000000000000; // Hippocrat minted at creation constructor(uint256 initialSupply) ERC20("CEREAL", "CEP") { _mint(msg.sender, initialSupply); } // ERC20 is mintable function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } // ERC20 is burnable function burn(uint256 amount) public { _burn(msg.sender, amount); } function burnFrom(address account, uint256 amount) public { _spendAllowance(account, msg.sender, amount); _burn(account, amount); } // ERC20 is capped function _mint(address account, uint256 amount) internal override { require(ERC20.totalSupply() + amount <= UPPER_LIMIT, "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"UPPER_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200262238038062002622833981810160405281019062000037919062000429565b6040518060400160405280600681526020017f43455245414c00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43455000000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620006cb565b508060049081620000c69190620006cb565b505050620000e9620000dd6200010260201b60201c565b6200010a60201b60201c565b620000fb3382620001d060201b60201c565b506200093f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6acecb8f27f4200f3a00000081620001f26200025d60201b6200044e1760201c565b620001fe9190620007e1565b111562000242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000239906200087d565b60405180910390fd5b6200025982826200026760201b620007ce1760201c565b5050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d090620008ef565b60405180910390fd5b620002ed60008383620003df60201b60201c565b8060026000828254620003019190620007e1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003589190620007e1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003bf919062000922565b60405180910390a3620003db60008383620003e460201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b6200040381620003ee565b81146200040f57600080fd5b50565b6000815190506200042381620003f8565b92915050565b600060208284031215620004425762000441620003e9565b5b6000620004528482850162000412565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004dd57607f821691505b602082108103620004f357620004f262000495565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200051e565b6200056986836200051e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620005ac620005a6620005a084620003ee565b62000581565b620003ee565b9050919050565b6000819050919050565b620005c8836200058b565b620005e0620005d782620005b3565b8484546200052b565b825550505050565b600090565b620005f7620005e8565b62000604818484620005bd565b505050565b5b818110156200062c5762000620600082620005ed565b6001810190506200060a565b5050565b601f8211156200067b576200064581620004f9565b62000650846200050e565b8101602085101562000660578190505b620006786200066f856200050e565b83018262000609565b50505b505050565b600082821c905092915050565b6000620006a06000198460080262000680565b1980831691505092915050565b6000620006bb83836200068d565b9150826002028217905092915050565b620006d6826200045b565b67ffffffffffffffff811115620006f257620006f162000466565b5b620006fe8254620004c4565b6200070b82828562000630565b600060209050601f8311600181146200074357600084156200072e578287015190505b6200073a8582620006ad565b865550620007aa565b601f1984166200075386620004f9565b60005b828110156200077d5784890151825560018201915060208501945060208101905062000756565b868310156200079d578489015162000799601f8916826200068d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007ee82620003ee565b9150620007fb83620003ee565b9250828201905080821115620008165762000815620007b2565b5b92915050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000620008656019836200081c565b915062000872826200082d565b602082019050919050565b60006020820190508181036000830152620008988162000856565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008d7601f836200081c565b9150620008e4826200089f565b602082019050919050565b600060208201905081810360008301526200090a81620008c8565b9050919050565b6200091c81620003ee565b82525050565b600060208201905062000939600083018462000911565b92915050565b611cd3806200094f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d57610116565b806370a082311461025b578063715018a61461028b57806379cc6790146102955780638da5cb5b146102b157610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806342966c68146102215780636c8ef9eb1461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610399565b604051610130919061122b565b60405180910390f35b610153600480360381019061014e91906112e6565b61042b565b6040516101609190611341565b60405180910390f35b61017161044e565b60405161017e919061136b565b60405180910390f35b6101a1600480360381019061019c9190611386565b610458565b6040516101ae9190611341565b60405180910390f35b6101bf610487565b6040516101cc91906113f5565b60405180910390f35b6101ef60048036038101906101ea91906112e6565b610490565b6040516101fc9190611341565b60405180910390f35b61021f600480360381019061021a91906112e6565b6104c7565b005b61023b60048036038101906102369190611410565b6104dd565b005b6102456104ea565b604051610252919061136b565b60405180910390f35b6102756004803603810190610270919061143d565b6104f9565b604051610282919061136b565b60405180910390f35b610293610541565b005b6102af60048036038101906102aa91906112e6565b610555565b005b6102b961056e565b6040516102c69190611479565b60405180910390f35b6102d7610598565b6040516102e4919061122b565b60405180910390f35b610307600480360381019061030291906112e6565b61062a565b6040516103149190611341565b60405180910390f35b610337600480360381019061033291906112e6565b6106a1565b6040516103449190611341565b60405180910390f35b61036760048036038101906103629190611494565b6106c4565b604051610374919061136b565b60405180910390f35b6103976004803603810190610392919061143d565b61074b565b005b6060600380546103a890611503565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611503565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b60008061043661092d565b9050610443818585610935565b600191505092915050565b6000600254905090565b60008061046361092d565b9050610470858285610afe565b61047b858585610b8a565b60019150509392505050565b60006012905090565b60008061049b61092d565b90506104bc8185856104ad85896106c4565b6104b79190611563565b610935565b600191505092915050565b6104cf610e09565b6104d98282610e87565b5050565b6104e73382610ef5565b50565b6acecb8f27f4200f3a00000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610549610e09565b61055360006110cb565b565b610560823383610afe565b61056a8282610ef5565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a790611503565b80601f01602080910402602001604051908101604052809291908181526020018280546105d390611503565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b60008061063561092d565b9050600061064382866106c4565b905083811015610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611609565b60405180910390fd5b6106958286868403610935565b60019250505092915050565b6000806106ac61092d565b90506106b9818585610b8a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610753610e09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b99061169b565b60405180910390fd5b6107cb816110cb565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611707565b60405180910390fd5b61084960008383611191565b806002600082825461085b9190611563565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108b09190611563565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610915919061136b565b60405180910390a361092960008383611196565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b90611799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a9061182b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610af1919061136b565b60405180910390a3505050565b6000610b0a84846106c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b845781811015610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90611897565b60405180910390fd5b610b838484848403610935565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090611929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906119bb565b60405180910390fd5b610c73838383611191565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090611a4d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d8c9190611563565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df0919061136b565b60405180910390a3610e03848484611196565b50505050565b610e1161092d565b73ffffffffffffffffffffffffffffffffffffffff16610e2f61056e565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611ab9565b60405180910390fd5b565b6acecb8f27f4200f3a00000081610e9c61044e565b610ea69190611563565b1115610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90611b25565b60405180910390fd5b610ef182826107ce565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90611bb7565b60405180910390fd5b610f7082600083611191565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611c49565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461104d9190611c69565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b2919061136b565b60405180910390a36110c683600084611196565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d55780820151818401526020810190506111ba565b60008484015250505050565b6000601f19601f8301169050919050565b60006111fd8261119b565b61120781856111a6565b93506112178185602086016111b7565b611220816111e1565b840191505092915050565b6000602082019050818103600083015261124581846111f2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127d82611252565b9050919050565b61128d81611272565b811461129857600080fd5b50565b6000813590506112aa81611284565b92915050565b6000819050919050565b6112c3816112b0565b81146112ce57600080fd5b50565b6000813590506112e0816112ba565b92915050565b600080604083850312156112fd576112fc61124d565b5b600061130b8582860161129b565b925050602061131c858286016112d1565b9150509250929050565b60008115159050919050565b61133b81611326565b82525050565b60006020820190506113566000830184611332565b92915050565b611365816112b0565b82525050565b6000602082019050611380600083018461135c565b92915050565b60008060006060848603121561139f5761139e61124d565b5b60006113ad8682870161129b565b93505060206113be8682870161129b565b92505060406113cf868287016112d1565b9150509250925092565b600060ff82169050919050565b6113ef816113d9565b82525050565b600060208201905061140a60008301846113e6565b92915050565b6000602082840312156114265761142561124d565b5b6000611434848285016112d1565b91505092915050565b6000602082840312156114535761145261124d565b5b60006114618482850161129b565b91505092915050565b61147381611272565b82525050565b600060208201905061148e600083018461146a565b92915050565b600080604083850312156114ab576114aa61124d565b5b60006114b98582860161129b565b92505060206114ca8582860161129b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061151b57607f821691505b60208210810361152e5761152d6114d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156e826112b0565b9150611579836112b0565b925082820190508082111561159157611590611534565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f36025836111a6565b91506115fe82611597565b604082019050919050565b60006020820190508181036000830152611622816115e6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116856026836111a6565b915061169082611629565b604082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006116f1601f836111a6565b91506116fc826116bb565b602082019050919050565b60006020820190508181036000830152611720816116e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117836024836111a6565b915061178e82611727565b604082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118156022836111a6565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611881601d836111a6565b915061188c8261184b565b602082019050919050565b600060208201905081810360008301526118b081611874565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119136025836111a6565b915061191e826118b7565b604082019050919050565b6000602082019050818103600083015261194281611906565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119a56023836111a6565b91506119b082611949565b604082019050919050565b600060208201905081810360008301526119d481611998565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a376026836111a6565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611aa36020836111a6565b9150611aae82611a6d565b602082019050919050565b60006020820190508181036000830152611ad281611a96565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611b0f6019836111a6565b9150611b1a82611ad9565b602082019050919050565b60006020820190508181036000830152611b3e81611b02565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba16021836111a6565b9150611bac82611b45565b604082019050919050565b60006020820190508181036000830152611bd081611b94565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c336022836111a6565b9150611c3e82611bd7565b604082019050919050565b60006020820190508181036000830152611c6281611c26565b9050919050565b6000611c74826112b0565b9150611c7f836112b0565b9250828203905081811115611c9757611c96611534565b5b9291505056fea264697066735822122072be5a43a88383908a4d5a5e5e3b0aee2febe302440b13a2a34d1f368e3bdb8064736f6c63430008120033000000000000000000000000000000000000000000cecb8f27f4200f3a000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d57610116565b806370a082311461025b578063715018a61461028b57806379cc6790146102955780638da5cb5b146102b157610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806342966c68146102215780636c8ef9eb1461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610399565b604051610130919061122b565b60405180910390f35b610153600480360381019061014e91906112e6565b61042b565b6040516101609190611341565b60405180910390f35b61017161044e565b60405161017e919061136b565b60405180910390f35b6101a1600480360381019061019c9190611386565b610458565b6040516101ae9190611341565b60405180910390f35b6101bf610487565b6040516101cc91906113f5565b60405180910390f35b6101ef60048036038101906101ea91906112e6565b610490565b6040516101fc9190611341565b60405180910390f35b61021f600480360381019061021a91906112e6565b6104c7565b005b61023b60048036038101906102369190611410565b6104dd565b005b6102456104ea565b604051610252919061136b565b60405180910390f35b6102756004803603810190610270919061143d565b6104f9565b604051610282919061136b565b60405180910390f35b610293610541565b005b6102af60048036038101906102aa91906112e6565b610555565b005b6102b961056e565b6040516102c69190611479565b60405180910390f35b6102d7610598565b6040516102e4919061122b565b60405180910390f35b610307600480360381019061030291906112e6565b61062a565b6040516103149190611341565b60405180910390f35b610337600480360381019061033291906112e6565b6106a1565b6040516103449190611341565b60405180910390f35b61036760048036038101906103629190611494565b6106c4565b604051610374919061136b565b60405180910390f35b6103976004803603810190610392919061143d565b61074b565b005b6060600380546103a890611503565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611503565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b60008061043661092d565b9050610443818585610935565b600191505092915050565b6000600254905090565b60008061046361092d565b9050610470858285610afe565b61047b858585610b8a565b60019150509392505050565b60006012905090565b60008061049b61092d565b90506104bc8185856104ad85896106c4565b6104b79190611563565b610935565b600191505092915050565b6104cf610e09565b6104d98282610e87565b5050565b6104e73382610ef5565b50565b6acecb8f27f4200f3a00000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610549610e09565b61055360006110cb565b565b610560823383610afe565b61056a8282610ef5565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a790611503565b80601f01602080910402602001604051908101604052809291908181526020018280546105d390611503565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b60008061063561092d565b9050600061064382866106c4565b905083811015610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611609565b60405180910390fd5b6106958286868403610935565b60019250505092915050565b6000806106ac61092d565b90506106b9818585610b8a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610753610e09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b99061169b565b60405180910390fd5b6107cb816110cb565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611707565b60405180910390fd5b61084960008383611191565b806002600082825461085b9190611563565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108b09190611563565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610915919061136b565b60405180910390a361092960008383611196565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b90611799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a9061182b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610af1919061136b565b60405180910390a3505050565b6000610b0a84846106c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b845781811015610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90611897565b60405180910390fd5b610b838484848403610935565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090611929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906119bb565b60405180910390fd5b610c73838383611191565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090611a4d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d8c9190611563565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df0919061136b565b60405180910390a3610e03848484611196565b50505050565b610e1161092d565b73ffffffffffffffffffffffffffffffffffffffff16610e2f61056e565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611ab9565b60405180910390fd5b565b6acecb8f27f4200f3a00000081610e9c61044e565b610ea69190611563565b1115610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90611b25565b60405180910390fd5b610ef182826107ce565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90611bb7565b60405180910390fd5b610f7082600083611191565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611c49565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461104d9190611c69565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b2919061136b565b60405180910390a36110c683600084611196565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d55780820151818401526020810190506111ba565b60008484015250505050565b6000601f19601f8301169050919050565b60006111fd8261119b565b61120781856111a6565b93506112178185602086016111b7565b611220816111e1565b840191505092915050565b6000602082019050818103600083015261124581846111f2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127d82611252565b9050919050565b61128d81611272565b811461129857600080fd5b50565b6000813590506112aa81611284565b92915050565b6000819050919050565b6112c3816112b0565b81146112ce57600080fd5b50565b6000813590506112e0816112ba565b92915050565b600080604083850312156112fd576112fc61124d565b5b600061130b8582860161129b565b925050602061131c858286016112d1565b9150509250929050565b60008115159050919050565b61133b81611326565b82525050565b60006020820190506113566000830184611332565b92915050565b611365816112b0565b82525050565b6000602082019050611380600083018461135c565b92915050565b60008060006060848603121561139f5761139e61124d565b5b60006113ad8682870161129b565b93505060206113be8682870161129b565b92505060406113cf868287016112d1565b9150509250925092565b600060ff82169050919050565b6113ef816113d9565b82525050565b600060208201905061140a60008301846113e6565b92915050565b6000602082840312156114265761142561124d565b5b6000611434848285016112d1565b91505092915050565b6000602082840312156114535761145261124d565b5b60006114618482850161129b565b91505092915050565b61147381611272565b82525050565b600060208201905061148e600083018461146a565b92915050565b600080604083850312156114ab576114aa61124d565b5b60006114b98582860161129b565b92505060206114ca8582860161129b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061151b57607f821691505b60208210810361152e5761152d6114d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156e826112b0565b9150611579836112b0565b925082820190508082111561159157611590611534565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f36025836111a6565b91506115fe82611597565b604082019050919050565b60006020820190508181036000830152611622816115e6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116856026836111a6565b915061169082611629565b604082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006116f1601f836111a6565b91506116fc826116bb565b602082019050919050565b60006020820190508181036000830152611720816116e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117836024836111a6565b915061178e82611727565b604082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118156022836111a6565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611881601d836111a6565b915061188c8261184b565b602082019050919050565b600060208201905081810360008301526118b081611874565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119136025836111a6565b915061191e826118b7565b604082019050919050565b6000602082019050818103600083015261194281611906565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119a56023836111a6565b91506119b082611949565b604082019050919050565b600060208201905081810360008301526119d481611998565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a376026836111a6565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611aa36020836111a6565b9150611aae82611a6d565b602082019050919050565b60006020820190508181036000830152611ad281611a96565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611b0f6019836111a6565b9150611b1a82611ad9565b602082019050919050565b60006020820190508181036000830152611b3e81611b02565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba16021836111a6565b9150611bac82611b45565b604082019050919050565b60006020820190508181036000830152611bd081611b94565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c336022836111a6565b9150611c3e82611bd7565b604082019050919050565b60006020820190508181036000830152611c6281611c26565b9050919050565b6000611c74826112b0565b9150611c7f836112b0565b9250828203905081811115611c9757611c96611534565b5b9291505056fea264697066735822122072be5a43a88383908a4d5a5e5e3b0aee2febe302440b13a2a34d1f368e3bdb8064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000cecb8f27f4200f3a000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 250000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000cecb8f27f4200f3a000000
Deployed Bytecode Sourcemap
19554:967:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6154:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8505:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7274:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9286:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7116:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9990:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19915:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20042:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19665:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7445:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18737:103;;;:::i;:::-;;20129:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18089:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6373:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10731:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7778:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8034:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18995:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6154:100;6208:13;6241:5;6234:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6154:100;:::o;8505:201::-;8588:4;8605:13;8621:12;:10;:12::i;:::-;8605:28;;8644:32;8653:5;8660:7;8669:6;8644:8;:32::i;:::-;8694:4;8687:11;;;8505:201;;;;:::o;7274:108::-;7335:7;7362:12;;7355:19;;7274:108;:::o;9286:295::-;9417:4;9434:15;9452:12;:10;:12::i;:::-;9434:30;;9475:38;9491:4;9497:7;9506:6;9475:15;:38::i;:::-;9524:27;9534:4;9540:2;9544:6;9524:9;:27::i;:::-;9569:4;9562:11;;;9286:295;;;;;:::o;7116:93::-;7174:5;7199:2;7192:9;;7116:93;:::o;9990:238::-;10078:4;10095:13;10111:12;:10;:12::i;:::-;10095:28;;10134:64;10143:5;10150:7;10187:10;10159:25;10169:5;10176:7;10159:9;:25::i;:::-;:38;;;;:::i;:::-;10134:8;:64::i;:::-;10216:4;10209:11;;;9990:238;;;;:::o;19915:95::-;17975:13;:11;:13::i;:::-;19985:17:::1;19991:2;19995:6;19985:5;:17::i;:::-;19915:95:::0;;:::o;20042:81::-;20090:25;20096:10;20108:6;20090:5;:25::i;:::-;20042:81;:::o;19665:65::-;19703:27;19665:65;:::o;7445:127::-;7519:7;7546:9;:18;7556:7;7546:18;;;;;;;;;;;;;;;;7539:25;;7445:127;;;:::o;18737:103::-;17975:13;:11;:13::i;:::-;18802:30:::1;18829:1;18802:18;:30::i;:::-;18737:103::o:0;20129:154::-;20198:44;20214:7;20223:10;20235:6;20198:15;:44::i;:::-;20253:22;20259:7;20268:6;20253:5;:22::i;:::-;20129:154;;:::o;18089:87::-;18135:7;18162:6;;;;;;;;;;;18155:13;;18089:87;:::o;6373:104::-;6429:13;6462:7;6455:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6373:104;:::o;10731:436::-;10824:4;10841:13;10857:12;:10;:12::i;:::-;10841:28;;10880:24;10907:25;10917:5;10924:7;10907:9;:25::i;:::-;10880:52;;10971:15;10951:16;:35;;10943:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11064:60;11073:5;11080:7;11108:15;11089:16;:34;11064:8;:60::i;:::-;11155:4;11148:11;;;;10731:436;;;;:::o;7778:193::-;7857:4;7874:13;7890:12;:10;:12::i;:::-;7874:28;;7913;7923:5;7930:2;7934:6;7913:9;:28::i;:::-;7959:4;7952:11;;;7778:193;;;;:::o;8034:151::-;8123:7;8150:11;:18;8162:5;8150:18;;;;;;;;;;;;;;;:27;8169:7;8150:27;;;;;;;;;;;;;;;;8143:34;;8034:151;;;;:::o;18995:201::-;17975:13;:11;:13::i;:::-;19104:1:::1;19084:22;;:8;:22;;::::0;19076:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19160:28;19179:8;19160:18;:28::i;:::-;18995:201:::0;:::o;12595:399::-;12698:1;12679:21;;:7;:21;;;12671:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12749:49;12778:1;12782:7;12791:6;12749:20;:49::i;:::-;12827:6;12811:12;;:22;;;;;;;:::i;:::-;;;;;;;;12866:6;12844:9;:18;12854:7;12844:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12909:7;12888:37;;12905:1;12888:37;;;12918:6;12888:37;;;;;;:::i;:::-;;;;;;;;12938:48;12966:1;12970:7;12979:6;12938:19;:48::i;:::-;12595:399;;:::o;727:98::-;780:7;807:10;800:17;;727:98;:::o;14356:380::-;14509:1;14492:19;;:5;:19;;;14484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14590:1;14571:21;;:7;:21;;;14563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14674:6;14644:11;:18;14656:5;14644:18;;;;;;;;;;;;;;;:27;14663:7;14644:27;;;;;;;;;;;;;;;:36;;;;14712:7;14696:32;;14705:5;14696:32;;;14721:6;14696:32;;;;;;:::i;:::-;;;;;;;;14356:380;;;:::o;15027:453::-;15162:24;15189:25;15199:5;15206:7;15189:9;:25::i;:::-;15162:52;;15249:17;15229:16;:37;15225:248;;15311:6;15291:16;:26;;15283:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15395:51;15404:5;15411:7;15439:6;15420:16;:25;15395:8;:51::i;:::-;15225:248;15151:329;15027:453;;;:::o;11637:671::-;11784:1;11768:18;;:4;:18;;;11760:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11861:1;11847:16;;:2;:16;;;11839:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11916:38;11937:4;11943:2;11947:6;11916:20;:38::i;:::-;11967:19;11989:9;:15;11999:4;11989:15;;;;;;;;;;;;;;;;11967:37;;12038:6;12023:11;:21;;12015:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12155:6;12141:11;:20;12123:9;:15;12133:4;12123:15;;;;;;;;;;;;;;;:38;;;;12200:6;12183:9;:13;12193:2;12183:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12239:2;12224:26;;12233:4;12224:26;;;12243:6;12224:26;;;;;;:::i;:::-;;;;;;;;12263:37;12283:4;12289:2;12293:6;12263:19;:37::i;:::-;11749:559;11637:671;;;:::o;18254:132::-;18329:12;:10;:12::i;:::-;18318:23;;:7;:5;:7::i;:::-;:23;;;18310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18254:132::o;20313:205::-;19703:27;20420:6;20398:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:43;;20390:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;20482:28;20494:7;20503:6;20482:11;:28::i;:::-;20313:205;;:::o;13327:591::-;13430:1;13411:21;;:7;:21;;;13403:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13483:49;13504:7;13521:1;13525:6;13483:20;:49::i;:::-;13545:22;13570:9;:18;13580:7;13570:18;;;;;;;;;;;;;;;;13545:43;;13625:6;13607:14;:24;;13599:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13744:6;13727:14;:23;13706:9;:18;13716:7;13706:18;;;;;;;;;;;;;;;:44;;;;13788:6;13772:12;;:22;;;;;;;:::i;:::-;;;;;;;;13838:1;13812:37;;13821:7;13812:37;;;13842:6;13812:37;;;;;;:::i;:::-;;;;;;;;13862:48;13882:7;13899:1;13903:6;13862:19;:48::i;:::-;13392:526;13327:591;;:::o;19356:191::-;19430:16;19449:6;;;;;;;;;;;19430:25;;19475:8;19466:6;;:17;;;;;;;;;;;;;;;;;;19530:8;19499:40;;19520:8;19499:40;;;;;;;;;;;;19419:128;19356:191;:::o;16080:125::-;;;;:::o;16809:124::-;;;;:::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:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:225::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:8;8481:2;8473:6;8469:15;8462:33;8277:225;:::o;8508:366::-;8650:3;8671:67;8735:2;8730:3;8671:67;:::i;:::-;8664:74;;8747:93;8836:3;8747:93;:::i;:::-;8865:2;8860:3;8856:12;8849:19;;8508:366;;;:::o;8880:419::-;9046:4;9084:2;9073:9;9069:18;9061:26;;9133:9;9127:4;9123:20;9119:1;9108:9;9104:17;9097:47;9161:131;9287:4;9161:131;:::i;:::-;9153:139;;8880:419;;;:::o;9305:181::-;9445:33;9441:1;9433:6;9429:14;9422:57;9305:181;:::o;9492:366::-;9634:3;9655:67;9719:2;9714:3;9655:67;:::i;:::-;9648:74;;9731:93;9820:3;9731:93;:::i;:::-;9849:2;9844:3;9840:12;9833:19;;9492:366;;;:::o;9864:419::-;10030:4;10068:2;10057:9;10053:18;10045:26;;10117:9;10111:4;10107:20;10103:1;10092:9;10088:17;10081:47;10145:131;10271:4;10145:131;:::i;:::-;10137:139;;9864:419;;;:::o;10289:223::-;10429:34;10425:1;10417:6;10413:14;10406:58;10498:6;10493:2;10485:6;10481:15;10474:31;10289:223;:::o;10518:366::-;10660:3;10681:67;10745:2;10740:3;10681:67;:::i;:::-;10674:74;;10757:93;10846:3;10757:93;:::i;:::-;10875:2;10870:3;10866:12;10859:19;;10518:366;;;:::o;10890:419::-;11056:4;11094:2;11083:9;11079:18;11071:26;;11143:9;11137:4;11133:20;11129:1;11118:9;11114:17;11107:47;11171:131;11297:4;11171:131;:::i;:::-;11163:139;;10890:419;;;:::o;11315:221::-;11455:34;11451:1;11443:6;11439:14;11432:58;11524:4;11519:2;11511:6;11507:15;11500:29;11315:221;:::o;11542:366::-;11684:3;11705:67;11769:2;11764:3;11705:67;:::i;:::-;11698:74;;11781:93;11870:3;11781:93;:::i;:::-;11899:2;11894:3;11890:12;11883:19;;11542:366;;;:::o;11914:419::-;12080:4;12118:2;12107:9;12103:18;12095:26;;12167:9;12161:4;12157:20;12153:1;12142:9;12138:17;12131:47;12195:131;12321:4;12195:131;:::i;:::-;12187:139;;11914:419;;;:::o;12339:179::-;12479:31;12475:1;12467:6;12463:14;12456:55;12339:179;:::o;12524:366::-;12666:3;12687:67;12751:2;12746:3;12687:67;:::i;:::-;12680:74;;12763:93;12852:3;12763:93;:::i;:::-;12881:2;12876:3;12872:12;12865:19;;12524:366;;;:::o;12896:419::-;13062:4;13100:2;13089:9;13085:18;13077:26;;13149:9;13143:4;13139:20;13135:1;13124:9;13120:17;13113:47;13177:131;13303:4;13177:131;:::i;:::-;13169:139;;12896:419;;;:::o;13321:224::-;13461:34;13457:1;13449:6;13445:14;13438:58;13530:7;13525:2;13517:6;13513:15;13506:32;13321:224;:::o;13551:366::-;13693:3;13714:67;13778:2;13773:3;13714:67;:::i;:::-;13707:74;;13790:93;13879:3;13790:93;:::i;:::-;13908:2;13903:3;13899:12;13892:19;;13551:366;;;:::o;13923:419::-;14089:4;14127:2;14116:9;14112:18;14104:26;;14176:9;14170:4;14166:20;14162:1;14151:9;14147:17;14140:47;14204:131;14330:4;14204:131;:::i;:::-;14196:139;;13923:419;;;:::o;14348:222::-;14488:34;14484:1;14476:6;14472:14;14465:58;14557:5;14552:2;14544:6;14540:15;14533:30;14348:222;:::o;14576:366::-;14718:3;14739:67;14803:2;14798:3;14739:67;:::i;:::-;14732:74;;14815:93;14904:3;14815:93;:::i;:::-;14933:2;14928:3;14924:12;14917:19;;14576:366;;;:::o;14948:419::-;15114:4;15152:2;15141:9;15137:18;15129:26;;15201:9;15195:4;15191:20;15187:1;15176:9;15172:17;15165:47;15229:131;15355:4;15229:131;:::i;:::-;15221:139;;14948:419;;;:::o;15373:225::-;15513:34;15509:1;15501:6;15497:14;15490:58;15582:8;15577:2;15569:6;15565:15;15558:33;15373:225;:::o;15604:366::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:419::-;16142:4;16180:2;16169:9;16165:18;16157:26;;16229:9;16223:4;16219:20;16215:1;16204:9;16200:17;16193:47;16257:131;16383:4;16257:131;:::i;:::-;16249:139;;15976:419;;;:::o;16401:182::-;16541:34;16537:1;16529:6;16525:14;16518:58;16401:182;:::o;16589:366::-;16731:3;16752:67;16816:2;16811:3;16752:67;:::i;:::-;16745:74;;16828:93;16917:3;16828:93;:::i;:::-;16946:2;16941:3;16937:12;16930:19;;16589:366;;;:::o;16961:419::-;17127:4;17165:2;17154:9;17150:18;17142:26;;17214:9;17208:4;17204:20;17200:1;17189:9;17185:17;17178:47;17242:131;17368:4;17242:131;:::i;:::-;17234:139;;16961:419;;;:::o;17386:175::-;17526:27;17522:1;17514:6;17510:14;17503:51;17386:175;:::o;17567:366::-;17709:3;17730:67;17794:2;17789:3;17730:67;:::i;:::-;17723:74;;17806:93;17895:3;17806:93;:::i;:::-;17924:2;17919:3;17915:12;17908:19;;17567:366;;;:::o;17939:419::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:131;18346:4;18220:131;:::i;:::-;18212:139;;17939:419;;;:::o;18364:220::-;18504:34;18500:1;18492:6;18488:14;18481:58;18573:3;18568:2;18560:6;18556:15;18549:28;18364:220;:::o;18590:366::-;18732:3;18753:67;18817:2;18812:3;18753:67;:::i;:::-;18746:74;;18829:93;18918:3;18829:93;:::i;:::-;18947:2;18942:3;18938:12;18931:19;;18590:366;;;:::o;18962:419::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;18962:419;;;:::o;19387:221::-;19527:34;19523:1;19515:6;19511:14;19504:58;19596:4;19591:2;19583:6;19579:15;19572:29;19387:221;:::o;19614:366::-;19756:3;19777:67;19841:2;19836:3;19777:67;:::i;:::-;19770:74;;19853:93;19942:3;19853:93;:::i;:::-;19971:2;19966:3;19962:12;19955:19;;19614:366;;;:::o;19986:419::-;20152:4;20190:2;20179:9;20175:18;20167:26;;20239:9;20233:4;20229:20;20225:1;20214:9;20210:17;20203:47;20267:131;20393:4;20267:131;:::i;:::-;20259:139;;19986:419;;;:::o;20411:194::-;20451:4;20471:20;20489:1;20471:20;:::i;:::-;20466:25;;20505:20;20523:1;20505:20;:::i;:::-;20500:25;;20549:1;20546;20542:9;20534:17;;20573:1;20567:4;20564:11;20561:37;;;20578:18;;:::i;:::-;20561:37;20411:194;;;;:::o
Swarm Source
ipfs://72be5a43a88383908a4d5a5e5e3b0aee2febe302440b13a2a34d1f368e3bdb80
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.