Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000 DYOR
Holders
217
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.2 DYORValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DYOR
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-19 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /* ██████╗ ██╗ ██╗ ██████╗ ██████╗ ██╔══██╗╚██╗ ██╔╝██╔═══██╗██╔══██╗ ██║ ██║ ╚████╔╝ ██║ ██║██████╔╝ ██║ ██║ ╚██╔╝ ██║ ██║██╔══██╗ ██████╔╝ ██║ ╚██████╔╝██║ ██║ ╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ https://everyoneDYOR.com https://t.me/everyoneDYOR https://twitter.com/everyoneDYOR */ /** * @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); } // 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); } // 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; } } // OpenZeppelin Contracts (last updated v4.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract DYOR is Ownable, ERC20 { bool public limited; uint256 public constant INITIAL_SUPPLY = 100_000_000_000 * 10**18; uint8 public maxBuy; uint8 public buyTax; uint8 public sellTax; address public uniswapV2Pair; address private feesWallet; constructor() ERC20("DYOR", "DYOR") { _mint(msg.sender, INITIAL_SUPPLY); feesWallet = msg.sender; } function setRule(bool _limited, address _uniswapV2Pair, uint8 _buyTax, uint8 _sellTax, uint8 _maxBuy) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; buyTax = _buyTax; sellTax = _sellTax; maxBuy = _maxBuy; } function setMaxBuy(uint8 newMaxBuy) external onlyOwner() { maxBuy = newMaxBuy; } function setFees(uint8 newBuy, uint8 newSell) external onlyOwner { buyTax = newBuy; sellTax = newSell; } function setFeesWallet(address wallet) external onlyOwner { feesWallet = wallet; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { if (uniswapV2Pair == address(0)) { require( from == owner() || to == owner() || msg.sender == owner() || tx.origin == owner(), "Trading is not started" ); return; } if (limited && from == uniswapV2Pair) { require( super.balanceOf(to) + amount <= (maxBuy * INITIAL_SUPPLY) / 100, "Forbidden" ); } } function _transfer( address from, address to, uint256 amount ) internal virtual override { if (limited) { if (from == uniswapV2Pair) { transferWithFees(from, to, amount, buyTax); } else if (to == uniswapV2Pair) { transferWithFees(from, to, amount, sellTax); } else { super._transfer(from, to, amount); } } else { super._transfer(from, to, amount); } } function transferWithFees( address from, address to, uint256 amount, uint8 percentage ) internal { uint256 tax = (amount * percentage) / 100; uint256 netAmount = amount - tax; super._transfer(from, to, netAmount); super._transfer(from, feesWallet, tax); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"newBuy","type":"uint8"},{"internalType":"uint8","name":"newSell","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newMaxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint8","name":"_buyTax","type":"uint8"},{"internalType":"uint8","name":"_sellTax","type":"uint8"},{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806004815260200163222ca7a960e11b81525060405180604001604052806004815260200163222ca7a960e11b8152506200006662000060620000cb60201b60201c565b620000cf565b81516200007b90600490602085019062000384565b5080516200009190600590602084019062000384565b505050620000b3336c01431e0fae6d7217caa00000006200011f60201b60201c565b600780546001600160a01b0319163317905562000575565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001515760405162461bcd60e51b8152600401620001489062000484565b60405180910390fd5b6200015f60008383620001e1565b8060036000828254620001739190620004c4565b90915550506001600160a01b038216600081815260016020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001c7908590620004bb565b60405180910390a3620001dd6000838362000355565b5050565b60065464010000000090046001600160a01b0316620002af57620002046200035a565b6001600160a01b0316836001600160a01b031614806200023e5750620002296200035a565b6001600160a01b0316826001600160a01b0316145b806200026457506200024f6200035a565b6001600160a01b0316336001600160a01b0316145b806200028a5750620002756200035a565b6001600160a01b0316326001600160a01b0316145b620002a95760405162461bcd60e51b815260040162000148906200044d565b62000355565b60065460ff168015620002d757506006546001600160a01b0384811664010000000090920416145b15620003555760065460649062000305906c01431e0fae6d7217caa000000090610100900460ff1662000500565b620003119190620004df565b8162000328846200036960201b6200049f1760201c565b620003349190620004c4565b1115620003555760405162461bcd60e51b815260040162000148906200042a565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b828054620003929062000522565b90600052602060002090601f016020900481019282620003b6576000855562000401565b82601f10620003d157805160ff191683800117855562000401565b8280016001018555821562000401579182015b8281111562000401578251825591602001919060010190620003e4565b506200040f92915062000413565b5090565b5b808211156200040f576000815560010162000414565b6020808252600990820152682337b93134b23232b760b91b604082015260600190565b60208082526016908201527f54726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004da57620004da6200055f565b500190565b600082620004fb57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200051d576200051d6200055f565b500290565b6002810460018216806200053757607f821691505b602082108114156200055957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6110fb80620005856000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370db69d6116100c3578063a9059cbb1161007c578063a9059cbb14610286578063cc1776d314610299578063dbdf2dc0146102a1578063dd62ed3e146102b4578063f2fde38b146102c7578063f697a668146102da57610158565b806370db69d61461024b578063715018a614610253578063860a32ec1461025b5780638da5cb5b1461026357806395d89b411461026b578063a457c2d71461027357610158565b8063395093511161011557806339509351146101e057806343d4f92b146101f357806349bd5a5e146102085780634f7041a51461021d5780634fcd24461461022557806370a082311461023857610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd1461019b57806323b872dd146101b05780632ff2e9dc146101c3578063313ce567146101cb575b600080fd5b6101656102ed565b6040516101729190610cfe565b60405180910390f35b61018e610189366004610c09565b61037f565b6040516101729190610cf3565b6101a36103a1565b6040516101729190610fef565b61018e6101be366004610bce565b6103a7565b6101a36103d5565b6101d36103e6565b6040516101729190610ff8565b61018e6101ee366004610c09565b6103eb565b610206610201366004610b7b565b610417565b005b610210610441565b6040516101729190610cdf565b6101d3610458565b610206610233366004610cb6565b610467565b6101a3610246366004610b7b565b61049f565b6101d36104be565b6102066104cc565b61018e6104e0565b6102106104e9565b6101656104f8565b61018e610281366004610c09565b610507565b61018e610294366004610c09565b610558565b6101d3610570565b6102066102af366004610c9c565b610580565b6101a36102c2366004610b9c565b6105a4565b6102066102d5366004610b7b565b6105cf565b6102066102e8366004610c32565b610609565b6060600480546102fc90611074565b80601f016020809104026020016040519081016040528092919081815260200182805461032890611074565b80156103755780601f1061034a57610100808354040283529160200191610375565b820191906000526020600020905b81548152906001019060200180831161035857829003601f168201915b5050505050905090565b60008061038a610682565b9050610397818585610686565b5060019392505050565b60035490565b6000806103b2610682565b90506103bf85828561073a565b6103ca858585610784565b506001949350505050565b6c01431e0fae6d7217caa000000081565b601290565b6000806103f6610682565b905061039781858561040885896105a4565b6104129190611006565b610686565b61041f610826565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60065464010000000090046001600160a01b031681565b60065462010000900460ff1681565b61046f610826565b6006805460ff92831663010000000263ff0000001994909316620100000262ff0000199091161792909216179055565b6001600160a01b0381166000908152600160205260409020545b919050565b600654610100900460ff1681565b6104d4610826565b6104de6000610865565b565b60065460ff1681565b6000546001600160a01b031690565b6060600580546102fc90611074565b600080610512610682565b9050600061052082866105a4565b90508381101561054b5760405162461bcd60e51b815260040161054290610faa565b60405180910390fd5b6103ca8286868403610686565b600080610563610682565b9050610397818585610784565b6006546301000000900460ff1681565b610588610826565b6006805460ff9092166101000261ff0019909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105d7610826565b6001600160a01b0381166105fd5760405162461bcd60e51b815260040161054290610d94565b61060681610865565b50565b610611610826565b6006805460ff191695151595909517640100000000600160c01b0319166401000000006001600160a01b0395909516949094029390931762ff000019166201000060ff938416021763ff00000019166301000000918316919091021761ff0019166101009290911691909102179055565b3390565b6001600160a01b0383166106ac5760405162461bcd60e51b815260040161054290610f66565b6001600160a01b0382166106d25760405162461bcd60e51b815260040161054290610dda565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061072d908590610fef565b60405180910390a3505050565b600061074684846105a4565b9050600019811461077e57818110156107715760405162461bcd60e51b815260040161054290610e1c565b61077e8484848403610686565b50505050565b60065460ff1615610816576006546001600160a01b038481166401000000009092041614156107cd576107c8838383600660029054906101000a900460ff166108b5565b610811565b6006546001600160a01b03838116640100000000909204161415610806576107c8838383600660039054906101000a900460ff166108b5565b61081183838361090b565b610821565b61082183838361090b565b505050565b61082e610682565b6001600160a01b031661083f6104e9565b6001600160a01b0316146104de5760405162461bcd60e51b815260040161054290610eec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060646108c660ff84168561103e565b6108d0919061101e565b905060006108de828561105d565b90506108eb86868361090b565b6007546109039087906001600160a01b03168461090b565b505050505050565b6001600160a01b0383166109315760405162461bcd60e51b815260040161054290610f21565b6001600160a01b0382166109575760405162461bcd60e51b815260040161054290610d51565b610962838383610a0c565b6001600160a01b0383166000908152600160205260409020548181101561099b5760405162461bcd60e51b815260040161054290610e53565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109f9908690610fef565b60405180910390a361077e848484610821565b60065464010000000090046001600160a01b0316610ac557610a2c6104e9565b6001600160a01b0316836001600160a01b03161480610a635750610a4e6104e9565b6001600160a01b0316826001600160a01b0316145b80610a865750610a716104e9565b6001600160a01b0316336001600160a01b0316145b80610aa95750610a946104e9565b6001600160a01b0316326001600160a01b0316145b6108115760405162461bcd60e51b815260040161054290610ebc565b60065460ff168015610aec57506006546001600160a01b0384811664010000000090920416145b1561082157600654606490610b17906c01431e0fae6d7217caa000000090610100900460ff1661103e565b610b21919061101e565b81610b2b8461049f565b610b359190611006565b11156108215760405162461bcd60e51b815260040161054290610e99565b80356001600160a01b03811681146104b957600080fd5b803560ff811681146104b957600080fd5b600060208284031215610b8c578081fd5b610b9582610b53565b9392505050565b60008060408385031215610bae578081fd5b610bb783610b53565b9150610bc560208401610b53565b90509250929050565b600080600060608486031215610be2578081fd5b610beb84610b53565b9250610bf960208501610b53565b9150604084013590509250925092565b60008060408385031215610c1b578182fd5b610c2483610b53565b946020939093013593505050565b600080600080600060a08688031215610c49578081fd5b85358015158114610c58578182fd5b9450610c6660208701610b53565b9350610c7460408701610b6a565b9250610c8260608701610b6a565b9150610c9060808701610b6a565b90509295509295909350565b600060208284031215610cad578081fd5b610b9582610b6a565b60008060408385031215610cc8578182fd5b610cd183610b6a565b9150610bc560208401610b6a565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d2a57858101830151858201604001528201610d0e565b81811115610d3b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600990820152682337b93134b23232b760b91b604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115611019576110196110af565b500190565b60008261103957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611058576110586110af565b500290565b60008282101561106f5761106f6110af565b500390565b60028104600182168061108857607f821691505b602082108114156110a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209d4963c2264018aeace57ba04b28e4b482f570375cc3f06f694ffa64526d13a964736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370db69d6116100c3578063a9059cbb1161007c578063a9059cbb14610286578063cc1776d314610299578063dbdf2dc0146102a1578063dd62ed3e146102b4578063f2fde38b146102c7578063f697a668146102da57610158565b806370db69d61461024b578063715018a614610253578063860a32ec1461025b5780638da5cb5b1461026357806395d89b411461026b578063a457c2d71461027357610158565b8063395093511161011557806339509351146101e057806343d4f92b146101f357806349bd5a5e146102085780634f7041a51461021d5780634fcd24461461022557806370a082311461023857610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd1461019b57806323b872dd146101b05780632ff2e9dc146101c3578063313ce567146101cb575b600080fd5b6101656102ed565b6040516101729190610cfe565b60405180910390f35b61018e610189366004610c09565b61037f565b6040516101729190610cf3565b6101a36103a1565b6040516101729190610fef565b61018e6101be366004610bce565b6103a7565b6101a36103d5565b6101d36103e6565b6040516101729190610ff8565b61018e6101ee366004610c09565b6103eb565b610206610201366004610b7b565b610417565b005b610210610441565b6040516101729190610cdf565b6101d3610458565b610206610233366004610cb6565b610467565b6101a3610246366004610b7b565b61049f565b6101d36104be565b6102066104cc565b61018e6104e0565b6102106104e9565b6101656104f8565b61018e610281366004610c09565b610507565b61018e610294366004610c09565b610558565b6101d3610570565b6102066102af366004610c9c565b610580565b6101a36102c2366004610b9c565b6105a4565b6102066102d5366004610b7b565b6105cf565b6102066102e8366004610c32565b610609565b6060600480546102fc90611074565b80601f016020809104026020016040519081016040528092919081815260200182805461032890611074565b80156103755780601f1061034a57610100808354040283529160200191610375565b820191906000526020600020905b81548152906001019060200180831161035857829003601f168201915b5050505050905090565b60008061038a610682565b9050610397818585610686565b5060019392505050565b60035490565b6000806103b2610682565b90506103bf85828561073a565b6103ca858585610784565b506001949350505050565b6c01431e0fae6d7217caa000000081565b601290565b6000806103f6610682565b905061039781858561040885896105a4565b6104129190611006565b610686565b61041f610826565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60065464010000000090046001600160a01b031681565b60065462010000900460ff1681565b61046f610826565b6006805460ff92831663010000000263ff0000001994909316620100000262ff0000199091161792909216179055565b6001600160a01b0381166000908152600160205260409020545b919050565b600654610100900460ff1681565b6104d4610826565b6104de6000610865565b565b60065460ff1681565b6000546001600160a01b031690565b6060600580546102fc90611074565b600080610512610682565b9050600061052082866105a4565b90508381101561054b5760405162461bcd60e51b815260040161054290610faa565b60405180910390fd5b6103ca8286868403610686565b600080610563610682565b9050610397818585610784565b6006546301000000900460ff1681565b610588610826565b6006805460ff9092166101000261ff0019909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105d7610826565b6001600160a01b0381166105fd5760405162461bcd60e51b815260040161054290610d94565b61060681610865565b50565b610611610826565b6006805460ff191695151595909517640100000000600160c01b0319166401000000006001600160a01b0395909516949094029390931762ff000019166201000060ff938416021763ff00000019166301000000918316919091021761ff0019166101009290911691909102179055565b3390565b6001600160a01b0383166106ac5760405162461bcd60e51b815260040161054290610f66565b6001600160a01b0382166106d25760405162461bcd60e51b815260040161054290610dda565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061072d908590610fef565b60405180910390a3505050565b600061074684846105a4565b9050600019811461077e57818110156107715760405162461bcd60e51b815260040161054290610e1c565b61077e8484848403610686565b50505050565b60065460ff1615610816576006546001600160a01b038481166401000000009092041614156107cd576107c8838383600660029054906101000a900460ff166108b5565b610811565b6006546001600160a01b03838116640100000000909204161415610806576107c8838383600660039054906101000a900460ff166108b5565b61081183838361090b565b610821565b61082183838361090b565b505050565b61082e610682565b6001600160a01b031661083f6104e9565b6001600160a01b0316146104de5760405162461bcd60e51b815260040161054290610eec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060646108c660ff84168561103e565b6108d0919061101e565b905060006108de828561105d565b90506108eb86868361090b565b6007546109039087906001600160a01b03168461090b565b505050505050565b6001600160a01b0383166109315760405162461bcd60e51b815260040161054290610f21565b6001600160a01b0382166109575760405162461bcd60e51b815260040161054290610d51565b610962838383610a0c565b6001600160a01b0383166000908152600160205260409020548181101561099b5760405162461bcd60e51b815260040161054290610e53565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109f9908690610fef565b60405180910390a361077e848484610821565b60065464010000000090046001600160a01b0316610ac557610a2c6104e9565b6001600160a01b0316836001600160a01b03161480610a635750610a4e6104e9565b6001600160a01b0316826001600160a01b0316145b80610a865750610a716104e9565b6001600160a01b0316336001600160a01b0316145b80610aa95750610a946104e9565b6001600160a01b0316326001600160a01b0316145b6108115760405162461bcd60e51b815260040161054290610ebc565b60065460ff168015610aec57506006546001600160a01b0384811664010000000090920416145b1561082157600654606490610b17906c01431e0fae6d7217caa000000090610100900460ff1661103e565b610b21919061101e565b81610b2b8461049f565b610b359190611006565b11156108215760405162461bcd60e51b815260040161054290610e99565b80356001600160a01b03811681146104b957600080fd5b803560ff811681146104b957600080fd5b600060208284031215610b8c578081fd5b610b9582610b53565b9392505050565b60008060408385031215610bae578081fd5b610bb783610b53565b9150610bc560208401610b53565b90509250929050565b600080600060608486031215610be2578081fd5b610beb84610b53565b9250610bf960208501610b53565b9150604084013590509250925092565b60008060408385031215610c1b578182fd5b610c2483610b53565b946020939093013593505050565b600080600080600060a08688031215610c49578081fd5b85358015158114610c58578182fd5b9450610c6660208701610b53565b9350610c7460408701610b6a565b9250610c8260608701610b6a565b9150610c9060808701610b6a565b90509295509295909350565b600060208284031215610cad578081fd5b610b9582610b6a565b60008060408385031215610cc8578182fd5b610cd183610b6a565b9150610bc560208401610b6a565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d2a57858101830151858201604001528201610d0e565b81811115610d3b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600990820152682337b93134b23232b760b91b604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115611019576110196110af565b500190565b60008261103957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611058576110586110af565b500290565b60008282101561106f5761106f6110af565b500390565b60028104600182168061108857607f821691505b602082108114156110a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209d4963c2264018aeace57ba04b28e4b482f570375cc3f06f694ffa64526d13a964736f6c63430008000033
Deployed Bytecode Sourcemap
20662:2598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7028:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9388:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8157:108::-;;;:::i;:::-;;;;;;;:::i;10169:261::-;;;;;;:::i;:::-;;:::i;20727:65::-;;;:::i;7999:93::-;;;:::i;:::-;;;;;;;:::i;10839:238::-;;;;;;:::i;:::-;;:::i;21605:96::-;;;;;;:::i;:::-;;:::i;:::-;;20878:28;;;:::i;:::-;;;;;;;:::i;20825:19::-;;;:::i;21470:127::-;;;;;;:::i;:::-;;:::i;8328:::-;;;;;;:::i;:::-;;:::i;20799:19::-;;;:::i;19845:103::-;;;:::i;20701:19::-;;;:::i;19197:87::-;;;:::i;7247:104::-;;;:::i;11580:436::-;;;;;;:::i;:::-;;:::i;8661:193::-;;;;;;:::i;:::-;;:::i;20851:20::-;;;:::i;21368:94::-;;;;;;:::i;:::-;;:::i;8917:151::-;;;;;;:::i;:::-;;:::i;20103:201::-;;;;;;:::i;:::-;;:::i;21078:282::-;;;;;;:::i;:::-;;:::i;7028:100::-;7082:13;7115:5;7108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7028:100;:::o;9388:201::-;9471:4;9488:13;9504:12;:10;:12::i;:::-;9488:28;;9527:32;9536:5;9543:7;9552:6;9527:8;:32::i;:::-;-1:-1:-1;9577:4:0;;9388:201;-1:-1:-1;;;9388:201:0:o;8157:108::-;8245:12;;8157:108;:::o;10169:261::-;10266:4;10283:15;10301:12;:10;:12::i;:::-;10283:30;;10324:38;10340:4;10346:7;10355:6;10324:15;:38::i;:::-;10373:27;10383:4;10389:2;10393:6;10373:9;:27::i;:::-;-1:-1:-1;10418:4:0;;10169:261;-1:-1:-1;;;;10169:261:0:o;20727:65::-;20768:24;20727:65;:::o;7999:93::-;8082:2;7999:93;:::o;10839:238::-;10927:4;10944:13;10960:12;:10;:12::i;:::-;10944:28;;10983:64;10992:5;10999:7;11036:10;11008:25;11018:5;11025:7;11008:9;:25::i;:::-;:38;;;;:::i;:::-;10983:8;:64::i;21605:96::-;19083:13;:11;:13::i;:::-;21674:10:::1;:19:::0;;-1:-1:-1;;;;;;21674:19:0::1;-1:-1:-1::0;;;;;21674:19:0;;;::::1;::::0;;;::::1;::::0;;21605:96::o;20878:28::-;;;;;;-1:-1:-1;;;;;20878:28:0;;:::o;20825:19::-;;;;;;;;;:::o;21470:127::-;19083:13;:11;:13::i;:::-;21546:6:::1;:15:::0;;::::1;21572:17:::0;;::::1;::::0;::::1;-1:-1:-1::0;;21546:15:0;;;::::1;::::0;::::1;-1:-1:-1::0;;21546:15:0;;::::1;;21572:17:::0;;;::::1;;::::0;;21470:127::o;8328:::-;-1:-1:-1;;;;;8429:18:0;;8402:7;8429:18;;;:9;:18;;;;;;8328:127;;;;:::o;20799:19::-;;;;;;;;;:::o;19845:103::-;19083:13;:11;:13::i;:::-;19910:30:::1;19937:1;19910:18;:30::i;:::-;19845:103::o:0;20701:19::-;;;;;;:::o;19197:87::-;19243:7;19270:6;-1:-1:-1;;;;;19270:6:0;19197:87;:::o;7247:104::-;7303:13;7336:7;7329:14;;;;;:::i;11580:436::-;11673:4;11690:13;11706:12;:10;:12::i;:::-;11690:28;;11729:24;11756:25;11766:5;11773:7;11756:9;:25::i;:::-;11729:52;;11820:15;11800:16;:35;;11792:85;;;;-1:-1:-1;;;11792:85:0;;;;;;;:::i;:::-;;;;;;;;;11913:60;11922:5;11929:7;11957:15;11938:16;:34;11913:8;:60::i;8661:193::-;8740:4;8757:13;8773:12;:10;:12::i;:::-;8757:28;;8796;8806:5;8813:2;8817:6;8796:9;:28::i;20851:20::-;;;;;;;;;:::o;21368:94::-;19083:13;:11;:13::i;:::-;21436:6:::1;:18:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;21436:18:0;;::::1;::::0;;;::::1;::::0;;21368:94::o;8917:151::-;-1:-1:-1;;;;;9033:18:0;;;9006:7;9033:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8917:151::o;20103:201::-;19083:13;:11;:13::i;:::-;-1:-1:-1;;;;;20192:22:0;::::1;20184:73;;;;-1:-1:-1::0;;;20184:73:0::1;;;;;;;:::i;:::-;20268:28;20287:8;20268:18;:28::i;:::-;20103:201:::0;:::o;21078:282::-;19083:13;:11;:13::i;:::-;21210:7:::1;:18:::0;;-1:-1:-1;;21210:18:0::1;::::0;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;;;21239:30:0::1;::::0;-1:-1:-1;;;;;21239:30:0;;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;21280:16:0::1;::::0;21210:18:::1;21280:16:::0;;::::1;;;-1:-1:-1::0;;21307:18:0::1;::::0;;;::::1;::::0;;;::::1;;-1:-1:-1::0;;21336:16:0::1;21210:18;21336:16:::0;;;::::1;::::0;;;::::1;;::::0;;21078:282::o;4732:98::-;4812:10;4732:98;:::o;15573:346::-;-1:-1:-1;;;;;15675:19:0;;15667:68;;;;-1:-1:-1;;;15667:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15754:21:0;;15746:68;;;;-1:-1:-1;;;15746:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15827:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15879:32;;;;;15857:6;;15879:32;:::i;:::-;;;;;;;;15573:346;;;:::o;16210:419::-;16311:24;16338:25;16348:5;16355:7;16338:9;:25::i;:::-;16311:52;;-1:-1:-1;;16378:16:0;:37;16374:248;;16460:6;16440:16;:26;;16432:68;;;;-1:-1:-1;;;16432:68:0;;;;;;;:::i;:::-;16544:51;16553:5;16560:7;16588:6;16569:16;:25;16544:8;:51::i;:::-;16210:419;;;;:::o;22385:527::-;22521:7;;;;22517:388;;;22557:13;;-1:-1:-1;;;;;22549:21:0;;;22557:13;;;;;22549:21;22545:283;;;22591:42;22608:4;22614:2;22618:6;22626;;;;;;;;;;;22591:16;:42::i;:::-;22545:283;;;22665:13;;-1:-1:-1;;;;;22659:19:0;;;22665:13;;;;;22659:19;22655:173;;;22699:43;22716:4;22722:2;22726:6;22734:7;;;;;;;;;;;22699:16;:43::i;22655:173::-;22779:33;22795:4;22801:2;22805:6;22779:15;:33::i;:::-;22517:388;;;22860:33;22876:4;22882:2;22886:6;22860:15;:33::i;:::-;22385:527;;;:::o;19362:132::-;19437:12;:10;:12::i;:::-;-1:-1:-1;;;;;19426:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19426:23:0;;19418:68;;;;-1:-1:-1;;;19418:68:0;;;;;;;:::i;20464:191::-;20538:16;20557:6;;-1:-1:-1;;;;;20574:17:0;;;-1:-1:-1;;;;;;20574:17:0;;;;;;20607:40;;20557:6;;;;;;;20607:40;;20538:16;20607:40;20464:191;;:::o;22920:337::-;23069:11;23107:3;23084:19;;;;:6;:19;:::i;:::-;23083:27;;;;:::i;:::-;23069:41;-1:-1:-1;23121:17:0;23141:12;23069:41;23141:6;:12;:::i;:::-;23121:32;;23164:36;23180:4;23186:2;23190:9;23164:15;:36::i;:::-;23233:10;;23211:38;;23227:4;;-1:-1:-1;;;;;23233:10:0;23245:3;23211:15;:38::i;:::-;22920:337;;;;;;:::o;12486:806::-;-1:-1:-1;;;;;12583:18:0;;12575:68;;;;-1:-1:-1;;;12575:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12662:16:0;;12654:64;;;;-1:-1:-1;;;12654:64:0;;;;;;;:::i;:::-;12731:38;12752:4;12758:2;12762:6;12731:20;:38::i;:::-;-1:-1:-1;;;;;12804:15:0;;12782:19;12804:15;;;:9;:15;;;;;;12838:21;;;;12830:72;;;;-1:-1:-1;;;12830:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12938:15:0;;;;;;;:9;:15;;;;;;12956:20;;;12938:38;;13156:13;;;;;;;;;;:23;;;;;;13208:26;;;;;;12970:6;;13208:26;:::i;:::-;;;;;;;;13247:37;13267:4;13273:2;13277:6;13247:19;:37::i;21709:668::-;21856:13;;;;;-1:-1:-1;;;;;21856:13:0;21852:309;;21934:7;:5;:7::i;:::-;-1:-1:-1;;;;;21926:15:0;:4;-1:-1:-1;;;;;21926:15:0;;:53;;;;21972:7;:5;:7::i;:::-;-1:-1:-1;;;;;21966:13:0;:2;-1:-1:-1;;;;;21966:13:0;;21926:53;:99;;;;22018:7;:5;:7::i;:::-;-1:-1:-1;;;;;22004:21:0;:10;-1:-1:-1;;;;;22004:21:0;;21926:99;:144;;;;22063:7;:5;:7::i;:::-;-1:-1:-1;;;;;22050:20:0;:9;-1:-1:-1;;;;;22050:20:0;;21926:144;21900:228;;;;-1:-1:-1;;;21900:228:0;;;;;;;:::i;21852:309::-;22175:7;;;;:32;;;;-1:-1:-1;22194:13:0;;-1:-1:-1;;;;;22186:21:0;;;22194:13;;;;;22186:21;22175:32;22171:199;;;22283:6;;22310:3;;22283:23;;20768:24;;22283:6;;;;;:23;:::i;:::-;22282:31;;;;:::i;:::-;22272:6;22250:19;22266:2;22250:15;:19::i;:::-;:28;;;;:::i;:::-;:63;;22224:134;;;;-1:-1:-1;;;22224:134:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:158;262:20;;322:4;311:16;;301:27;;291:2;;342:1;339;332:12;357:198;;469:2;457:9;448:7;444:23;440:32;437:2;;;490:6;482;475:22;437:2;518:31;539:9;518:31;:::i;:::-;508:41;427:128;-1:-1:-1;;;427:128:1:o;560:274::-;;;689:2;677:9;668:7;664:23;660:32;657:2;;;710:6;702;695:22;657:2;738:31;759:9;738:31;:::i;:::-;728:41;;788:40;824:2;813:9;809:18;788:40;:::i;:::-;778:50;;647:187;;;;;:::o;839:342::-;;;;985:2;973:9;964:7;960:23;956:32;953:2;;;1006:6;998;991:22;953:2;1034:31;1055:9;1034:31;:::i;:::-;1024:41;;1084:40;1120:2;1109:9;1105:18;1084:40;:::i;:::-;1074:50;;1171:2;1160:9;1156:18;1143:32;1133:42;;943:238;;;;;:::o;1186:266::-;;;1315:2;1303:9;1294:7;1290:23;1286:32;1283:2;;;1336:6;1328;1321:22;1283:2;1364:31;1385:9;1364:31;:::i;:::-;1354:41;1442:2;1427:18;;;;1414:32;;-1:-1:-1;;;1273:179:1:o;1457:587::-;;;;;;1628:3;1616:9;1607:7;1603:23;1599:33;1596:2;;;1650:6;1642;1635:22;1596:2;1694:9;1681:23;1747:5;1740:13;1733:21;1726:5;1723:32;1713:2;;1774:6;1766;1759:22;1713:2;1802:5;-1:-1:-1;1826:40:1;1862:2;1847:18;;1826:40;:::i;:::-;1816:50;;1885:38;1919:2;1908:9;1904:18;1885:38;:::i;:::-;1875:48;;1942:38;1976:2;1965:9;1961:18;1942:38;:::i;:::-;1932:48;;1999:39;2033:3;2022:9;2018:19;1999:39;:::i;:::-;1989:49;;1586:458;;;;;;;;:::o;2049:194::-;;2159:2;2147:9;2138:7;2134:23;2130:32;2127:2;;;2180:6;2172;2165:22;2127:2;2208:29;2227:9;2208:29;:::i;2248:266::-;;;2373:2;2361:9;2352:7;2348:23;2344:32;2341:2;;;2394:6;2386;2379:22;2341:2;2422:29;2441:9;2422:29;:::i;:::-;2412:39;;2470:38;2504:2;2493:9;2489:18;2470:38;:::i;2519:203::-;-1:-1:-1;;;;;2683:32:1;;;;2665:51;;2653:2;2638:18;;2620:102::o;2727:187::-;2892:14;;2885:22;2867:41;;2855:2;2840:18;;2822:92::o;2919:603::-;;3060:2;3089;3078:9;3071:21;3121:6;3115:13;3164:6;3159:2;3148:9;3144:18;3137:34;3189:4;3202:140;3216:6;3213:1;3210:13;3202:140;;;3311:14;;;3307:23;;3301:30;3277:17;;;3296:2;3273:26;3266:66;3231:10;;3202:140;;;3360:6;3357:1;3354:13;3351:2;;;3430:4;3425:2;3416:6;3405:9;3401:22;3397:31;3390:45;3351:2;-1:-1:-1;3506:2:1;3485:15;-1:-1:-1;;3481:29:1;3466:45;;;;3513:2;3462:54;;3040:482;-1:-1:-1;;;3040:482:1:o;3527:399::-;3729:2;3711:21;;;3768:2;3748:18;;;3741:30;3807:34;3802:2;3787:18;;3780:62;-1:-1:-1;;;3873:2:1;3858:18;;3851:33;3916:3;3901:19;;3701:225::o;3931:402::-;4133:2;4115:21;;;4172:2;4152:18;;;4145:30;4211:34;4206:2;4191:18;;4184:62;-1:-1:-1;;;4277:2:1;4262:18;;4255:36;4323:3;4308:19;;4105:228::o;4338:398::-;4540:2;4522:21;;;4579:2;4559:18;;;4552:30;4618:34;4613:2;4598:18;;4591:62;-1:-1:-1;;;4684:2:1;4669:18;;4662:32;4726:3;4711:19;;4512:224::o;4741:353::-;4943:2;4925:21;;;4982:2;4962:18;;;4955:30;5021:31;5016:2;5001:18;;4994:59;5085:2;5070:18;;4915:179::o;5099:402::-;5301:2;5283:21;;;5340:2;5320:18;;;5313:30;5379:34;5374:2;5359:18;;5352:62;-1:-1:-1;;;5445:2:1;5430:18;;5423:36;5491:3;5476:19;;5273:228::o;5506:332::-;5708:2;5690:21;;;5747:1;5727:18;;;5720:29;-1:-1:-1;;;5780:2:1;5765:18;;5758:39;5829:2;5814:18;;5680:158::o;5843:346::-;6045:2;6027:21;;;6084:2;6064:18;;;6057:30;-1:-1:-1;;;6118:2:1;6103:18;;6096:52;6180:2;6165:18;;6017:172::o;6194:356::-;6396:2;6378:21;;;6415:18;;;6408:30;6474:34;6469:2;6454:18;;6447:62;6541:2;6526:18;;6368:182::o;6555:401::-;6757:2;6739:21;;;6796:2;6776:18;;;6769:30;6835:34;6830:2;6815:18;;6808:62;-1:-1:-1;;;6901:2:1;6886:18;;6879:35;6946:3;6931:19;;6729:227::o;6961:400::-;7163:2;7145:21;;;7202:2;7182:18;;;7175:30;7241:34;7236:2;7221:18;;7214:62;-1:-1:-1;;;7307:2:1;7292:18;;7285:34;7351:3;7336:19;;7135:226::o;7366:401::-;7568:2;7550:21;;;7607:2;7587:18;;;7580:30;7646:34;7641:2;7626:18;;7619:62;-1:-1:-1;;;7712:2:1;7697:18;;7690:35;7757:3;7742:19;;7540:227::o;7772:177::-;7918:25;;;7906:2;7891:18;;7873:76::o;7954:184::-;8126:4;8114:17;;;;8096:36;;8084:2;8069:18;;8051:87::o;8143:128::-;;8214:1;8210:6;8207:1;8204:13;8201:2;;;8220:18;;:::i;:::-;-1:-1:-1;8256:9:1;;8191:80::o;8276:217::-;;8342:1;8332:2;;-1:-1:-1;;;8367:31:1;;8421:4;8418:1;8411:15;8449:4;8374:1;8439:15;8332:2;-1:-1:-1;8478:9:1;;8322:171::o;8498:168::-;;8604:1;8600;8596:6;8592:14;8589:1;8586:21;8581:1;8574:9;8567:17;8563:45;8560:2;;;8611:18;;:::i;:::-;-1:-1:-1;8651:9:1;;8550:116::o;8671:125::-;;8739:1;8736;8733:8;8730:2;;;8744:18;;:::i;:::-;-1:-1:-1;8781:9:1;;8720:76::o;8801:380::-;8886:1;8876:12;;8933:1;8923:12;;;8944:2;;8998:4;8990:6;8986:17;8976:27;;8944:2;9051;9043:6;9040:14;9020:18;9017:38;9014:2;;;9097:10;9092:3;9088:20;9085:1;9078:31;9132:4;9129:1;9122:15;9160:4;9157:1;9150:15;9014:2;;8856:325;;;:::o;9186:127::-;9247:10;9242:3;9238:20;9235:1;9228:31;9278:4;9275:1;9268:15;9302:4;9299:1;9292:15
Swarm Source
ipfs://9d4963c2264018aeace57ba04b28e4b482f570375cc3f06f694ffa64526d13a9
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.