ETH Price: $3,440.40 (+1.44%)
Gas: 4 Gwei

Token

Zim (ZIM)
 

Overview

Max Total Supply

420,420,420,420 ZIM

Holders

516

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
333,333 ZIM

Value
$0.00
0x39f5af35b9a0045b15a9af596816c0ac2c3f8427
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Zim

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-12
*/

// https://t.me/invaderz_earth
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/zim.sol


pragma solidity ^0.8.9;



contract Zim is ERC20, Ownable {
    constructor() ERC20("Zim", "ZIM") {
        _mint(msg.sender, 420420420420 * 10 ** decimals());
    }

    fallback() external {
        revert("Ether not accepted");
    }

    receive() external payable {
        revert("Ether not accepted");
    }
}

Contract Security Audit

Contract ABI

[{"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"},{"stateMutability":"nonpayable","type":"fallback"},{"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":"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":[{"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"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040805180820182526003808252625a696d60e81b60208084019182528451808601909552828552625a494d60e81b90850152825192939262000057929190620001d6565b5080516200006d906004906020840190620001d6565b5050506200008a62000084620000ba60201b60201c565b620000be565b620000b4336200009d6012600a62000391565b620000ae906461e3028344620003a9565b62000110565b62000423565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200016b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017f9190620003cb565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620001e490620003e6565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002d3578160001904821115620002b757620002b76200027c565b80851615620002c557918102915b93841c939080029062000297565b509250929050565b600082620002ec575060016200038b565b81620002fb575060006200038b565b81600181146200031457600281146200031f576200033f565b60019150506200038b565b60ff8411156200033357620003336200027c565b50506001821b6200038b565b5060208310610133831016604e8410600b841016171562000364575081810a6200038b565b62000370838362000292565b80600019048211156200038757620003876200027c565b0290505b92915050565b6000620003a260ff841683620002db565b9392505050565b6000816000190483118215151615620003c657620003c66200027c565b500290565b60008219821115620003e157620003e16200027c565b500190565b600181811c90821680620003fb57607f821691505b602082108114156200041d57634e487b7160e01b600052602260045260246000fd5b50919050565b610b4380620004336000396000f3fe6080604052600436106100e15760003560e01c8063715018a61161007f578063a457c2d711610059578063a457c2d7146102d2578063a9059cbb146102f2578063dd62ed3e14610312578063f2fde38b1461033257610128565b8063715018a61461027e5780638da5cb5b1461029557806395d89b41146102bd57610128565b806323b872dd116100bb57806323b872dd146101ec578063313ce5671461020c578063395093511461022857806370a082311461024857610128565b806306fdde0314610172578063095ea7b31461019d57806318160ddd146101cd57610128565b366101285760405162461bcd60e51b8152602060048201526012602482015271115d1a195c881b9bdd081858d8d95c1d195960721b60448201526064015b60405180910390fd5b34801561013457600080fd5b5060405162461bcd60e51b8152602060048201526012602482015271115d1a195c881b9bdd081858d8d95c1d195960721b604482015260640161011f565b34801561017e57600080fd5b50610187610352565b6040516101949190610980565b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046109f1565b6103e4565b6040519015158152602001610194565b3480156101d957600080fd5b506002545b604051908152602001610194565b3480156101f857600080fd5b506101bd610207366004610a1b565b6103fc565b34801561021857600080fd5b5060405160128152602001610194565b34801561023457600080fd5b506101bd6102433660046109f1565b610420565b34801561025457600080fd5b506101de610263366004610a57565b6001600160a01b031660009081526020819052604090205490565b34801561028a57600080fd5b50610293610442565b005b3480156102a157600080fd5b506005546040516001600160a01b039091168152602001610194565b3480156102c957600080fd5b50610187610456565b3480156102de57600080fd5b506101bd6102ed3660046109f1565b610465565b3480156102fe57600080fd5b506101bd61030d3660046109f1565b6104e0565b34801561031e57600080fd5b506101de61032d366004610a79565b6104ee565b34801561033e57600080fd5b5061029361034d366004610a57565b610519565b60606003805461036190610aac565b80601f016020809104026020016040519081016040528092919081815260200182805461038d90610aac565b80156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b6000336103f2818585610592565b5060019392505050565b60003361040a8582856106b6565b610415858585610730565b506001949350505050565b6000336103f281858561043383836104ee565b61043d9190610ae7565b610592565b61044a6108d4565b610454600061092e565b565b60606004805461036190610aac565b6000338161047382866104ee565b9050838110156104d35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161011f565b6104158286868403610592565b6000336103f2818585610730565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105216108d4565b6001600160a01b0381166105865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161011f565b61058f8161092e565b50565b6001600160a01b0383166105f45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161011f565b6001600160a01b0382166106555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161011f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106c284846104ee565b9050600019811461072a578181101561071d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161011f565b61072a8484848403610592565b50505050565b6001600160a01b0383166107945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161011f565b6001600160a01b0382166107f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161011f565b6001600160a01b0383166000908152602081905260409020548181101561086e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161011f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361072a565b6005546001600160a01b031633146104545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161011f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156109ad57858101830151858201604001528201610991565b818111156109bf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109ec57600080fd5b919050565b60008060408385031215610a0457600080fd5b610a0d836109d5565b946020939093013593505050565b600080600060608486031215610a3057600080fd5b610a39846109d5565b9250610a47602085016109d5565b9150604084013590509250925092565b600060208284031215610a6957600080fd5b610a72826109d5565b9392505050565b60008060408385031215610a8c57600080fd5b610a95836109d5565b9150610aa3602084016109d5565b90509250929050565b600181811c90821680610ac057607f821691505b60208210811415610ae157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610b0857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a4b29ffacc3a96268e186f8dcdce53afb5255593d403742d35b0a6a6ec4292f864736f6c63430008090033

Deployed Bytecode

0x6080604052600436106100e15760003560e01c8063715018a61161007f578063a457c2d711610059578063a457c2d7146102d2578063a9059cbb146102f2578063dd62ed3e14610312578063f2fde38b1461033257610128565b8063715018a61461027e5780638da5cb5b1461029557806395d89b41146102bd57610128565b806323b872dd116100bb57806323b872dd146101ec578063313ce5671461020c578063395093511461022857806370a082311461024857610128565b806306fdde0314610172578063095ea7b31461019d57806318160ddd146101cd57610128565b366101285760405162461bcd60e51b8152602060048201526012602482015271115d1a195c881b9bdd081858d8d95c1d195960721b60448201526064015b60405180910390fd5b34801561013457600080fd5b5060405162461bcd60e51b8152602060048201526012602482015271115d1a195c881b9bdd081858d8d95c1d195960721b604482015260640161011f565b34801561017e57600080fd5b50610187610352565b6040516101949190610980565b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046109f1565b6103e4565b6040519015158152602001610194565b3480156101d957600080fd5b506002545b604051908152602001610194565b3480156101f857600080fd5b506101bd610207366004610a1b565b6103fc565b34801561021857600080fd5b5060405160128152602001610194565b34801561023457600080fd5b506101bd6102433660046109f1565b610420565b34801561025457600080fd5b506101de610263366004610a57565b6001600160a01b031660009081526020819052604090205490565b34801561028a57600080fd5b50610293610442565b005b3480156102a157600080fd5b506005546040516001600160a01b039091168152602001610194565b3480156102c957600080fd5b50610187610456565b3480156102de57600080fd5b506101bd6102ed3660046109f1565b610465565b3480156102fe57600080fd5b506101bd61030d3660046109f1565b6104e0565b34801561031e57600080fd5b506101de61032d366004610a79565b6104ee565b34801561033e57600080fd5b5061029361034d366004610a57565b610519565b60606003805461036190610aac565b80601f016020809104026020016040519081016040528092919081815260200182805461038d90610aac565b80156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b6000336103f2818585610592565b5060019392505050565b60003361040a8582856106b6565b610415858585610730565b506001949350505050565b6000336103f281858561043383836104ee565b61043d9190610ae7565b610592565b61044a6108d4565b610454600061092e565b565b60606004805461036190610aac565b6000338161047382866104ee565b9050838110156104d35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161011f565b6104158286868403610592565b6000336103f2818585610730565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105216108d4565b6001600160a01b0381166105865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161011f565b61058f8161092e565b50565b6001600160a01b0383166105f45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161011f565b6001600160a01b0382166106555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161011f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106c284846104ee565b9050600019811461072a578181101561071d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161011f565b61072a8484848403610592565b50505050565b6001600160a01b0383166107945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161011f565b6001600160a01b0382166107f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161011f565b6001600160a01b0383166000908152602081905260409020548181101561086e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161011f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361072a565b6005546001600160a01b031633146104545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161011f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156109ad57858101830151858201604001528201610991565b818111156109bf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109ec57600080fd5b919050565b60008060408385031215610a0457600080fd5b610a0d836109d5565b946020939093013593505050565b600080600060608486031215610a3057600080fd5b610a39846109d5565b9250610a47602085016109d5565b9150604084013590509250925092565b600060208284031215610a6957600080fd5b610a72826109d5565b9392505050565b60008060408385031215610a8c57600080fd5b610a95836109d5565b9150610aa3602084016109d5565b90509250929050565b600181811c90821680610ac057607f821691505b60208210811415610ae157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610b0857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a4b29ffacc3a96268e186f8dcdce53afb5255593d403742d35b0a6a6ec4292f864736f6c63430008090033

Deployed Bytecode Sourcemap

20634:301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20896:28;;-1:-1:-1;;;20896:28:0;;216:2:1;20896:28:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:48;332:18;;20896:28:0;;;;;;;;20634:301;;;;;;;;;;-1:-1:-1;20814:28:0;;-1:-1:-1;;;20814:28:0;;216:2:1;20814:28:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:48;332:18;;20814:28:0;14:342:1;9383:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11734:201;;;;;;;;;;-1:-1:-1;11734:201:0;;;;;:::i;:::-;;:::i;:::-;;;1565:14:1;;1558:22;1540:41;;1528:2;1513:18;11734:201:0;1400:187:1;10503:108:0;;;;;;;;;;-1:-1:-1;10591:12:0;;10503:108;;;1738:25:1;;;1726:2;1711:18;10503:108:0;1592:177:1;12515:295:0;;;;;;;;;;-1:-1:-1;12515:295:0;;;;;:::i;:::-;;:::i;10345:93::-;;;;;;;;;;-1:-1:-1;10345:93:0;;10428:2;2249:36:1;;2237:2;2222:18;10345:93:0;2107:184:1;13219:238:0;;;;;;;;;;-1:-1:-1;13219:238:0;;;;;:::i;:::-;;:::i;10674:127::-;;;;;;;;;;-1:-1:-1;10674:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10775:18:0;10748:7;10775:18;;;;;;;;;;;;10674:127;2808:103;;;;;;;;;;;;;:::i;:::-;;2160:87;;;;;;;;;;-1:-1:-1;2233:6:0;;2160:87;;-1:-1:-1;;;;;2233:6:0;;;2633:51:1;;2621:2;2606:18;2160:87:0;2487:203:1;9602:104:0;;;;;;;;;;;;;:::i;13960:436::-;;;;;;;;;;-1:-1:-1;13960:436:0;;;;;:::i;:::-;;:::i;11007:193::-;;;;;;;;;;-1:-1:-1;11007:193:0;;;;;:::i;:::-;;:::i;11263:151::-;;;;;;;;;;-1:-1:-1;11263:151:0;;;;;:::i;:::-;;:::i;3066:201::-;;;;;;;;;;-1:-1:-1;3066:201:0;;;;;:::i;:::-;;:::i;9383:100::-;9437:13;9470:5;9463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9383:100;:::o;11734:201::-;11817:4;791:10;11873:32;791:10;11889:7;11898:6;11873:8;:32::i;:::-;-1:-1:-1;11923:4:0;;11734:201;-1:-1:-1;;;11734:201:0:o;12515:295::-;12646:4;791:10;12704:38;12720:4;791:10;12735:6;12704:15;:38::i;:::-;12753:27;12763:4;12769:2;12773:6;12753:9;:27::i;:::-;-1:-1:-1;12798:4:0;;12515:295;-1:-1:-1;;;;12515:295:0:o;13219:238::-;13307:4;791:10;13363:64;791:10;13379:7;13416:10;13388:25;791:10;13379:7;13388:9;:25::i;:::-;:38;;;;:::i;:::-;13363:8;:64::i;2808:103::-;2046:13;:11;:13::i;:::-;2873:30:::1;2900:1;2873:18;:30::i;:::-;2808:103::o:0;9602:104::-;9658:13;9691:7;9684:14;;;;;:::i;13960:436::-;14053:4;791:10;14053:4;14136:25;791:10;14153:7;14136:9;:25::i;:::-;14109:52;;14200:15;14180:16;:35;;14172:85;;;;-1:-1:-1;;;14172:85:0;;3777:2:1;14172:85:0;;;3759:21:1;3816:2;3796:18;;;3789:30;3855:34;3835:18;;;3828:62;-1:-1:-1;;;3906:18:1;;;3899:35;3951:19;;14172:85:0;3575:401:1;14172:85:0;14293:60;14302:5;14309:7;14337:15;14318:16;:34;14293:8;:60::i;11007:193::-;11086:4;791:10;11142:28;791:10;11159:2;11163:6;11142:9;:28::i;11263:151::-;-1:-1:-1;;;;;11379:18:0;;;11352:7;11379:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11263:151::o;3066:201::-;2046:13;:11;:13::i;:::-;-1:-1:-1;;;;;3155:22:0;::::1;3147:73;;;::::0;-1:-1:-1;;;3147:73:0;;4183:2:1;3147:73:0::1;::::0;::::1;4165:21:1::0;4222:2;4202:18;;;4195:30;4261:34;4241:18;;;4234:62;-1:-1:-1;;;4312:18:1;;;4305:36;4358:19;;3147:73:0::1;3981:402:1::0;3147:73:0::1;3231:28;3250:8;3231:18;:28::i;:::-;3066:201:::0;:::o;17987:380::-;-1:-1:-1;;;;;18123:19:0;;18115:68;;;;-1:-1:-1;;;18115:68:0;;4590:2:1;18115:68:0;;;4572:21:1;4629:2;4609:18;;;4602:30;4668:34;4648:18;;;4641:62;-1:-1:-1;;;4719:18:1;;;4712:34;4763:19;;18115:68:0;4388:400:1;18115:68:0;-1:-1:-1;;;;;18202:21:0;;18194:68;;;;-1:-1:-1;;;18194:68:0;;4995:2:1;18194:68:0;;;4977:21:1;5034:2;5014:18;;;5007:30;5073:34;5053:18;;;5046:62;-1:-1:-1;;;5124:18:1;;;5117:32;5166:19;;18194:68:0;4793:398:1;18194:68:0;-1:-1:-1;;;;;18275:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18327:32;;1738:25:1;;;18327:32:0;;1711:18:1;18327:32:0;;;;;;;17987:380;;;:::o;18658:453::-;18793:24;18820:25;18830:5;18837:7;18820:9;:25::i;:::-;18793:52;;-1:-1:-1;;18860:16:0;:37;18856:248;;18942:6;18922:16;:26;;18914:68;;;;-1:-1:-1;;;18914:68:0;;5398:2:1;18914:68:0;;;5380:21:1;5437:2;5417:18;;;5410:30;5476:31;5456:18;;;5449:59;5525:18;;18914:68:0;5196:353:1;18914:68:0;19026:51;19035:5;19042:7;19070:6;19051:16;:25;19026:8;:51::i;:::-;18782:329;18658:453;;;:::o;14866:840::-;-1:-1:-1;;;;;14997:18:0;;14989:68;;;;-1:-1:-1;;;14989:68:0;;5756:2:1;14989:68:0;;;5738:21:1;5795:2;5775:18;;;5768:30;5834:34;5814:18;;;5807:62;-1:-1:-1;;;5885:18:1;;;5878:35;5930:19;;14989:68:0;5554:401:1;14989:68:0;-1:-1:-1;;;;;15076:16:0;;15068:64;;;;-1:-1:-1;;;15068:64:0;;6162:2:1;15068:64:0;;;6144:21:1;6201:2;6181:18;;;6174:30;6240:34;6220:18;;;6213:62;-1:-1:-1;;;6291:18:1;;;6284:33;6334:19;;15068:64:0;5960:399:1;15068:64:0;-1:-1:-1;;;;;15218:15:0;;15196:19;15218:15;;;;;;;;;;;15252:21;;;;15244:72;;;;-1:-1:-1;;;15244:72:0;;6566:2:1;15244:72:0;;;6548:21:1;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:36;6741:19;;15244:72:0;6364:402:1;15244:72:0;-1:-1:-1;;;;;15352:15:0;;;:9;:15;;;;;;;;;;;15370:20;;;15352:38;;15570:13;;;;;;;;;;:23;;;;;;15622:26;;1738:25:1;;;15570:13:0;;15622:26;;1711:18:1;15622:26:0;;;;;;;15661:37;19711:125;2325:132;2233:6;;-1:-1:-1;;;;;2233:6:0;791:10;2389:23;2381:68;;;;-1:-1:-1;;;2381:68:0;;6973:2:1;2381:68:0;;;6955:21:1;;;6992:18;;;6985:30;7051:34;7031:18;;;7024:62;7103:18;;2381:68:0;6771:356:1;3427:191:0;3520:6;;;-1:-1:-1;;;;;3537:17:0;;;-1:-1:-1;;;;;;3537:17:0;;;;;;;3570:40;;3520:6;;;3537:17;3520:6;;3570:40;;3501:16;;3570:40;3490:128;3427:191;:::o;361:597:1:-;473:4;502:2;531;520:9;513:21;563:6;557:13;606:6;601:2;590:9;586:18;579:34;631:1;641:140;655:6;652:1;649:13;641:140;;;750:14;;;746:23;;740:30;716:17;;;735:2;712:26;705:66;670:10;;641:140;;;799:6;796:1;793:13;790:91;;;869:1;864:2;855:6;844:9;840:22;836:31;829:42;790:91;-1:-1:-1;942:2:1;921:15;-1:-1:-1;;917:29:1;902:45;;;;949:2;898:54;;361:597;-1:-1:-1;;;361:597:1:o;963:173::-;1031:20;;-1:-1:-1;;;;;1080:31:1;;1070:42;;1060:70;;1126:1;1123;1116:12;1060:70;963:173;;;:::o;1141:254::-;1209:6;1217;1270:2;1258:9;1249:7;1245:23;1241:32;1238:52;;;1286:1;1283;1276:12;1238:52;1309:29;1328:9;1309:29;:::i;:::-;1299:39;1385:2;1370:18;;;;1357:32;;-1:-1:-1;;;1141:254:1:o;1774:328::-;1851:6;1859;1867;1920:2;1908:9;1899:7;1895:23;1891:32;1888:52;;;1936:1;1933;1926:12;1888:52;1959:29;1978:9;1959:29;:::i;:::-;1949:39;;2007:38;2041:2;2030:9;2026:18;2007:38;:::i;:::-;1997:48;;2092:2;2081:9;2077:18;2064:32;2054:42;;1774:328;;;;;:::o;2296:186::-;2355:6;2408:2;2396:9;2387:7;2383:23;2379:32;2376:52;;;2424:1;2421;2414:12;2376:52;2447:29;2466:9;2447:29;:::i;:::-;2437:39;2296:186;-1:-1:-1;;;2296:186:1:o;2695:260::-;2763:6;2771;2824:2;2812:9;2803:7;2799:23;2795:32;2792:52;;;2840:1;2837;2830:12;2792:52;2863:29;2882:9;2863:29;:::i;:::-;2853:39;;2911:38;2945:2;2934:9;2930:18;2911:38;:::i;:::-;2901:48;;2695:260;;;;;:::o;2960:380::-;3039:1;3035:12;;;;3082;;;3103:61;;3157:4;3149:6;3145:17;3135:27;;3103:61;3210:2;3202:6;3199:14;3179:18;3176:38;3173:161;;;3256:10;3251:3;3247:20;3244:1;3237:31;3291:4;3288:1;3281:15;3319:4;3316:1;3309:15;3173:161;;2960:380;;;:::o;3345:225::-;3385:3;3416:1;3412:6;3409:1;3406:13;3403:136;;;3461:10;3456:3;3452:20;3449:1;3442:31;3496:4;3493:1;3486:15;3524:4;3521:1;3514:15;3403:136;-1:-1:-1;3555:9:1;;3345:225::o

Swarm Source

ipfs://a4b29ffacc3a96268e186f8dcdce53afb5255593d403742d35b0a6a6ec4292f8
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.