ERC-20
Overview
Max Total Supply
1,000,000,000 VERSUS
Holders
994
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,020.223462 VERSUSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Versus
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-23 */ // Sources flattened with hardhat v2.22.16 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File @openzeppelin/contracts/access/[email protected] /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] /** * @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] /** * @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/token/ERC20/[email protected] /** * @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 {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File contracts/Versus.sol contract Versus is ERC20Burnable, Ownable { bool public tradingActive = false; // Toggle trading status constructor() ERC20("Versus", "VERSUS") { uint256 initialSupply = 1_000_000_000 * 10 ** 18; _mint(msg.sender, initialSupply); // Mint one time supply to deployer } /** * @dev Enable trading permanently. */ function enableTrading() external onlyOwner { tradingActive = true; } /** * @dev Perform batch transfers to multiple recipients. */ function batchTransfer( address[] calldata recipients, uint256[] calldata amounts ) external { require( recipients.length == amounts.length, "Recipients and amounts length mismatch" ); for (uint256 i = 0; i < recipients.length; i++) { _transfer(msg.sender, recipients[i], amounts[i]); } } /** * @dev Override the `_transfer` function to include trading activation check. */ function _transfer( address from, address to, uint256 amount ) internal override { if (!tradingActive) { require(from == owner() || to == owner(), "Trading is not active"); } super._transfer(from, to, amount); } }
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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]
Contract Creation Code
60806040526005805460ff60a01b1916905534801561001d57600080fd5b506040518060400160405280600681526020016556657273757360d01b8152506040518060400160405280600681526020016556455253555360d01b815250816003908161006b919061026a565b506004610078828261026a565b50505061009161008c6100ae60201b60201c565b6100b2565b6b033b2e3c9fd0803ce80000006100a83382610104565b5061034f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661015e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546101709190610328565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806101f657607f821691505b60208210810361021657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101c757806000526020600020601f840160051c810160208510156102435750805b601f840160051c820191505b81811015610263576000815560010161024f565b5050505050565b81516001600160401b03811115610283576102836101cc565b6102978161029184546101e2565b8461021c565b6020601f8211600181146102cb57600083156102b35750848201515b600019600385901b1c1916600184901b178455610263565b600084815260208120601f198516915b828110156102fb57878501518255602094850194600190920191016102db565b50848210156103195786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561034957634e487b7160e01b600052601160045260246000fd5b92915050565b610fea8061035e6000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806379cc6790116100cd578063a457c2d711610081578063bbc0c74211610066578063bbc0c7421461029b578063dd62ed3e146102af578063f2fde38b146102e857600080fd5b8063a457c2d714610275578063a9059cbb1461028857600080fd5b80638a8c523c116100b25780638a8c523c1461024a5780638da5cb5b1461025257806395d89b411461026d57600080fd5b806379cc67901461022457806388d695b21461023757600080fd5b8063313ce5671161012457806342966c681161010957806342966c68146101de57806370a08231146101f3578063715018a61461021c57600080fd5b8063313ce567146101bc57806339509351146101cb57600080fd5b806306fdde0314610156578063095ea7b31461017457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015e6102fb565b60405161016b9190610d47565b60405180910390f35b610187610182366004610db1565b61038d565b604051901515815260200161016b565b6002545b60405190815260200161016b565b6101876101b7366004610ddb565b6103a7565b6040516012815260200161016b565b6101876101d9366004610db1565b6103cb565b6101f16101ec366004610e18565b61040a565b005b61019b610201366004610e31565b6001600160a01b031660009081526020819052604090205490565b6101f1610417565b6101f1610232366004610db1565b61042b565b6101f1610245366004610e9f565b610444565b6101f1610521565b6005546040516001600160a01b03909116815260200161016b565b61015e610559565b610187610283366004610db1565b610568565b610187610296366004610db1565b610612565b60055461018790600160a01b900460ff1681565b61019b6102bd366004610f10565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f16102f6366004610e31565b610620565b60606003805461030a90610f43565b80601f016020809104026020016040519081016040528092919081815260200182805461033690610f43565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60003361039b8185856106ad565b60019150505b92915050565b6000336103b5858285610805565b6103c0858585610897565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061039b9082908690610405908790610f7d565b6106ad565b610414338261092d565b50565b61041f610a96565b6104296000610af0565b565b610436823383610805565b610440828261092d565b5050565b8281146104be5760405162461bcd60e51b815260206004820152602660248201527f526563697069656e747320616e6420616d6f756e7473206c656e677468206d6960448201527f736d61746368000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60005b8381101561051a57610512338686848181106104df576104df610f9e565b90506020020160208101906104f49190610e31565b85858581811061050657610506610f9e565b90506020020135610897565b6001016104c1565b5050505050565b610529610a96565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b60606004805461030a90610f43565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104b5565b6103c082868684036106ad565b60003361039b818585610897565b610628610a96565b6001600160a01b0381166106a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104b5565b61041481610af0565b6001600160a01b0383166107285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461089157818110156108845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b5565b61089184848484036106ad565b50505050565b600554600160a01b900460ff1661091d576005546001600160a01b03848116911614806108d157506005546001600160a01b038381169116145b61091d5760405162461bcd60e51b815260206004820152601560248201527f54726164696e67206973206e6f7420616374697665000000000000000000000060448201526064016104b5565b610928838383610b5a565b505050565b6001600160a01b0382166109a95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b03821660009081526020819052604090205481811015610a385760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146104295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b5565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610bd65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b038216610c525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b03831660009081526020819052604090205481811015610ce15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610891565b602081526000825180602084015260005b81811015610d755760208186018101516040868401015201610d58565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610dac57600080fd5b919050565b60008060408385031215610dc457600080fd5b610dcd83610d95565b946020939093013593505050565b600080600060608486031215610df057600080fd5b610df984610d95565b9250610e0760208501610d95565b929592945050506040919091013590565b600060208284031215610e2a57600080fd5b5035919050565b600060208284031215610e4357600080fd5b610e4c82610d95565b9392505050565b60008083601f840112610e6557600080fd5b50813567ffffffffffffffff811115610e7d57600080fd5b6020830191508360208260051b8501011115610e9857600080fd5b9250929050565b60008060008060408587031215610eb557600080fd5b843567ffffffffffffffff811115610ecc57600080fd5b610ed887828801610e53565b909550935050602085013567ffffffffffffffff811115610ef857600080fd5b610f0487828801610e53565b95989497509550505050565b60008060408385031215610f2357600080fd5b610f2c83610d95565b9150610f3a60208401610d95565b90509250929050565b600181811c90821680610f5757607f821691505b602082108103610f7757634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103a157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c5ea9fa75ce3189a74fbcfade56ae29ed316de5f18903ad7c3849dd82096c75164736f6c634300081c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101515760003560e01c806379cc6790116100cd578063a457c2d711610081578063bbc0c74211610066578063bbc0c7421461029b578063dd62ed3e146102af578063f2fde38b146102e857600080fd5b8063a457c2d714610275578063a9059cbb1461028857600080fd5b80638a8c523c116100b25780638a8c523c1461024a5780638da5cb5b1461025257806395d89b411461026d57600080fd5b806379cc67901461022457806388d695b21461023757600080fd5b8063313ce5671161012457806342966c681161010957806342966c68146101de57806370a08231146101f3578063715018a61461021c57600080fd5b8063313ce567146101bc57806339509351146101cb57600080fd5b806306fdde0314610156578063095ea7b31461017457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015e6102fb565b60405161016b9190610d47565b60405180910390f35b610187610182366004610db1565b61038d565b604051901515815260200161016b565b6002545b60405190815260200161016b565b6101876101b7366004610ddb565b6103a7565b6040516012815260200161016b565b6101876101d9366004610db1565b6103cb565b6101f16101ec366004610e18565b61040a565b005b61019b610201366004610e31565b6001600160a01b031660009081526020819052604090205490565b6101f1610417565b6101f1610232366004610db1565b61042b565b6101f1610245366004610e9f565b610444565b6101f1610521565b6005546040516001600160a01b03909116815260200161016b565b61015e610559565b610187610283366004610db1565b610568565b610187610296366004610db1565b610612565b60055461018790600160a01b900460ff1681565b61019b6102bd366004610f10565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f16102f6366004610e31565b610620565b60606003805461030a90610f43565b80601f016020809104026020016040519081016040528092919081815260200182805461033690610f43565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60003361039b8185856106ad565b60019150505b92915050565b6000336103b5858285610805565b6103c0858585610897565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061039b9082908690610405908790610f7d565b6106ad565b610414338261092d565b50565b61041f610a96565b6104296000610af0565b565b610436823383610805565b610440828261092d565b5050565b8281146104be5760405162461bcd60e51b815260206004820152602660248201527f526563697069656e747320616e6420616d6f756e7473206c656e677468206d6960448201527f736d61746368000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60005b8381101561051a57610512338686848181106104df576104df610f9e565b90506020020160208101906104f49190610e31565b85858581811061050657610506610f9e565b90506020020135610897565b6001016104c1565b5050505050565b610529610a96565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b60606004805461030a90610f43565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104b5565b6103c082868684036106ad565b60003361039b818585610897565b610628610a96565b6001600160a01b0381166106a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104b5565b61041481610af0565b6001600160a01b0383166107285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461089157818110156108845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b5565b61089184848484036106ad565b50505050565b600554600160a01b900460ff1661091d576005546001600160a01b03848116911614806108d157506005546001600160a01b038381169116145b61091d5760405162461bcd60e51b815260206004820152601560248201527f54726164696e67206973206e6f7420616374697665000000000000000000000060448201526064016104b5565b610928838383610b5a565b505050565b6001600160a01b0382166109a95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b03821660009081526020819052604090205481811015610a385760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146104295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b5565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610bd65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b038216610c525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b03831660009081526020819052604090205481811015610ce15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104b5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610891565b602081526000825180602084015260005b81811015610d755760208186018101516040868401015201610d58565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610dac57600080fd5b919050565b60008060408385031215610dc457600080fd5b610dcd83610d95565b946020939093013593505050565b600080600060608486031215610df057600080fd5b610df984610d95565b9250610e0760208501610d95565b929592945050506040919091013590565b600060208284031215610e2a57600080fd5b5035919050565b600060208284031215610e4357600080fd5b610e4c82610d95565b9392505050565b60008083601f840112610e6557600080fd5b50813567ffffffffffffffff811115610e7d57600080fd5b6020830191508360208260051b8501011115610e9857600080fd5b9250929050565b60008060008060408587031215610eb557600080fd5b843567ffffffffffffffff811115610ecc57600080fd5b610ed887828801610e53565b909550935050602085013567ffffffffffffffff811115610ef857600080fd5b610f0487828801610e53565b95989497509550505050565b60008060408385031215610f2357600080fd5b610f2c83610d95565b9150610f3a60208401610d95565b90509250929050565b600181811c90821680610f5757607f821691505b602082108103610f7757634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103a157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c5ea9fa75ce3189a74fbcfade56ae29ed316de5f18903ad7c3849dd82096c75164736f6c634300081c0033
Deployed Bytecode Sourcemap
21729:1335:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9193:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11619:226;;;;;;:::i;:::-;;:::i;:::-;;;1217:14:1;;1210:22;1192:41;;1180:2;1165:18;11619:226:0;1052:187:1;10322:108:0;10410:12;;10322:108;;;1390:25:1;;;1378:2;1363:18;10322:108:0;1244:177:1;12425:295:0;;;;;;:::i;:::-;;:::i;10164:93::-;;;10247:2;1947:36:1;;1935:2;1920:18;10164:93:0;1805:184:1;13129:263:0;;;;;;:::i;:::-;;:::i;21116:91::-;;;;;;:::i;:::-;;:::i;:::-;;10493:143;;;;;;:::i;:::-;-1:-1:-1;;;;;10610:18:0;10583:7;10610:18;;;;;;;;;;;;10493:143;2826:103;;;:::i;21526:164::-;;;;;;:::i;:::-;;:::i;22268:393::-;;;;;;:::i;:::-;;:::i;22098:83::-;;;:::i;2185:87::-;2258:6;;2185:87;;-1:-1:-1;;;;;2258:6:0;;;3707:74:1;;3695:2;3680:18;2185:87:0;3561:226:1;9412:104:0;;;:::i;13895:498::-;;;;;;:::i;:::-;;:::i;10842:218::-;;;;;;:::i;:::-;;:::i;21778:33::-;;;;;-1:-1:-1;;;21778:33:0;;;;;;11123:176;;;;;;:::i;:::-;-1:-1:-1;;;;;11264:18:0;;;11237:7;11264:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11123:176;3084:238;;;;;;:::i;:::-;;:::i;9193:100::-;9247:13;9280:5;9273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9193:100;:::o;11619:226::-;11727:4;781:10;11783:32;781:10;11799:7;11808:6;11783:8;:32::i;:::-;11833:4;11826:11;;;11619:226;;;;;:::o;12425:295::-;12556:4;781:10;12614:38;12630:4;781:10;12645:6;12614:15;:38::i;:::-;12663:27;12673:4;12679:2;12683:6;12663:9;:27::i;:::-;-1:-1:-1;12708:4:0;;12425:295;-1:-1:-1;;;;12425:295:0:o;13129:263::-;781:10;13242:4;11264:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11264:27:0;;;;;;;;;;13242:4;;781:10;13298:64;;781:10;;11264:27;;13323:38;;13351:10;;13323:38;:::i;:::-;13298:8;:64::i;21116:91::-;21172:27;781:10;21192:6;21172:5;:27::i;:::-;21116:91;:::o;2826:103::-;2071:13;:11;:13::i;:::-;2891:30:::1;2918:1;2891:18;:30::i;:::-;2826:103::o:0;21526:164::-;21603:46;21619:7;781:10;21642:6;21603:15;:46::i;:::-;21660:22;21666:7;21675:6;21660:5;:22::i;:::-;21526:164;;:::o;22268:393::-;22417:35;;;22395:123;;;;-1:-1:-1;;;22395:123:0;;4985:2:1;22395:123:0;;;4967:21:1;5024:2;5004:18;;;4997:30;5063:34;5043:18;;;5036:62;5134:8;5114:18;;;5107:36;5160:19;;22395:123:0;;;;;;;;;22536:9;22531:123;22551:21;;;22531:123;;;22594:48;22604:10;22616;;22627:1;22616:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;22631:7;;22639:1;22631:10;;;;;;;:::i;:::-;;;;;;;22594:9;:48::i;:::-;22574:3;;22531:123;;;;22268:393;;;;:::o;22098:83::-;2071:13;:11;:13::i;:::-;22153::::1;:20:::0;;;::::1;-1:-1:-1::0;;;22153:20:0::1;::::0;;22098:83::o;9412:104::-;9468:13;9501:7;9494:14;;;;;:::i;13895:498::-;781:10;14013:4;11264:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11264:27:0;;;;;;;;;;14013:4;;781:10;14174:15;14154:16;:35;;14132:122;;;;-1:-1:-1;;;14132:122:0;;5581:2:1;14132:122:0;;;5563:21:1;5620:2;5600:18;;;5593:30;5659:34;5639:18;;;5632:62;5730:7;5710:18;;;5703:35;5755:19;;14132:122:0;5379:401:1;14132:122:0;14290:60;14299:5;14306:7;14334:15;14315:16;:34;14290:8;:60::i;10842:218::-;10946:4;781:10;11002:28;781:10;11019:2;11023:6;11002:9;:28::i;3084:238::-;2071:13;:11;:13::i;:::-;-1:-1:-1;;;;;3187:22:0;::::1;3165:110;;;::::0;-1:-1:-1;;;3165:110:0;;5987:2:1;3165:110:0::1;::::0;::::1;5969:21:1::0;6026:2;6006:18;;;5999:30;6065:34;6045:18;;;6038:62;6136:8;6116:18;;;6109:36;6162:19;;3165:110:0::1;5785:402:1::0;3165:110:0::1;3286:28;3305:8;3286:18;:28::i;18021:380::-:0;-1:-1:-1;;;;;18157:19:0;;18149:68;;;;-1:-1:-1;;;18149:68:0;;6394:2:1;18149:68:0;;;6376:21:1;6433:2;6413:18;;;6406:30;6472:34;6452:18;;;6445:62;6543:6;6523:18;;;6516:34;6567:19;;18149:68:0;6192:400:1;18149:68:0;-1:-1:-1;;;;;18236:21:0;;18228:68;;;;-1:-1:-1;;;18228:68:0;;6799:2:1;18228:68:0;;;6781:21:1;6838:2;6818:18;;;6811:30;6877:34;6857:18;;;6850:62;6948:4;6928:18;;;6921:32;6970:19;;18228:68:0;6597:398:1;18228:68:0;-1:-1:-1;;;;;18309:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18361:32;;1390:25:1;;;18361:32:0;;1363:18:1;18361:32:0;;;;;;;18021:380;;;:::o;18692:502::-;-1:-1:-1;;;;;11264:18:0;;;18827:24;11264:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18894:37:0;;18890:297;;18994:6;18974:16;:26;;18948:117;;;;-1:-1:-1;;;18948:117:0;;7202:2:1;18948:117:0;;;7184:21:1;7241:2;7221:18;;;7214:30;7280:31;7260:18;;;7253:59;7329:18;;18948:117:0;7000:353:1;18948:117:0;19109:51;19118:5;19125:7;19153:6;19134:16;:25;19109:8;:51::i;:::-;18816:378;18692:502;;;:::o;22771:290::-;22900:13;;-1:-1:-1;;;22900:13:0;;;;22895:113;;2258:6;;-1:-1:-1;;;;;22938:15:0;;;2258:6;;22938:15;;:32;;-1:-1:-1;2258:6:0;;-1:-1:-1;;;;;22957:13:0;;;2258:6;;22957:13;22938:32;22930:66;;;;-1:-1:-1;;;22930:66:0;;7560:2:1;22930:66:0;;;7542:21:1;7599:2;7579:18;;;7572:30;7638:23;7618:18;;;7611:51;7679:18;;22930:66:0;7358:345:1;22930:66:0;23020:33;23036:4;23042:2;23046:6;23020:15;:33::i;:::-;22771:290;;;:::o;16908:675::-;-1:-1:-1;;;;;16992:21:0;;16984:67;;;;-1:-1:-1;;;16984:67:0;;7910:2:1;16984:67:0;;;7892:21:1;7949:2;7929:18;;;7922:30;7988:34;7968:18;;;7961:62;8059:3;8039:18;;;8032:31;8080:19;;16984:67:0;7708:397:1;16984:67:0;-1:-1:-1;;;;;17151:18:0;;17126:22;17151:18;;;;;;;;;;;17188:24;;;;17180:71;;;;-1:-1:-1;;;17180:71:0;;8312:2:1;17180:71:0;;;8294:21:1;8351:2;8331:18;;;8324:30;8390:34;8370:18;;;8363:62;8461:4;8441:18;;;8434:32;8483:19;;17180:71:0;8110:398:1;17180:71:0;-1:-1:-1;;;;;17287:18:0;;:9;:18;;;;;;;;;;;17308:23;;;17287:44;;17426:12;:22;;;;;;;17477:37;1390:25:1;;;17287:9:0;;:18;17477:37;;1363:18:1;17477:37:0;;;;;;;22771:290;;;:::o;2350:132::-;2258:6;;-1:-1:-1;;;;;2258:6:0;781:10;2414:23;2406:68;;;;-1:-1:-1;;;2406:68:0;;8715:2:1;2406:68:0;;;8697:21:1;;;8734:18;;;8727:30;8793:34;8773:18;;;8766:62;8845:18;;2406:68:0;8513:356:1;3482:191:0;3575:6;;;-1:-1:-1;;;;;3592:17:0;;;;;;;;;;;3625:40;;3575:6;;;3592:17;3575:6;;3625:40;;3556:16;;3625:40;3545:128;3482:191;:::o;14863:877::-;-1:-1:-1;;;;;14994:18:0;;14986:68;;;;-1:-1:-1;;;14986:68:0;;9076:2:1;14986:68:0;;;9058:21:1;9115:2;9095:18;;;9088:30;9154:34;9134:18;;;9127:62;9225:7;9205:18;;;9198:35;9250:19;;14986:68:0;8874:401:1;14986:68:0;-1:-1:-1;;;;;15073:16:0;;15065:64;;;;-1:-1:-1;;;15065:64:0;;9482:2:1;15065:64:0;;;9464:21:1;9521:2;9501:18;;;9494:30;9560:34;9540:18;;;9533:62;9631:5;9611:18;;;9604:33;9654:19;;15065:64:0;9280:399:1;15065:64:0;-1:-1:-1;;;;;15215:15:0;;15193:19;15215:15;;;;;;;;;;;15263:21;;;;15241:109;;;;-1:-1:-1;;;15241:109:0;;9886:2:1;15241:109:0;;;9868:21:1;9925:2;9905:18;;;9898:30;9964:34;9944:18;;;9937:62;10035:8;10015:18;;;10008:36;10061:19;;15241:109:0;9684:402:1;15241:109:0;-1:-1:-1;;;;;15386:15:0;;;:9;:15;;;;;;;;;;;15404:20;;;15386:38;;15604:13;;;;;;;;;;:23;;;;;;15656:26;;1390:25:1;;;15604:13:0;;15656:26;;1363:18:1;15656:26:0;;;;;;;15695:37;22771:290;14:527:1;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:196::-;614:20;;-1:-1:-1;;;;;663:54:1;;653:65;;643:93;;732:1;729;722:12;643:93;546:196;;;:::o;747:300::-;815:6;823;876:2;864:9;855:7;851:23;847:32;844:52;;;892:1;889;882:12;844:52;915:29;934:9;915:29;:::i;:::-;905:39;1013:2;998:18;;;;985:32;;-1:-1:-1;;;747:300:1:o;1426:374::-;1503:6;1511;1519;1572:2;1560:9;1551:7;1547:23;1543:32;1540:52;;;1588:1;1585;1578:12;1540:52;1611:29;1630:9;1611:29;:::i;:::-;1601:39;;1659:38;1693:2;1682:9;1678:18;1659:38;:::i;:::-;1426:374;;1649:48;;-1:-1:-1;;;1766:2:1;1751:18;;;;1738:32;;1426:374::o;1994:226::-;2053:6;2106:2;2094:9;2085:7;2081:23;2077:32;2074:52;;;2122:1;2119;2112:12;2074:52;-1:-1:-1;2167:23:1;;1994:226;-1:-1:-1;1994:226:1:o;2225:186::-;2284:6;2337:2;2325:9;2316:7;2312:23;2308:32;2305:52;;;2353:1;2350;2343:12;2305:52;2376:29;2395:9;2376:29;:::i;:::-;2366:39;2225:186;-1:-1:-1;;;2225:186:1:o;2416:367::-;2479:8;2489:6;2543:3;2536:4;2528:6;2524:17;2520:27;2510:55;;2561:1;2558;2551:12;2510:55;-1:-1:-1;2584:20:1;;2627:18;2616:30;;2613:50;;;2659:1;2656;2649:12;2613:50;2696:4;2688:6;2684:17;2672:29;;2756:3;2749:4;2739:6;2736:1;2732:14;2724:6;2720:27;2716:38;2713:47;2710:67;;;2773:1;2770;2763:12;2710:67;2416:367;;;;;:::o;2788:768::-;2910:6;2918;2926;2934;2987:2;2975:9;2966:7;2962:23;2958:32;2955:52;;;3003:1;3000;2993:12;2955:52;3043:9;3030:23;3076:18;3068:6;3065:30;3062:50;;;3108:1;3105;3098:12;3062:50;3147:70;3209:7;3200:6;3189:9;3185:22;3147:70;:::i;:::-;3236:8;;-1:-1:-1;3121:96:1;-1:-1:-1;;3324:2:1;3309:18;;3296:32;3353:18;3340:32;;3337:52;;;3385:1;3382;3375:12;3337:52;3424:72;3488:7;3477:8;3466:9;3462:24;3424:72;:::i;:::-;2788:768;;;;-1:-1:-1;3515:8:1;-1:-1:-1;;;;2788:768:1:o;3792:260::-;3860:6;3868;3921:2;3909:9;3900:7;3896:23;3892:32;3889:52;;;3937:1;3934;3927:12;3889:52;3960:29;3979:9;3960:29;:::i;:::-;3950:39;;4008:38;4042:2;4031:9;4027:18;4008:38;:::i;:::-;3998:48;;3792:260;;;;;:::o;4057:437::-;4136:1;4132:12;;;;4179;;;4200:61;;4254:4;4246:6;4242:17;4232:27;;4200:61;4307:2;4299:6;4296:14;4276:18;4273:38;4270:218;;-1:-1:-1;;;4341:1:1;4334:88;4445:4;4442:1;4435:15;4473:4;4470:1;4463:15;4270:218;;4057:437;;;:::o;4499:279::-;4564:9;;;4585:10;;;4582:190;;;-1:-1:-1;;;4625:1:1;4618:88;4729:4;4726:1;4719:15;4757:4;4754:1;4747:15;5190:184;-1:-1:-1;;;5239:1:1;5232:88;5339:4;5336:1;5329:15;5363:4;5360:1;5353:15
Swarm Source
ipfs://c5ea9fa75ce3189a74fbcfade56ae29ed316de5f18903ad7c3849dd82096c751
[ 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.