ETH Price: $3,275.28 (+0.89%)
Gas: 10 Gwei

Token

NFT Finance (NFTF)
 

Overview

Max Total Supply

100,000,000 NFTF

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
02468.eth
Balance
149.984850018914484224 NFTF

Value
$0.00
0xFDAb3be33284Ef68442F55535ffC0b1FCbad2B62
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:
NFTF

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-02
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 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 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.zeppelin.solutions/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, _allowances[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 = _allowances[owner][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 {}
}

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

contract NFTF is ERC20, Ownable {
    bytes32 private root;
    bool public isActive;
    mapping(address => bool) public isClaim;

    constructor(bytes32 _root) ERC20("NFT Finance", "NFTF") {
        root = _root;
        _mint(msg.sender, 75000000 * 1e18);
        _mint(address(this), 25000000 * 1e18);
    }

    function claim(uint256 _amount, bytes32[] memory _proof) public {
        require(isActive, "Claim is not active");
        bytes32 _leaf = keccak256(abi.encodePacked(msg.sender, _amount));
        require(MerkleProof.verify(_proof, root, _leaf), "Not whitelisted");
        require(!isClaim[msg.sender], "Not Claim");
        _transfer(address(this), msg.sender, _amount);
        isClaim[msg.sender] = true;
    }

    function setRoot(bytes32 _root) public onlyOwner {
        root = _root;
    }

    function setActive(bool _bol) public onlyOwner {
        isActive = _bol;
    }

    function OwnerWithdraw(address _to, uint256 _amount) public onlyOwner {
        _transfer(address(this), _to, _amount);
    }

    function OwnerAllWithdraw(address _to) public onlyOwner {
        _transfer(address(this),_to,balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"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":"_to","type":"address"}],"name":"OwnerAllWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"OwnerWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isClaim","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bol","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","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"}]

60806040523480156200001157600080fd5b50604051620012f6380380620012f68339810160408190526200003491620002d4565b604080518082018252600b81526a4e46542046696e616e636560a81b60208083019182528351808501909452600484526327232a2360e11b90840152815191929162000083916003916200022e565b508051620000999060049060208401906200022e565b505050620000b6620000b0620000f060201b60201c565b620000f4565b6006819055620000d2336a3e09de2596099e2b00000062000146565b620000e9306a14adf4b7320334b900000062000146565b5062000352565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001a15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001b59190620002ee565b90915550506001600160a01b03821660009081526020819052604081208054839290620001e4908490620002ee565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200023c9062000315565b90600052602060002090601f016020900481019282620002605760008555620002ab565b82601f106200027b57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002ab5782518255916020019190600101906200028e565b50620002b9929150620002bd565b5090565b5b80821115620002b95760008155600101620002be565b600060208284031215620002e757600080fd5b5051919050565b600082198211156200031057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200032a57607f821691505b602082108114156200034c57634e487b7160e01b600052602260045260246000fd5b50919050565b610f9480620003626000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610283578063a9059cbb14610296578063acec338a146102a9578063dab5f340146102bc578063dd62ed3e146102cf578063f2fde38b1461030857600080fd5b8063715018a614610222578063727eed001461022a5780637a81e4af1461024d5780638da5cb5b1461026057806395d89b411461027b57600080fd5b806323b872dd116100ff57806323b872dd146101b15780632f52ebb7146101c4578063313ce567146101d757806339509351146101e657806370a08231146101f957600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c461eb1461017d57806318160ddd1461019257806322f3e2d4146101a4575b600080fd5b61014461031b565b6040516101519190610e24565b60405180910390f35b61016d610168366004610cee565b6103ad565b6040519015158152602001610151565b61019061018b366004610cee565b6103c5565b005b6002545b604051908152602001610151565b60075461016d9060ff1681565b61016d6101bf366004610cb2565b610407565b6101906101d2366004610d53565b61042b565b60405160128152602001610151565b61016d6101f4366004610cee565b610574565b610196610207366004610c5d565b6001600160a01b031660009081526020819052604090205490565b6101906105b3565b61016d610238366004610c5d565b60086020526000908152604090205460ff1681565b61019061025b366004610c5d565b6105e9565b6005546040516001600160a01b039091168152602001610151565b610144610632565b61016d610291366004610cee565b610641565b61016d6102a4366004610cee565b6106d3565b6101906102b7366004610d18565b6106e1565b6101906102ca366004610d3a565b61071e565b6101966102dd366004610c7f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610190610316366004610c5d565b61074d565b60606003805461032a90610ec6565b80601f016020809104026020016040519081016040528092919081815260200182805461035690610ec6565b80156103a35780601f10610378576101008083540402835291602001916103a3565b820191906000526020600020905b81548152906001019060200180831161038657829003601f168201915b5050505050905090565b6000336103bb8185856107e5565b5060019392505050565b6005546001600160a01b031633146103f85760405162461bcd60e51b81526004016103ef90610e79565b60405180910390fd5b610403308383610909565b5050565b600033610415858285610ad9565b610420858585610909565b506001949350505050565b60075460ff166104735760405162461bcd60e51b8152602060048201526013602482015272436c61696d206973206e6f742061637469766560681b60448201526064016103ef565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390526000906054016040516020818303038152906040528051906020012090506104c08260065483610b65565b6104fe5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016103ef565b3360009081526008602052604090205460ff161561054a5760405162461bcd60e51b81526020600482015260096024820152684e6f7420436c61696d60b81b60448201526064016103ef565b610555303385610909565b5050336000908152600860205260409020805460ff1916600117905550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103bb90829086906105ae908790610eae565b6107e5565b6005546001600160a01b031633146105dd5760405162461bcd60e51b81526004016103ef90610e79565b6105e76000610b7b565b565b6005546001600160a01b031633146106135760405162461bcd60e51b81526004016103ef90610e79565b3060008181526020819052604090205461062f91908390610909565b50565b60606004805461032a90610ec6565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ef565b61042082868684036107e5565b6000336103bb818585610909565b6005546001600160a01b0316331461070b5760405162461bcd60e51b81526004016103ef90610e79565b6007805460ff1916911515919091179055565b6005546001600160a01b031633146107485760405162461bcd60e51b81526004016103ef90610e79565b600655565b6005546001600160a01b031633146107775760405162461bcd60e51b81526004016103ef90610e79565b6001600160a01b0381166107dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ef565b61062f81610b7b565b6001600160a01b0383166108475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ef565b6001600160a01b0382166108a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661096d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ef565b6001600160a01b0382166109cf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ef565b6001600160a01b03831660009081526020819052604090205481811015610a475760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a7e908490610eae565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aca91815260200190565b60405180910390a35b50505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610ad35781811015610b585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ef565b610ad384848484036107e5565b600082610b728584610bcd565b14949350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8451811015610c39576000858281518110610bef57610bef610f32565b60200260200101519050808311610c155760008381526020829052604090209250610c26565b600081815260208490526040902092505b5080610c3181610f01565b915050610bd2565b509392505050565b80356001600160a01b0381168114610c5857600080fd5b919050565b600060208284031215610c6f57600080fd5b610c7882610c41565b9392505050565b60008060408385031215610c9257600080fd5b610c9b83610c41565b9150610ca960208401610c41565b90509250929050565b600080600060608486031215610cc757600080fd5b610cd084610c41565b9250610cde60208501610c41565b9150604084013590509250925092565b60008060408385031215610d0157600080fd5b610d0a83610c41565b946020939093013593505050565b600060208284031215610d2a57600080fd5b81358015158114610c7857600080fd5b600060208284031215610d4c57600080fd5b5035919050565b60008060408385031215610d6657600080fd5b8235915060208084013567ffffffffffffffff80821115610d8657600080fd5b818601915086601f830112610d9a57600080fd5b813581811115610dac57610dac610f48565b8060051b604051601f19603f83011681018181108582111715610dd157610dd1610f48565b604052828152858101935084860182860187018b1015610df057600080fd5b600095505b83861015610e13578035855260019590950194938601938601610df5565b508096505050505050509250929050565b600060208083528351808285015260005b81811015610e5157858101830151858201604001528201610e35565b81811115610e63576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ec157610ec1610f1c565b500190565b600181811c90821680610eda57607f821691505b60208210811415610efb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610f1557610f15610f1c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122074fb1e3903d9b4ccd96c20d9936e62aa04d4db11853b716d76a04c3b1b86e9ef64736f6c63430008070033810237c8df09bc2482abb45478b633cc06c0f4918b37bbf1fff5697745ed59c4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610283578063a9059cbb14610296578063acec338a146102a9578063dab5f340146102bc578063dd62ed3e146102cf578063f2fde38b1461030857600080fd5b8063715018a614610222578063727eed001461022a5780637a81e4af1461024d5780638da5cb5b1461026057806395d89b411461027b57600080fd5b806323b872dd116100ff57806323b872dd146101b15780632f52ebb7146101c4578063313ce567146101d757806339509351146101e657806370a08231146101f957600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c461eb1461017d57806318160ddd1461019257806322f3e2d4146101a4575b600080fd5b61014461031b565b6040516101519190610e24565b60405180910390f35b61016d610168366004610cee565b6103ad565b6040519015158152602001610151565b61019061018b366004610cee565b6103c5565b005b6002545b604051908152602001610151565b60075461016d9060ff1681565b61016d6101bf366004610cb2565b610407565b6101906101d2366004610d53565b61042b565b60405160128152602001610151565b61016d6101f4366004610cee565b610574565b610196610207366004610c5d565b6001600160a01b031660009081526020819052604090205490565b6101906105b3565b61016d610238366004610c5d565b60086020526000908152604090205460ff1681565b61019061025b366004610c5d565b6105e9565b6005546040516001600160a01b039091168152602001610151565b610144610632565b61016d610291366004610cee565b610641565b61016d6102a4366004610cee565b6106d3565b6101906102b7366004610d18565b6106e1565b6101906102ca366004610d3a565b61071e565b6101966102dd366004610c7f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610190610316366004610c5d565b61074d565b60606003805461032a90610ec6565b80601f016020809104026020016040519081016040528092919081815260200182805461035690610ec6565b80156103a35780601f10610378576101008083540402835291602001916103a3565b820191906000526020600020905b81548152906001019060200180831161038657829003601f168201915b5050505050905090565b6000336103bb8185856107e5565b5060019392505050565b6005546001600160a01b031633146103f85760405162461bcd60e51b81526004016103ef90610e79565b60405180910390fd5b610403308383610909565b5050565b600033610415858285610ad9565b610420858585610909565b506001949350505050565b60075460ff166104735760405162461bcd60e51b8152602060048201526013602482015272436c61696d206973206e6f742061637469766560681b60448201526064016103ef565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390526000906054016040516020818303038152906040528051906020012090506104c08260065483610b65565b6104fe5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016103ef565b3360009081526008602052604090205460ff161561054a5760405162461bcd60e51b81526020600482015260096024820152684e6f7420436c61696d60b81b60448201526064016103ef565b610555303385610909565b5050336000908152600860205260409020805460ff1916600117905550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103bb90829086906105ae908790610eae565b6107e5565b6005546001600160a01b031633146105dd5760405162461bcd60e51b81526004016103ef90610e79565b6105e76000610b7b565b565b6005546001600160a01b031633146106135760405162461bcd60e51b81526004016103ef90610e79565b3060008181526020819052604090205461062f91908390610909565b50565b60606004805461032a90610ec6565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ef565b61042082868684036107e5565b6000336103bb818585610909565b6005546001600160a01b0316331461070b5760405162461bcd60e51b81526004016103ef90610e79565b6007805460ff1916911515919091179055565b6005546001600160a01b031633146107485760405162461bcd60e51b81526004016103ef90610e79565b600655565b6005546001600160a01b031633146107775760405162461bcd60e51b81526004016103ef90610e79565b6001600160a01b0381166107dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ef565b61062f81610b7b565b6001600160a01b0383166108475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ef565b6001600160a01b0382166108a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661096d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ef565b6001600160a01b0382166109cf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ef565b6001600160a01b03831660009081526020819052604090205481811015610a475760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a7e908490610eae565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aca91815260200190565b60405180910390a35b50505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610ad35781811015610b585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ef565b610ad384848484036107e5565b600082610b728584610bcd565b14949350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8451811015610c39576000858281518110610bef57610bef610f32565b60200260200101519050808311610c155760008381526020829052604090209250610c26565b600081815260208490526040902092505b5080610c3181610f01565b915050610bd2565b509392505050565b80356001600160a01b0381168114610c5857600080fd5b919050565b600060208284031215610c6f57600080fd5b610c7882610c41565b9392505050565b60008060408385031215610c9257600080fd5b610c9b83610c41565b9150610ca960208401610c41565b90509250929050565b600080600060608486031215610cc757600080fd5b610cd084610c41565b9250610cde60208501610c41565b9150604084013590509250925092565b60008060408385031215610d0157600080fd5b610d0a83610c41565b946020939093013593505050565b600060208284031215610d2a57600080fd5b81358015158114610c7857600080fd5b600060208284031215610d4c57600080fd5b5035919050565b60008060408385031215610d6657600080fd5b8235915060208084013567ffffffffffffffff80821115610d8657600080fd5b818601915086601f830112610d9a57600080fd5b813581811115610dac57610dac610f48565b8060051b604051601f19603f83011681018181108582111715610dd157610dd1610f48565b604052828152858101935084860182860187018b1015610df057600080fd5b600095505b83861015610e13578035855260019590950194938601938601610df5565b508096505050505050509250929050565b600060208083528351808285015260005b81811015610e5157858101830151858201604001528201610e35565b81811115610e63576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ec157610ec1610f1c565b500190565b600181811c90821680610eda57607f821691505b60208210811415610efb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610f1557610f15610f1c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122074fb1e3903d9b4ccd96c20d9936e62aa04d4db11853b716d76a04c3b1b86e9ef64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

810237c8df09bc2482abb45478b633cc06c0f4918b37bbf1fff5697745ed59c4

-----Decoded View---------------
Arg [0] : _root (bytes32): 0x810237c8df09bc2482abb45478b633cc06c0f4918b37bbf1fff5697745ed59c4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 810237c8df09bc2482abb45478b633cc06c0f4918b37bbf1fff5697745ed59c4


Deployed Bytecode Sourcemap

22068:1202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6190:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8682:242;;;;;;:::i;:::-;;:::i;:::-;;;3574:14:1;;3567:22;3549:41;;3537:2;3522:18;8682:242:0;3409:187:1;23004:127:0;;;;;;:::i;:::-;;:::i;:::-;;7310:108;7398:12;;7310:108;;;8935:25:1;;;8923:2;8908:18;7310:108:0;8789:177:1;22134:20:0;;;;;;;;;9504:295;;;;;;:::i;:::-;;:::i;22397:422::-;;;;;;:::i;:::-;;:::i;7152:93::-;;;7235:2;9113:36:1;;9101:2;9086:18;7152:93:0;8971:184:1;10208:272:0;;;;;;:::i;:::-;;:::i;7481:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7632:18:0;7600:7;7632:18;;;;;;;;;;;;7481:177;21214:103;;;:::i;22161:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23139:128;;;;;;:::i;:::-;;:::i;20563:87::-;20636:6;;20563:87;;-1:-1:-1;;;;;20636:6:0;;;3347:51:1;;3335:2;3320:18;20563:87:0;3201:203:1;6409:104:0;;;:::i;10983:507::-;;;;;;:::i;:::-;;:::i;7864:234::-;;;;;;:::i;:::-;;:::i;22915:81::-;;;;;;:::i;:::-;;:::i;22827:80::-;;;;;;:::i;:::-;;:::i;8161:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8327:18:0;;;8295:7;8327:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8161:201;21472:238;;;;;;:::i;:::-;;:::i;6190:100::-;6244:13;6277:5;6270:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6190:100;:::o;8682:242::-;8801:4;4078:10;8862:32;4078:10;8878:7;8887:6;8862:8;:32::i;:::-;-1:-1:-1;8912:4:0;;8682:242;-1:-1:-1;;;8682:242:0:o;23004:127::-;20636:6;;-1:-1:-1;;;;;20636:6:0;4078:10;20783:23;20775:68;;;;-1:-1:-1;;;20775:68:0;;;;;;;:::i;:::-;;;;;;;;;23085:38:::1;23103:4;23110:3;23115:7;23085:9;:38::i;:::-;23004:127:::0;;:::o;9504:295::-;9635:4;4078:10;9693:38;9709:4;4078:10;9724:6;9693:15;:38::i;:::-;9742:27;9752:4;9758:2;9762:6;9742:9;:27::i;:::-;-1:-1:-1;9787:4:0;;9504:295;-1:-1:-1;;;;9504:295:0:o;22397:422::-;22480:8;;;;22472:40;;;;-1:-1:-1;;;22472:40:0;;7065:2:1;22472:40:0;;;7047:21:1;7104:2;7084:18;;;7077:30;-1:-1:-1;;;7123:18:1;;;7116:49;7182:18;;22472:40:0;6863:343:1;22472:40:0;22549:37;;-1:-1:-1;;22566:10:0;3079:2:1;3075:15;3071:53;22549:37:0;;;3059:66:1;3141:12;;;3134:28;;;22523:13:0;;3178:12:1;;22549:37:0;;;;;;;;;;;;22539:48;;;;;;22523:64;;22606:39;22625:6;22633:4;;22639:5;22606:18;:39::i;:::-;22598:67;;;;-1:-1:-1;;;22598:67:0;;6721:2:1;22598:67:0;;;6703:21:1;6760:2;6740:18;;;6733:30;-1:-1:-1;;;6779:18:1;;;6772:45;6834:18;;22598:67:0;6519:339:1;22598:67:0;22693:10;22685:19;;;;:7;:19;;;;;;;;22684:20;22676:42;;;;-1:-1:-1;;;22676:42:0;;6384:2:1;22676:42:0;;;6366:21:1;6423:1;6403:18;;;6396:29;-1:-1:-1;;;6441:18:1;;;6434:39;6490:18;;22676:42:0;6182:332:1;22676:42:0;22729:45;22747:4;22754:10;22766:7;22729:9;:45::i;:::-;-1:-1:-1;;22793:10:0;22785:19;;;;:7;:19;;;;;:26;;-1:-1:-1;;22785:26:0;22807:4;22785:26;;;-1:-1:-1;22397:422:0:o;10208:272::-;4078:10;10323:4;10409:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10409:27:0;;;;;;;;;;10323:4;;4078:10;10384:66;;4078:10;;10409:27;;:40;;10439:10;;10409:40;:::i;:::-;10384:8;:66::i;21214:103::-;20636:6;;-1:-1:-1;;;;;20636:6:0;4078:10;20783:23;20775:68;;;;-1:-1:-1;;;20775:68:0;;;;;;;:::i;:::-;21279:30:::1;21306:1;21279:18;:30::i;:::-;21214:103::o:0;23139:128::-;20636:6;;-1:-1:-1;;;;;20636:6:0;4078:10;20783:23;20775:68;;;;-1:-1:-1;;;20775:68:0;;;;;;;:::i;:::-;23224:4:::1;7600:7:::0;7632:18;;;;;;;;;;;23206:53:::1;::::0;23224:4;23230:3;;23206:9:::1;:53::i;:::-;23139:128:::0;:::o;6409:104::-;6465:13;6498:7;6491:14;;;;;:::i;10983:507::-;4078:10;11103:4;11191:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11191:27:0;;;;;;;;;;11103:4;;4078:10;11251:35;;;;11229:122;;;;-1:-1:-1;;;11229:122:0;;8585:2:1;11229:122:0;;;8567:21:1;8624:2;8604:18;;;8597:30;8663:34;8643:18;;;8636:62;-1:-1:-1;;;8714:18:1;;;8707:35;8759:19;;11229:122:0;8383:401:1;11229:122:0;11387:60;11396:5;11403:7;11431:15;11412:16;:34;11387:8;:60::i;7864:234::-;7979:4;4078:10;8040:28;4078:10;8057:2;8061:6;8040:9;:28::i;22915:81::-;20636:6;;-1:-1:-1;;;;;20636:6:0;4078:10;20783:23;20775:68;;;;-1:-1:-1;;;20775:68:0;;;;;;;:::i;:::-;22973:8:::1;:15:::0;;-1:-1:-1;;22973:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22915:81::o;22827:80::-;20636:6;;-1:-1:-1;;;;;20636:6:0;4078:10;20783:23;20775:68;;;;-1:-1:-1;;;20775:68:0;;;;;;;:::i;:::-;22887:4:::1;:12:::0;22827:80::o;21472:238::-;20636:6;;-1:-1:-1;;;;;20636:6:0;4078:10;20783:23;20775:68;;;;-1:-1:-1;;;20775:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21575:22:0;::::1;21553:110;;;::::0;-1:-1:-1;;;21553:110:0;;4809:2:1;21553:110:0::1;::::0;::::1;4791:21:1::0;4848:2;4828:18;;;4821:30;4887:34;4867:18;;;4860:62;-1:-1:-1;;;4938:18:1;;;4931:36;4984:19;;21553:110:0::1;4607:402:1::0;21553:110:0::1;21674:28;21693:8;21674:18;:28::i;14725:380::-:0;-1:-1:-1;;;;;14861:19:0;;14853:68;;;;-1:-1:-1;;;14853:68:0;;8180:2:1;14853:68:0;;;8162:21:1;8219:2;8199:18;;;8192:30;8258:34;8238:18;;;8231:62;-1:-1:-1;;;8309:18:1;;;8302:34;8353:19;;14853:68:0;7978:400:1;14853:68:0;-1:-1:-1;;;;;14940:21:0;;14932:68;;;;-1:-1:-1;;;14932:68:0;;5216:2:1;14932:68:0;;;5198:21:1;5255:2;5235:18;;;5228:30;5294:34;5274:18;;;5267:62;-1:-1:-1;;;5345:18:1;;;5338:32;5387:19;;14932:68:0;5014:398:1;14932:68:0;-1:-1:-1;;;;;15013:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15065:32;;8935:25:1;;;15065:32:0;;8908:18:1;15065:32:0;;;;;;;14725:380;;;:::o;11969:708::-;-1:-1:-1;;;;;12100:18:0;;12092:68;;;;-1:-1:-1;;;12092:68:0;;7774:2:1;12092:68:0;;;7756:21:1;7813:2;7793:18;;;7786:30;7852:34;7832:18;;;7825:62;-1:-1:-1;;;7903:18:1;;;7896:35;7948:19;;12092:68:0;7572:401:1;12092:68:0;-1:-1:-1;;;;;12179:16:0;;12171:64;;;;-1:-1:-1;;;12171:64:0;;4405:2:1;12171:64:0;;;4387:21:1;4444:2;4424:18;;;4417:30;4483:34;4463:18;;;4456:62;-1:-1:-1;;;4534:18:1;;;4527:33;4577:19;;12171:64:0;4203:399:1;12171:64:0;-1:-1:-1;;;;;12321:15:0;;12299:19;12321:15;;;;;;;;;;;12369:21;;;;12347:109;;;;-1:-1:-1;;;12347:109:0;;5977:2:1;12347:109:0;;;5959:21:1;6016:2;5996:18;;;5989:30;6055:34;6035:18;;;6028:62;-1:-1:-1;;;6106:18:1;;;6099:36;6152:19;;12347:109:0;5775:402:1;12347:109:0;-1:-1:-1;;;;;12492:15:0;;;:9;:15;;;;;;;;;;;12510:20;;;12492:38;;12552:13;;;;;;;;:23;;12524:6;;12492:9;12552:23;;12524:6;;12552:23;:::i;:::-;;;;;;;;12608:2;-1:-1:-1;;;;;12593:26:0;12602:4;-1:-1:-1;;;;;12593:26:0;;12612:6;12593:26;;;;8935:25:1;;8923:2;8908:18;;8789:177;12593:26:0;;;;;;;;12632:37;12081:596;11969:708;;;:::o;15392:502::-;-1:-1:-1;;;;;8327:18:0;;;15527:24;8327:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15594:37:0;;15590:297;;15694:6;15674:16;:26;;15648:117;;;;-1:-1:-1;;;15648:117:0;;5619:2:1;15648:117:0;;;5601:21:1;5658:2;5638:18;;;5631:30;5697:31;5677:18;;;5670:59;5746:18;;15648:117:0;5417:353:1;15648:117:0;15809:51;15818:5;15825:7;15853:6;15834:16;:25;15809:8;:51::i;18089:190::-;18214:4;18267;18238:25;18251:5;18258:4;18238:12;:25::i;:::-;:33;;18089:190;-1:-1:-1;;;;18089:190:0:o;21870:191::-;21963:6;;;-1:-1:-1;;;;;21980:17:0;;;-1:-1:-1;;;;;;21980:17:0;;;;;;;22013:40;;21963:6;;;21980:17;21963:6;;22013:40;;21944:16;;22013:40;21933:128;21870:191;:::o;18641:707::-;18751:7;18799:4;18751:7;18814:497;18838:5;:12;18834:1;:16;18814:497;;;18872:20;18895:5;18901:1;18895:8;;;;;;;;:::i;:::-;;;;;;;18872:31;;18938:12;18922;:28;18918:382;;19451:13;19506:15;;;19542:4;19535:15;;;19589:4;19573:21;;19050:57;;18918:382;;;19451:13;19506:15;;;19542:4;19535:15;;;19589:4;19573:21;;19227:57;;18918:382;-1:-1:-1;18852:3:0;;;;:::i;:::-;;;;18814:497;;;-1:-1:-1;19328:12:0;18641:707;-1:-1:-1;;;18641:707:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:273::-;1296:6;1349:2;1337:9;1328:7;1324:23;1320:32;1317:52;;;1365:1;1362;1355:12;1317:52;1404:9;1391:23;1457:5;1450:13;1443:21;1436:5;1433:32;1423:60;;1479:1;1476;1469:12;1518:180;1577:6;1630:2;1618:9;1609:7;1605:23;1601:32;1598:52;;;1646:1;1643;1636:12;1598:52;-1:-1:-1;1669:23:1;;1518:180;-1:-1:-1;1518:180:1:o;1703:1194::-;1796:6;1804;1857:2;1845:9;1836:7;1832:23;1828:32;1825:52;;;1873:1;1870;1863:12;1825:52;1909:9;1896:23;1886:33;;1938:2;1991;1980:9;1976:18;1963:32;2014:18;2055:2;2047:6;2044:14;2041:34;;;2071:1;2068;2061:12;2041:34;2109:6;2098:9;2094:22;2084:32;;2154:7;2147:4;2143:2;2139:13;2135:27;2125:55;;2176:1;2173;2166:12;2125:55;2212:2;2199:16;2234:2;2230;2227:10;2224:36;;;2240:18;;:::i;:::-;2286:2;2283:1;2279:10;2318:2;2312:9;2381:2;2377:7;2372:2;2368;2364:11;2360:25;2352:6;2348:38;2436:6;2424:10;2421:22;2416:2;2404:10;2401:18;2398:46;2395:72;;;2447:18;;:::i;:::-;2483:2;2476:22;2533:18;;;2567:15;;;;-1:-1:-1;2602:11:1;;;2632;;;2628:20;;2625:33;-1:-1:-1;2622:53:1;;;2671:1;2668;2661:12;2622:53;2693:1;2684:10;;2703:163;2717:2;2714:1;2711:9;2703:163;;;2774:17;;2762:30;;2735:1;2728:9;;;;;2812:12;;;;2844;;2703:163;;;2707:3;2885:6;2875:16;;;;;;;;1703:1194;;;;;:::o;3601:597::-;3713:4;3742:2;3771;3760:9;3753:21;3803:6;3797:13;3846:6;3841:2;3830:9;3826:18;3819:34;3871:1;3881:140;3895:6;3892:1;3889:13;3881:140;;;3990:14;;;3986:23;;3980:30;3956:17;;;3975:2;3952:26;3945:66;3910:10;;3881:140;;;4039:6;4036:1;4033:13;4030:91;;;4109:1;4104:2;4095:6;4084:9;4080:22;4076:31;4069:42;4030:91;-1:-1:-1;4182:2:1;4161:15;-1:-1:-1;;4157:29:1;4142:45;;;;4189:2;4138:54;;3601:597;-1:-1:-1;;;3601:597:1:o;7211:356::-;7413:2;7395:21;;;7432:18;;;7425:30;7491:34;7486:2;7471:18;;7464:62;7558:2;7543:18;;7211:356::o;9160:128::-;9200:3;9231:1;9227:6;9224:1;9221:13;9218:39;;;9237:18;;:::i;:::-;-1:-1:-1;9273:9:1;;9160:128::o;9293:380::-;9372:1;9368:12;;;;9415;;;9436:61;;9490:4;9482:6;9478:17;9468:27;;9436:61;9543:2;9535:6;9532:14;9512:18;9509:38;9506:161;;;9589:10;9584:3;9580:20;9577:1;9570:31;9624:4;9621:1;9614:15;9652:4;9649:1;9642:15;9506:161;;9293:380;;;:::o;9678:135::-;9717:3;-1:-1:-1;;9738:17:1;;9735:43;;;9758:18;;:::i;:::-;-1:-1:-1;9805:1:1;9794:13;;9678:135::o;9818:127::-;9879:10;9874:3;9870:20;9867:1;9860:31;9910:4;9907:1;9900:15;9934:4;9931:1;9924:15;9950:127;10011:10;10006:3;10002:20;9999:1;9992:31;10042:4;10039:1;10032:15;10066:4;10063:1;10056:15;10082:127;10143:10;10138:3;10134:20;10131:1;10124:31;10174:4;10171:1;10164:15;10198:4;10195:1;10188:15

Swarm Source

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