ERC-20
Overview
Max Total Supply
88,134.9166666667371745 FXY
Holders
129
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
220.0833333333335094 FXYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FXY
Compiler Version
v0.8.6+commit.11564f7e
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.6; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./Administration.sol"; contract FXY is ERC20, Administration { uint256 private _initialTokens = 10000000000 ether; constructor() ERC20("FXY", "FXY") {} function initialMint() external onlyAdmin { require(totalSupply() == 0, "ERROR: Assets found"); _mint(owner(), _initialTokens); } function mintTokens(uint amount) public onlyAdmin { _mint(owner(), amount); } function mintTo(address to, uint amount) public onlyAdmin { _mint(to, amount); } function burnTokens(uint amount) external onlyAdmin { _burn(owner(), amount); } function buy(address from, uint amount) external onlyAdmin { _burn(from, amount); } function withdraw() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.6; import "@openzeppelin/contracts/access/Ownable.sol"; contract Administration is Ownable { event SetAdmin(address indexed admin, bool active); mapping (address => bool) private admins; modifier onlyAdmin(){ require(admins[_msgSender()] || owner() == _msgSender(), "Admin: caller is not an admin"); _; } function setAdmin(address admin, bool active) external onlyOwner { admins[admin] = active; emit SetAdmin(admin, active); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "berlin", "libraries": {}, "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":"admin","type":"address"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SetAdmin","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":"uint256","name":"amount","type":"uint256"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"bool","name":"active","type":"bool"}],"name":"setAdmin","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526b204fce5e3e250261100000006007553480156200002157600080fd5b506040518060400160405280600381526020017f46585900000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46585900000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a6929190620001b6565b508060049080519060200190620000bf929190620001b6565b505050620000e2620000d6620000e860201b60201c565b620000f060201b60201c565b620002cb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c49062000266565b90600052602060002090601f016020900481019282620001e8576000855562000234565b82601f106200020357805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023357825182559160200191906001019062000216565b5b50905062000243919062000247565b5090565b5b808211156200026257600081600090555060010162000248565b5090565b600060028204905060018216806200027f57607f821691505b602082108114156200029657620002956200029c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6125e780620002db6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780639fc5ce2a1161007c5780639fc5ce2a14610316578063a457c2d714610320578063a9059cbb14610350578063cce7ec1314610380578063dd62ed3e1461039c578063f2fde38b146103cc57610137565b806370a0823114610284578063715018a6146102b45780638da5cb5b146102be57806395d89b41146102dc57806397304ced146102fa57610137565b806339509351116100ff57806339509351146101f65780633ccfd60b14610226578063449a52f8146102305780634b0bddd21461024c5780636d1b229d1461026857610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b6101446103e8565b6040516101519190611dc6565b60405180910390f35b610174600480360381019061016f9190611ac4565b61047a565b6040516101819190611dab565b60405180910390f35b610192610498565b60405161019f9190611fa8565b60405180910390f35b6101c260048036038101906101bd9190611a31565b6104a2565b6040516101cf9190611dab565b60405180910390f35b6101e061059a565b6040516101ed9190611fc3565b60405180910390f35b610210600480360381019061020b9190611ac4565b6105a3565b60405161021d9190611dab565b60405180910390f35b61022e61064f565b005b61024a60048036038101906102459190611ac4565b61071b565b005b61026660048036038101906102619190611a84565b610800565b005b610282600480360381019061027d9190611b04565b610925565b005b61029e600480360381019061029991906119c4565b610a10565b6040516102ab9190611fa8565b60405180910390f35b6102bc610a58565b005b6102c6610ae0565b6040516102d39190611d90565b60405180910390f35b6102e4610b0a565b6040516102f19190611dc6565b60405180910390f35b610314600480360381019061030f9190611b04565b610b9c565b005b61031e610c87565b005b61033a60048036038101906103359190611ac4565b610dbd565b6040516103479190611dab565b60405180910390f35b61036a60048036038101906103659190611ac4565b610ea8565b6040516103779190611dab565b60405180910390f35b61039a60048036038101906103959190611ac4565b610ec6565b005b6103b660048036038101906103b191906119f1565b610fab565b6040516103c39190611fa8565b60405180910390f35b6103e660048036038101906103e191906119c4565b611032565b005b6060600380546103f79061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546104239061210c565b80156104705780601f1061044557610100808354040283529160200191610470565b820191906000526020600020905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b600061048e61048761112a565b8484611132565b6001905092915050565b6000600254905090565b60006104af8484846112fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104fa61112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190611ea8565b60405180910390fd5b61058e8561058661112a565b858403611132565b60019150509392505050565b60006012905090565b60006106456105b061112a565b8484600160006105be61112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106409190611ffa565b611132565b6001905092915050565b61065761112a565b73ffffffffffffffffffffffffffffffffffffffff16610675610ae0565b73ffffffffffffffffffffffffffffffffffffffff16146106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c290611ec8565b60405180910390fd5b6106d361112a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610718573d6000803e3d6000fd5b50565b6006600061072761112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806107b3575061077d61112a565b73ffffffffffffffffffffffffffffffffffffffff1661079b610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b6107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990611f28565b60405180910390fd5b6107fc828261157e565b5050565b61080861112a565b73ffffffffffffffffffffffffffffffffffffffff16610826610ae0565b73ffffffffffffffffffffffffffffffffffffffff161461087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390611ec8565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f55a5194bc0174fcaf12b2978bef43911466bf63b34db8d1dd1a0d5dcd5c41bea826040516109199190611dab565b60405180910390a25050565b6006600061093161112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109bd575061098761112a565b73ffffffffffffffffffffffffffffffffffffffff166109a5610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b6109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611f28565b60405180910390fd5b610a0d610a07610ae0565b826116de565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a6061112a565b73ffffffffffffffffffffffffffffffffffffffff16610a7e610ae0565b73ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611ec8565b60405180910390fd5b610ade60006118b5565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b199061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b459061210c565b8015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b5050505050905090565b60066000610ba861112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610c345750610bfe61112a565b73ffffffffffffffffffffffffffffffffffffffff16610c1c610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90611f28565b60405180910390fd5b610c84610c7e610ae0565b8261157e565b50565b60066000610c9361112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d1f5750610ce961112a565b73ffffffffffffffffffffffffffffffffffffffff16610d07610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590611f28565b60405180910390fd5b6000610d68610498565b14610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90611e28565b60405180910390fd5b610dbb610db3610ae0565b60075461157e565b565b60008060016000610dcc61112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090611f68565b60405180910390fd5b610e9d610e9461112a565b85858403611132565b600191505092915050565b6000610ebc610eb561112a565b84846112fd565b6001905092915050565b60066000610ed261112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610f5e5750610f2861112a565b73ffffffffffffffffffffffffffffffffffffffff16610f46610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490611f28565b60405180910390fd5b610fa782826116de565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61103a61112a565b73ffffffffffffffffffffffffffffffffffffffff16611058610ae0565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590611ec8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590611e48565b60405180910390fd5b611127816118b5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990611f48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990611e68565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f09190611fa8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490611f08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490611de8565b60405180910390fd5b6113e883838361197b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590611e88565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115019190611ffa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115659190611fa8565b60405180910390a3611578848484611980565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590611f88565b60405180910390fd5b6115fa6000838361197b565b806002600082825461160c9190611ffa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116619190611ffa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116c69190611fa8565b60405180910390a36116da60008383611980565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174590611ee8565b60405180910390fd5b61175a8260008361197b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790611e08565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118379190612050565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189c9190611fa8565b60405180910390a36118b083600084611980565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506119948161256c565b92915050565b6000813590506119a981612583565b92915050565b6000813590506119be8161259a565b92915050565b6000602082840312156119da576119d961219c565b5b60006119e884828501611985565b91505092915050565b60008060408385031215611a0857611a0761219c565b5b6000611a1685828601611985565b9250506020611a2785828601611985565b9150509250929050565b600080600060608486031215611a4a57611a4961219c565b5b6000611a5886828701611985565b9350506020611a6986828701611985565b9250506040611a7a868287016119af565b9150509250925092565b60008060408385031215611a9b57611a9a61219c565b5b6000611aa985828601611985565b9250506020611aba8582860161199a565b9150509250929050565b60008060408385031215611adb57611ada61219c565b5b6000611ae985828601611985565b9250506020611afa858286016119af565b9150509250929050565b600060208284031215611b1a57611b1961219c565b5b6000611b28848285016119af565b91505092915050565b611b3a81612084565b82525050565b611b4981612096565b82525050565b6000611b5a82611fde565b611b648185611fe9565b9350611b748185602086016120d9565b611b7d816121a1565b840191505092915050565b6000611b95602383611fe9565b9150611ba0826121b2565b604082019050919050565b6000611bb8602283611fe9565b9150611bc382612201565b604082019050919050565b6000611bdb601383611fe9565b9150611be682612250565b602082019050919050565b6000611bfe602683611fe9565b9150611c0982612279565b604082019050919050565b6000611c21602283611fe9565b9150611c2c826122c8565b604082019050919050565b6000611c44602683611fe9565b9150611c4f82612317565b604082019050919050565b6000611c67602883611fe9565b9150611c7282612366565b604082019050919050565b6000611c8a602083611fe9565b9150611c95826123b5565b602082019050919050565b6000611cad602183611fe9565b9150611cb8826123de565b604082019050919050565b6000611cd0602583611fe9565b9150611cdb8261242d565b604082019050919050565b6000611cf3601d83611fe9565b9150611cfe8261247c565b602082019050919050565b6000611d16602483611fe9565b9150611d21826124a5565b604082019050919050565b6000611d39602583611fe9565b9150611d44826124f4565b604082019050919050565b6000611d5c601f83611fe9565b9150611d6782612543565b602082019050919050565b611d7b816120c2565b82525050565b611d8a816120cc565b82525050565b6000602082019050611da56000830184611b31565b92915050565b6000602082019050611dc06000830184611b40565b92915050565b60006020820190508181036000830152611de08184611b4f565b905092915050565b60006020820190508181036000830152611e0181611b88565b9050919050565b60006020820190508181036000830152611e2181611bab565b9050919050565b60006020820190508181036000830152611e4181611bce565b9050919050565b60006020820190508181036000830152611e6181611bf1565b9050919050565b60006020820190508181036000830152611e8181611c14565b9050919050565b60006020820190508181036000830152611ea181611c37565b9050919050565b60006020820190508181036000830152611ec181611c5a565b9050919050565b60006020820190508181036000830152611ee181611c7d565b9050919050565b60006020820190508181036000830152611f0181611ca0565b9050919050565b60006020820190508181036000830152611f2181611cc3565b9050919050565b60006020820190508181036000830152611f4181611ce6565b9050919050565b60006020820190508181036000830152611f6181611d09565b9050919050565b60006020820190508181036000830152611f8181611d2c565b9050919050565b60006020820190508181036000830152611fa181611d4f565b9050919050565b6000602082019050611fbd6000830184611d72565b92915050565b6000602082019050611fd86000830184611d81565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612005826120c2565b9150612010836120c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120455761204461213e565b5b828201905092915050565b600061205b826120c2565b9150612066836120c2565b9250828210156120795761207861213e565b5b828203905092915050565b600061208f826120a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156120f75780820151818401526020810190506120dc565b83811115612106576000848401525b50505050565b6000600282049050600182168061212457607f821691505b602082108114156121385761213761216d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552524f523a2041737365747320666f756e6400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e3a2063616c6c6572206973206e6f7420616e2061646d696e000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61257581612084565b811461258057600080fd5b50565b61258c81612096565b811461259757600080fd5b50565b6125a3816120c2565b81146125ae57600080fd5b5056fea2646970667358221220cdfec6063e036cf4476a9d0d582c853d4839e9e226ee7c11b220dd6bfc17f08964736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780639fc5ce2a1161007c5780639fc5ce2a14610316578063a457c2d714610320578063a9059cbb14610350578063cce7ec1314610380578063dd62ed3e1461039c578063f2fde38b146103cc57610137565b806370a0823114610284578063715018a6146102b45780638da5cb5b146102be57806395d89b41146102dc57806397304ced146102fa57610137565b806339509351116100ff57806339509351146101f65780633ccfd60b14610226578063449a52f8146102305780634b0bddd21461024c5780636d1b229d1461026857610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b6101446103e8565b6040516101519190611dc6565b60405180910390f35b610174600480360381019061016f9190611ac4565b61047a565b6040516101819190611dab565b60405180910390f35b610192610498565b60405161019f9190611fa8565b60405180910390f35b6101c260048036038101906101bd9190611a31565b6104a2565b6040516101cf9190611dab565b60405180910390f35b6101e061059a565b6040516101ed9190611fc3565b60405180910390f35b610210600480360381019061020b9190611ac4565b6105a3565b60405161021d9190611dab565b60405180910390f35b61022e61064f565b005b61024a60048036038101906102459190611ac4565b61071b565b005b61026660048036038101906102619190611a84565b610800565b005b610282600480360381019061027d9190611b04565b610925565b005b61029e600480360381019061029991906119c4565b610a10565b6040516102ab9190611fa8565b60405180910390f35b6102bc610a58565b005b6102c6610ae0565b6040516102d39190611d90565b60405180910390f35b6102e4610b0a565b6040516102f19190611dc6565b60405180910390f35b610314600480360381019061030f9190611b04565b610b9c565b005b61031e610c87565b005b61033a60048036038101906103359190611ac4565b610dbd565b6040516103479190611dab565b60405180910390f35b61036a60048036038101906103659190611ac4565b610ea8565b6040516103779190611dab565b60405180910390f35b61039a60048036038101906103959190611ac4565b610ec6565b005b6103b660048036038101906103b191906119f1565b610fab565b6040516103c39190611fa8565b60405180910390f35b6103e660048036038101906103e191906119c4565b611032565b005b6060600380546103f79061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546104239061210c565b80156104705780601f1061044557610100808354040283529160200191610470565b820191906000526020600020905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b600061048e61048761112a565b8484611132565b6001905092915050565b6000600254905090565b60006104af8484846112fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104fa61112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190611ea8565b60405180910390fd5b61058e8561058661112a565b858403611132565b60019150509392505050565b60006012905090565b60006106456105b061112a565b8484600160006105be61112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106409190611ffa565b611132565b6001905092915050565b61065761112a565b73ffffffffffffffffffffffffffffffffffffffff16610675610ae0565b73ffffffffffffffffffffffffffffffffffffffff16146106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c290611ec8565b60405180910390fd5b6106d361112a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610718573d6000803e3d6000fd5b50565b6006600061072761112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806107b3575061077d61112a565b73ffffffffffffffffffffffffffffffffffffffff1661079b610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b6107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990611f28565b60405180910390fd5b6107fc828261157e565b5050565b61080861112a565b73ffffffffffffffffffffffffffffffffffffffff16610826610ae0565b73ffffffffffffffffffffffffffffffffffffffff161461087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390611ec8565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f55a5194bc0174fcaf12b2978bef43911466bf63b34db8d1dd1a0d5dcd5c41bea826040516109199190611dab565b60405180910390a25050565b6006600061093161112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109bd575061098761112a565b73ffffffffffffffffffffffffffffffffffffffff166109a5610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b6109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611f28565b60405180910390fd5b610a0d610a07610ae0565b826116de565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a6061112a565b73ffffffffffffffffffffffffffffffffffffffff16610a7e610ae0565b73ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611ec8565b60405180910390fd5b610ade60006118b5565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b199061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b459061210c565b8015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b5050505050905090565b60066000610ba861112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610c345750610bfe61112a565b73ffffffffffffffffffffffffffffffffffffffff16610c1c610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90611f28565b60405180910390fd5b610c84610c7e610ae0565b8261157e565b50565b60066000610c9361112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d1f5750610ce961112a565b73ffffffffffffffffffffffffffffffffffffffff16610d07610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590611f28565b60405180910390fd5b6000610d68610498565b14610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90611e28565b60405180910390fd5b610dbb610db3610ae0565b60075461157e565b565b60008060016000610dcc61112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090611f68565b60405180910390fd5b610e9d610e9461112a565b85858403611132565b600191505092915050565b6000610ebc610eb561112a565b84846112fd565b6001905092915050565b60066000610ed261112a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610f5e5750610f2861112a565b73ffffffffffffffffffffffffffffffffffffffff16610f46610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490611f28565b60405180910390fd5b610fa782826116de565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61103a61112a565b73ffffffffffffffffffffffffffffffffffffffff16611058610ae0565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590611ec8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590611e48565b60405180910390fd5b611127816118b5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990611f48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990611e68565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f09190611fa8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490611f08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490611de8565b60405180910390fd5b6113e883838361197b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590611e88565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115019190611ffa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115659190611fa8565b60405180910390a3611578848484611980565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590611f88565b60405180910390fd5b6115fa6000838361197b565b806002600082825461160c9190611ffa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116619190611ffa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116c69190611fa8565b60405180910390a36116da60008383611980565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174590611ee8565b60405180910390fd5b61175a8260008361197b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790611e08565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118379190612050565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189c9190611fa8565b60405180910390a36118b083600084611980565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506119948161256c565b92915050565b6000813590506119a981612583565b92915050565b6000813590506119be8161259a565b92915050565b6000602082840312156119da576119d961219c565b5b60006119e884828501611985565b91505092915050565b60008060408385031215611a0857611a0761219c565b5b6000611a1685828601611985565b9250506020611a2785828601611985565b9150509250929050565b600080600060608486031215611a4a57611a4961219c565b5b6000611a5886828701611985565b9350506020611a6986828701611985565b9250506040611a7a868287016119af565b9150509250925092565b60008060408385031215611a9b57611a9a61219c565b5b6000611aa985828601611985565b9250506020611aba8582860161199a565b9150509250929050565b60008060408385031215611adb57611ada61219c565b5b6000611ae985828601611985565b9250506020611afa858286016119af565b9150509250929050565b600060208284031215611b1a57611b1961219c565b5b6000611b28848285016119af565b91505092915050565b611b3a81612084565b82525050565b611b4981612096565b82525050565b6000611b5a82611fde565b611b648185611fe9565b9350611b748185602086016120d9565b611b7d816121a1565b840191505092915050565b6000611b95602383611fe9565b9150611ba0826121b2565b604082019050919050565b6000611bb8602283611fe9565b9150611bc382612201565b604082019050919050565b6000611bdb601383611fe9565b9150611be682612250565b602082019050919050565b6000611bfe602683611fe9565b9150611c0982612279565b604082019050919050565b6000611c21602283611fe9565b9150611c2c826122c8565b604082019050919050565b6000611c44602683611fe9565b9150611c4f82612317565b604082019050919050565b6000611c67602883611fe9565b9150611c7282612366565b604082019050919050565b6000611c8a602083611fe9565b9150611c95826123b5565b602082019050919050565b6000611cad602183611fe9565b9150611cb8826123de565b604082019050919050565b6000611cd0602583611fe9565b9150611cdb8261242d565b604082019050919050565b6000611cf3601d83611fe9565b9150611cfe8261247c565b602082019050919050565b6000611d16602483611fe9565b9150611d21826124a5565b604082019050919050565b6000611d39602583611fe9565b9150611d44826124f4565b604082019050919050565b6000611d5c601f83611fe9565b9150611d6782612543565b602082019050919050565b611d7b816120c2565b82525050565b611d8a816120cc565b82525050565b6000602082019050611da56000830184611b31565b92915050565b6000602082019050611dc06000830184611b40565b92915050565b60006020820190508181036000830152611de08184611b4f565b905092915050565b60006020820190508181036000830152611e0181611b88565b9050919050565b60006020820190508181036000830152611e2181611bab565b9050919050565b60006020820190508181036000830152611e4181611bce565b9050919050565b60006020820190508181036000830152611e6181611bf1565b9050919050565b60006020820190508181036000830152611e8181611c14565b9050919050565b60006020820190508181036000830152611ea181611c37565b9050919050565b60006020820190508181036000830152611ec181611c5a565b9050919050565b60006020820190508181036000830152611ee181611c7d565b9050919050565b60006020820190508181036000830152611f0181611ca0565b9050919050565b60006020820190508181036000830152611f2181611cc3565b9050919050565b60006020820190508181036000830152611f4181611ce6565b9050919050565b60006020820190508181036000830152611f6181611d09565b9050919050565b60006020820190508181036000830152611f8181611d2c565b9050919050565b60006020820190508181036000830152611fa181611d4f565b9050919050565b6000602082019050611fbd6000830184611d72565b92915050565b6000602082019050611fd86000830184611d81565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612005826120c2565b9150612010836120c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120455761204461213e565b5b828201905092915050565b600061205b826120c2565b9150612066836120c2565b9250828210156120795761207861213e565b5b828203905092915050565b600061208f826120a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156120f75780820151818401526020810190506120dc565b83811115612106576000848401525b50505050565b6000600282049050600182168061212457607f821691505b602082108114156121385761213761216d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552524f523a2041737365747320666f756e6400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e3a2063616c6c6572206973206e6f7420616e2061646d696e000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61257581612084565b811461258057600080fd5b50565b61258c81612096565b811461259757600080fd5b50565b6125a3816120c2565b81146125ae57600080fd5b5056fea2646970667358221220cdfec6063e036cf4476a9d0d582c853d4839e9e226ee7c11b220dd6bfc17f08964736f6c63430008060033
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.