ERC-20
Gaming
Overview
Max Total Supply
45,600,000,000 OCTG
Holders
533 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
83,775,082.644464861545320497 OCTGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OctopusGame
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.9; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; contract OctopusGame is ERC20, Ownable { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor() ERC20("Octopus Game", "OCTG") { _mint(msg.sender, 45600000000 * 10 ** decimals()); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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 (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; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f4f63746f7075732047616d6500000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f4354470000000000000000000000000000000000000000000000000000000081525081600390816200008f91906200095c565b508060049081620000a191906200095c565b505050620000c4620000b86200010b60201b60201c565b6200011360201b60201c565b6200010533620000d9620001d960201b60201c565b600a620000e7919062000bd3565b640a9df8c800620000f9919062000c24565b620001e260201b60201c565b62000eb1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000254576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024b9062000cd0565b60405180910390fd5b62000268600083836200034f60201b60201c565b80600260008282546200027c919062000cf2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032f919062000d3e565b60405180910390a36200034b600083836200066b60201b60201c565b5050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003f45750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042d9062000dab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000559576200049d6200067060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005115750620004e26200067060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000553576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054a9062000e1d565b60405180910390fd5b62000666565b600560149054906101000a900460ff168015620005c35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006655760065481620005e3846200069a60201b6200067c1760201c565b620005ef919062000cf2565b111580156200062257506007548162000613846200069a60201b6200067c1760201c565b6200061f919062000cf2565b10155b62000664576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065b9062000e8f565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076457607f821691505b6020821081036200077a57620007796200071c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a5565b620007f08683620007a5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200083d62000837620008318462000808565b62000812565b62000808565b9050919050565b6000819050919050565b62000859836200081c565b62000871620008688262000844565b848454620007b2565b825550505050565b600090565b6200088862000879565b620008958184846200084e565b505050565b5b81811015620008bd57620008b16000826200087e565b6001810190506200089b565b5050565b601f8211156200090c57620008d68162000780565b620008e18462000795565b81016020851015620008f1578190505b62000909620009008562000795565b8301826200089a565b50505b505050565b600082821c905092915050565b6000620009316000198460080262000911565b1980831691505092915050565b60006200094c83836200091e565b9150826002028217905092915050565b6200096782620006e2565b67ffffffffffffffff811115620009835762000982620006ed565b5b6200098f82546200074b565b6200099c828285620008c1565b600060209050601f831160018114620009d45760008415620009bf578287015190505b620009cb85826200093e565b86555062000a3b565b601f198416620009e48662000780565b60005b8281101562000a0e57848901518255600182019150602085019450602081019050620009e7565b8683101562000a2e578489015162000a2a601f8916826200091e565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad15780860481111562000aa95762000aa862000a43565b5b600185161562000ab95780820291505b808102905062000ac98562000a72565b945062000a89565b94509492505050565b60008262000aec576001905062000bbf565b8162000afc576000905062000bbf565b816001811462000b15576002811462000b205762000b56565b600191505062000bbf565b60ff84111562000b355762000b3462000a43565b5b8360020a91508482111562000b4f5762000b4e62000a43565b5b5062000bbf565b5060208310610133831016604e8410600b841016171562000b905782820a90508381111562000b8a5762000b8962000a43565b5b62000bbf565b62000b9f848484600162000a7f565b9250905081840481111562000bb95762000bb862000a43565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be08262000808565b915062000bed8362000bc6565b925062000c1c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ada565b905092915050565b600062000c318262000808565b915062000c3e8362000808565b925082820262000c4e8162000808565b9150828204841483151762000c685762000c6762000a43565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cb8601f8362000c6f565b915062000cc58262000c80565b602082019050919050565b6000602082019050818103600083015262000ceb8162000ca9565b9050919050565b600062000cff8262000808565b915062000d0c8362000808565b925082820190508082111562000d275762000d2662000a43565b5b92915050565b62000d388162000808565b82525050565b600060208201905062000d55600083018462000d2d565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000d93600b8362000c6f565b915062000da08262000d5b565b602082019050919050565b6000602082019050818103600083015262000dc68162000d84565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000e0560168362000c6f565b915062000e128262000dcd565b602082019050919050565b6000602082019050818103600083015262000e388162000df6565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000e7760068362000c6f565b915062000e848262000e3f565b602082019050919050565b6000602082019050818103600083015262000eaa8162000e68565b9050919050565b611d3d8062000ec16000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa14610274578063404e51291461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b60405161015191906112db565b60405180910390f35b610174600480360381019061016f9190611396565b6104ba565b60405161018191906113f1565b60405180910390f35b6101a4600480360381019061019f919061140c565b6104dd565b6040516101b191906113f1565b60405180910390f35b6101c26104fd565b6040516101cf9190611448565b60405180910390f35b6101e0610507565b6040516101ed9190611448565b60405180910390f35b610210600480360381019061020b9190611463565b61050d565b60405161021d91906113f1565b60405180910390f35b61022e61053c565b60405161023b91906114d2565b60405180910390f35b61025e60048036038101906102599190611396565b610545565b60405161026b91906113f1565b60405180910390f35b61028e60048036038101906102899190611519565b61057c565b005b6102aa60048036038101906102a59190611580565b6105f3565b005b6102b4610656565b6040516102c191906115cf565b60405180910390f35b6102e460048036038101906102df919061140c565b61067c565b6040516102f19190611448565b60405180910390f35b6103026106c4565b005b61030c6106d8565b60405161031991906113f1565b60405180910390f35b61032a6106eb565b6040516103379190611448565b60405180910390f35b6103486106f1565b60405161035591906115cf565b60405180910390f35b61036661071b565b60405161037391906112db565b60405180910390f35b61039660048036038101906103919190611396565b6107ad565b6040516103a391906113f1565b60405180910390f35b6103c660048036038101906103c19190611396565b610824565b6040516103d391906113f1565b60405180910390f35b6103f660048036038101906103f191906115ea565b610847565b6040516104039190611448565b60405180910390f35b6104266004803603810190610421919061140c565b6108ce565b005b60606003805461043790611659565b80601f016020809104026020016040519081016040528092919081815260200182805461046390611659565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000806104c5610951565b90506104d2818585610959565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60075481565b600080610518610951565b9050610525858285610b22565b610530858585610bae565b60019150509392505050565b60006012905090565b600080610550610951565b90506105718185856105628589610847565b61056c91906116b9565b610959565b600191505092915050565b610584610e24565b83600560146101000a81548160ff02191690831515021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816006819055508060078190555050505050565b6105fb610e24565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106cc610e24565b6106d66000610ea2565b565b600560149054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461072a90611659565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611659565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b6000806107b8610951565b905060006107c68286610847565b90508381101561080b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108029061175f565b60405180910390fd5b6108188286868403610959565b60019250505092915050565b60008061082f610951565b905061083c818585610bae565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d6610e24565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c906117f1565b60405180910390fd5b61094e81610ea2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611883565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90611915565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b159190611448565b60405180910390a3505050565b6000610b2e8484610847565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ba85781811015610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190611981565b60405180910390fd5b610ba78484848403610959565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611a13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390611aa5565b60405180910390fd5b610c97838383610f68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490611b37565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0b9190611448565b60405180910390a3610e1e848484611246565b50505050565b610e2c610951565b73ffffffffffffffffffffffffffffffffffffffff16610e4a6106f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790611ba3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561100c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290611c0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611158576110a96106f1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111457506110e56106f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90611c7b565b60405180910390fd5b611241565b600560149054906101000a900460ff1680156111c15750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561124057600654816111d38461067c565b6111dd91906116b9565b111580156112005750600754816111f38461067c565b6111fd91906116b9565b10155b61123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690611ce7565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561128557808201518184015260208101905061126a565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ad8261124b565b6112b78185611256565b93506112c7818560208601611267565b6112d081611291565b840191505092915050565b600060208201905081810360008301526112f581846112a2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061132d82611302565b9050919050565b61133d81611322565b811461134857600080fd5b50565b60008135905061135a81611334565b92915050565b6000819050919050565b61137381611360565b811461137e57600080fd5b50565b6000813590506113908161136a565b92915050565b600080604083850312156113ad576113ac6112fd565b5b60006113bb8582860161134b565b92505060206113cc85828601611381565b9150509250929050565b60008115159050919050565b6113eb816113d6565b82525050565b600060208201905061140660008301846113e2565b92915050565b600060208284031215611422576114216112fd565b5b60006114308482850161134b565b91505092915050565b61144281611360565b82525050565b600060208201905061145d6000830184611439565b92915050565b60008060006060848603121561147c5761147b6112fd565b5b600061148a8682870161134b565b935050602061149b8682870161134b565b92505060406114ac86828701611381565b9150509250925092565b600060ff82169050919050565b6114cc816114b6565b82525050565b60006020820190506114e760008301846114c3565b92915050565b6114f6816113d6565b811461150157600080fd5b50565b600081359050611513816114ed565b92915050565b60008060008060808587031215611533576115326112fd565b5b600061154187828801611504565b94505060206115528782880161134b565b935050604061156387828801611381565b925050606061157487828801611381565b91505092959194509250565b60008060408385031215611597576115966112fd565b5b60006115a58582860161134b565b92505060206115b685828601611504565b9150509250929050565b6115c981611322565b82525050565b60006020820190506115e460008301846115c0565b92915050565b60008060408385031215611601576116006112fd565b5b600061160f8582860161134b565b92505060206116208582860161134b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167157607f821691505b6020821081036116845761168361162a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116c482611360565b91506116cf83611360565b92508282019050808211156116e7576116e661168a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611749602583611256565b9150611754826116ed565b604082019050919050565b600060208201905081810360008301526117788161173c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117db602683611256565b91506117e68261177f565b604082019050919050565b6000602082019050818103600083015261180a816117ce565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061186d602483611256565b915061187882611811565b604082019050919050565b6000602082019050818103600083015261189c81611860565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118ff602283611256565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061196b601d83611256565b915061197682611935565b602082019050919050565b6000602082019050818103600083015261199a8161195e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119fd602583611256565b9150611a08826119a1565b604082019050919050565b60006020820190508181036000830152611a2c816119f0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a8f602383611256565b9150611a9a82611a33565b604082019050919050565b60006020820190508181036000830152611abe81611a82565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b21602683611256565b9150611b2c82611ac5565b604082019050919050565b60006020820190508181036000830152611b5081611b14565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b8d602083611256565b9150611b9882611b57565b602082019050919050565b60006020820190508181036000830152611bbc81611b80565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611bf9600b83611256565b9150611c0482611bc3565b602082019050919050565b60006020820190508181036000830152611c2881611bec565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611c65601683611256565b9150611c7082611c2f565b602082019050919050565b60006020820190508181036000830152611c9481611c58565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611cd1600683611256565b9150611cdc82611c9b565b602082019050919050565b60006020820190508181036000830152611d0081611cc4565b905091905056fea26469706673582212208d22c82f9fa1380dd44633a4e454838ac20d573f69b410da5df6c8518d9d588564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa14610274578063404e51291461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b60405161015191906112db565b60405180910390f35b610174600480360381019061016f9190611396565b6104ba565b60405161018191906113f1565b60405180910390f35b6101a4600480360381019061019f919061140c565b6104dd565b6040516101b191906113f1565b60405180910390f35b6101c26104fd565b6040516101cf9190611448565b60405180910390f35b6101e0610507565b6040516101ed9190611448565b60405180910390f35b610210600480360381019061020b9190611463565b61050d565b60405161021d91906113f1565b60405180910390f35b61022e61053c565b60405161023b91906114d2565b60405180910390f35b61025e60048036038101906102599190611396565b610545565b60405161026b91906113f1565b60405180910390f35b61028e60048036038101906102899190611519565b61057c565b005b6102aa60048036038101906102a59190611580565b6105f3565b005b6102b4610656565b6040516102c191906115cf565b60405180910390f35b6102e460048036038101906102df919061140c565b61067c565b6040516102f19190611448565b60405180910390f35b6103026106c4565b005b61030c6106d8565b60405161031991906113f1565b60405180910390f35b61032a6106eb565b6040516103379190611448565b60405180910390f35b6103486106f1565b60405161035591906115cf565b60405180910390f35b61036661071b565b60405161037391906112db565b60405180910390f35b61039660048036038101906103919190611396565b6107ad565b6040516103a391906113f1565b60405180910390f35b6103c660048036038101906103c19190611396565b610824565b6040516103d391906113f1565b60405180910390f35b6103f660048036038101906103f191906115ea565b610847565b6040516104039190611448565b60405180910390f35b6104266004803603810190610421919061140c565b6108ce565b005b60606003805461043790611659565b80601f016020809104026020016040519081016040528092919081815260200182805461046390611659565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000806104c5610951565b90506104d2818585610959565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60075481565b600080610518610951565b9050610525858285610b22565b610530858585610bae565b60019150509392505050565b60006012905090565b600080610550610951565b90506105718185856105628589610847565b61056c91906116b9565b610959565b600191505092915050565b610584610e24565b83600560146101000a81548160ff02191690831515021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816006819055508060078190555050505050565b6105fb610e24565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106cc610e24565b6106d66000610ea2565b565b600560149054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461072a90611659565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611659565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b6000806107b8610951565b905060006107c68286610847565b90508381101561080b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108029061175f565b60405180910390fd5b6108188286868403610959565b60019250505092915050565b60008061082f610951565b905061083c818585610bae565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d6610e24565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c906117f1565b60405180910390fd5b61094e81610ea2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611883565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90611915565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b159190611448565b60405180910390a3505050565b6000610b2e8484610847565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ba85781811015610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190611981565b60405180910390fd5b610ba78484848403610959565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611a13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390611aa5565b60405180910390fd5b610c97838383610f68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490611b37565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0b9190611448565b60405180910390a3610e1e848484611246565b50505050565b610e2c610951565b73ffffffffffffffffffffffffffffffffffffffff16610e4a6106f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790611ba3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561100c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290611c0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611158576110a96106f1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111457506110e56106f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90611c7b565b60405180910390fd5b611241565b600560149054906101000a900460ff1680156111c15750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561124057600654816111d38461067c565b6111dd91906116b9565b111580156112005750600754816111f38461067c565b6111fd91906116b9565b10155b61123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690611ce7565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561128557808201518184015260208101905061126a565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ad8261124b565b6112b78185611256565b93506112c7818560208601611267565b6112d081611291565b840191505092915050565b600060208201905081810360008301526112f581846112a2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061132d82611302565b9050919050565b61133d81611322565b811461134857600080fd5b50565b60008135905061135a81611334565b92915050565b6000819050919050565b61137381611360565b811461137e57600080fd5b50565b6000813590506113908161136a565b92915050565b600080604083850312156113ad576113ac6112fd565b5b60006113bb8582860161134b565b92505060206113cc85828601611381565b9150509250929050565b60008115159050919050565b6113eb816113d6565b82525050565b600060208201905061140660008301846113e2565b92915050565b600060208284031215611422576114216112fd565b5b60006114308482850161134b565b91505092915050565b61144281611360565b82525050565b600060208201905061145d6000830184611439565b92915050565b60008060006060848603121561147c5761147b6112fd565b5b600061148a8682870161134b565b935050602061149b8682870161134b565b92505060406114ac86828701611381565b9150509250925092565b600060ff82169050919050565b6114cc816114b6565b82525050565b60006020820190506114e760008301846114c3565b92915050565b6114f6816113d6565b811461150157600080fd5b50565b600081359050611513816114ed565b92915050565b60008060008060808587031215611533576115326112fd565b5b600061154187828801611504565b94505060206115528782880161134b565b935050604061156387828801611381565b925050606061157487828801611381565b91505092959194509250565b60008060408385031215611597576115966112fd565b5b60006115a58582860161134b565b92505060206115b685828601611504565b9150509250929050565b6115c981611322565b82525050565b60006020820190506115e460008301846115c0565b92915050565b60008060408385031215611601576116006112fd565b5b600061160f8582860161134b565b92505060206116208582860161134b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167157607f821691505b6020821081036116845761168361162a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116c482611360565b91506116cf83611360565b92508282019050808211156116e7576116e661168a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611749602583611256565b9150611754826116ed565b604082019050919050565b600060208201905081810360008301526117788161173c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117db602683611256565b91506117e68261177f565b604082019050919050565b6000602082019050818103600083015261180a816117ce565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061186d602483611256565b915061187882611811565b604082019050919050565b6000602082019050818103600083015261189c81611860565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118ff602283611256565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061196b601d83611256565b915061197682611935565b602082019050919050565b6000602082019050818103600083015261199a8161195e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119fd602583611256565b9150611a08826119a1565b604082019050919050565b60006020820190508181036000830152611a2c816119f0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a8f602383611256565b9150611a9a82611a33565b604082019050919050565b60006020820190508181036000830152611abe81611a82565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b21602683611256565b9150611b2c82611ac5565b604082019050919050565b60006020820190508181036000830152611b5081611b14565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b8d602083611256565b9150611b9882611b57565b602082019050919050565b60006020820190508181036000830152611bbc81611b80565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611bf9600b83611256565b9150611c0482611bc3565b602082019050919050565b60006020820190508181036000830152611c2881611bec565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611c65601683611256565b9150611c7082611c2f565b602082019050919050565b60006020820190508181036000830152611c9481611c58565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611cd1600683611256565b9150611cdc82611c9b565b602082019050919050565b60006020820190508181036000830152611d0081611cc4565b905091905056fea26469706673582212208d22c82f9fa1380dd44633a4e454838ac20d573f69b410da5df6c8518d9d588564736f6c63430008120033
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.