Token
RabbitDollar (USDR)
ERC-20
Source Code
Overview
Max Total Supply
3,065,360,492.806574 USDR
Holders
196
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
5,000,000 USDRLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
DummyToken
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-24 */ // Sources flattened with hardhat v2.9.9 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/DummyToken.sol // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.17; contract DummyToken is ERC20 { address public immutable owner; uint test; constructor() ERC20("RabbitDollar", "USDR") { owner = msg.sender; } function mint(address account, uint256 amount) external virtual { require(msg.sender == owner, "ONLY_OWNER"); _mint(account, amount); } function decimals() public view virtual override returns (uint8) { return 6; } function doSomething() external { test++; } }
Contract ABI
API[{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"doSomething","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600c81526020017f526162626974446f6c6c617200000000000000000000000000000000000000008152506040518060400160405280600481526020017f555344520000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000358565b508060049081620000a1919062000358565b5050503373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200043f565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200016057607f821691505b60208210810362000176576200017562000118565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620001a1565b620001ec8683620001a1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000239620002336200022d8462000204565b6200020e565b62000204565b9050919050565b6000819050919050565b620002558362000218565b6200026d620002648262000240565b848454620001ae565b825550505050565b600090565b6200028462000275565b620002918184846200024a565b505050565b5b81811015620002b957620002ad6000826200027a565b60018101905062000297565b5050565b601f8211156200030857620002d2816200017c565b620002dd8462000191565b81016020851015620002ed578190505b62000305620002fc8562000191565b83018262000296565b50505b505050565b600082821c905092915050565b60006200032d600019846008026200030d565b1980831691505092915050565b60006200034883836200031a565b9150826002028217905092915050565b6200036382620000de565b67ffffffffffffffff8111156200037f576200037e620000e9565b5b6200038b825462000147565b62000398828285620002bd565b600060209050601f831160018114620003d05760008415620003bb578287015190505b620003c785826200033a565b86555062000437565b601f198416620003e0866200017c565b60005b828110156200040a57848901518255600182019150602085019450602081019050620003e3565b868310156200042a578489015162000426601f8916826200031a565b8355505b6001600288020188555050505b505050505050565b60805161162e620004626000396000818161042b0152610529015261162e6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461024d578063a457c2d71461026b578063a9059cbb1461029b578063dd62ed3e146102cb576100ea565b806370a08231146101f557806382692679146102255780638da5cb5b1461022f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340c10f19146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610dc1565b60405180910390f35b61012760048036038101906101229190610e7c565b61038d565b6040516101349190610ed7565b60405180910390f35b6101456103b0565b6040516101529190610f01565b60405180910390f35b61017560048036038101906101709190610f1c565b6103ba565b6040516101829190610ed7565b60405180910390f35b6101936103e9565b6040516101a09190610f8b565b60405180910390f35b6101c360048036038101906101be9190610e7c565b6103f2565b6040516101d09190610ed7565b60405180910390f35b6101f360048036038101906101ee9190610e7c565b610429565b005b61020f600480360381019061020a9190610fa6565b6104c5565b60405161021c9190610f01565b60405180910390f35b61022d61050d565b005b610237610527565b6040516102449190610fe2565b60405180910390f35b61025561054b565b6040516102629190610dc1565b60405180910390f35b61028560048036038101906102809190610e7c565b6105dd565b6040516102929190610ed7565b60405180910390f35b6102b560048036038101906102b09190610e7c565b610654565b6040516102c29190610ed7565b60405180910390f35b6102e560048036038101906102e09190610ffd565b610677565b6040516102f29190610f01565b60405180910390f35b60606003805461030a9061106c565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061106c565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986106fe565b90506103a5818585610706565b600191505092915050565b6000600254905090565b6000806103c56106fe565b90506103d28582856108cf565b6103dd85858561095b565b60019150509392505050565b60006006905090565b6000806103fd6106fe565b905061041e81858561040f8589610677565b61041991906110cc565b610706565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ae9061114c565b60405180910390fd5b6104c18282610bd1565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560008154809291906105209061116c565b9190505550565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606004805461055a9061106c565b80601f01602080910402602001604051908101604052809291908181526020018280546105869061106c565b80156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b5050505050905090565b6000806105e86106fe565b905060006105f68286610677565b90508381101561063b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063290611226565b60405180910390fd5b6106488286868403610706565b60019250505092915050565b60008061065f6106fe565b905061066c81858561095b565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c906112b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db9061134a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108c29190610f01565b60405180910390a3505050565b60006108db8484610677565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109555781811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906113b6565b60405180910390fd5b6109548484848403610706565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190611448565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a30906114da565b60405180910390fd5b610a44838383610d27565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061156c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bb89190610f01565b60405180910390a3610bcb848484610d2c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906115d8565b60405180910390fd5b610c4c60008383610d27565b8060026000828254610c5e91906110cc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d0f9190610f01565b60405180910390a3610d2360008383610d2c565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d6b578082015181840152602081019050610d50565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d9382610d31565b610d9d8185610d3c565b9350610dad818560208601610d4d565b610db681610d77565b840191505092915050565b60006020820190508181036000830152610ddb8184610d88565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e1382610de8565b9050919050565b610e2381610e08565b8114610e2e57600080fd5b50565b600081359050610e4081610e1a565b92915050565b6000819050919050565b610e5981610e46565b8114610e6457600080fd5b50565b600081359050610e7681610e50565b92915050565b60008060408385031215610e9357610e92610de3565b5b6000610ea185828601610e31565b9250506020610eb285828601610e67565b9150509250929050565b60008115159050919050565b610ed181610ebc565b82525050565b6000602082019050610eec6000830184610ec8565b92915050565b610efb81610e46565b82525050565b6000602082019050610f166000830184610ef2565b92915050565b600080600060608486031215610f3557610f34610de3565b5b6000610f4386828701610e31565b9350506020610f5486828701610e31565b9250506040610f6586828701610e67565b9150509250925092565b600060ff82169050919050565b610f8581610f6f565b82525050565b6000602082019050610fa06000830184610f7c565b92915050565b600060208284031215610fbc57610fbb610de3565b5b6000610fca84828501610e31565b91505092915050565b610fdc81610e08565b82525050565b6000602082019050610ff76000830184610fd3565b92915050565b6000806040838503121561101457611013610de3565b5b600061102285828601610e31565b925050602061103385828601610e31565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061108457607f821691505b6020821081036110975761109661103d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110d782610e46565b91506110e283610e46565b92508282019050808211156110fa576110f961109d565b5b92915050565b7f4f4e4c595f4f574e455200000000000000000000000000000000000000000000600082015250565b6000611136600a83610d3c565b915061114182611100565b602082019050919050565b6000602082019050818103600083015261116581611129565b9050919050565b600061117782610e46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036111a9576111a861109d565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611210602583610d3c565b915061121b826111b4565b604082019050919050565b6000602082019050818103600083015261123f81611203565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112a2602483610d3c565b91506112ad82611246565b604082019050919050565b600060208201905081810360008301526112d181611295565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611334602283610d3c565b915061133f826112d8565b604082019050919050565b6000602082019050818103600083015261136381611327565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006113a0601d83610d3c565b91506113ab8261136a565b602082019050919050565b600060208201905081810360008301526113cf81611393565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611432602583610d3c565b915061143d826113d6565b604082019050919050565b6000602082019050818103600083015261146181611425565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006114c4602383610d3c565b91506114cf82611468565b604082019050919050565b600060208201905081810360008301526114f3816114b7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611556602683610d3c565b9150611561826114fa565b604082019050919050565b6000602082019050818103600083015261158581611549565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006115c2601f83610d3c565b91506115cd8261158c565b602082019050919050565b600060208201905081810360008301526115f1816115b5565b905091905056fea2646970667358221220427fd628335d00d4d77144a67ef8b19369f536a33745846123073138ce93c35b64736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461024d578063a457c2d71461026b578063a9059cbb1461029b578063dd62ed3e146102cb576100ea565b806370a08231146101f557806382692679146102255780638da5cb5b1461022f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340c10f19146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610dc1565b60405180910390f35b61012760048036038101906101229190610e7c565b61038d565b6040516101349190610ed7565b60405180910390f35b6101456103b0565b6040516101529190610f01565b60405180910390f35b61017560048036038101906101709190610f1c565b6103ba565b6040516101829190610ed7565b60405180910390f35b6101936103e9565b6040516101a09190610f8b565b60405180910390f35b6101c360048036038101906101be9190610e7c565b6103f2565b6040516101d09190610ed7565b60405180910390f35b6101f360048036038101906101ee9190610e7c565b610429565b005b61020f600480360381019061020a9190610fa6565b6104c5565b60405161021c9190610f01565b60405180910390f35b61022d61050d565b005b610237610527565b6040516102449190610fe2565b60405180910390f35b61025561054b565b6040516102629190610dc1565b60405180910390f35b61028560048036038101906102809190610e7c565b6105dd565b6040516102929190610ed7565b60405180910390f35b6102b560048036038101906102b09190610e7c565b610654565b6040516102c29190610ed7565b60405180910390f35b6102e560048036038101906102e09190610ffd565b610677565b6040516102f29190610f01565b60405180910390f35b60606003805461030a9061106c565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061106c565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986106fe565b90506103a5818585610706565b600191505092915050565b6000600254905090565b6000806103c56106fe565b90506103d28582856108cf565b6103dd85858561095b565b60019150509392505050565b60006006905090565b6000806103fd6106fe565b905061041e81858561040f8589610677565b61041991906110cc565b610706565b600191505092915050565b7f000000000000000000000000eefc712293477de480c9d1b8a627b0fb468d0ec673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ae9061114c565b60405180910390fd5b6104c18282610bd1565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560008154809291906105209061116c565b9190505550565b7f000000000000000000000000eefc712293477de480c9d1b8a627b0fb468d0ec681565b60606004805461055a9061106c565b80601f01602080910402602001604051908101604052809291908181526020018280546105869061106c565b80156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b5050505050905090565b6000806105e86106fe565b905060006105f68286610677565b90508381101561063b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063290611226565b60405180910390fd5b6106488286868403610706565b60019250505092915050565b60008061065f6106fe565b905061066c81858561095b565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c906112b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db9061134a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108c29190610f01565b60405180910390a3505050565b60006108db8484610677565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109555781811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906113b6565b60405180910390fd5b6109548484848403610706565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190611448565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a30906114da565b60405180910390fd5b610a44838383610d27565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061156c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bb89190610f01565b60405180910390a3610bcb848484610d2c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906115d8565b60405180910390fd5b610c4c60008383610d27565b8060026000828254610c5e91906110cc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d0f9190610f01565b60405180910390a3610d2360008383610d2c565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d6b578082015181840152602081019050610d50565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d9382610d31565b610d9d8185610d3c565b9350610dad818560208601610d4d565b610db681610d77565b840191505092915050565b60006020820190508181036000830152610ddb8184610d88565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e1382610de8565b9050919050565b610e2381610e08565b8114610e2e57600080fd5b50565b600081359050610e4081610e1a565b92915050565b6000819050919050565b610e5981610e46565b8114610e6457600080fd5b50565b600081359050610e7681610e50565b92915050565b60008060408385031215610e9357610e92610de3565b5b6000610ea185828601610e31565b9250506020610eb285828601610e67565b9150509250929050565b60008115159050919050565b610ed181610ebc565b82525050565b6000602082019050610eec6000830184610ec8565b92915050565b610efb81610e46565b82525050565b6000602082019050610f166000830184610ef2565b92915050565b600080600060608486031215610f3557610f34610de3565b5b6000610f4386828701610e31565b9350506020610f5486828701610e31565b9250506040610f6586828701610e67565b9150509250925092565b600060ff82169050919050565b610f8581610f6f565b82525050565b6000602082019050610fa06000830184610f7c565b92915050565b600060208284031215610fbc57610fbb610de3565b5b6000610fca84828501610e31565b91505092915050565b610fdc81610e08565b82525050565b6000602082019050610ff76000830184610fd3565b92915050565b6000806040838503121561101457611013610de3565b5b600061102285828601610e31565b925050602061103385828601610e31565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061108457607f821691505b6020821081036110975761109661103d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110d782610e46565b91506110e283610e46565b92508282019050808211156110fa576110f961109d565b5b92915050565b7f4f4e4c595f4f574e455200000000000000000000000000000000000000000000600082015250565b6000611136600a83610d3c565b915061114182611100565b602082019050919050565b6000602082019050818103600083015261116581611129565b9050919050565b600061117782610e46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036111a9576111a861109d565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611210602583610d3c565b915061121b826111b4565b604082019050919050565b6000602082019050818103600083015261123f81611203565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112a2602483610d3c565b91506112ad82611246565b604082019050919050565b600060208201905081810360008301526112d181611295565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611334602283610d3c565b915061133f826112d8565b604082019050919050565b6000602082019050818103600083015261136381611327565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006113a0601d83610d3c565b91506113ab8261136a565b602082019050919050565b600060208201905081810360008301526113cf81611393565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611432602583610d3c565b915061143d826113d6565b604082019050919050565b6000602082019050818103600083015261146181611425565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006114c4602383610d3c565b91506114cf82611468565b604082019050919050565b600060208201905081810360008301526114f3816114b7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611556602683610d3c565b9150611561826114fa565b604082019050919050565b6000602082019050818103600083015261158581611549565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006115c2601f83610d3c565b91506115cd8261158c565b602082019050919050565b600060208201905081810360008301526115f1816115b5565b905091905056fea2646970667358221220427fd628335d00d4d77144a67ef8b19369f536a33745846123073138ce93c35b64736f6c63430008110033
Deployed Bytecode Sourcemap
17949:512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9008:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7777:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9789:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18301:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10493:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18135:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7948:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18401:57;;;:::i;:::-;;17985:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6876:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11234:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8281:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8537:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6657:100;6711:13;6744:5;6737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657:100;:::o;9008:201::-;9091:4;9108:13;9124:12;:10;:12::i;:::-;9108:28;;9147:32;9156:5;9163:7;9172:6;9147:8;:32::i;:::-;9197:4;9190:11;;;9008:201;;;;:::o;7777:108::-;7838:7;7865:12;;7858:19;;7777:108;:::o;9789:295::-;9920:4;9937:15;9955:12;:10;:12::i;:::-;9937:30;;9978:38;9994:4;10000:7;10009:6;9978:15;:38::i;:::-;10027:27;10037:4;10043:2;10047:6;10027:9;:27::i;:::-;10072:4;10065:11;;;9789:295;;;;;:::o;18301:92::-;18359:5;18384:1;18377:8;;18301:92;:::o;10493:238::-;10581:4;10598:13;10614:12;:10;:12::i;:::-;10598:28;;10637:64;10646:5;10653:7;10690:10;10662:25;10672:5;10679:7;10662:9;:25::i;:::-;:38;;;;:::i;:::-;10637:8;:64::i;:::-;10719:4;10712:11;;;10493:238;;;;:::o;18135:158::-;18232:5;18218:19;;:10;:19;;;18210:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;18263:22;18269:7;18278:6;18263:5;:22::i;:::-;18135:158;;:::o;7948:127::-;8022:7;8049:9;:18;8059:7;8049:18;;;;;;;;;;;;;;;;8042:25;;7948:127;;;:::o;18401:57::-;18444:4;;:6;;;;;;;;;:::i;:::-;;;;;;18401:57::o;17985:30::-;;;:::o;6876:104::-;6932:13;6965:7;6958:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6876:104;:::o;11234:436::-;11327:4;11344:13;11360:12;:10;:12::i;:::-;11344:28;;11383:24;11410:25;11420:5;11427:7;11410:9;:25::i;:::-;11383:52;;11474:15;11454:16;:35;;11446:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11567:60;11576:5;11583:7;11611:15;11592:16;:34;11567:8;:60::i;:::-;11658:4;11651:11;;;;11234:436;;;;:::o;8281:193::-;8360:4;8377:13;8393:12;:10;:12::i;:::-;8377:28;;8416;8426:5;8433:2;8437:6;8416:9;:28::i;:::-;8462:4;8455:11;;;8281:193;;;;:::o;8537:151::-;8626:7;8653:11;:18;8665:5;8653:18;;;;;;;;;;;;;;;:27;8672:7;8653:27;;;;;;;;;;;;;;;;8646:34;;8537:151;;;;:::o;4295:98::-;4348:7;4375:10;4368:17;;4295:98;:::o;15261:380::-;15414:1;15397:19;;:5;:19;;;15389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15495:1;15476:21;;:7;:21;;;15468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15579:6;15549:11;:18;15561:5;15549:18;;;;;;;;;;;;;;;:27;15568:7;15549:27;;;;;;;;;;;;;;;:36;;;;15617:7;15601:32;;15610:5;15601:32;;;15626:6;15601:32;;;;;;:::i;:::-;;;;;;;;15261:380;;;:::o;15932:453::-;16067:24;16094:25;16104:5;16111:7;16094:9;:25::i;:::-;16067:52;;16154:17;16134:16;:37;16130:248;;16216:6;16196:16;:26;;16188:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16300:51;16309:5;16316:7;16344:6;16325:16;:25;16300:8;:51::i;:::-;16130:248;16056:329;15932:453;;;:::o;12140:840::-;12287:1;12271:18;;:4;:18;;;12263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12364:1;12350:16;;:2;:16;;;12342:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12419:38;12440:4;12446:2;12450:6;12419:20;:38::i;:::-;12470:19;12492:9;:15;12502:4;12492:15;;;;;;;;;;;;;;;;12470:37;;12541:6;12526:11;:21;;12518:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12658:6;12644:11;:20;12626:9;:15;12636:4;12626:15;;;;;;;;;;;;;;;:38;;;;12861:6;12844:9;:13;12854:2;12844:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12911:2;12896:26;;12905:4;12896:26;;;12915:6;12896:26;;;;;;:::i;:::-;;;;;;;;12935:37;12955:4;12961:2;12965:6;12935:19;:37::i;:::-;12252:728;12140:840;;;:::o;13267:548::-;13370:1;13351:21;;:7;:21;;;13343:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13421:49;13450:1;13454:7;13463:6;13421:20;:49::i;:::-;13499:6;13483:12;;:22;;;;;;;:::i;:::-;;;;;;;;13676:6;13654:9;:18;13664:7;13654:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13730:7;13709:37;;13726:1;13709:37;;;13739:6;13709:37;;;;;;:::i;:::-;;;;;;;;13759:48;13787:1;13791:7;13800:6;13759:19;:48::i;:::-;13267:548;;:::o;16985:125::-;;;;:::o;17714:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:160::-;7055:12;7051:1;7043:6;7039:14;7032:36;6915:160;:::o;7081:366::-;7223:3;7244:67;7308:2;7303:3;7244:67;:::i;:::-;7237:74;;7320:93;7409:3;7320:93;:::i;:::-;7438:2;7433:3;7429:12;7422:19;;7081:366;;;:::o;7453:419::-;7619:4;7657:2;7646:9;7642:18;7634:26;;7706:9;7700:4;7696:20;7692:1;7681:9;7677:17;7670:47;7734:131;7860:4;7734:131;:::i;:::-;7726:139;;7453:419;;;:::o;7878:233::-;7917:3;7940:24;7958:5;7940:24;:::i;:::-;7931:33;;7986:66;7979:5;7976:77;7973:103;;8056:18;;:::i;:::-;7973:103;8103:1;8096:5;8092:13;8085:20;;7878:233;;;:::o;8117:224::-;8257:34;8253:1;8245:6;8241:14;8234:58;8326:7;8321:2;8313:6;8309:15;8302:32;8117:224;:::o;8347:366::-;8489:3;8510:67;8574:2;8569:3;8510:67;:::i;:::-;8503:74;;8586:93;8675:3;8586:93;:::i;:::-;8704:2;8699:3;8695:12;8688:19;;8347:366;;;:::o;8719:419::-;8885:4;8923:2;8912:9;8908:18;8900:26;;8972:9;8966:4;8962:20;8958:1;8947:9;8943:17;8936:47;9000:131;9126:4;9000:131;:::i;:::-;8992:139;;8719:419;;;:::o;9144:223::-;9284:34;9280:1;9272:6;9268:14;9261:58;9353:6;9348:2;9340:6;9336:15;9329:31;9144:223;:::o;9373:366::-;9515:3;9536:67;9600:2;9595:3;9536:67;:::i;:::-;9529:74;;9612:93;9701:3;9612:93;:::i;:::-;9730:2;9725:3;9721:12;9714:19;;9373:366;;;:::o;9745:419::-;9911:4;9949:2;9938:9;9934:18;9926:26;;9998:9;9992:4;9988:20;9984:1;9973:9;9969:17;9962:47;10026:131;10152:4;10026:131;:::i;:::-;10018:139;;9745:419;;;:::o;10170:221::-;10310:34;10306:1;10298:6;10294:14;10287:58;10379:4;10374:2;10366:6;10362:15;10355:29;10170:221;:::o;10397:366::-;10539:3;10560:67;10624:2;10619:3;10560:67;:::i;:::-;10553:74;;10636:93;10725:3;10636:93;:::i;:::-;10754:2;10749:3;10745:12;10738:19;;10397:366;;;:::o;10769:419::-;10935:4;10973:2;10962:9;10958:18;10950:26;;11022:9;11016:4;11012:20;11008:1;10997:9;10993:17;10986:47;11050:131;11176:4;11050:131;:::i;:::-;11042:139;;10769:419;;;:::o;11194:179::-;11334:31;11330:1;11322:6;11318:14;11311:55;11194:179;:::o;11379:366::-;11521:3;11542:67;11606:2;11601:3;11542:67;:::i;:::-;11535:74;;11618:93;11707:3;11618:93;:::i;:::-;11736:2;11731:3;11727:12;11720:19;;11379:366;;;:::o;11751:419::-;11917:4;11955:2;11944:9;11940:18;11932:26;;12004:9;11998:4;11994:20;11990:1;11979:9;11975:17;11968:47;12032:131;12158:4;12032:131;:::i;:::-;12024:139;;11751:419;;;:::o;12176:224::-;12316:34;12312:1;12304:6;12300:14;12293:58;12385:7;12380:2;12372:6;12368:15;12361:32;12176:224;:::o;12406:366::-;12548:3;12569:67;12633:2;12628:3;12569:67;:::i;:::-;12562:74;;12645:93;12734:3;12645:93;:::i;:::-;12763:2;12758:3;12754:12;12747:19;;12406:366;;;:::o;12778:419::-;12944:4;12982:2;12971:9;12967:18;12959:26;;13031:9;13025:4;13021:20;13017:1;13006:9;13002:17;12995:47;13059:131;13185:4;13059:131;:::i;:::-;13051:139;;12778:419;;;:::o;13203:222::-;13343:34;13339:1;13331:6;13327:14;13320:58;13412:5;13407:2;13399:6;13395:15;13388:30;13203:222;:::o;13431:366::-;13573:3;13594:67;13658:2;13653:3;13594:67;:::i;:::-;13587:74;;13670:93;13759:3;13670:93;:::i;:::-;13788:2;13783:3;13779:12;13772:19;;13431:366;;;:::o;13803:419::-;13969:4;14007:2;13996:9;13992:18;13984:26;;14056:9;14050:4;14046:20;14042:1;14031:9;14027:17;14020:47;14084:131;14210:4;14084:131;:::i;:::-;14076:139;;13803:419;;;:::o;14228:225::-;14368:34;14364:1;14356:6;14352:14;14345:58;14437:8;14432:2;14424:6;14420:15;14413:33;14228:225;:::o;14459:366::-;14601:3;14622:67;14686:2;14681:3;14622:67;:::i;:::-;14615:74;;14698:93;14787:3;14698:93;:::i;:::-;14816:2;14811:3;14807:12;14800:19;;14459:366;;;:::o;14831:419::-;14997:4;15035:2;15024:9;15020:18;15012:26;;15084:9;15078:4;15074:20;15070:1;15059:9;15055:17;15048:47;15112:131;15238:4;15112:131;:::i;:::-;15104:139;;14831:419;;;:::o;15256:181::-;15396:33;15392:1;15384:6;15380:14;15373:57;15256:181;:::o;15443:366::-;15585:3;15606:67;15670:2;15665:3;15606:67;:::i;:::-;15599:74;;15682:93;15771:3;15682:93;:::i;:::-;15800:2;15795:3;15791:12;15784:19;;15443:366;;;:::o;15815:419::-;15981:4;16019:2;16008:9;16004:18;15996:26;;16068:9;16062:4;16058:20;16054:1;16043:9;16039:17;16032:47;16096:131;16222:4;16096:131;:::i;:::-;16088:139;;15815:419;;;:::o
Swarm Source
ipfs://427fd628335d00d4d77144a67ef8b19369f536a33745846123073138ce93c35b
[ 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.