ETH Price: $3,399.04 (-8.03%)
 

Overview

Max Total Supply

664,902 CMT

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
CubeMelt: Deployer
Balance
100,000 CMT

Value
$0.00
0xb811fde4657a07b91b974a045ebb06ad14cafd29
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:
CubeMeltToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : CubeMeltToken.sol
pragma solidity ^0.8.4;

interface IIP {
    function transferFrom(address from, address to, uint256 tokenId) external;
    function ownerOf(uint256 tokenId) external returns (address);
    function setApprovalForAll(address _operator, bool _approved) external;
    function isApprovedForAll(address _owner, address _operator) external returns (bool);
}

pragma solidity ^0.8.4;

interface ICM {
    function transferFrom(address from, address to, uint256 tokenId) external;
    function ownerOf(uint256 tokenId) external returns (address);
    function setApprovalForAll(address _operator, bool _approved) external;
    function isApprovedForAll(address _owner, address _operator) external returns (bool);
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract CubeMeltToken is ERC20, Ownable, Pausable, ERC20Burnable {

    uint256 public maxSupply = 5000000 * 10 ** 18;

    IIP public ipContract = IIP(0xc547542A21124803019928e6cd26a847431F9bd6);
    ICM public cmContract = ICM(0x1963F1F1d1a6E094628C86CA3347e9185a6df056);
    bool public nftRewardsActive = true;
    uint256 public weeklyRewardAmount = 10 * 10 ** 18;
    uint256[] public rateList = [100, 120, 150, 200];

    uint256 public claimTimestamp = 1664467200;
    mapping(uint256 => uint256) public tokenClaimTimestamp;

    address public t1 = 0x2283BF4705A9D4E850a4C8dEF2aAe9Ac98F4c495;
    
    constructor() ERC20("CubeMelt Token", "CMT") {
        _mint(msg.sender, 100000 * 10 ** 18);
    }

    event ItemPurchased(address indexed user, uint256 itemSKU, uint256 price);

    event UserClaimedNftRewards(address indexed user, uint256[] cmIds, uint256[] ipIds, uint256 tokens);

    function mint(address to, uint256 amount) internal {
        _mint(to, amount);
    }

    function claimNFTRewards(uint256[] calldata _cmIds, uint256[] calldata _ipIds) external whenNotPaused {
        require(nftRewardsActive, "NFT rewards not active");
        require(_cmIds.length > 0, "No NFT input");

        uint256 totalRewards = 0;

        for (uint256 i = 0; i < _cmIds.length; i++) {
            uint256 cmId = _cmIds[i];
            require(cmContract.ownerOf(cmId) == msg.sender, "Not owner of the cm");
            
            uint256 timestamp = tokenClaimTimestamp[cmId];

            if(timestamp == 0) {
                timestamp = claimTimestamp;
            }

            uint256 reward = 0;
            uint256 difference = (block.timestamp - timestamp) / 1 weeks;
            reward = weeklyRewardAmount * difference;
            
            uint256 timestampDifference = difference * 1 weeks;
            uint256 newTimestamp = timestamp + timestampDifference;

            tokenClaimTimestamp[cmId] = newTimestamp;
            totalRewards += reward;
        }

        if(_ipIds.length != 0) {

            for(uint256 i = 0; i < _ipIds.length; i++)
            {
                uint256 ipId = _ipIds[i];
                require(ipContract.ownerOf(ipId) == msg.sender, "Not owner of the ip");
            }

            uint256 rate = rateList[0];

            if(_ipIds.length == 1) {
                rate = rateList[1];
            } else if(_ipIds.length == 2) {
                rate = rateList[2];
            } else if(_ipIds.length >= 3) {
                rate = rateList[3];
            }

            totalRewards = totalRewards * rate / 100;
        }

        require(totalRewards > 0, "No token to be claim");
        require(totalSupply() + totalRewards <= maxSupply, "Out of token supply");
        _mint(msg.sender, totalRewards);
        emit UserClaimedNftRewards(msg.sender, _cmIds, _ipIds, totalRewards);
    }

    function calculateNFTReward(uint256 _nftIndex) public view returns (uint256)  {
        uint256 timestamp = tokenClaimTimestamp[_nftIndex];

        if(timestamp == 0) {
            timestamp = claimTimestamp;
        }

        uint256 reward = 0;
        
        reward = weeklyRewardAmount * ((block.timestamp - timestamp) / 1 weeks);
        
        return reward;
    }

    function purchaseItem(uint256 _itemSKU, uint256 _amount) public whenNotPaused {
        require(balanceOf(msg.sender) >= _amount, "Not enough tokens.");
        transfer(t1, _amount);
        emit ItemPurchased(msg.sender, _itemSKU, _amount);
    }

    function purchaseItemUsingBurn(uint256 _itemSKU, uint256 _amount) public whenNotPaused {
        require(balanceOf(msg.sender) >= _amount, "Not enough tokens.");
        _burn(msg.sender, _amount);
        emit ItemPurchased(msg.sender, _itemSKU, _amount);
    }

///// ONLY OWNER
    function toggleNftRewards() public onlyOwner {
        nftRewardsActive = !nftRewardsActive;
    }

    function updateNftRewardAmount(uint256 _amount) public onlyOwner {
        weeklyRewardAmount = _amount * 10 ** 18;
    }

    function changeCMContractAddress(address _cmContractAddress) public onlyOwner {
        cmContract = ICM(_cmContractAddress);
    }

    function changeIPContractAddress(address _ipContractAddress) public onlyOwner {
        ipContract = IIP(_ipContractAddress);
    }

    function changeTokenClaimTimestamp(uint256[] calldata _index, uint256[] calldata _timestamp) external onlyOwner {
        for(uint256 i = 0; i < _index.length; i++) {
            tokenClaimTimestamp[_index[i]] = _timestamp[i];
        }
    }

    function setRangeOfTokenClaimTimestamp(uint256 _start, uint256 _end, uint256 _timestamp) external onlyOwner {
        for(uint256 i = _start; i <= _end; i++) {
            tokenClaimTimestamp[i] = _timestamp;
        }
    }

    function changeInitialClaimTimestamp(uint256 _timestamp) external onlyOwner {
        claimTimestamp = _timestamp;
    }

    function changeMaxSupply(uint256 _maxSupply) public onlyOwner {
        require(maxSupply >= totalSupply(), "Must be more than or equal total supply.");
        require(maxSupply <= 20000000, "Cannot be more than or equal 20,000,000.");

        maxSupply = _maxSupply * 10 ** 18;
    }

    function changeRatePercentage(uint256[] calldata _rate) external onlyOwner {
        rateList = _rate;
    }

    function changeTreasuryWallet(address _t1) public onlyOwner {
        t1 = _t1;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function burn(uint256 _amount) public onlyOwner override(ERC20Burnable) {
        require(balanceOf(msg.sender) >= _amount, "Not enough tokens.");
        _burn(msg.sender, _amount);
    }

    function burnFrom(address _from, uint256 _amount) public onlyOwner override(ERC20Burnable) {
        require(balanceOf(_from) >= _amount, "Not enough tokens.");
        _burn(_from, _amount);
    }
}

File 2 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 3 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 5 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 6 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// 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 7 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 8 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"itemSKU","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"ItemPurchased","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"cmIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"ipIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"UserClaimedNftRewards","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftIndex","type":"uint256"}],"name":"calculateNFTReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_cmContractAddress","type":"address"}],"name":"changeCMContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ipContractAddress","type":"address"}],"name":"changeIPContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"changeInitialClaimTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_rate","type":"uint256[]"}],"name":"changeRatePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_index","type":"uint256[]"},{"internalType":"uint256[]","name":"_timestamp","type":"uint256[]"}],"name":"changeTokenClaimTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_t1","type":"address"}],"name":"changeTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_cmIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_ipIds","type":"uint256[]"}],"name":"claimNFTRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cmContract","outputs":[{"internalType":"contract ICM","name":"","type":"address"}],"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":"ipContract","outputs":[{"internalType":"contract IIP","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftRewardsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_itemSKU","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"purchaseItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_itemSKU","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"purchaseItemUsingBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rateList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setRangeOfTokenClaimTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleNftRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenClaimTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateNftRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weeklyRewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6a0422ca8b0a00a425000000600655600780546001600160a01b03191673c547542a21124803019928e6cd26a847431f9bd61790556008805474011963f1f1d1a6e094628c86ca3347e9185a6df0566001600160a81b0319909116179055678ac7230489e8000060095561010060405260646080908152607860a052609660c05260c860e0526200009590600a906004620002a5565b50636335c100600b55600d80546001600160a01b031916732283bf4705a9d4e850a4c8def2aae9ac98f4c495179055348015620000d157600080fd5b506040518060400160405280600e81526020016d21bab132a6b2b63a102a37b5b2b760911b8152506040518060400160405280600381526020016210d35560ea1b81525081600390805190602001906200012d929190620002fa565b50805162000143906004906020840190620002fa565b505050620001606200015a6200018960201b60201c565b6200018d565b6005805460ff60a01b19169055620001833369152d02c7e14af6800000620001df565b620003f2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200023a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200024e91906200038e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054828255906000526020600020908101928215620002e8579160200282015b82811115620002e8578251829060ff16905591602001919060010190620002c6565b50620002f692915062000377565b5090565b8280546200030890620003b5565b90600052602060002090601f0160209004810192826200032c5760008555620002e8565b82601f106200034757805160ff1916838001178555620002e8565b82800160010185558215620002e8579182015b82811115620002e85782518255916020019190600101906200035a565b5b80821115620002f6576000815560010162000378565b60008219821115620003b057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003ca57607f821691505b60208210811415620003ec57634e487b7160e01b600052602260045260246000fd5b50919050565b611d3e80620004026000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c806379cc679011610146578063c9e79040116100c3578063ecda4b8911610087578063ecda4b8914610516578063edecce7414610529578063f2fde38b1461053c578063fb5343f31461054f578063fc57fd5114610562578063ffc8e6311461056a57600080fd5b8063c9e79040146104cb578063d5abeb01146104de578063dac5a995146104e7578063dd62ed3e146104f0578063e06756981461050357600080fd5b8063a457c2d71161010a578063a457c2d71461046c578063a9059cbb1461047f578063bd57a29b14610492578063bf94f1d4146104a5578063c855afc1146104b857600080fd5b806379cc6790146104255780638456cb591461043857806387ae168d146104405780638da5cb5b1461045357806395d89b411461046457600080fd5b8063404c7cdd116101df5780635c975abb116101a35780635c975abb146103a957806361e2f152146103bb57806362bda1f2146103ce5780636431b542146103e157806370a08231146103f4578063715018a61461041d57600080fd5b8063404c7cdd1461033157806342966c6814610344578063537c1ac71461035757806357e8244a1461036a57806358979d051461039557600080fd5b80631bee8323116102265780631bee8323146102d457806323b872dd146102f4578063313ce5671461030757806339509351146103165780633f4ba83a1461032957600080fd5b8063022e34681461026357806306fdde031461027f578063095ea7b31461029457806311e1935a146102b757806318160ddd146102cc575b600080fd5b61026c600b5481565b6040519081526020015b60405180910390f35b61028761057d565b6040516102769190611b80565b6102a76102a23660046119cf565b61060f565b6040519015158152602001610276565b6102ca6102c5366004611aa9565b610627565b005b60025461026c565b61026c6102e2366004611aa9565b600c6020526000908152604090205481565b6102a761030236600461198e565b610634565b60405160128152602001610276565b6102a76103243660046119cf565b610658565b6102ca61067a565b6102ca61033f366004611aa9565b61068c565b6102ca610352366004611aa9565b61077d565b6102ca610365366004611914565b6107c1565b60085461037d906001600160a01b031681565b6040516001600160a01b039091168152602001610276565b6008546102a790600160a01b900460ff1681565b600554600160a01b900460ff166102a7565b61026c6103c9366004611aa9565b6107eb565b6102ca6103dc366004611914565b61080c565b6102ca6103ef366004611ac2565b610836565b61026c610402366004611914565b6001600160a01b031660009081526020819052604090205490565b6102ca6108b7565b6102ca6104333660046119cf565b6108c9565b6102ca61091d565b6102ca61044e3660046119fb565b61092d565b6005546001600160a01b031661037d565b610287610946565b6102a761047a3660046119cf565b610955565b6102a761048d3660046119cf565b6109d0565b6102ca6104a0366004611aa9565b6109de565b6102ca6104b3366004611914565b6109fe565b6102ca6104c6366004611a3d565b610a28565b61026c6104d9366004611aa9565b610a9d565b61026c60065481565b61026c60095481565b61026c6104fe366004611955565b610ae5565b6102ca610511366004611ac2565b610b10565b6102ca610524366004611ae4565b610b96565b60075461037d906001600160a01b031681565b6102ca61054a366004611914565b610bd0565b600d5461037d906001600160a01b031681565b6102ca610c46565b6102ca610578366004611a3d565b610c6f565b60606003805461058c90611c71565b80601f01602080910402602001604051908101604052809291908181526020018280546105b890611c71565b80156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b5050505050905090565b60003361061d81858561115a565b5060019392505050565b61062f61127e565b600b55565b6000336106428582856112d8565b61064d85858561134c565b506001949350505050565b60003361061d81858561066b8383610ae5565b6106759190611c01565b61115a565b61068261127e565b61068a6114f0565b565b61069461127e565b60025460065410156106fe5760405162461bcd60e51b815260206004820152602860248201527f4d757374206265206d6f7265207468616e206f7220657175616c20746f74616c6044820152671039bab838363c9760c11b60648201526084015b60405180910390fd5b6301312d0060065411156107655760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f74206265206d6f7265207468616e206f7220657175616c2032302c604482015267181818161818181760c11b60648201526084016106f5565b61077781670de0b6b3a7640000611c3b565b60065550565b61078561127e565b336000908152602081905260409020548111156107b45760405162461bcd60e51b81526004016106f590611bd5565b6107be3382611545565b50565b6107c961127e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a81815481106107fb57600080fd5b600091825260209091200154905081565b61081461127e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61083e611677565b3360009081526020819052604090205481111561086d5760405162461bcd60e51b81526004016106f590611bd5565b6108773382611545565b604080518381526020810183905233917f1452773cf753d0d7c71ed9990f7c7e2bdde4a2d08d187b3647953877e400488d91015b60405180910390a25050565b6108bf61127e565b61068a60006116c4565b6108d161127e565b806108f1836001600160a01b031660009081526020819052604090205490565b101561090f5760405162461bcd60e51b81526004016106f590611bd5565b6109198282611545565b5050565b61092561127e565b61068a611716565b61093561127e565b610941600a8383611868565b505050565b60606004805461058c90611c71565b600033816109638286610ae5565b9050838110156109c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106f5565b61064d828686840361115a565b60003361061d81858561134c565b6109e661127e565b6109f881670de0b6b3a7640000611c3b565b60095550565b610a0661127e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610a3061127e565b60005b83811015610a9657828282818110610a4d57610a4d611cdd565b90506020020135600c6000878785818110610a6a57610a6a611cdd565b905060200201358152602001908152602001600020819055508080610a8e90611cac565b915050610a33565b5050505050565b6000818152600c602052604081205480610ab65750600b545b600062093a80610ac68342611c5a565b610ad09190611c19565b600954610add9190611c3b565b949350505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b18611677565b33600090815260208190526040902054811115610b475760405162461bcd60e51b81526004016106f590611bd5565b600d54610b5d906001600160a01b0316826109d0565b50604080518381526020810183905233917f1452773cf753d0d7c71ed9990f7c7e2bdde4a2d08d187b3647953877e400488d91016108ab565b610b9e61127e565b825b828111610bca576000818152600c6020526040902082905580610bc281611cac565b915050610ba0565b50505050565b610bd861127e565b6001600160a01b038116610c3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f5565b6107be816116c4565b610c4e61127e565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c77611677565b600854600160a01b900460ff16610cc95760405162461bcd60e51b81526020600482015260166024820152754e46542072657761726473206e6f742061637469766560501b60448201526064016106f5565b82610d055760405162461bcd60e51b815260206004820152600c60248201526b139bc8139195081a5b9c1d5d60a21b60448201526064016106f5565b6000805b84811015610e98576000868683818110610d2557610d25611cdd565b6008546040516331a9108f60e11b8152602092909202939093013560048201819052935033926001600160a01b03169150636352211e90602401602060405180830381600087803b158015610d7957600080fd5b505af1158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190611938565b6001600160a01b031614610dfd5760405162461bcd60e51b81526020600482015260136024820152724e6f74206f776e6572206f662074686520636d60681b60448201526064016106f5565b6000818152600c602052604090205480610e165750600b545b60008062093a80610e278442611c5a565b610e319190611c19565b905080600954610e419190611c3b565b91506000610e528262093a80611c3b565b90506000610e608286611c01565b6000878152600c602052604090208190559050610e7d8489611c01565b97505050505050508080610e9090611cac565b915050610d09565b50811561105e5760005b82811015610fa9576000848483818110610ebe57610ebe611cdd565b6007546040516331a9108f60e11b8152602092909202939093013560048201819052935033926001600160a01b03169150636352211e90602401602060405180830381600087803b158015610f1257600080fd5b505af1158015610f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4a9190611938565b6001600160a01b031614610f965760405162461bcd60e51b815260206004820152601360248201527204e6f74206f776e6572206f662074686520697606c1b60448201526064016106f5565b5080610fa181611cac565b915050610ea2565b506000600a600081548110610fc057610fc0611cdd565b60009182526020909120015490506001831415610ffd57600a600181548110610feb57610feb611cdd565b90600052602060002001549050611044565b600283141561101a57600a600281548110610feb57610feb611cdd565b6003831061104457600a60038154811061103657611036611cdd565b906000526020600020015490505b60646110508284611c3b565b61105a9190611c19565b9150505b600081116110a55760405162461bcd60e51b81526020600482015260146024820152734e6f20746f6b656e20746f20626520636c61696d60601b60448201526064016106f5565b600654816110b260025490565b6110bc9190611c01565b11156111005760405162461bcd60e51b81526020600482015260136024820152724f7574206f6620746f6b656e20737570706c7960681b60448201526064016106f5565b61110a3382611759565b336001600160a01b03167fbf6fbae3584d70824db3b72e8f23e3c13535d8b5d8221f855ce1491f65a2d51b868686868660405161114b959493929190611b46565b60405180910390a25050505050565b6001600160a01b0383166111bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106f5565b6001600160a01b03821661121d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461068a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f5565b60006112e48484610ae5565b90506000198114610bca578181101561133f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106f5565b610bca848484840361115a565b6001600160a01b0383166113b05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106f5565b6001600160a01b0382166114125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106f5565b6001600160a01b0383166000908152602081905260409020548181101561148a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106f5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bca565b6114f8611818565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166115a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106f5565b6001600160a01b038216600090815260208190526040902054818110156116195760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106f5565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600554600160a01b900460ff161561068a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106f5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61171e611677565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115283390565b6001600160a01b0382166117af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106f5565b80600260008282546117c19190611c01565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600554600160a01b900460ff1661068a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106f5565b8280548282559060005260206000209081019282156118a3579160200282015b828111156118a3578235825591602001919060010190611888565b506118af9291506118b3565b5090565b5b808211156118af57600081556001016118b4565b60008083601f8401126118da57600080fd5b50813567ffffffffffffffff8111156118f257600080fd5b6020830191508360208260051b850101111561190d57600080fd5b9250929050565b60006020828403121561192657600080fd5b813561193181611cf3565b9392505050565b60006020828403121561194a57600080fd5b815161193181611cf3565b6000806040838503121561196857600080fd5b823561197381611cf3565b9150602083013561198381611cf3565b809150509250929050565b6000806000606084860312156119a357600080fd5b83356119ae81611cf3565b925060208401356119be81611cf3565b929592945050506040919091013590565b600080604083850312156119e257600080fd5b82356119ed81611cf3565b946020939093013593505050565b60008060208385031215611a0e57600080fd5b823567ffffffffffffffff811115611a2557600080fd5b611a31858286016118c8565b90969095509350505050565b60008060008060408587031215611a5357600080fd5b843567ffffffffffffffff80821115611a6b57600080fd5b611a77888389016118c8565b90965094506020870135915080821115611a9057600080fd5b50611a9d878288016118c8565b95989497509550505050565b600060208284031215611abb57600080fd5b5035919050565b60008060408385031215611ad557600080fd5b50508035926020909101359150565b600080600060608486031215611af957600080fd5b505081359360208301359350604090920135919050565b81835260006001600160fb1b03831115611b2957600080fd5b8260051b8083602087013760009401602001938452509192915050565b606081526000611b5a606083018789611b10565b8281036020840152611b6d818688611b10565b9150508260408301529695505050505050565b600060208083528351808285015260005b81811015611bad57858101830151858201604001528201611b91565b81811115611bbf576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252601290820152712737ba1032b737bab3b4103a37b5b2b7399760711b604082015260600190565b60008219821115611c1457611c14611cc7565b500190565b600082611c3657634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611c5557611c55611cc7565b500290565b600082821015611c6c57611c6c611cc7565b500390565b600181811c90821680611c8557607f821691505b60208210811415611ca657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cc057611cc0611cc7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146107be57600080fdfea2646970667358221220e99b68ffa47511b486749b952772baeb15494c6aa629e29c7cec2701da94676a64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025e5760003560e01c806379cc679011610146578063c9e79040116100c3578063ecda4b8911610087578063ecda4b8914610516578063edecce7414610529578063f2fde38b1461053c578063fb5343f31461054f578063fc57fd5114610562578063ffc8e6311461056a57600080fd5b8063c9e79040146104cb578063d5abeb01146104de578063dac5a995146104e7578063dd62ed3e146104f0578063e06756981461050357600080fd5b8063a457c2d71161010a578063a457c2d71461046c578063a9059cbb1461047f578063bd57a29b14610492578063bf94f1d4146104a5578063c855afc1146104b857600080fd5b806379cc6790146104255780638456cb591461043857806387ae168d146104405780638da5cb5b1461045357806395d89b411461046457600080fd5b8063404c7cdd116101df5780635c975abb116101a35780635c975abb146103a957806361e2f152146103bb57806362bda1f2146103ce5780636431b542146103e157806370a08231146103f4578063715018a61461041d57600080fd5b8063404c7cdd1461033157806342966c6814610344578063537c1ac71461035757806357e8244a1461036a57806358979d051461039557600080fd5b80631bee8323116102265780631bee8323146102d457806323b872dd146102f4578063313ce5671461030757806339509351146103165780633f4ba83a1461032957600080fd5b8063022e34681461026357806306fdde031461027f578063095ea7b31461029457806311e1935a146102b757806318160ddd146102cc575b600080fd5b61026c600b5481565b6040519081526020015b60405180910390f35b61028761057d565b6040516102769190611b80565b6102a76102a23660046119cf565b61060f565b6040519015158152602001610276565b6102ca6102c5366004611aa9565b610627565b005b60025461026c565b61026c6102e2366004611aa9565b600c6020526000908152604090205481565b6102a761030236600461198e565b610634565b60405160128152602001610276565b6102a76103243660046119cf565b610658565b6102ca61067a565b6102ca61033f366004611aa9565b61068c565b6102ca610352366004611aa9565b61077d565b6102ca610365366004611914565b6107c1565b60085461037d906001600160a01b031681565b6040516001600160a01b039091168152602001610276565b6008546102a790600160a01b900460ff1681565b600554600160a01b900460ff166102a7565b61026c6103c9366004611aa9565b6107eb565b6102ca6103dc366004611914565b61080c565b6102ca6103ef366004611ac2565b610836565b61026c610402366004611914565b6001600160a01b031660009081526020819052604090205490565b6102ca6108b7565b6102ca6104333660046119cf565b6108c9565b6102ca61091d565b6102ca61044e3660046119fb565b61092d565b6005546001600160a01b031661037d565b610287610946565b6102a761047a3660046119cf565b610955565b6102a761048d3660046119cf565b6109d0565b6102ca6104a0366004611aa9565b6109de565b6102ca6104b3366004611914565b6109fe565b6102ca6104c6366004611a3d565b610a28565b61026c6104d9366004611aa9565b610a9d565b61026c60065481565b61026c60095481565b61026c6104fe366004611955565b610ae5565b6102ca610511366004611ac2565b610b10565b6102ca610524366004611ae4565b610b96565b60075461037d906001600160a01b031681565b6102ca61054a366004611914565b610bd0565b600d5461037d906001600160a01b031681565b6102ca610c46565b6102ca610578366004611a3d565b610c6f565b60606003805461058c90611c71565b80601f01602080910402602001604051908101604052809291908181526020018280546105b890611c71565b80156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b5050505050905090565b60003361061d81858561115a565b5060019392505050565b61062f61127e565b600b55565b6000336106428582856112d8565b61064d85858561134c565b506001949350505050565b60003361061d81858561066b8383610ae5565b6106759190611c01565b61115a565b61068261127e565b61068a6114f0565b565b61069461127e565b60025460065410156106fe5760405162461bcd60e51b815260206004820152602860248201527f4d757374206265206d6f7265207468616e206f7220657175616c20746f74616c6044820152671039bab838363c9760c11b60648201526084015b60405180910390fd5b6301312d0060065411156107655760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f74206265206d6f7265207468616e206f7220657175616c2032302c604482015267181818161818181760c11b60648201526084016106f5565b61077781670de0b6b3a7640000611c3b565b60065550565b61078561127e565b336000908152602081905260409020548111156107b45760405162461bcd60e51b81526004016106f590611bd5565b6107be3382611545565b50565b6107c961127e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a81815481106107fb57600080fd5b600091825260209091200154905081565b61081461127e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61083e611677565b3360009081526020819052604090205481111561086d5760405162461bcd60e51b81526004016106f590611bd5565b6108773382611545565b604080518381526020810183905233917f1452773cf753d0d7c71ed9990f7c7e2bdde4a2d08d187b3647953877e400488d91015b60405180910390a25050565b6108bf61127e565b61068a60006116c4565b6108d161127e565b806108f1836001600160a01b031660009081526020819052604090205490565b101561090f5760405162461bcd60e51b81526004016106f590611bd5565b6109198282611545565b5050565b61092561127e565b61068a611716565b61093561127e565b610941600a8383611868565b505050565b60606004805461058c90611c71565b600033816109638286610ae5565b9050838110156109c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106f5565b61064d828686840361115a565b60003361061d81858561134c565b6109e661127e565b6109f881670de0b6b3a7640000611c3b565b60095550565b610a0661127e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610a3061127e565b60005b83811015610a9657828282818110610a4d57610a4d611cdd565b90506020020135600c6000878785818110610a6a57610a6a611cdd565b905060200201358152602001908152602001600020819055508080610a8e90611cac565b915050610a33565b5050505050565b6000818152600c602052604081205480610ab65750600b545b600062093a80610ac68342611c5a565b610ad09190611c19565b600954610add9190611c3b565b949350505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b18611677565b33600090815260208190526040902054811115610b475760405162461bcd60e51b81526004016106f590611bd5565b600d54610b5d906001600160a01b0316826109d0565b50604080518381526020810183905233917f1452773cf753d0d7c71ed9990f7c7e2bdde4a2d08d187b3647953877e400488d91016108ab565b610b9e61127e565b825b828111610bca576000818152600c6020526040902082905580610bc281611cac565b915050610ba0565b50505050565b610bd861127e565b6001600160a01b038116610c3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f5565b6107be816116c4565b610c4e61127e565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c77611677565b600854600160a01b900460ff16610cc95760405162461bcd60e51b81526020600482015260166024820152754e46542072657761726473206e6f742061637469766560501b60448201526064016106f5565b82610d055760405162461bcd60e51b815260206004820152600c60248201526b139bc8139195081a5b9c1d5d60a21b60448201526064016106f5565b6000805b84811015610e98576000868683818110610d2557610d25611cdd565b6008546040516331a9108f60e11b8152602092909202939093013560048201819052935033926001600160a01b03169150636352211e90602401602060405180830381600087803b158015610d7957600080fd5b505af1158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190611938565b6001600160a01b031614610dfd5760405162461bcd60e51b81526020600482015260136024820152724e6f74206f776e6572206f662074686520636d60681b60448201526064016106f5565b6000818152600c602052604090205480610e165750600b545b60008062093a80610e278442611c5a565b610e319190611c19565b905080600954610e419190611c3b565b91506000610e528262093a80611c3b565b90506000610e608286611c01565b6000878152600c602052604090208190559050610e7d8489611c01565b97505050505050508080610e9090611cac565b915050610d09565b50811561105e5760005b82811015610fa9576000848483818110610ebe57610ebe611cdd565b6007546040516331a9108f60e11b8152602092909202939093013560048201819052935033926001600160a01b03169150636352211e90602401602060405180830381600087803b158015610f1257600080fd5b505af1158015610f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4a9190611938565b6001600160a01b031614610f965760405162461bcd60e51b815260206004820152601360248201527204e6f74206f776e6572206f662074686520697606c1b60448201526064016106f5565b5080610fa181611cac565b915050610ea2565b506000600a600081548110610fc057610fc0611cdd565b60009182526020909120015490506001831415610ffd57600a600181548110610feb57610feb611cdd565b90600052602060002001549050611044565b600283141561101a57600a600281548110610feb57610feb611cdd565b6003831061104457600a60038154811061103657611036611cdd565b906000526020600020015490505b60646110508284611c3b565b61105a9190611c19565b9150505b600081116110a55760405162461bcd60e51b81526020600482015260146024820152734e6f20746f6b656e20746f20626520636c61696d60601b60448201526064016106f5565b600654816110b260025490565b6110bc9190611c01565b11156111005760405162461bcd60e51b81526020600482015260136024820152724f7574206f6620746f6b656e20737570706c7960681b60448201526064016106f5565b61110a3382611759565b336001600160a01b03167fbf6fbae3584d70824db3b72e8f23e3c13535d8b5d8221f855ce1491f65a2d51b868686868660405161114b959493929190611b46565b60405180910390a25050505050565b6001600160a01b0383166111bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106f5565b6001600160a01b03821661121d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461068a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f5565b60006112e48484610ae5565b90506000198114610bca578181101561133f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106f5565b610bca848484840361115a565b6001600160a01b0383166113b05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106f5565b6001600160a01b0382166114125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106f5565b6001600160a01b0383166000908152602081905260409020548181101561148a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106f5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bca565b6114f8611818565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166115a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106f5565b6001600160a01b038216600090815260208190526040902054818110156116195760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106f5565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600554600160a01b900460ff161561068a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106f5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61171e611677565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115283390565b6001600160a01b0382166117af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106f5565b80600260008282546117c19190611c01565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600554600160a01b900460ff1661068a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106f5565b8280548282559060005260206000209081019282156118a3579160200282015b828111156118a3578235825591602001919060010190611888565b506118af9291506118b3565b5090565b5b808211156118af57600081556001016118b4565b60008083601f8401126118da57600080fd5b50813567ffffffffffffffff8111156118f257600080fd5b6020830191508360208260051b850101111561190d57600080fd5b9250929050565b60006020828403121561192657600080fd5b813561193181611cf3565b9392505050565b60006020828403121561194a57600080fd5b815161193181611cf3565b6000806040838503121561196857600080fd5b823561197381611cf3565b9150602083013561198381611cf3565b809150509250929050565b6000806000606084860312156119a357600080fd5b83356119ae81611cf3565b925060208401356119be81611cf3565b929592945050506040919091013590565b600080604083850312156119e257600080fd5b82356119ed81611cf3565b946020939093013593505050565b60008060208385031215611a0e57600080fd5b823567ffffffffffffffff811115611a2557600080fd5b611a31858286016118c8565b90969095509350505050565b60008060008060408587031215611a5357600080fd5b843567ffffffffffffffff80821115611a6b57600080fd5b611a77888389016118c8565b90965094506020870135915080821115611a9057600080fd5b50611a9d878288016118c8565b95989497509550505050565b600060208284031215611abb57600080fd5b5035919050565b60008060408385031215611ad557600080fd5b50508035926020909101359150565b600080600060608486031215611af957600080fd5b505081359360208301359350604090920135919050565b81835260006001600160fb1b03831115611b2957600080fd5b8260051b8083602087013760009401602001938452509192915050565b606081526000611b5a606083018789611b10565b8281036020840152611b6d818688611b10565b9150508260408301529695505050505050565b600060208083528351808285015260005b81811015611bad57858101830151858201604001528201611b91565b81811115611bbf576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252601290820152712737ba1032b737bab3b4103a37b5b2b7399760711b604082015260600190565b60008219821115611c1457611c14611cc7565b500190565b600082611c3657634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611c5557611c55611cc7565b500290565b600082821015611c6c57611c6c611cc7565b500390565b600181811c90821680611c8557607f821691505b60208210811415611ca657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cc057611cc0611cc7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146107be57600080fdfea2646970667358221220e99b68ffa47511b486749b952772baeb15494c6aa629e29c7cec2701da94676a64736f6c63430008070033

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.