Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
3,620,000 DGLD
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
deafGold
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-06 */ /** *Submitted for verification at Etherscan.io on 2021-09-06 */ // SPDX-License-Identifier: UNLICENSED 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; } } /** * @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 deaf 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 ); } /** * @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); } /** * @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 {} } pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking deaf that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } contract deafGold is Context, ERC20 { address public deafContractAddress = 0xc9Cb0FEe73f060Db66D2693D92d75c825B1afdbF; IERC721Enumerable public deafContract; uint256 public deafGoldPerTokenId = 10000 * (10**decimals()); mapping(uint256 => bool) public hasClaimed; constructor() ERC20("deaf Gold", "DGLD") { deafContract = IERC721Enumerable(deafContractAddress); } function claimById(uint256 tokenId) external { require( _msgSender() == deafContract.ownerOf(tokenId), "MUST_OWN_TOKEN_ID" ); _claim(tokenId, _msgSender()); } function claimAllForOwner() external { uint256 tokenBalanceOwner = deafContract.balanceOf(_msgSender()); require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); for (uint256 i = 0; i < tokenBalanceOwner; i++) { _claim( deafContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } function claimRangeForOwner(uint256 ownerIndexStart, uint256 ownerIndexEnd) external { uint256 tokenBalanceOwner = deafContract.balanceOf(_msgSender()); require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); require( ownerIndexStart >= 0 && ownerIndexEnd < tokenBalanceOwner, "INDEX_OUT_OF_RANGE" ); for (uint256 i = ownerIndexStart; i <= ownerIndexEnd; i++) { _claim( deafContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } function _claim(uint256 tokenId,address tokenOwner) internal { require( !hasClaimed[tokenId], "GOLD_CLAIMED_FOR_TOKEN_ID" ); hasClaimed[tokenId] = true; _mint(tokenOwner, deafGoldPerTokenId); } }
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":"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":[],"name":"claimAllForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownerIndexStart","type":"uint256"},{"internalType":"uint256","name":"ownerIndexEnd","type":"uint256"}],"name":"claimRangeForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deafContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deafContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deafGoldPerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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"}]
Contract Creation Code
6080604052600580546001600160a01b03191673c9cb0fee73f060db66d2693d92d75c825b1afdbf17905562000034620000ee565b6200004190600a620001e6565b6200004f90612710620002de565b6007553480156200005f57600080fd5b506040805180820182526009815268191958598811dbdb1960ba1b6020808301918252835180850190945260048452631111d31160e21b908401528151919291620000ad91600391620000f3565b508051620000c3906004906020840190620000f3565b5050600554600680546001600160a01b0319166001600160a01b039092169190911790555062000353565b601290565b828054620001019062000300565b90600052602060002090601f01602090048101928262000125576000855562000170565b82601f106200014057805160ff191683800117855562000170565b8280016001018555821562000170579182015b828111156200017057825182559160200191906001019062000153565b506200017e92915062000182565b5090565b5b808211156200017e576000815560010162000183565b80825b6001808611620001ad5750620001dd565b818704821115620001c257620001c26200033d565b80861615620001d057918102915b9490941c9380026200019c565b94509492505050565b6000620001fa60001960ff85168462000201565b9392505050565b6000826200021257506001620001fa565b816200022157506000620001fa565b81600181146200023a5760028114620002455762000279565b6001915050620001fa565b60ff8411156200025957620002596200033d565b6001841b9150848211156200027257620002726200033d565b50620001fa565b5060208310610133831016604e8410600b8410161715620002b1575081810a83811115620002ab57620002ab6200033d565b620001fa565b620002c0848484600162000199565b808604821115620002d557620002d56200033d565b02949350505050565b6000816000190483118215151615620002fb57620002fb6200033d565b500290565b6002810460018216806200031557607f821691505b602082108114156200033757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6113f080620003636000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c8063878e7ea5116100b2578063a9059cbb11610081578063cbf0b27611610066578063cbf0b27614610257578063ce5165071461025f578063dd62ed3e1461027257610136565b8063a9059cbb14610231578063becf77411461024457610136565b8063878e7ea5146101f957806395d89b411461020e578063a0d9d2b614610216578063a457c2d71461021e57610136565b8063313ce5671161010957806339509351116100ee57806339509351146101cb57806348c1bdec146101de57806370a08231146101e657610136565b8063313ce567146101a15780633181e26b146101b657610136565b806306fdde031461013b578063095ea7b31461015957806318160ddd1461017957806323b872dd1461018e575b600080fd5b610143610285565b6040516101509190610e9e565b60405180910390f35b61016c610167366004610dd0565b610317565b6040516101509190610e93565b610181610334565b60405161015091906112ad565b61016c61019c366004610d90565b61033a565b6101a96103fa565b60405161015091906112b6565b6101be6103ff565b6040516101509190610e4c565b61016c6101d9366004610dd0565b61041b565b6101be61047c565b6101816101f4366004610d19565b610498565b61020c610207366004610e2b565b6104c0565b005b61014361065c565b61018161066b565b61016c61022c366004610dd0565b610671565b61016c61023f366004610dd0565b6106f7565b61020c610252366004610dfb565b61070b565b61020c610811565b61016c61026d366004610dfb565b610913565b610181610280366004610d58565b610928565b606060038054610294906112dc565b80601f01602080910402602001604051908101604052809291908181526020018280546102c0906112dc565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b600061032b610324610960565b8484610964565b50600192915050565b60025490565b6000610347848484610a3f565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020526040812081610375610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156103db5760405162461bcd60e51b81526004016103d290611094565b60405180910390fd5b6103ef856103e7610960565b858403610964565b506001949350505050565b601290565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b600061032b610428610960565b848460016000610436610960565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b168152925290205461047791906112c4565b610964565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b60065460009073ffffffffffffffffffffffffffffffffffffffff166370a082316104e9610960565b6040518263ffffffff1660e01b81526004016105059190610e4c565b60206040518083038186803b15801561051d57600080fd5b505afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105559190610e13565b9050600081116105775760405162461bcd60e51b81526004016103d2906111e2565b8082106105965760405162461bcd60e51b81526004016103d290610f6c565b825b828111610656576006546106449073ffffffffffffffffffffffffffffffffffffffff16632f745c596105c9610960565b846040518363ffffffff1660e01b81526004016105e7929190610e6d565b60206040518083038186803b1580156105ff57600080fd5b505afa158015610613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106379190610e13565b61063f610960565b610bb1565b8061064e81611330565b915050610598565b50505050565b606060048054610294906112dc565b60075481565b60008060016000610680610960565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918816815292529020549050828110156106d95760405162461bcd60e51b81526004016103d290611219565b6106ed6106e4610960565b85858403610964565b5060019392505050565b600061032b610704610960565b8484610a3f565b6006546040517f6352211e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690636352211e906107619084906004016112ad565b60206040518083038186803b15801561077957600080fd5b505afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b19190610d3c565b73ffffffffffffffffffffffffffffffffffffffff166107cf610960565b73ffffffffffffffffffffffffffffffffffffffff16146108025760405162461bcd60e51b81526004016103d29061105d565b61080e8161063f610960565b50565b60065460009073ffffffffffffffffffffffffffffffffffffffff166370a0823161083a610960565b6040518263ffffffff1660e01b81526004016108569190610e4c565b60206040518083038186803b15801561086e57600080fd5b505afa158015610882573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a69190610e13565b9050600081116108c85760405162461bcd60e51b81526004016103d2906111e2565b60005b8181101561090f576006546108fd9073ffffffffffffffffffffffffffffffffffffffff16632f745c596105c9610960565b8061090781611330565b9150506108cb565b5050565b60086020526000908152604090205460ff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166109975760405162461bcd60e51b81526004016103d290611185565b73ffffffffffffffffffffffffffffffffffffffff82166109ca5760405162461bcd60e51b81526004016103d290610fa3565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a329085906112ad565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a725760405162461bcd60e51b81526004016103d2906110f1565b73ffffffffffffffffffffffffffffffffffffffff8216610aa55760405162461bcd60e51b81526004016103d290610f0f565b610ab0838383610c25565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610af65760405162461bcd60e51b81526004016103d290611000565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610b3a9084906112c4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9e91906112ad565b60405180910390a3610656848484610c25565b60008281526008602052604090205460ff1615610be05760405162461bcd60e51b81526004016103d29061114e565b600082815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560075461090f908290610c2a565b505050565b73ffffffffffffffffffffffffffffffffffffffff8216610c5d5760405162461bcd60e51b81526004016103d290611276565b610c6960008383610c25565b8060026000828254610c7b91906112c4565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610cb59084906112c4565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d059085906112ad565b60405180910390a361090f60008383610c25565b600060208284031215610d2a578081fd5b8135610d3581611398565b9392505050565b600060208284031215610d4d578081fd5b8151610d3581611398565b60008060408385031215610d6a578081fd5b8235610d7581611398565b91506020830135610d8581611398565b809150509250929050565b600080600060608486031215610da4578081fd5b8335610daf81611398565b92506020840135610dbf81611398565b929592945050506040919091013590565b60008060408385031215610de2578182fd5b8235610ded81611398565b946020939093013593505050565b600060208284031215610e0c578081fd5b5035919050565b600060208284031215610e24578081fd5b5051919050565b60008060408385031215610e3d578182fd5b50508035926020909101359150565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610eca57858101830151858201604001528201610eae565b81811115610edb5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f494e4445585f4f55545f4f465f52414e47450000000000000000000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526011908201527f4d5553545f4f574e5f544f4b454e5f4944000000000000000000000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f474f4c445f434c41494d45445f464f525f544f4b454e5f494400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252600f908201527f4e4f5f544f4b454e535f4f574e45440000000000000000000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156112d7576112d7611369565b500190565b6002810460018216806112f057607f821691505b6020821081141561132a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561136257611362611369565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461080e57600080fdfea2646970667358221220cffce65f60446e1e812342ab319dd85f811fc9381d8f780e3f8300f03c4c61e164736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101365760003560e01c8063878e7ea5116100b2578063a9059cbb11610081578063cbf0b27611610066578063cbf0b27614610257578063ce5165071461025f578063dd62ed3e1461027257610136565b8063a9059cbb14610231578063becf77411461024457610136565b8063878e7ea5146101f957806395d89b411461020e578063a0d9d2b614610216578063a457c2d71461021e57610136565b8063313ce5671161010957806339509351116100ee57806339509351146101cb57806348c1bdec146101de57806370a08231146101e657610136565b8063313ce567146101a15780633181e26b146101b657610136565b806306fdde031461013b578063095ea7b31461015957806318160ddd1461017957806323b872dd1461018e575b600080fd5b610143610285565b6040516101509190610e9e565b60405180910390f35b61016c610167366004610dd0565b610317565b6040516101509190610e93565b610181610334565b60405161015091906112ad565b61016c61019c366004610d90565b61033a565b6101a96103fa565b60405161015091906112b6565b6101be6103ff565b6040516101509190610e4c565b61016c6101d9366004610dd0565b61041b565b6101be61047c565b6101816101f4366004610d19565b610498565b61020c610207366004610e2b565b6104c0565b005b61014361065c565b61018161066b565b61016c61022c366004610dd0565b610671565b61016c61023f366004610dd0565b6106f7565b61020c610252366004610dfb565b61070b565b61020c610811565b61016c61026d366004610dfb565b610913565b610181610280366004610d58565b610928565b606060038054610294906112dc565b80601f01602080910402602001604051908101604052809291908181526020018280546102c0906112dc565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b600061032b610324610960565b8484610964565b50600192915050565b60025490565b6000610347848484610a3f565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020526040812081610375610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156103db5760405162461bcd60e51b81526004016103d290611094565b60405180910390fd5b6103ef856103e7610960565b858403610964565b506001949350505050565b601290565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b600061032b610428610960565b848460016000610436610960565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b168152925290205461047791906112c4565b610964565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b60065460009073ffffffffffffffffffffffffffffffffffffffff166370a082316104e9610960565b6040518263ffffffff1660e01b81526004016105059190610e4c565b60206040518083038186803b15801561051d57600080fd5b505afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105559190610e13565b9050600081116105775760405162461bcd60e51b81526004016103d2906111e2565b8082106105965760405162461bcd60e51b81526004016103d290610f6c565b825b828111610656576006546106449073ffffffffffffffffffffffffffffffffffffffff16632f745c596105c9610960565b846040518363ffffffff1660e01b81526004016105e7929190610e6d565b60206040518083038186803b1580156105ff57600080fd5b505afa158015610613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106379190610e13565b61063f610960565b610bb1565b8061064e81611330565b915050610598565b50505050565b606060048054610294906112dc565b60075481565b60008060016000610680610960565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918816815292529020549050828110156106d95760405162461bcd60e51b81526004016103d290611219565b6106ed6106e4610960565b85858403610964565b5060019392505050565b600061032b610704610960565b8484610a3f565b6006546040517f6352211e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690636352211e906107619084906004016112ad565b60206040518083038186803b15801561077957600080fd5b505afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b19190610d3c565b73ffffffffffffffffffffffffffffffffffffffff166107cf610960565b73ffffffffffffffffffffffffffffffffffffffff16146108025760405162461bcd60e51b81526004016103d29061105d565b61080e8161063f610960565b50565b60065460009073ffffffffffffffffffffffffffffffffffffffff166370a0823161083a610960565b6040518263ffffffff1660e01b81526004016108569190610e4c565b60206040518083038186803b15801561086e57600080fd5b505afa158015610882573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a69190610e13565b9050600081116108c85760405162461bcd60e51b81526004016103d2906111e2565b60005b8181101561090f576006546108fd9073ffffffffffffffffffffffffffffffffffffffff16632f745c596105c9610960565b8061090781611330565b9150506108cb565b5050565b60086020526000908152604090205460ff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166109975760405162461bcd60e51b81526004016103d290611185565b73ffffffffffffffffffffffffffffffffffffffff82166109ca5760405162461bcd60e51b81526004016103d290610fa3565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a329085906112ad565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a725760405162461bcd60e51b81526004016103d2906110f1565b73ffffffffffffffffffffffffffffffffffffffff8216610aa55760405162461bcd60e51b81526004016103d290610f0f565b610ab0838383610c25565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610af65760405162461bcd60e51b81526004016103d290611000565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610b3a9084906112c4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9e91906112ad565b60405180910390a3610656848484610c25565b60008281526008602052604090205460ff1615610be05760405162461bcd60e51b81526004016103d29061114e565b600082815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560075461090f908290610c2a565b505050565b73ffffffffffffffffffffffffffffffffffffffff8216610c5d5760405162461bcd60e51b81526004016103d290611276565b610c6960008383610c25565b8060026000828254610c7b91906112c4565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610cb59084906112c4565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d059085906112ad565b60405180910390a361090f60008383610c25565b600060208284031215610d2a578081fd5b8135610d3581611398565b9392505050565b600060208284031215610d4d578081fd5b8151610d3581611398565b60008060408385031215610d6a578081fd5b8235610d7581611398565b91506020830135610d8581611398565b809150509250929050565b600080600060608486031215610da4578081fd5b8335610daf81611398565b92506020840135610dbf81611398565b929592945050506040919091013590565b60008060408385031215610de2578182fd5b8235610ded81611398565b946020939093013593505050565b600060208284031215610e0c578081fd5b5035919050565b600060208284031215610e24578081fd5b5051919050565b60008060408385031215610e3d578182fd5b50508035926020909101359150565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610eca57858101830151858201604001528201610eae565b81811115610edb5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f494e4445585f4f55545f4f465f52414e47450000000000000000000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526011908201527f4d5553545f4f574e5f544f4b454e5f4944000000000000000000000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f474f4c445f434c41494d45445f464f525f544f4b454e5f494400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252600f908201527f4e4f5f544f4b454e535f4f574e45440000000000000000000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156112d7576112d7611369565b500190565b6002810460018216806112f057607f821691505b6020821081141561132a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561136257611362611369565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461080e57600080fdfea2646970667358221220cffce65f60446e1e812342ab319dd85f811fc9381d8f780e3f8300f03c4c61e164736f6c63430008000033
Deployed Bytecode Sourcemap
23861:1914:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6243:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8551:210;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7363:108::-;;;:::i;:::-;;;;;;;:::i;9243:529::-;;;;;;:::i;:::-;;:::i;7205:93::-;;;:::i;:::-;;;;;;;:::i;23990:37::-;;;:::i;:::-;;;;;;;:::i;10181:297::-;;;;;;:::i;:::-;;:::i;23904:79::-;;;:::i;7534:177::-;;;;;;:::i;:::-;;:::i;24900:600::-;;;;;;:::i;:::-;;:::i;:::-;;6462:104;;;:::i;24036:60::-;;;:::i;10981:482::-;;;;;;:::i;:::-;;:::i;7924:216::-;;;;;;:::i;:::-;;:::i;24277:218::-;;;;;;:::i;:::-;;:::i;24503:389::-;;;:::i;24105:42::-;;;;;;:::i;:::-;;:::i;8203:201::-;;;;;;:::i;:::-;;:::i;6243:100::-;6297:13;6330:5;6323:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6243:100;:::o;8551:210::-;8670:4;8692:39;8701:12;:10;:12::i;:::-;8715:7;8724:6;8692:8;:39::i;:::-;-1:-1:-1;8749:4:0;8551:210;;;;:::o;7363:108::-;7451:12;;7363:108;:::o;9243:529::-;9383:4;9400:36;9410:6;9418:9;9429:6;9400:9;:36::i;:::-;9476:19;;;9449:24;9476:19;;;:11;:19;;;;;9449:24;9496:12;:10;:12::i;:::-;9476:33;;;;;;;;;;;;;;;;9449:60;;9562:6;9542:16;:26;;9520:116;;;;-1:-1:-1;;;9520:116:0;;;;;;;:::i;:::-;;;;;;;;;9672:57;9681:6;9689:12;:10;:12::i;:::-;9722:6;9703:16;:25;9672:8;:57::i;:::-;-1:-1:-1;9760:4:0;;9243:529;-1:-1:-1;;;;9243:529:0:o;7205:93::-;7288:2;7205:93;:::o;23990:37::-;;;;;;:::o;10181:297::-;10296:4;10318:130;10341:12;:10;:12::i;:::-;10368:7;10427:10;10390:11;:25;10402:12;:10;:12::i;:::-;10390:25;;;;;;;;;;;;;;;;;;-1:-1:-1;10390:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10318:8;:130::i;23904:79::-;;;;;;:::o;7534:177::-;7685:18;;7653:7;7685:18;;;;;;;;;;;;7534:177::o;24900:600::-;25038:12;;25010:25;;25038:12;;:22;25061:12;:10;:12::i;:::-;25038:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25010:64;;25115:1;25095:17;:21;25087:49;;;;-1:-1:-1;;;25087:49:0;;;;;;;:::i;:::-;25211:17;25195:13;:33;25149:125;;;;-1:-1:-1;;;25149:125:0;;;;;;;:::i;:::-;25304:15;25287:206;25326:13;25321:1;:18;25287:206;;25386:12;;25361:120;;25386:12;;:32;25419:12;:10;:12::i;:::-;25433:1;25386:49;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25454:12;:10;:12::i;:::-;25361:6;:120::i;:::-;25341:3;;;;:::i;:::-;;;;25287:206;;;;24900:600;;;:::o;6462:104::-;6518:13;6551:7;6544:14;;;;;:::i;24036:60::-;;;;:::o;10981:482::-;11101:4;11123:24;11150:11;:25;11162:12;:10;:12::i;:::-;11150:25;;;;;;;;;;;;;;;;;;-1:-1:-1;11150:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11217:35:0;;;;11195:122;;;;-1:-1:-1;;;11195:122:0;;;;;;;:::i;:::-;11353:67;11362:12;:10;:12::i;:::-;11376:7;11404:15;11385:16;:34;11353:8;:67::i;:::-;-1:-1:-1;11451:4:0;;10981:482;-1:-1:-1;;;10981:482:0:o;7924:216::-;8046:4;8068:42;8078:12;:10;:12::i;:::-;8092:9;8103:6;8068:9;:42::i;24277:218::-;24371:12;;:29;;;;;:12;;;;;:20;;:29;;24392:7;;24371:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24355:45;;:12;:10;:12::i;:::-;:45;;;24333:112;;;;-1:-1:-1;;;24333:112:0;;;;;;;:::i;:::-;24458:29;24465:7;24474:12;:10;:12::i;24458:29::-;24277:218;:::o;24503:389::-;24579:12;;24551:25;;24579:12;;:22;24602:12;:10;:12::i;:::-;24579:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24551:64;;24656:1;24636:17;:21;24628:49;;;;-1:-1:-1;;;24628:49:0;;;;;;;:::i;:::-;24695:9;24690:195;24714:17;24710:1;:21;24690:195;;;24778:12;;24753:120;;24778:12;;:32;24811:12;:10;:12::i;24753:120::-;24733:3;;;;:::i;:::-;;;;24690:195;;;;24503:389;:::o;24105:42::-;;;;;;;;;;;;;;;:::o;8203:201::-;8369:18;;;;8337:7;8369:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8203:201::o;680:98::-;760:10;680:98;:::o;14771:380::-;14907:19;;;14899:68;;;;-1:-1:-1;;;14899:68:0;;;;;;;:::i;:::-;14986:21;;;14978:68;;;;-1:-1:-1;;;14978:68:0;;;;;;;:::i;:::-;15059:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15111:32;;;;;15089:6;;15111:32;:::i;:::-;;;;;;;;14771:380;;;:::o;11953:770::-;12093:20;;;12085:70;;;;-1:-1:-1;;;12085:70:0;;;;;;;:::i;:::-;12174:23;;;12166:71;;;;-1:-1:-1;;;12166:71:0;;;;;;;:::i;:::-;12250:47;12271:6;12279:9;12290:6;12250:20;:47::i;:::-;12334:17;;;12310:21;12334:17;;;;;;;;;;;12384:23;;;;12362:111;;;;-1:-1:-1;;;12362:111:0;;;;;;;:::i;:::-;12509:17;;;;:9;:17;;;;;;;;;;;12529:22;;;12509:42;;12573:20;;;;;;;;:30;;12545:6;;12509:9;12573:30;;12545:6;;12573:30;:::i;:::-;;;;;;;;12638:9;12621:35;;12630:6;12621:35;;;12649:6;12621:35;;;;;;:::i;:::-;;;;;;;;12669:46;12689:6;12697:9;12708:6;12669:19;:46::i;25508:264::-;25603:19;;;;:10;:19;;;;;;;;25602:20;25580:95;;;;-1:-1:-1;;;25580:95:0;;;;;;;:::i;:::-;25688:19;;;;:10;:19;;;;;:26;;;;25710:4;25688:26;;;25745:18;;25727:37;;25733:10;;25727:5;:37::i;15751:125::-;;;;:::o;13010:399::-;13094:21;;;13086:65;;;;-1:-1:-1;;;13086:65:0;;;;;;;:::i;:::-;13164:49;13193:1;13197:7;13206:6;13164:20;:49::i;:::-;13242:6;13226:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13259:18:0;;;:9;:18;;;;;;;;;;:28;;13281:6;;13259:9;:28;;13281:6;;13259:28;:::i;:::-;;;;-1:-1:-1;;13303:37:0;;;;;;13320:1;;13303:37;;;;13333:6;;13303:37;:::i;:::-;;;;;;;;13353:48;13381:1;13385:7;13394:6;13353:19;:48::i;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;:::-;262:5;84:189;-1:-1:-1;;;84:189:1:o;278:263::-;;401:2;389:9;380:7;376:23;372:32;369:2;;;422:6;414;407:22;369:2;459:9;453:16;478:33;505:5;478:33;:::i;546:402::-;;;675:2;663:9;654:7;650:23;646:32;643:2;;;696:6;688;681:22;643:2;740:9;727:23;759:33;786:5;759:33;:::i;:::-;811:5;-1:-1:-1;868:2:1;853:18;;840:32;881:35;840:32;881:35;:::i;:::-;935:7;925:17;;;633:315;;;;;:::o;953:470::-;;;;1099:2;1087:9;1078:7;1074:23;1070:32;1067:2;;;1120:6;1112;1105:22;1067:2;1164:9;1151:23;1183:33;1210:5;1183:33;:::i;:::-;1235:5;-1:-1:-1;1292:2:1;1277:18;;1264:32;1305:35;1264:32;1305:35;:::i;:::-;1057:366;;1359:7;;-1:-1:-1;;;1413:2:1;1398:18;;;;1385:32;;1057:366::o;1428:327::-;;;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1622:9;1609:23;1641:33;1668:5;1641:33;:::i;:::-;1693:5;1745:2;1730:18;;;;1717:32;;-1:-1:-1;;;1515:240:1:o;1760:190::-;;1872:2;1860:9;1851:7;1847:23;1843:32;1840:2;;;1893:6;1885;1878:22;1840:2;-1:-1:-1;1921:23:1;;1830:120;-1:-1:-1;1830:120:1:o;1955:194::-;;2078:2;2066:9;2057:7;2053:23;2049:32;2046:2;;;2099:6;2091;2084:22;2046:2;-1:-1:-1;2127:16:1;;2036:113;-1:-1:-1;2036:113:1:o;2154:258::-;;;2283:2;2271:9;2262:7;2258:23;2254:32;2251:2;;;2304:6;2296;2289:22;2251:2;-1:-1:-1;;2332:23:1;;;2402:2;2387:18;;;2374:32;;-1:-1:-1;2241:171:1:o;2417:226::-;2593:42;2581:55;;;;2563:74;;2551:2;2536:18;;2518:125::o;2648:297::-;2852:42;2840:55;;;;2822:74;;2927:2;2912:18;;2905:34;2810:2;2795:18;;2777:168::o;2950:187::-;3115:14;;3108:22;3090:41;;3078:2;3063:18;;3045:92::o;3398:662::-;;3539:2;3568;3557:9;3550:21;3600:6;3594:13;3643:6;3638:2;3627:9;3623:18;3616:34;3668:4;3681:140;3695:6;3692:1;3689:13;3681:140;;;3790:14;;;3786:23;;3780:30;3756:17;;;3775:2;3752:26;3745:66;3710:10;;3681:140;;;3839:6;3836:1;3833:13;3830:2;;;3909:4;3904:2;3895:6;3884:9;3880:22;3876:31;3869:45;3830:2;-1:-1:-1;3976:2:1;3964:15;3981:66;3960:88;3945:104;;;;4051:2;3941:113;;3519:541;-1:-1:-1;;;3519:541:1:o;4065:399::-;4267:2;4249:21;;;4306:2;4286:18;;;4279:30;4345:34;4340:2;4325:18;;4318:62;4416:5;4411:2;4396:18;;4389:33;4454:3;4439:19;;4239:225::o;4469:342::-;4671:2;4653:21;;;4710:2;4690:18;;;4683:30;4749:20;4744:2;4729:18;;4722:48;4802:2;4787:18;;4643:168::o;4816:398::-;5018:2;5000:21;;;5057:2;5037:18;;;5030:30;5096:34;5091:2;5076:18;;5069:62;5167:4;5162:2;5147:18;;5140:32;5204:3;5189:19;;4990:224::o;5219:402::-;5421:2;5403:21;;;5460:2;5440:18;;;5433:30;5499:34;5494:2;5479:18;;5472:62;5570:8;5565:2;5550:18;;5543:36;5611:3;5596:19;;5393:228::o;5626:341::-;5828:2;5810:21;;;5867:2;5847:18;;;5840:30;5906:19;5901:2;5886:18;;5879:47;5958:2;5943:18;;5800:167::o;5972:404::-;6174:2;6156:21;;;6213:2;6193:18;;;6186:30;6252:34;6247:2;6232:18;;6225:62;6323:10;6318:2;6303:18;;6296:38;6366:3;6351:19;;6146:230::o;6381:401::-;6583:2;6565:21;;;6622:2;6602:18;;;6595:30;6661:34;6656:2;6641:18;;6634:62;6732:7;6727:2;6712:18;;6705:35;6772:3;6757:19;;6555:227::o;6787:349::-;6989:2;6971:21;;;7028:2;7008:18;;;7001:30;7067:27;7062:2;7047:18;;7040:55;7127:2;7112:18;;6961:175::o;7141:400::-;7343:2;7325:21;;;7382:2;7362:18;;;7355:30;7421:34;7416:2;7401:18;;7394:62;7492:6;7487:2;7472:18;;7465:34;7531:3;7516:19;;7315:226::o;7546:339::-;7748:2;7730:21;;;7787:2;7767:18;;;7760:30;7826:17;7821:2;7806:18;;7799:45;7876:2;7861:18;;7720:165::o;7890:401::-;8092:2;8074:21;;;8131:2;8111:18;;;8104:30;8170:34;8165:2;8150:18;;8143:62;8241:7;8236:2;8221:18;;8214:35;8281:3;8266:19;;8064:227::o;8296:355::-;8498:2;8480:21;;;8537:2;8517:18;;;8510:30;8576:33;8571:2;8556:18;;8549:61;8642:2;8627:18;;8470:181::o;8656:177::-;8802:25;;;8790:2;8775:18;;8757:76::o;8838:184::-;9010:4;8998:17;;;;8980:36;;8968:2;8953:18;;8935:87::o;9027:128::-;;9098:1;9094:6;9091:1;9088:13;9085:2;;;9104:18;;:::i;:::-;-1:-1:-1;9140:9:1;;9075:80::o;9160:437::-;9245:1;9235:12;;9292:1;9282:12;;;9303:2;;9357:4;9349:6;9345:17;9335:27;;9303:2;9410;9402:6;9399:14;9379:18;9376:38;9373:2;;;9447:77;9444:1;9437:88;9548:4;9545:1;9538:15;9576:4;9573:1;9566:15;9373:2;;9215:382;;;:::o;9602:195::-;;9672:66;9665:5;9662:77;9659:2;;;9742:18;;:::i;:::-;-1:-1:-1;9789:1:1;9778:13;;9649:148::o;9802:184::-;9854:77;9851:1;9844:88;9951:4;9948:1;9941:15;9975:4;9972:1;9965:15;9991:156;10079:42;10072:5;10068:54;10061:5;10058:65;10048:2;;10137:1;10134;10127:12
Swarm Source
ipfs://cffce65f60446e1e812342ab319dd85f811fc9381d8f780e3f8300f03c4c61e1
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.