ERC-20
Overview
Max Total Supply
420,420,420,420,420 PHUB
Holders
1,431
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
50,946,459,827.248716111517256142 PHUBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PHUB
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/PHUB.sol // SPDX-License-Identifier: MIT //⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ //⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡏⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⢹⣿⣿ //⣿⣿⡇⢀⣤⣤⡈⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⢰⣿⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⠆⠀⠀⠀⢸⣿⣿ //⣿⣿⡇⠸⠟⠛⠁⣰⡟⢠⣤⣄⠙⣿⠁⣡⣤⣿⠀⢡⣦⡀⢹⣿⡇⢸⣿⠟⢻⣷⣰⣿⠀⠀⣿⣾⣿⡿⠻⣿⣦⢸⣿⣿ //⣿⣿⡇⢰⣶⣶⣿⣿⡇⢻⣿⣿⠀⣼⠀⣿⣿⣿⠀⣿⣿⡇⢸⣿⡇⢸⣿⠀⠘⣿⣿⣿⠀⢀⣿⣿⣿⡇⠀⣸⣿⢸⣿⣿ //⣿⣿⣇⣸⣿⣿⣿⣿⣷⣤⣉⣠⣾⣿⣄⣿⣿⣿⣄⣿⣿⣧⣸⣿⡇⠘⠿⠀⠘⠿⠋⠻⠷⠟⠿⠛⠿⠻⠿⠟⠁⢸⣿⣿ //⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣇⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣸⣿⣿ //⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀ pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract PHUB is ERC20, Ownable { constructor() ERC20("PHUB", "PHUB"){} /// turn on/off contributions bool public allowContributions; /// a minimum contribution to participate in the presale uint256 public constant MIN_CONTRIBUTION = .1 ether; /// limit the maximum contribution for each wallet uint256 public constant MAX_CONTRIBUTION = 1 ether; /// the maximum amount of eth that this contract will accept for presale uint256 public constant HARD_CAP = 20 ether; /// total number of tokens available uint256 public constant MAX_SUPPLY = 420420420420420 * 10 ** 18; /// 80% of tokens reserved for presale uint256 public constant PRESALE_SUPPLY = 336336336336336 * 10 ** 18; /// 20% of tokens reserved for LP and dev mint uint256 public constant RESERVE_MAX_SUPPLY = 84084084084084 * 10 ** 18; /// used to track the total contributions for the presale uint256 public TOTAL_CONTRIBUTED; /// used to track the total number of contributoors uint256 public NUMBER_OF_CONTRIBUTOORS; /// a struct used to keep track of each contributoors address and contribution amount struct Contribution { address addr; uint256 amount; } /// mapping of contributions mapping (uint256 => Contribution) public contribution; /// index of an address to it's contribition information mapping (address => uint256) public contributoor; /// collect presale contributions function sendToPresale() public payable { /// look up the sender's current contribution amount in the mapping uint256 currentContribution = contribution[contributoor[msg.sender]].amount; /// initialize a contribution index so we can keep track of this address' contributions uint256 contributionIndex; require(msg.value >= MIN_CONTRIBUTION, "Contribution too low"); /// check to see if contributions are allowed require (allowContributions, "Contributions not allowed"); /// enforce per-wallet contribution limit require (msg.value + currentContribution <= MAX_CONTRIBUTION, "Contribution exceeds per wallet limit"); /// enforce hard cap require (msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Contribution exceeds hard cap"); if (contributoor[msg.sender] != 0){ /// no need to increase the number of contributors since this person already added contributionIndex = contributoor[msg.sender]; } else { /// keep track of each new contributor with a unique index contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1; NUMBER_OF_CONTRIBUTOORS++; } /// add the contribution to the amount contributed TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value; /// keep track of the address' contributions so far contributoor[msg.sender] = contributionIndex; contribution[contributionIndex].addr = msg.sender; contribution[contributionIndex].amount += msg.value; } function airdropPresale() external onlyOwner { /// determine the price per token uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/PRESALE_SUPPLY; /// loop over each contribution and distribute tokens for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) { /// convert contribution to 18 decimals uint256 contributionAmount = contribution[i].amount * 10 ** 18; /// calculate the percentage of the pool based on the address' contribution uint256 numberOfTokensToMint = contributionAmount/pricePerToken; /// mint the tokens to the address _mint(contribution[i].addr, numberOfTokensToMint); } } /// dev mint the remainder of the pool to round out the supply function devMint() external onlyOwner { /// calculate the remaining supply uint256 numberToMint = MAX_SUPPLY - totalSupply(); /// don't allow the dev mint until the tokens have been airdropped require (numberToMint <= RESERVE_MAX_SUPPLY, "Dev mint limited to reserve max"); /// mint the remaining supply to the dev's wallet _mint(msg.sender, numberToMint); } /// set whether or not the contract allows contributions function setAllowContributions(bool _value) external onlyOwner { allowContributions = _value; } /// if there are not enough contributions or we decide this sucks, refund everyone their eth function refundEveryone() external onlyOwner { for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) { address payable refundAddress = payable(contribution[i].addr); /// refund the contribution refundAddress.transfer(contribution[i].amount); } } /// allows the owner to withdraw the funds in this contract function withdrawBalance(address payable _address) external onlyOwner { (bool success, ) = _address.call{value: address(this).balance}(""); require(success, "Withdraw failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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.6.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":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributoor","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":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAllowContributions","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":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600481526020017f50485542000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5048554200000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61287f80620002cb6000396000f3fe6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610683578063e3261454146106c0578063e8709c40146106d7578063f2fde38b14610715576101d8565b806395d89b41146105b3578063a457c2d7146105de578063a9059cbb1461061b578063c269932614610658576101d8565b80638512747d116100d15780638512747d1461051d57806387e3c520146105345780638da5cb5b1461055d57806394d95f8f14610588576101d8565b8063715018a61461049b57806373138e4f146104b2578063756af45f146104dd5780637c69e20714610506576101d8565b8063395093511161017a578063511f072611610149578063511f0726146103fe5780635ea06028146104085780637072e45c1461043357806370a082311461045e576101d8565b8063395093511461032e5780633a03171c1461036b5780633dfa10f91461039657806340650c91146103d3576101d8565b806318160ddd116101b657806318160ddd1461027057806323b872dd1461029b578063313ce567146102d857806332cb6b0c14610303576101d8565b8063044f910c146101dd57806306fdde0314610208578063095ea7b314610233575b600080fd5b3480156101e957600080fd5b506101f261073e565b6040516101ff9190612100565b60405180910390f35b34801561021457600080fd5b5061021d610744565b60405161022a9190611ede565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611b08565b6107d6565b6040516102679190611ec3565b60405180910390f35b34801561027c57600080fd5b506102856107f9565b6040516102929190612100565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190611ab5565b610803565b6040516102cf9190611ec3565b60405180910390f35b3480156102e457600080fd5b506102ed610832565b6040516102fa919061211b565b60405180910390f35b34801561030f57600080fd5b5061031861083b565b6040516103259190612100565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190611b08565b61084d565b6040516103629190611ec3565b60405180910390f35b34801561037757600080fd5b50610380610884565b60405161038d9190612100565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611a1b565b610891565b6040516103ca9190612100565b60405180910390f35b3480156103df57600080fd5b506103e86108a9565b6040516103f59190612100565b60405180910390f35b6104066108b5565b005b34801561041457600080fd5b5061041d610bf0565b60405161042a9190612100565b60405180910390f35b34801561043f57600080fd5b50610448610bf6565b6040516104559190611ec3565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190611a1b565b610c09565b6040516104929190612100565b60405180910390f35b3480156104a757600080fd5b506104b0610c51565b005b3480156104be57600080fd5b506104c7610c65565b6040516104d49190612100565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190611a48565b610c77565b005b34801561051257600080fd5b5061051b610d2f565b005b34801561052957600080fd5b50610532610dba565b005b34801561054057600080fd5b5061055b60048036038101906105569190611b48565b610e9c565b005b34801561056957600080fd5b50610572610ec1565b60405161057f9190611e7f565b60405180910390f35b34801561059457600080fd5b5061059d610eeb565b6040516105aa9190612100565b60405180910390f35b3480156105bf57600080fd5b506105c8610ef7565b6040516105d59190611ede565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190611b08565b610f89565b6040516106129190611ec3565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190611b08565b611000565b60405161064f9190611ec3565b60405180910390f35b34801561066457600080fd5b5061066d611023565b60405161067a9190612100565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190611a75565b611035565b6040516106b79190612100565b60405180910390f35b3480156106cc57600080fd5b506106d56110bc565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190611b75565b611183565b60405161070c929190611e9a565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190611a1b565b6111c7565b005b60075481565b6060600380546107539061230c565b80601f016020809104026020016040519081016040528092919081815260200182805461077f9061230c565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000806107e161124b565b90506107ee818585611253565b600191505092915050565b6000600254905090565b60008061080e61124b565b905061081b85828561141e565b6108268585856114aa565b60019150509392505050565b60006012905090565b6d14ba73a4e4a66cbdc579a290000081565b60008061085861124b565b905061087981858561086a8589611035565b610874919061215d565b611253565b600191505092915050565b6801158e460913d0000081565b60096020528060005260406000206000915090505481565b67016345785d8a000081565b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600067016345785d8a000034101561095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612020565b60405180910390fd5b600560149054906101000a900460ff166109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290612060565b60405180910390fd5b670de0b6b3a764000082346109c0919061215d565b1115610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890611fe0565b60405180910390fd5b6801158e460913d0000060065434610a19919061215d565b1115610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190612000565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ae857600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b12565b6001600754610af7919061215d565b905060076000815480929190610b0c9061233e565b91905055505b34600654610b20919061215d565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610be5919061215d565b925050819055505050565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c59611722565b610c6360006117a0565b565b6d10952950b6eb8a316ac7b540000081565b610c7f611722565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ca590611e6a565b60006040518083038185875af1925050503d8060008114610ce2576040519150601f19603f3d011682016040523d82523d6000602084013e610ce7565b606091505b5050905080610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611f60565b60405180910390fd5b5050565b610d37611722565b6000610d416107f9565b6d14ba73a4e4a66cbdc579a2900000610d5a919061223e565b90506d04254a542dbae28c5ab1ed500000811115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611f80565b60405180910390fd5b610db73382611866565b50565b610dc2611722565b60006d10952950b6eb8a316ac7b5400000670de0b6b3a7640000600654610de991906121e4565b610df391906121b3565b90506000600190505b6007548111610e98576000670de0b6b3a76400006008600084815260200190815260200160002060010154610e3191906121e4565b905060008382610e4191906121b3565b9050610e836008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611866565b50508080610e909061233e565b915050610dfc565b5050565b610ea4611722565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b670de0b6b3a764000081565b606060048054610f069061230c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f329061230c565b8015610f7f5780601f10610f5457610100808354040283529160200191610f7f565b820191906000526020600020905b815481529060010190602001808311610f6257829003601f168201915b5050505050905090565b600080610f9461124b565b90506000610fa28286611035565b905083811015610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906120c0565b60405180910390fd5b610ff48286868403611253565b60019250505092915050565b60008061100b61124b565b90506110188185856114aa565b600191505092915050565b6d04254a542dbae28c5ab1ed50000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c4611722565b6000600190505b60075481116111805760006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60086000858152602001908152602001600020600101549081150290604051600060405180830381858888f1935050505015801561116b573d6000803e3d6000fd5b505080806111789061233e565b9150506110cb565b50565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111cf611722565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690611f20565b60405180910390fd5b611248816117a0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906120a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90611f40565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114119190612100565b60405180910390a3505050565b600061142a8484611035565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a45781811015611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90611fa0565b60405180910390fd5b6114a38484848403611253565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612080565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190611f00565b60405180910390fd5b6115958383836119bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290611fc0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117099190612100565b60405180910390a361171c8484846119c2565b50505050565b61172a61124b565b73ffffffffffffffffffffffffffffffffffffffff16611748610ec1565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590612040565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd906120e0565b60405180910390fd5b6118e2600083836119bd565b80600260008282546118f4919061215d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119a59190612100565b60405180910390a36119b9600083836119c2565b5050565b505050565b505050565b6000813590506119d6816127ed565b92915050565b6000813590506119eb81612804565b92915050565b600081359050611a008161281b565b92915050565b600081359050611a1581612832565b92915050565b600060208284031215611a3157611a30612414565b5b6000611a3f848285016119c7565b91505092915050565b600060208284031215611a5e57611a5d612414565b5b6000611a6c848285016119dc565b91505092915050565b60008060408385031215611a8c57611a8b612414565b5b6000611a9a858286016119c7565b9250506020611aab858286016119c7565b9150509250929050565b600080600060608486031215611ace57611acd612414565b5b6000611adc868287016119c7565b9350506020611aed868287016119c7565b9250506040611afe86828701611a06565b9150509250925092565b60008060408385031215611b1f57611b1e612414565b5b6000611b2d858286016119c7565b9250506020611b3e85828601611a06565b9150509250929050565b600060208284031215611b5e57611b5d612414565b5b6000611b6c848285016119f1565b91505092915050565b600060208284031215611b8b57611b8a612414565b5b6000611b9984828501611a06565b91505092915050565b611bab81612272565b82525050565b611bba81612296565b82525050565b6000611bcb82612136565b611bd5818561214c565b9350611be58185602086016122d9565b611bee81612419565b840191505092915050565b6000611c0660238361214c565b9150611c118261242a565b604082019050919050565b6000611c2960268361214c565b9150611c3482612479565b604082019050919050565b6000611c4c60228361214c565b9150611c57826124c8565b604082019050919050565b6000611c6f600f8361214c565b9150611c7a82612517565b602082019050919050565b6000611c92601f8361214c565b9150611c9d82612540565b602082019050919050565b6000611cb5601d8361214c565b9150611cc082612569565b602082019050919050565b6000611cd860268361214c565b9150611ce382612592565b604082019050919050565b6000611cfb60258361214c565b9150611d06826125e1565b604082019050919050565b6000611d1e601d8361214c565b9150611d2982612630565b602082019050919050565b6000611d4160148361214c565b9150611d4c82612659565b602082019050919050565b6000611d6460208361214c565b9150611d6f82612682565b602082019050919050565b6000611d8760198361214c565b9150611d92826126ab565b602082019050919050565b6000611daa60258361214c565b9150611db5826126d4565b604082019050919050565b6000611dcd600083612141565b9150611dd882612723565b600082019050919050565b6000611df060248361214c565b9150611dfb82612726565b604082019050919050565b6000611e1360258361214c565b9150611e1e82612775565b604082019050919050565b6000611e36601f8361214c565b9150611e41826127c4565b602082019050919050565b611e55816122c2565b82525050565b611e64816122cc565b82525050565b6000611e7582611dc0565b9150819050919050565b6000602082019050611e946000830184611ba2565b92915050565b6000604082019050611eaf6000830185611ba2565b611ebc6020830184611e4c565b9392505050565b6000602082019050611ed86000830184611bb1565b92915050565b60006020820190508181036000830152611ef88184611bc0565b905092915050565b60006020820190508181036000830152611f1981611bf9565b9050919050565b60006020820190508181036000830152611f3981611c1c565b9050919050565b60006020820190508181036000830152611f5981611c3f565b9050919050565b60006020820190508181036000830152611f7981611c62565b9050919050565b60006020820190508181036000830152611f9981611c85565b9050919050565b60006020820190508181036000830152611fb981611ca8565b9050919050565b60006020820190508181036000830152611fd981611ccb565b9050919050565b60006020820190508181036000830152611ff981611cee565b9050919050565b6000602082019050818103600083015261201981611d11565b9050919050565b6000602082019050818103600083015261203981611d34565b9050919050565b6000602082019050818103600083015261205981611d57565b9050919050565b6000602082019050818103600083015261207981611d7a565b9050919050565b6000602082019050818103600083015261209981611d9d565b9050919050565b600060208201905081810360008301526120b981611de3565b9050919050565b600060208201905081810360008301526120d981611e06565b9050919050565b600060208201905081810360008301526120f981611e29565b9050919050565b60006020820190506121156000830184611e4c565b92915050565b60006020820190506121306000830184611e5b565b92915050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612168826122c2565b9150612173836122c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121a8576121a7612387565b5b828201905092915050565b60006121be826122c2565b91506121c9836122c2565b9250826121d9576121d86123b6565b5b828204905092915050565b60006121ef826122c2565b91506121fa836122c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561223357612232612387565b5b828202905092915050565b6000612249826122c2565b9150612254836122c2565b92508282101561226757612266612387565b5b828203905092915050565b600061227d826122a2565b9050919050565b600061228f826122a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122f75780820151818401526020810190506122dc565b83811115612306576000848401525b50505050565b6000600282049050600182168061232457607f821691505b60208210811415612338576123376123e5565b5b50919050565b6000612349826122c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561237c5761237b612387565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f446576206d696e74206c696d6974656420746f2072657365727665206d617800600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6127f681612272565b811461280157600080fd5b50565b61280d81612284565b811461281857600080fd5b50565b61282481612296565b811461282f57600080fd5b50565b61283b816122c2565b811461284657600080fd5b5056fea264697066735822122039a79580ec92ca0ecfbeec07a65acb58f991ff88aa7ec9ebc00d0308c42e590d64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610683578063e3261454146106c0578063e8709c40146106d7578063f2fde38b14610715576101d8565b806395d89b41146105b3578063a457c2d7146105de578063a9059cbb1461061b578063c269932614610658576101d8565b80638512747d116100d15780638512747d1461051d57806387e3c520146105345780638da5cb5b1461055d57806394d95f8f14610588576101d8565b8063715018a61461049b57806373138e4f146104b2578063756af45f146104dd5780637c69e20714610506576101d8565b8063395093511161017a578063511f072611610149578063511f0726146103fe5780635ea06028146104085780637072e45c1461043357806370a082311461045e576101d8565b8063395093511461032e5780633a03171c1461036b5780633dfa10f91461039657806340650c91146103d3576101d8565b806318160ddd116101b657806318160ddd1461027057806323b872dd1461029b578063313ce567146102d857806332cb6b0c14610303576101d8565b8063044f910c146101dd57806306fdde0314610208578063095ea7b314610233575b600080fd5b3480156101e957600080fd5b506101f261073e565b6040516101ff9190612100565b60405180910390f35b34801561021457600080fd5b5061021d610744565b60405161022a9190611ede565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611b08565b6107d6565b6040516102679190611ec3565b60405180910390f35b34801561027c57600080fd5b506102856107f9565b6040516102929190612100565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190611ab5565b610803565b6040516102cf9190611ec3565b60405180910390f35b3480156102e457600080fd5b506102ed610832565b6040516102fa919061211b565b60405180910390f35b34801561030f57600080fd5b5061031861083b565b6040516103259190612100565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190611b08565b61084d565b6040516103629190611ec3565b60405180910390f35b34801561037757600080fd5b50610380610884565b60405161038d9190612100565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611a1b565b610891565b6040516103ca9190612100565b60405180910390f35b3480156103df57600080fd5b506103e86108a9565b6040516103f59190612100565b60405180910390f35b6104066108b5565b005b34801561041457600080fd5b5061041d610bf0565b60405161042a9190612100565b60405180910390f35b34801561043f57600080fd5b50610448610bf6565b6040516104559190611ec3565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190611a1b565b610c09565b6040516104929190612100565b60405180910390f35b3480156104a757600080fd5b506104b0610c51565b005b3480156104be57600080fd5b506104c7610c65565b6040516104d49190612100565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190611a48565b610c77565b005b34801561051257600080fd5b5061051b610d2f565b005b34801561052957600080fd5b50610532610dba565b005b34801561054057600080fd5b5061055b60048036038101906105569190611b48565b610e9c565b005b34801561056957600080fd5b50610572610ec1565b60405161057f9190611e7f565b60405180910390f35b34801561059457600080fd5b5061059d610eeb565b6040516105aa9190612100565b60405180910390f35b3480156105bf57600080fd5b506105c8610ef7565b6040516105d59190611ede565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190611b08565b610f89565b6040516106129190611ec3565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190611b08565b611000565b60405161064f9190611ec3565b60405180910390f35b34801561066457600080fd5b5061066d611023565b60405161067a9190612100565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190611a75565b611035565b6040516106b79190612100565b60405180910390f35b3480156106cc57600080fd5b506106d56110bc565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190611b75565b611183565b60405161070c929190611e9a565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190611a1b565b6111c7565b005b60075481565b6060600380546107539061230c565b80601f016020809104026020016040519081016040528092919081815260200182805461077f9061230c565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000806107e161124b565b90506107ee818585611253565b600191505092915050565b6000600254905090565b60008061080e61124b565b905061081b85828561141e565b6108268585856114aa565b60019150509392505050565b60006012905090565b6d14ba73a4e4a66cbdc579a290000081565b60008061085861124b565b905061087981858561086a8589611035565b610874919061215d565b611253565b600191505092915050565b6801158e460913d0000081565b60096020528060005260406000206000915090505481565b67016345785d8a000081565b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600067016345785d8a000034101561095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612020565b60405180910390fd5b600560149054906101000a900460ff166109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290612060565b60405180910390fd5b670de0b6b3a764000082346109c0919061215d565b1115610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890611fe0565b60405180910390fd5b6801158e460913d0000060065434610a19919061215d565b1115610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190612000565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ae857600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b12565b6001600754610af7919061215d565b905060076000815480929190610b0c9061233e565b91905055505b34600654610b20919061215d565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610be5919061215d565b925050819055505050565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c59611722565b610c6360006117a0565b565b6d10952950b6eb8a316ac7b540000081565b610c7f611722565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ca590611e6a565b60006040518083038185875af1925050503d8060008114610ce2576040519150601f19603f3d011682016040523d82523d6000602084013e610ce7565b606091505b5050905080610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611f60565b60405180910390fd5b5050565b610d37611722565b6000610d416107f9565b6d14ba73a4e4a66cbdc579a2900000610d5a919061223e565b90506d04254a542dbae28c5ab1ed500000811115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611f80565b60405180910390fd5b610db73382611866565b50565b610dc2611722565b60006d10952950b6eb8a316ac7b5400000670de0b6b3a7640000600654610de991906121e4565b610df391906121b3565b90506000600190505b6007548111610e98576000670de0b6b3a76400006008600084815260200190815260200160002060010154610e3191906121e4565b905060008382610e4191906121b3565b9050610e836008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611866565b50508080610e909061233e565b915050610dfc565b5050565b610ea4611722565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b670de0b6b3a764000081565b606060048054610f069061230c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f329061230c565b8015610f7f5780601f10610f5457610100808354040283529160200191610f7f565b820191906000526020600020905b815481529060010190602001808311610f6257829003601f168201915b5050505050905090565b600080610f9461124b565b90506000610fa28286611035565b905083811015610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906120c0565b60405180910390fd5b610ff48286868403611253565b60019250505092915050565b60008061100b61124b565b90506110188185856114aa565b600191505092915050565b6d04254a542dbae28c5ab1ed50000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c4611722565b6000600190505b60075481116111805760006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60086000858152602001908152602001600020600101549081150290604051600060405180830381858888f1935050505015801561116b573d6000803e3d6000fd5b505080806111789061233e565b9150506110cb565b50565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111cf611722565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690611f20565b60405180910390fd5b611248816117a0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906120a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90611f40565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114119190612100565b60405180910390a3505050565b600061142a8484611035565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a45781811015611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90611fa0565b60405180910390fd5b6114a38484848403611253565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612080565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190611f00565b60405180910390fd5b6115958383836119bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290611fc0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117099190612100565b60405180910390a361171c8484846119c2565b50505050565b61172a61124b565b73ffffffffffffffffffffffffffffffffffffffff16611748610ec1565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590612040565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd906120e0565b60405180910390fd5b6118e2600083836119bd565b80600260008282546118f4919061215d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119a59190612100565b60405180910390a36119b9600083836119c2565b5050565b505050565b505050565b6000813590506119d6816127ed565b92915050565b6000813590506119eb81612804565b92915050565b600081359050611a008161281b565b92915050565b600081359050611a1581612832565b92915050565b600060208284031215611a3157611a30612414565b5b6000611a3f848285016119c7565b91505092915050565b600060208284031215611a5e57611a5d612414565b5b6000611a6c848285016119dc565b91505092915050565b60008060408385031215611a8c57611a8b612414565b5b6000611a9a858286016119c7565b9250506020611aab858286016119c7565b9150509250929050565b600080600060608486031215611ace57611acd612414565b5b6000611adc868287016119c7565b9350506020611aed868287016119c7565b9250506040611afe86828701611a06565b9150509250925092565b60008060408385031215611b1f57611b1e612414565b5b6000611b2d858286016119c7565b9250506020611b3e85828601611a06565b9150509250929050565b600060208284031215611b5e57611b5d612414565b5b6000611b6c848285016119f1565b91505092915050565b600060208284031215611b8b57611b8a612414565b5b6000611b9984828501611a06565b91505092915050565b611bab81612272565b82525050565b611bba81612296565b82525050565b6000611bcb82612136565b611bd5818561214c565b9350611be58185602086016122d9565b611bee81612419565b840191505092915050565b6000611c0660238361214c565b9150611c118261242a565b604082019050919050565b6000611c2960268361214c565b9150611c3482612479565b604082019050919050565b6000611c4c60228361214c565b9150611c57826124c8565b604082019050919050565b6000611c6f600f8361214c565b9150611c7a82612517565b602082019050919050565b6000611c92601f8361214c565b9150611c9d82612540565b602082019050919050565b6000611cb5601d8361214c565b9150611cc082612569565b602082019050919050565b6000611cd860268361214c565b9150611ce382612592565b604082019050919050565b6000611cfb60258361214c565b9150611d06826125e1565b604082019050919050565b6000611d1e601d8361214c565b9150611d2982612630565b602082019050919050565b6000611d4160148361214c565b9150611d4c82612659565b602082019050919050565b6000611d6460208361214c565b9150611d6f82612682565b602082019050919050565b6000611d8760198361214c565b9150611d92826126ab565b602082019050919050565b6000611daa60258361214c565b9150611db5826126d4565b604082019050919050565b6000611dcd600083612141565b9150611dd882612723565b600082019050919050565b6000611df060248361214c565b9150611dfb82612726565b604082019050919050565b6000611e1360258361214c565b9150611e1e82612775565b604082019050919050565b6000611e36601f8361214c565b9150611e41826127c4565b602082019050919050565b611e55816122c2565b82525050565b611e64816122cc565b82525050565b6000611e7582611dc0565b9150819050919050565b6000602082019050611e946000830184611ba2565b92915050565b6000604082019050611eaf6000830185611ba2565b611ebc6020830184611e4c565b9392505050565b6000602082019050611ed86000830184611bb1565b92915050565b60006020820190508181036000830152611ef88184611bc0565b905092915050565b60006020820190508181036000830152611f1981611bf9565b9050919050565b60006020820190508181036000830152611f3981611c1c565b9050919050565b60006020820190508181036000830152611f5981611c3f565b9050919050565b60006020820190508181036000830152611f7981611c62565b9050919050565b60006020820190508181036000830152611f9981611c85565b9050919050565b60006020820190508181036000830152611fb981611ca8565b9050919050565b60006020820190508181036000830152611fd981611ccb565b9050919050565b60006020820190508181036000830152611ff981611cee565b9050919050565b6000602082019050818103600083015261201981611d11565b9050919050565b6000602082019050818103600083015261203981611d34565b9050919050565b6000602082019050818103600083015261205981611d57565b9050919050565b6000602082019050818103600083015261207981611d7a565b9050919050565b6000602082019050818103600083015261209981611d9d565b9050919050565b600060208201905081810360008301526120b981611de3565b9050919050565b600060208201905081810360008301526120d981611e06565b9050919050565b600060208201905081810360008301526120f981611e29565b9050919050565b60006020820190506121156000830184611e4c565b92915050565b60006020820190506121306000830184611e5b565b92915050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612168826122c2565b9150612173836122c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121a8576121a7612387565b5b828201905092915050565b60006121be826122c2565b91506121c9836122c2565b9250826121d9576121d86123b6565b5b828204905092915050565b60006121ef826122c2565b91506121fa836122c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561223357612232612387565b5b828202905092915050565b6000612249826122c2565b9150612254836122c2565b92508282101561226757612266612387565b5b828203905092915050565b600061227d826122a2565b9050919050565b600061228f826122a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122f75780820151818401526020810190506122dc565b83811115612306576000848401525b50505050565b6000600282049050600182168061232457607f821691505b60208210811415612338576123376123e5565b5b50919050565b6000612349826122c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561237c5761237b612387565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f446576206d696e74206c696d6974656420746f2072657365727665206d617800600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6127f681612272565b811461280157600080fd5b50565b61280d81612284565b811461281857600080fd5b50565b61282481612296565b811461282f57600080fd5b50565b61283b816122c2565b811461284657600080fd5b5056fea264697066735822122039a79580ec92ca0ecfbeec07a65acb58f991ff88aa7ec9ebc00d0308c42e590d64736f6c63430008070033
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.