ERC-20
Overview
Max Total Supply
108,624,000 VMPX
Holders
9
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
102,348.878234936670310097 VMPXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VMPX
Compiler Version
v0.8.18+commit.87f61d96
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.10; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; contract VMPX is ERC20("VMPX", "VMPX"), ERC20Capped(108_624_000 ether) { string public constant AUTHORS = "@MrJackLevin @ackebom @lbelyaev @JammaBeans faircrypto.org"; uint256 public constant BATCH = 200 ether; uint256 public immutable cycles; // depends on a network block side, set in constructor uint256 public immutable startBlockNumber; uint256 public counter; mapping(uint256 => bool) private _work; /** @dev Start of Operations Guard */ modifier notBeforeStart() { require(block.number > startBlockNumber, "mint not active yet"); _; } constructor(uint256 cycles_, uint256 startBlockNumber_) { require(cycles_ > 0, "bad limit"); _mint(msg.sender, 108_624_000 ether); startBlockNumber = startBlockNumber_; cycles = cycles_; } function _doWork(uint256 power) internal { for (uint i = 0; i < cycles * power; i++) { _work[++counter] = true; } } function _mint( address account, uint256 amount ) internal override(ERC20, ERC20Capped) { super._mint(account, amount); } function mint(uint256 power) external notBeforeStart { require(power > 0 && power < 196, "power out of bounds"); require(tx.origin == msg.sender, "only EOAs allowed"); require( totalSupply() + (BATCH * power) <= cap(), "minting would exceed cap" ); _doWork(power); _mint(msg.sender, BATCH * power); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev 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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"cycles_","type":"uint256"},{"internalType":"uint256","name":"startBlockNumber_","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":"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":"AUTHORS","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BATCH","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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cycles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"power","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b50604051620025fb380380620025fb833981810160405281019062000037919062000416565b6a59da06d6d6068e920000006040518060400160405280600481526020017f564d5058000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f564d5058000000000000000000000000000000000000000000000000000000008152508160039081620000c09190620006cd565b508060049081620000d29190620006cd565b505050600081116200011b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001129062000815565b60405180910390fd5b806080818152505050600082116200016a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001619062000887565b60405180910390fd5b62000187336a59da06d6d6068e920000006200019f60201b60201c565b8060c081815250508160a08181525050505062000a25565b620001b68282620001ba60201b620009341760201c565b5050565b620001ca6200024b60201b60201c565b81620001e06200025560201b620004681760201c565b620001ec9190620008d8565b111562000230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002279062000963565b60405180910390fd5b6200024782826200025f60201b6200099e1760201c565b5050565b6000608051905090565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c890620009d5565b60405180910390fd5b620002e560008383620003cc60201b60201c565b8060026000828254620002f99190620008d8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ac919062000a08565b60405180910390a3620003c860008383620003d160201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620003f081620003db565b8114620003fc57600080fd5b50565b6000815190506200041081620003e5565b92915050565b6000806040838503121562000430576200042f620003d6565b5b60006200044085828601620003ff565b92505060206200045385828601620003ff565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004df57607f821691505b602082108103620004f557620004f462000497565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000520565b6200056b868362000520565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620005ae620005a8620005a284620003db565b62000583565b620003db565b9050919050565b6000819050919050565b620005ca836200058d565b620005e2620005d982620005b5565b8484546200052d565b825550505050565b600090565b620005f9620005ea565b62000606818484620005bf565b505050565b5b818110156200062e5762000622600082620005ef565b6001810190506200060c565b5050565b601f8211156200067d576200064781620004fb565b620006528462000510565b8101602085101562000662578190505b6200067a620006718562000510565b8301826200060b565b50505b505050565b600082821c905092915050565b6000620006a26000198460080262000682565b1980831691505092915050565b6000620006bd83836200068f565b9150826002028217905092915050565b620006d8826200045d565b67ffffffffffffffff811115620006f457620006f362000468565b5b620007008254620004c6565b6200070d82828562000632565b600060209050601f83116001811462000745576000841562000730578287015190505b6200073c8582620006af565b865550620007ac565b601f1984166200075586620004fb565b60005b828110156200077f5784890151825560018201915060208501945060208101905062000758565b868310156200079f57848901516200079b601f8916826200068f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b6000620007fd601583620007b4565b91506200080a82620007c5565b602082019050919050565b600060208201905081810360008301526200083081620007ee565b9050919050565b7f626164206c696d69740000000000000000000000000000000000000000000000600082015250565b60006200086f600983620007b4565b91506200087c8262000837565b602082019050919050565b60006020820190508181036000830152620008a28162000860565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008e582620003db565b9150620008f283620003db565b92508282019050808211156200090d576200090c620008a9565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006200094b601983620007b4565b9150620009588262000913565b602082019050919050565b600060208201905081810360008301526200097e816200093c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009bd601f83620007b4565b9150620009ca8262000985565b602082019050919050565b60006020820190508181036000830152620009f081620009ae565b9050919050565b62000a0281620003db565b82525050565b600060208201905062000a1f6000830184620009f7565b92915050565b60805160a05160c051611b9862000a636000396000818161050b01526106400152600081816105420152610fcd015260006104ae0152611b986000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806361bc221a116100a2578063a0712d6811610071578063a0712d68146102e9578063a457c2d714610305578063a9059cbb14610335578063ba3ec74114610365578063dd62ed3e1461038357610116565b806361bc221a1461025f5780636dbe55541461027d57806370a082311461029b57806395d89b41146102cb57610116565b8063313ce567116100e9578063313ce567146101b7578063355274ea146101d557806339509351146101f3578063498a4c2d146102235780635207d3211461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b3565b60405161013091906110fc565b60405180910390f35b610153600480360381019061014e91906111b7565b610445565b6040516101609190611212565b60405180910390f35b610171610468565b60405161017e919061123c565b60405180910390f35b6101a1600480360381019061019c9190611257565b610472565b6040516101ae9190611212565b60405180910390f35b6101bf6104a1565b6040516101cc91906112c6565b60405180910390f35b6101dd6104aa565b6040516101ea919061123c565b60405180910390f35b61020d600480360381019061020891906111b7565b6104d2565b60405161021a9190611212565b60405180910390f35b61022b610509565b604051610238919061123c565b60405180910390f35b61024961052d565b604051610256919061123c565b60405180910390f35b61026761053a565b604051610274919061123c565b60405180910390f35b610285610540565b604051610292919061123c565b60405180910390f35b6102b560048036038101906102b091906112e1565b610564565b6040516102c2919061123c565b60405180910390f35b6102d36105ac565b6040516102e091906110fc565b60405180910390f35b61030360048036038101906102fe919061130e565b61063e565b005b61031f600480360381019061031a91906111b7565b6107f7565b60405161032c9190611212565b60405180910390f35b61034f600480360381019061034a91906111b7565b61086e565b60405161035c9190611212565b60405180910390f35b61036d610891565b60405161037a91906110fc565b60405180910390f35b61039d6004803603810190610398919061133b565b6108ad565b6040516103aa919061123c565b60405180910390f35b6060600380546103c2906113aa565b80601f01602080910402602001604051908101604052809291908181526020018280546103ee906113aa565b801561043b5780601f106104105761010080835404028352916020019161043b565b820191906000526020600020905b81548152906001019060200180831161041e57829003601f168201915b5050505050905090565b600080610450610af4565b905061045d818585610afc565b600191505092915050565b6000600254905090565b60008061047d610af4565b905061048a858285610cc5565b610495858585610d51565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000806104dd610af4565b90506104fe8185856104ef85896108ad565b6104f9919061140a565b610afc565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b680ad78ebc5ac620000081565b60055481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105bb906113aa565b80601f01602080910402602001604051908101604052809291908181526020018280546105e7906113aa565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000043116106a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106979061148a565b60405180910390fd5b6000811180156106b0575060c481105b6106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e6906114f6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075490611562565b60405180910390fd5b6107656104aa565b81680ad78ebc5ac620000061077a9190611582565b610782610468565b61078c919061140a565b11156107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490611610565b60405180910390fd5b6107d681610fc7565b6107f43382680ad78ebc5ac62000006107ef9190611582565b611054565b50565b600080610802610af4565b9050600061081082866108ad565b905083811015610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c906116a2565b60405180910390fd5b6108628286868403610afc565b60019250505092915050565b600080610879610af4565b9050610886818585610d51565b600191505092915050565b6040518060600160405280603a8152602001611b29603a913981565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61093c6104aa565b81610945610468565b61094f919061140a565b1115610990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109879061170e565b60405180910390fd5b61099a828261099e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a049061177a565b60405180910390fd5b610a1960008383611062565b8060026000828254610a2b919061140a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610adc919061123c565b60405180910390a3610af060008383611067565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061180c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd19061189e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb8919061123c565b60405180910390a3505050565b6000610cd184846108ad565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d4b5781811015610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d349061190a565b60405180910390fd5b610d4a8484848403610afc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061199c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611a2e565b60405180910390fd5b610e3a838383611062565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790611ac0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fae919061123c565b60405180910390a3610fc1848484611067565b50505050565b60005b817f0000000000000000000000000000000000000000000000000000000000000000610ff69190611582565b8110156110505760016006600060056000815461101290611ae0565b919050819055815260200190815260200160002060006101000a81548160ff021916908315150217905550808061104890611ae0565b915050610fca565b5050565b61105e8282610934565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110a657808201518184015260208101905061108b565b60008484015250505050565b6000601f19601f8301169050919050565b60006110ce8261106c565b6110d88185611077565b93506110e8818560208601611088565b6110f1816110b2565b840191505092915050565b6000602082019050818103600083015261111681846110c3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061114e82611123565b9050919050565b61115e81611143565b811461116957600080fd5b50565b60008135905061117b81611155565b92915050565b6000819050919050565b61119481611181565b811461119f57600080fd5b50565b6000813590506111b18161118b565b92915050565b600080604083850312156111ce576111cd61111e565b5b60006111dc8582860161116c565b92505060206111ed858286016111a2565b9150509250929050565b60008115159050919050565b61120c816111f7565b82525050565b60006020820190506112276000830184611203565b92915050565b61123681611181565b82525050565b6000602082019050611251600083018461122d565b92915050565b6000806000606084860312156112705761126f61111e565b5b600061127e8682870161116c565b935050602061128f8682870161116c565b92505060406112a0868287016111a2565b9150509250925092565b600060ff82169050919050565b6112c0816112aa565b82525050565b60006020820190506112db60008301846112b7565b92915050565b6000602082840312156112f7576112f661111e565b5b60006113058482850161116c565b91505092915050565b6000602082840312156113245761132361111e565b5b6000611332848285016111a2565b91505092915050565b600080604083850312156113525761135161111e565b5b60006113608582860161116c565b92505060206113718582860161116c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113c257607f821691505b6020821081036113d5576113d461137b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061141582611181565b915061142083611181565b9250828201905080821115611438576114376113db565b5b92915050565b7f6d696e74206e6f74206163746976652079657400000000000000000000000000600082015250565b6000611474601383611077565b915061147f8261143e565b602082019050919050565b600060208201905081810360008301526114a381611467565b9050919050565b7f706f776572206f7574206f6620626f756e647300000000000000000000000000600082015250565b60006114e0601383611077565b91506114eb826114aa565b602082019050919050565b6000602082019050818103600083015261150f816114d3565b9050919050565b7f6f6e6c7920454f417320616c6c6f776564000000000000000000000000000000600082015250565b600061154c601183611077565b915061155782611516565b602082019050919050565b6000602082019050818103600083015261157b8161153f565b9050919050565b600061158d82611181565b915061159883611181565b92508282026115a681611181565b915082820484148315176115bd576115bc6113db565b5b5092915050565b7f6d696e74696e6720776f756c6420657863656564206361700000000000000000600082015250565b60006115fa601883611077565b9150611605826115c4565b602082019050919050565b60006020820190508181036000830152611629816115ed565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061168c602583611077565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006116f8601983611077565b9150611703826116c2565b602082019050919050565b60006020820190508181036000830152611727816116eb565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611764601f83611077565b915061176f8261172e565b602082019050919050565b6000602082019050818103600083015261179381611757565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117f6602483611077565b91506118018261179a565b604082019050919050565b60006020820190508181036000830152611825816117e9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611888602283611077565b91506118938261182c565b604082019050919050565b600060208201905081810360008301526118b78161187b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118f4601d83611077565b91506118ff826118be565b602082019050919050565b60006020820190508181036000830152611923816118e7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611986602583611077565b91506119918261192a565b604082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a18602383611077565b9150611a23826119bc565b604082019050919050565b60006020820190508181036000830152611a4781611a0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aaa602683611077565b9150611ab582611a4e565b604082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b6000611aeb82611181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b1d57611b1c6113db565b5b60018201905091905056fe404d724a61636b4c6576696e204061636b65626f6d20406c62656c7961657620404a616d6d614265616e73206661697263727970746f2e6f7267a2646970667358221220555b3f789b8403bc34a2bb8552e114a5cb0f914e5e2e30880aeda70e0b645aba64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000010ce43f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806361bc221a116100a2578063a0712d6811610071578063a0712d68146102e9578063a457c2d714610305578063a9059cbb14610335578063ba3ec74114610365578063dd62ed3e1461038357610116565b806361bc221a1461025f5780636dbe55541461027d57806370a082311461029b57806395d89b41146102cb57610116565b8063313ce567116100e9578063313ce567146101b7578063355274ea146101d557806339509351146101f3578063498a4c2d146102235780635207d3211461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b3565b60405161013091906110fc565b60405180910390f35b610153600480360381019061014e91906111b7565b610445565b6040516101609190611212565b60405180910390f35b610171610468565b60405161017e919061123c565b60405180910390f35b6101a1600480360381019061019c9190611257565b610472565b6040516101ae9190611212565b60405180910390f35b6101bf6104a1565b6040516101cc91906112c6565b60405180910390f35b6101dd6104aa565b6040516101ea919061123c565b60405180910390f35b61020d600480360381019061020891906111b7565b6104d2565b60405161021a9190611212565b60405180910390f35b61022b610509565b604051610238919061123c565b60405180910390f35b61024961052d565b604051610256919061123c565b60405180910390f35b61026761053a565b604051610274919061123c565b60405180910390f35b610285610540565b604051610292919061123c565b60405180910390f35b6102b560048036038101906102b091906112e1565b610564565b6040516102c2919061123c565b60405180910390f35b6102d36105ac565b6040516102e091906110fc565b60405180910390f35b61030360048036038101906102fe919061130e565b61063e565b005b61031f600480360381019061031a91906111b7565b6107f7565b60405161032c9190611212565b60405180910390f35b61034f600480360381019061034a91906111b7565b61086e565b60405161035c9190611212565b60405180910390f35b61036d610891565b60405161037a91906110fc565b60405180910390f35b61039d6004803603810190610398919061133b565b6108ad565b6040516103aa919061123c565b60405180910390f35b6060600380546103c2906113aa565b80601f01602080910402602001604051908101604052809291908181526020018280546103ee906113aa565b801561043b5780601f106104105761010080835404028352916020019161043b565b820191906000526020600020905b81548152906001019060200180831161041e57829003601f168201915b5050505050905090565b600080610450610af4565b905061045d818585610afc565b600191505092915050565b6000600254905090565b60008061047d610af4565b905061048a858285610cc5565b610495858585610d51565b60019150509392505050565b60006012905090565b60007f00000000000000000000000000000000000000000059da06d6d6068e92000000905090565b6000806104dd610af4565b90506104fe8185856104ef85896108ad565b6104f9919061140a565b610afc565b600191505092915050565b7f00000000000000000000000000000000000000000000000000000000010ce43f81565b680ad78ebc5ac620000081565b60055481565b7f000000000000000000000000000000000000000000000000000000000000000681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105bb906113aa565b80601f01602080910402602001604051908101604052809291908181526020018280546105e7906113aa565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b7f00000000000000000000000000000000000000000000000000000000010ce43f43116106a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106979061148a565b60405180910390fd5b6000811180156106b0575060c481105b6106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e6906114f6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075490611562565b60405180910390fd5b6107656104aa565b81680ad78ebc5ac620000061077a9190611582565b610782610468565b61078c919061140a565b11156107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490611610565b60405180910390fd5b6107d681610fc7565b6107f43382680ad78ebc5ac62000006107ef9190611582565b611054565b50565b600080610802610af4565b9050600061081082866108ad565b905083811015610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c906116a2565b60405180910390fd5b6108628286868403610afc565b60019250505092915050565b600080610879610af4565b9050610886818585610d51565b600191505092915050565b6040518060600160405280603a8152602001611b29603a913981565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61093c6104aa565b81610945610468565b61094f919061140a565b1115610990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109879061170e565b60405180910390fd5b61099a828261099e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a049061177a565b60405180910390fd5b610a1960008383611062565b8060026000828254610a2b919061140a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610adc919061123c565b60405180910390a3610af060008383611067565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061180c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd19061189e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb8919061123c565b60405180910390a3505050565b6000610cd184846108ad565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d4b5781811015610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d349061190a565b60405180910390fd5b610d4a8484848403610afc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061199c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611a2e565b60405180910390fd5b610e3a838383611062565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790611ac0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fae919061123c565b60405180910390a3610fc1848484611067565b50505050565b60005b817f0000000000000000000000000000000000000000000000000000000000000006610ff69190611582565b8110156110505760016006600060056000815461101290611ae0565b919050819055815260200190815260200160002060006101000a81548160ff021916908315150217905550808061104890611ae0565b915050610fca565b5050565b61105e8282610934565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110a657808201518184015260208101905061108b565b60008484015250505050565b6000601f19601f8301169050919050565b60006110ce8261106c565b6110d88185611077565b93506110e8818560208601611088565b6110f1816110b2565b840191505092915050565b6000602082019050818103600083015261111681846110c3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061114e82611123565b9050919050565b61115e81611143565b811461116957600080fd5b50565b60008135905061117b81611155565b92915050565b6000819050919050565b61119481611181565b811461119f57600080fd5b50565b6000813590506111b18161118b565b92915050565b600080604083850312156111ce576111cd61111e565b5b60006111dc8582860161116c565b92505060206111ed858286016111a2565b9150509250929050565b60008115159050919050565b61120c816111f7565b82525050565b60006020820190506112276000830184611203565b92915050565b61123681611181565b82525050565b6000602082019050611251600083018461122d565b92915050565b6000806000606084860312156112705761126f61111e565b5b600061127e8682870161116c565b935050602061128f8682870161116c565b92505060406112a0868287016111a2565b9150509250925092565b600060ff82169050919050565b6112c0816112aa565b82525050565b60006020820190506112db60008301846112b7565b92915050565b6000602082840312156112f7576112f661111e565b5b60006113058482850161116c565b91505092915050565b6000602082840312156113245761132361111e565b5b6000611332848285016111a2565b91505092915050565b600080604083850312156113525761135161111e565b5b60006113608582860161116c565b92505060206113718582860161116c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113c257607f821691505b6020821081036113d5576113d461137b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061141582611181565b915061142083611181565b9250828201905080821115611438576114376113db565b5b92915050565b7f6d696e74206e6f74206163746976652079657400000000000000000000000000600082015250565b6000611474601383611077565b915061147f8261143e565b602082019050919050565b600060208201905081810360008301526114a381611467565b9050919050565b7f706f776572206f7574206f6620626f756e647300000000000000000000000000600082015250565b60006114e0601383611077565b91506114eb826114aa565b602082019050919050565b6000602082019050818103600083015261150f816114d3565b9050919050565b7f6f6e6c7920454f417320616c6c6f776564000000000000000000000000000000600082015250565b600061154c601183611077565b915061155782611516565b602082019050919050565b6000602082019050818103600083015261157b8161153f565b9050919050565b600061158d82611181565b915061159883611181565b92508282026115a681611181565b915082820484148315176115bd576115bc6113db565b5b5092915050565b7f6d696e74696e6720776f756c6420657863656564206361700000000000000000600082015250565b60006115fa601883611077565b9150611605826115c4565b602082019050919050565b60006020820190508181036000830152611629816115ed565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061168c602583611077565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006116f8601983611077565b9150611703826116c2565b602082019050919050565b60006020820190508181036000830152611727816116eb565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611764601f83611077565b915061176f8261172e565b602082019050919050565b6000602082019050818103600083015261179381611757565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117f6602483611077565b91506118018261179a565b604082019050919050565b60006020820190508181036000830152611825816117e9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611888602283611077565b91506118938261182c565b604082019050919050565b600060208201905081810360008301526118b78161187b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118f4601d83611077565b91506118ff826118be565b602082019050919050565b60006020820190508181036000830152611923816118e7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611986602583611077565b91506119918261192a565b604082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a18602383611077565b9150611a23826119bc565b604082019050919050565b60006020820190508181036000830152611a4781611a0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aaa602683611077565b9150611ab582611a4e565b604082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b6000611aeb82611181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b1d57611b1c6113db565b5b60018201905091905056fe404d724a61636b4c6576696e204061636b65626f6d20406c62656c7961657620404a616d6d614265616e73206661697263727970746f2e6f7267a2646970667358221220555b3f789b8403bc34a2bb8552e114a5cb0f914e5e2e30880aeda70e0b645aba64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000010ce43f
-----Decoded View---------------
Arg [0] : cycles_ (uint256): 6
Arg [1] : startBlockNumber_ (uint256): 17622079
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [1] : 00000000000000000000000000000000000000000000000000000000010ce43f
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.