ETH Price: $2,502.08 (-0.34%)

Token

The Metaversal Secret Keys Collection by BT (MVKEY)
 

Overview

Max Total Supply

0 MVKEY

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 MVKEY
0x3f17c74568d3102ec5b319819a944d39846fd954
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:
Metaversal

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Metaversal.sol
//    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*UUUUUUUUUS/:::::::::::::::::::::::::::::::::::::::::::*CUUUUUUUUU/:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*##########&*::::::::::::::::::::::::::::::::::::::::::b##########t:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########*::::::::::::::::::::::::::::::::::::::::::b##########t:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########C//////////////////////////////////////////M#########&S//////////////////////////////:::::::::::::::
//    :::::::*###########&##########################################&#########&##############################&*::::::::::::::
//    :::::::*################################################################################################*::::::::::::::
//    :::::::*###################################################t**M#######################################&#*::::::::::::::
//    :::::::*###########SCCCCCCCCCCCCCCCCCCCCCCCCCCU###########&:::b##########UCCCCCCCCCCCCCCCCCCCCCCCCCCCCI*:::::::::::::::
//    :::::::*###########*:::::::::::::::::::::::::::/##########&:::b#########&t:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########*:::::::::::::::::::::::::::*##########&:::b##########t:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########*:::::::::::::::::::::::::::*##########&:::b##########t:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########*:::::::::::::::::::::::::::*##########&:::b#########&t:::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########*::::::::::::::::::::::::::*U&#########&:::b##########M/::::::::::::::::::::::::::::::::::::::::::::
//    :::::::*###########*::S########################&###########:::U##########&&###################################t::::::::
//    :::::::*&##########*::b###################################I:::*##############################################b:::::::::
//    ::::::::C#&########*::b#################################b/:::::*U#&########################################MC::::::::::
//    :::::::::*CbM&#####*::b&##########################&#MbS*:::::::::*CUM#&################################MbSt::::::::::::
//    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//    8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888
//    8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888
//    8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888
//    888  088880 88888880     888880     088888880 0888888 0888803 88880     888880    0888880     088888880 0888888  88888888
//    88880 388   088888888888888888888 0888888880 0 0888880 08802 888888888888888888880 888880 888088888880 0 088888  88888888
//    888888   380 8888880     88888888 088888880 00  0888880 083 8888880     888888000  88888880   0888880 00  08888  88888888
//    888888800888 08888888888888888888 08888880 0000008888880 3 88888888888888888880  088888800880 088888 38000088880  8888888
//    888888888888 0888880     88888888 0888888 088888888888880 088888880     888888880 0888880    088888 38888888888880  88888
//    8888888888888888888888888888888888888888888888888888888888888888888888888888888888 88888888888888888888888888888888888888
//    8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888

// SPDX-License-Identifier: MIT
// Author: Gio Vignone

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";


contract Metaversal is ERC721, Ownable, ERC721Burnable {
    
    struct Director {
        uint256 supply;
        uint256 ID;
    }

    event supplyLocked(bool _isLocked);

    event metadataFrozen(bool _isFrozen);

    event PermanentURI(string _value, uint256 indexed _id);

    uint256 public supplySpiral;

    uint256 public supplyMirror;

    uint256 public supplyRoot;

    uint256 private price;
    
    bool public mintActive;

    address private contractDeployer;

    bool public metadatafrozen;

    string private baseURI;

    uint256 private currentToken;

    bool public SupplyChangable;

    address private MetaversalVerification;

    mapping(uint256 => bool) public _canBurn;

    mapping(string => bool) private _isCodeTaken;

    mapping(uint256 => bool) public _isSequenceTaken;

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

    mapping(string => bool) private _isStringSet;

    mapping(uint256 => Director) private tokenCount;

    constructor(address _verification, string memory _intialbaseuri) ERC721("The Metaversal Secret Keys Collection by BT", "MVKEY") {
        currentToken = 1;
        setBaseURI(_intialbaseuri);
        supplyMirror = 11;
        supplySpiral = 22;
        supplyRoot = 33;
        tokenCount[0].supply = 0;
        tokenCount[1].supply = supplyMirror;
        tokenCount[2].supply = supplySpiral;
        tokenCount[3].supply = supplyRoot;
        tokenCount[1].ID = 1;
        tokenCount[2].ID = 12;
        tokenCount[3].ID = 23;
        SupplyChangable = true;
        contractDeployer = msg.sender;
        MetaversalVerification = _verification;
        price = 0;
    }

    function changeCurrentToken(uint256 newToken) public onlyOwner {
        currentToken = newToken;
    }

   function checkValidData(bytes32 message, bytes memory sig) public pure returns(address){
       return (recoverSigner(message, sig));
   }

   function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address)
     {
       uint8 v;
       bytes32 r;
       bytes32 s;
       (v, r, s) = splitSignature(sig);
       return ecrecover(message, v, r, s);
   }

    function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32)
     {
       require(sig.length == 65);
       bytes32 r;
       bytes32 s;
       uint8 v;
       assembly {
           r := mload(add(sig, 32))
           s := mload(add(sig, 64))
           v := byte(0, mload(add(sig, 96)))
       }
       return (v, r, s);
   }

    function makeTokenBurnable(uint256 tokenId, bool setOrRestrict) public onlyOwner {
        _canBurn[tokenId] = setOrRestrict;
    }

    function burn(uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_canBurn[tokenId], "BT has not approved burning for this token yet");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }

    function changePrice(uint256 newPrice) public onlyOwner{
        price = newPrice;
    }
    
    function changeSupply(uint256 newToken, uint256 supply, uint256 startID) public onlyOwner {
        require(SupplyChangable);
        tokenCount[newToken].supply = supply;
        tokenCount[newToken].ID = startID;
    }

    function lockSupply() public onlyOwner{
        SupplyChangable = false;
        emit supplyLocked(true);
        //Supply is permanently locked after function call
    }

    function changeVerifyAddress(address newVerification) public onlyOwner{
        MetaversalVerification = newVerification;
    }

    function changeSaleState() public onlyOwner{
        mintActive = !mintActive;
    }

    function _withdraw(uint256 amountinwei, bool getall, address payable exportaddress) onlyOwner public returns (bool){
        if(getall == true){
            exportaddress.transfer(address(this).balance);
            return true;
        }
        require(amountinwei<address(this).balance,"Contract is not worth that much yet");
        exportaddress.transfer(amountinwei);
        return true;
    }

    function mint_metaversal(bytes memory sig, uint256 desiredToken, uint256 specificSeq) public payable {
        require(desiredToken == currentToken, "Wrong desired token");
        require(msg.value >= price, "Incorrect message value");
        require(specificSeq <= tokenCount[desiredToken].supply, "Speicifc seq is above supply");
        require(specificSeq > 0, "No sequences exist under this value");
        require(specificSeq > tokenCount[desiredToken-1].supply, "No sequences exist under this value");
        require(!_isSequenceTaken[specificSeq], "Sequence already taken");
        bytes memory b = abi.encodePacked(desiredToken, specificSeq, msg.sender);
        bytes32 message = keccak256(b);
        require(MetaversalVerification == checkValidData(message, sig), "Invalid data");
        require(_isStringSet[string(b)] == false, "Token already minted");
        require(tokenCount[desiredToken].ID <= tokenCount[desiredToken].supply, "Metaversal is fully minted for this token");
        require(msg.sender != address(0) && msg.sender != address(this));
        require(_isAddressApproved[msg.sender][desiredToken] == 0, "Address is not approved to mint this token again");
        require(mintActive, "Tokens are not mintable");
        uint256 uniquetokenID = specificSeq;
        _safeMint(contractDeployer, uniquetokenID);
        _safeTransfer(contractDeployer, msg.sender, uniquetokenID, "");
        _isSequenceTaken[specificSeq] = true;
        _isStringSet[string(b)] = true;
        _isAddressApproved[msg.sender][desiredToken] = 1;
        tokenCount[desiredToken].ID += 1;
    }

    //View-state functions...

    function canAddressMint(address adr) public view returns (bool) {
        if (_isAddressApproved[adr][currentToken] == 0) {
            return true;
        }
        return false;
    }

    function checkSequence(uint256 sequence) public view returns (bool) {
        return  _isSequenceTaken[sequence];
    }

    function remainingSequences() public view returns (uint256) {
        return tokenCount[currentToken].supply - (tokenCount[currentToken].ID - 1);
    }

    function checkCurrentToken() public view returns(uint256){
        return currentToken;
    }

    //Metadata functions...

     function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    function setBaseURI(string memory url) public onlyOwner {
        require(!metadatafrozen);
        baseURI = url;
    }

    function freezemetadata() onlyOwner public{
        metadatafrozen = true;
        emit metadataFrozen(true);
        for (uint256 i = 1; i <= tokenCount[currentToken].supply; i++){
            emit PermanentURI("frozen", i);
        }
        //Metadata is permanently frozen afterfunction call
    }
}

File 2 of 12 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

File 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 7 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_verification","type":"address"},{"internalType":"string","name":"_intialbaseuri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isFrozen","type":"bool"}],"name":"metadataFrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isLocked","type":"bool"}],"name":"supplyLocked","type":"event"},{"inputs":[],"name":"SupplyChangable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_canBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_isSequenceTaken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountinwei","type":"uint256"},{"internalType":"bool","name":"getall","type":"bool"},{"internalType":"address payable","name":"exportaddress","type":"address"}],"name":"_withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"canAddressMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newToken","type":"uint256"}],"name":"changeCurrentToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newToken","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"startID","type":"uint256"}],"name":"changeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newVerification","type":"address"}],"name":"changeVerifyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkCurrentToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sequence","type":"uint256"}],"name":"checkSequence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"checkValidData","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"freezemetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"setOrRestrict","type":"bool"}],"name":"makeTokenBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"metadatafrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"uint256","name":"desiredToken","type":"uint256"},{"internalType":"uint256","name":"specificSeq","type":"uint256"}],"name":"mint_metaversal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"remainingSequences","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"supplyMirror","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyRoot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplySpiral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200596138038062005961833981810160405281019062000037919062000589565b6040518060600160405280602b815260200162005936602b91396040518060400160405280600581526020017f4d564b455900000000000000000000000000000000000000000000000000000081525081600090805190602001906200009f92919062000444565b508060019080519060200190620000b892919062000444565b505050620000db620000cf6200028660201b60201c565b6200028e60201b60201c565b6001600d81905550620000f4816200035460201b60201c565b600b60088190555060166007819055506021600981905550600060146000808152602001908152602001600020600001819055506008546014600060018152602001908152602001600020600001819055506007546014600060028152602001908152602001600020600001819055506009546014600060038152602001908152602001600020600001819055506001601460006001815260200190815260200160002060010181905550600c60146000600281526020019081526020016000206001018190555060176014600060038152602001908152602001600020600101819055506001600e60006101000a81548160ff02191690831515021790555033600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a81905550505062000844565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003646200028660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038a6200041a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003da9062000616565b60405180910390fd5b600b60159054906101000a900460ff1615620003fe57600080fd5b80600c90805190602001906200041692919062000444565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004529062000712565b90600052602060002090601f016020900481019282620004765760008555620004c2565b82601f106200049157805160ff1916838001178555620004c2565b82800160010185558215620004c2579182015b82811115620004c1578251825591602001919060010190620004a4565b5b509050620004d19190620004d5565b5090565b5b80821115620004f0576000816000905550600101620004d6565b5090565b60006200050b620005058462000661565b62000638565b9050828152602081018484840111156200052a5762000529620007e1565b5b62000537848285620006dc565b509392505050565b60008151905062000550816200082a565b92915050565b600082601f8301126200056e576200056d620007dc565b5b815162000580848260208601620004f4565b91505092915050565b60008060408385031215620005a357620005a2620007eb565b5b6000620005b3858286016200053f565b925050602083015167ffffffffffffffff811115620005d757620005d6620007e6565b5b620005e58582860162000556565b9150509250929050565b6000620005fe60208362000697565b91506200060b8262000801565b602082019050919050565b600060208201905081810360008301526200063181620005ef565b9050919050565b60006200064462000657565b905062000652828262000748565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067f576200067e620007ad565b5b6200068a82620007f0565b9050602081019050919050565b600082825260208201905092915050565b6000620006b582620006bc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620006fc578082015181840152602081019050620006df565b838111156200070c576000848401525b50505050565b600060028204905060018216806200072b57607f821691505b602082108114156200074257620007416200077e565b5b50919050565b6200075382620007f0565b810181811067ffffffffffffffff82111715620007755762000774620007ad565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200083581620006a8565b81146200084157600080fd5b50565b6150e280620008546000396000f3fe60806040526004361061025c5760003560e01c806381eaf99b11610144578063a7bb5803116100b6578063dd9c1f231161007a578063dd9c1f231461090f578063e985e9c514610926578063ec3528e514610963578063f03682071461098e578063f2fde38b146109b9578063fc3dbc18146109e25761025c565b8063a7bb580314610818578063b88d4fde14610857578063badcd02714610880578063c87b56dd146108a9578063d11e08e2146108e65761025c565b806395d89b411161010857806395d89b411461070a57806397aba7f914610735578063a067330014610772578063a0d57ed41461079d578063a22cb465146107c6578063a2b40d19146107ef5761025c565b806381eaf99b14610656578063822eb34c1461066d5780638da5cb5b1461069857806390183f3f146106c357806391b8b68d146106ee5761025c565b806325fd90f3116101dd5780636352211e116101a15780636352211e146105225780636554f72f1461055f57806370a0823114610588578063715018a6146105c557806373660f1f146105dc5780637e660e38146106195761025c565b806325fd90f31461045157806342842e0e1461047c57806342966c68146104a557806350b66bb9146104ce57806355f804b3146104f95761025c565b8063122cc2ac11610224578063122cc2ac1461036c57806315756f681461038357806316c43fd8146103c057806323a16c26146103fd57806323b872dd146104285761025c565b806301ffc9a71461026157806303163d551461029e57806306fdde03146102db578063081812fc14610306578063095ea7b314610343575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613705565b610a1f565b6040516102959190613f88565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906138cd565b610b01565b6040516102d29190613f88565b60405180910390f35b3480156102e757600080fd5b506102f0610c71565b6040516102fd9190613fe8565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613860565b610d03565b60405161033a9190613f21565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613669565b610d88565b005b34801561037857600080fd5b50610381610ea0565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613860565b610fe1565b6040516103b79190613f88565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906134e6565b611001565b6040516103f49190613f88565b60405180910390f35b34801561040957600080fd5b50610412611070565b60405161041f91906143ca565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613553565b6110bf565b005b34801561045d57600080fd5b5061046661111f565b6040516104739190613f88565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613553565b611132565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613860565b611152565b005b3480156104da57600080fd5b506104e361120e565b6040516104f09190613f88565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613817565b611221565b005b34801561052e57600080fd5b5061054960048036038101906105449190613860565b6112d1565b6040516105569190613f21565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061388d565b611383565b005b34801561059457600080fd5b506105af60048036038101906105aa91906134e6565b61142e565b6040516105bc91906143ca565b60405180910390f35b3480156105d157600080fd5b506105da6114e6565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190613860565b61156e565b6040516106109190613f88565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906136a9565b61158e565b60405161064d9190613f21565b60405180910390f35b34801561066257600080fd5b5061066b6115a2565b005b34801561067957600080fd5b50610682611673565b60405161068f91906143ca565b60405180910390f35b3480156106a457600080fd5b506106ad61167d565b6040516106ba9190613f21565b60405180910390f35b3480156106cf57600080fd5b506106d86116a7565b6040516106e59190613f88565b60405180910390f35b610708600480360381019061070391906137a8565b6116ba565b005b34801561071657600080fd5b5061071f611d03565b60405161072c9190613fe8565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906136a9565b611d95565b6040516107699190613f21565b60405180910390f35b34801561077e57600080fd5b50610787611e0a565b60405161079491906143ca565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf91906134e6565b611e10565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613629565b611ed0565b005b3480156107fb57600080fd5b5061081660048036038101906108119190613860565b612051565b005b34801561082457600080fd5b5061083f600480360381019061083a919061375f565b6120d7565b60405161084e939291906143e5565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906135a6565b61211a565b005b34801561088c57600080fd5b506108a760048036038101906108a29190613920565b61217c565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613860565b61224c565b6040516108dd9190613fe8565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613860565b6122f3565b005b34801561091b57600080fd5b50610924612379565b005b34801561093257600080fd5b5061094d60048036038101906109489190613513565b612421565b60405161095a9190613f88565b60405180910390f35b34801561096f57600080fd5b506109786124b5565b60405161098591906143ca565b60405180910390f35b34801561099a57600080fd5b506109a36124bb565b6040516109b091906143ca565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906134e6565b6124c1565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613860565b6125b9565b604051610a169190613f88565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afa5750610af9826125e3565b5b9050919050565b6000610b0b61264d565b73ffffffffffffffffffffffffffffffffffffffff16610b2961167d565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061428a565b60405180910390fd5b600115158315151415610bdc578173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bd2573d6000803e3d6000fd5b5060019050610c6a565b478410610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c159061414a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015610c64573d6000803e3d6000fd5b50600190505b9392505050565b606060008054610c8090614680565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90614680565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b6000610d0e82612655565b610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061426a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d93826112d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061432a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e2361264d565b73ffffffffffffffffffffffffffffffffffffffff161480610e525750610e5181610e4c61264d565b612421565b5b610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e88906141ca565b60405180910390fd5b610e9b83836126c1565b505050565b610ea861264d565b73ffffffffffffffffffffffffffffffffffffffff16610ec661167d565b73ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f139061428a565b60405180910390fd5b6001600b60156101000a81548160ff0219169083151502179055507f42f4975393bbf3dbfd1456b8a7c0adb6b9e6f022ebbc169e1aa1b94b10d6ec806001604051610f679190613f88565b60405180910390a16000600190505b60146000600d548152602001908152602001600020600001548111610fde57807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207604051610fc39061436a565b60405180910390a28080610fd6906146e3565b915050610f76565b50565b600f6020528060005260406000206000915054906101000a900460ff1681565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600d548152602001908152602001600020541415611066576001905061106b565b600090505b919050565b6000600160146000600d54815260200190815260200160002060010154611097919061456d565b60146000600d548152602001908152602001600020600001546110ba919061456d565b905090565b6110d06110ca61264d565b8261277a565b61110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069061434a565b60405180910390fd5b61111a838383612858565b505050565b600b60009054906101000a900460ff1681565b61114d8383836040518060200160405280600081525061211a565b505050565b600f600082815260200190815260200160002060009054906101000a900460ff166111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a99061406a565b60405180910390fd5b6111c36111bd61264d565b8261277a565b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f9906143aa565b60405180910390fd5b61120b81612ab4565b50565b600b60159054906101000a900460ff1681565b61122961264d565b73ffffffffffffffffffffffffffffffffffffffff1661124761167d565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112949061428a565b60405180910390fd5b600b60159054906101000a900460ff16156112b757600080fd5b80600c90805190602001906112cd9291906132d0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061420a565b60405180910390fd5b80915050919050565b61138b61264d565b73ffffffffffffffffffffffffffffffffffffffff166113a961167d565b73ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f69061428a565b60405180910390fd5b80600f600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906141ea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ee61264d565b73ffffffffffffffffffffffffffffffffffffffff1661150c61167d565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115599061428a565b60405180910390fd5b61156c6000612bc5565b565b60116020528060005260406000206000915054906101000a900460ff1681565b600061159a8383611d95565b905092915050565b6115aa61264d565b73ffffffffffffffffffffffffffffffffffffffff166115c861167d565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061428a565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055507f58a3ce2474837ac2e28207d3eea22158d0a76daf1cb2982b420f3b648ec0d6a760016040516116699190613f88565b60405180910390a1565b6000600d54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60009054906101000a900460ff1681565b600d5482146116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f59061412a565b60405180910390fd5b600a54341015611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a9061422a565b60405180910390fd5b601460008381526020019081526020016000206000015481111561179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906140ea565b60405180910390fd5b600081116117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061438a565b60405180910390fd5b601460006001846117f0919061456d565b8152602001908152602001600020600001548111611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061438a565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b906141aa565b60405180910390fd5b60008282336040516020016118bb93929190613ee4565b60405160208183030381529060405290506000818051906020012090506118e2818661158e565b73ffffffffffffffffffffffffffffffffffffffff16600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119689061416a565b60405180910390fd5b600015156013836040516119859190613ea9565b908152602001604051809103902060009054906101000a900460ff161515146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da9061400a565b60405180910390fd5b601460008581526020019081526020016000206000015460146000868152602001908152602001600020600101541115611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061410a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611abb57503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b611ac457600080fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000205414611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e9061430a565b60405180910390fd5b600b60009054906101000a900460ff16611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906142aa565b60405180910390fd5b6000839050611bd7600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612c8b565b611c14600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16338360405180602001604052806000815250612ca9565b60016011600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601384604051611c529190613ea9565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878152602001908152602001600020819055506001601460008781526020019081526020016000206001016000828254611cf491906144e6565b92505081905550505050505050565b606060018054611d1290614680565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3e90614680565b8015611d8b5780601f10611d6057610100808354040283529160200191611d8b565b820191906000526020600020905b815481529060010190602001808311611d6e57829003601f168201915b5050505050905090565b600080600080611da4856120d7565b80935081945082955050505060018684848460405160008152602001604052604051611dd39493929190613fa3565b6020604051602081039080840390855afa158015611df5573d6000803e3d6000fd5b50505060206040510351935050505092915050565b60085481565b611e1861264d565b73ffffffffffffffffffffffffffffffffffffffff16611e3661167d565b73ffffffffffffffffffffffffffffffffffffffff1614611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e839061428a565b60405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ed861264d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906140ca565b60405180910390fd5b8060056000611f5361264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661200061264d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120459190613f88565b60405180910390a35050565b61205961264d565b73ffffffffffffffffffffffffffffffffffffffff1661207761167d565b73ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c49061428a565b60405180910390fd5b80600a8190555050565b600080600060418451146120ea57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b61212b61212561264d565b8361277a565b61216a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121619061434a565b60405180910390fd5b61217684848484612ca9565b50505050565b61218461264d565b73ffffffffffffffffffffffffffffffffffffffff166121a261167d565b73ffffffffffffffffffffffffffffffffffffffff16146121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef9061428a565b60405180910390fd5b600e60009054906101000a900460ff1661221157600080fd5b816014600085815260200190815260200160002060000181905550806014600085815260200190815260200160002060010181905550505050565b606061225782612655565b612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d906142ea565b60405180910390fd5b60006122a0612d05565b905060008151116122c057604051806020016040528060008152506122eb565b806122ca84612d97565b6040516020016122db929190613ec0565b6040516020818303038152906040525b915050919050565b6122fb61264d565b73ffffffffffffffffffffffffffffffffffffffff1661231961167d565b73ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123669061428a565b60405180910390fd5b80600d8190555050565b61238161264d565b73ffffffffffffffffffffffffffffffffffffffff1661239f61167d565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec9061428a565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b60095481565b6124c961264d565b73ffffffffffffffffffffffffffffffffffffffff166124e761167d565b73ffffffffffffffffffffffffffffffffffffffff161461253d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125349061428a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a49061404a565b60405180910390fd5b6125b681612bc5565b50565b60006011600083815260200190815260200160002060009054906101000a900460ff169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612734836112d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061278582612655565b6127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb9061418a565b60405180910390fd5b60006127cf836112d1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061283e57508373ffffffffffffffffffffffffffffffffffffffff1661282684610d03565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284f575061284e8185612421565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612878826112d1565b73ffffffffffffffffffffffffffffffffffffffff16146128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906142ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612935906140aa565b60405180910390fd5b612949838383612ef8565b6129546000826126c1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a4919061456d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fb91906144e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612abf826112d1565b9050612acd81600084612ef8565b612ad86000836126c1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b28919061456d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ca5828260405180602001604052806000815250612efd565b5050565b612cb4848484612858565b612cc084848484612f58565b612cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf69061402a565b60405180910390fd5b50505050565b6060600c8054612d1490614680565b80601f0160208091040260200160405190810160405280929190818152602001828054612d4090614680565b8015612d8d5780601f10612d6257610100808354040283529160200191612d8d565b820191906000526020600020905b815481529060010190602001808311612d7057829003601f168201915b5050505050905090565b60606000821415612ddf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ef3565b600082905060005b60008214612e11578080612dfa906146e3565b915050600a82612e0a919061453c565b9150612de7565b60008167ffffffffffffffff811115612e2d57612e2c614847565b5b6040519080825280601f01601f191660200182016040528015612e5f5781602001600182028036833780820191505090505b5090505b60008514612eec57600182612e78919061456d565b9150600a85612e87919061475a565b6030612e9391906144e6565b60f81b818381518110612ea957612ea8614818565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ee5919061453c565b9450612e63565b8093505050505b919050565b505050565b612f0783836130ef565b612f146000848484612f58565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a9061402a565b60405180910390fd5b505050565b6000612f798473ffffffffffffffffffffffffffffffffffffffff166132bd565b156130e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa261264d565b8786866040518563ffffffff1660e01b8152600401612fc49493929190613f3c565b602060405180830381600087803b158015612fde57600080fd5b505af192505050801561300f57506040513d601f19601f8201168201806040525081019061300c9190613732565b60015b613092573d806000811461303f576040519150601f19603f3d011682016040523d82523d6000602084013e613044565b606091505b5060008151141561308a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130819061402a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561315f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131569061424a565b60405180910390fd5b61316881612655565b156131a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319f9061408a565b60405180910390fd5b6131b460008383612ef8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461320491906144e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132dc90614680565b90600052602060002090601f0160209004810192826132fe5760008555613345565b82601f1061331757805160ff1916838001178555613345565b82800160010185558215613345579182015b82811115613344578251825591602001919060010190613329565b5b5090506133529190613356565b5090565b5b8082111561336f576000816000905550600101613357565b5090565b600061338661338184614441565b61441c565b9050828152602081018484840111156133a2576133a161487b565b5b6133ad84828561463e565b509392505050565b60006133c86133c384614472565b61441c565b9050828152602081018484840111156133e4576133e361487b565b5b6133ef84828561463e565b509392505050565b60008135905061340681615022565b92915050565b60008135905061341b81615039565b92915050565b60008135905061343081615050565b92915050565b60008135905061344581615067565b92915050565b60008135905061345a8161507e565b92915050565b60008151905061346f8161507e565b92915050565b600082601f83011261348a57613489614876565b5b813561349a848260208601613373565b91505092915050565b600082601f8301126134b8576134b7614876565b5b81356134c88482602086016133b5565b91505092915050565b6000813590506134e081615095565b92915050565b6000602082840312156134fc576134fb614885565b5b600061350a848285016133f7565b91505092915050565b6000806040838503121561352a57613529614885565b5b6000613538858286016133f7565b9250506020613549858286016133f7565b9150509250929050565b60008060006060848603121561356c5761356b614885565b5b600061357a868287016133f7565b935050602061358b868287016133f7565b925050604061359c868287016134d1565b9150509250925092565b600080600080608085870312156135c0576135bf614885565b5b60006135ce878288016133f7565b94505060206135df878288016133f7565b93505060406135f0878288016134d1565b925050606085013567ffffffffffffffff81111561361157613610614880565b5b61361d87828801613475565b91505092959194509250565b600080604083850312156136405761363f614885565b5b600061364e858286016133f7565b925050602061365f85828601613421565b9150509250929050565b600080604083850312156136805761367f614885565b5b600061368e858286016133f7565b925050602061369f858286016134d1565b9150509250929050565b600080604083850312156136c0576136bf614885565b5b60006136ce85828601613436565b925050602083013567ffffffffffffffff8111156136ef576136ee614880565b5b6136fb85828601613475565b9150509250929050565b60006020828403121561371b5761371a614885565b5b60006137298482850161344b565b91505092915050565b60006020828403121561374857613747614885565b5b600061375684828501613460565b91505092915050565b60006020828403121561377557613774614885565b5b600082013567ffffffffffffffff81111561379357613792614880565b5b61379f84828501613475565b91505092915050565b6000806000606084860312156137c1576137c0614885565b5b600084013567ffffffffffffffff8111156137df576137de614880565b5b6137eb86828701613475565b93505060206137fc868287016134d1565b925050604061380d868287016134d1565b9150509250925092565b60006020828403121561382d5761382c614885565b5b600082013567ffffffffffffffff81111561384b5761384a614880565b5b613857848285016134a3565b91505092915050565b60006020828403121561387657613875614885565b5b6000613884848285016134d1565b91505092915050565b600080604083850312156138a4576138a3614885565b5b60006138b2858286016134d1565b92505060206138c385828601613421565b9150509250929050565b6000806000606084860312156138e6576138e5614885565b5b60006138f4868287016134d1565b935050602061390586828701613421565b92505060406139168682870161340c565b9150509250925092565b60008060006060848603121561393957613938614885565b5b6000613947868287016134d1565b9350506020613958868287016134d1565b9250506040613969868287016134d1565b9150509250925092565b61397c816145a1565b82525050565b61399361398e826145a1565b61472c565b82525050565b6139a2816145c5565b82525050565b6139b1816145d1565b82525050565b60006139c2826144a3565b6139cc81856144b9565b93506139dc81856020860161464d565b6139e58161488a565b840191505092915050565b60006139fb826144ae565b613a0581856144ca565b9350613a1581856020860161464d565b613a1e8161488a565b840191505092915050565b6000613a34826144ae565b613a3e81856144db565b9350613a4e81856020860161464d565b80840191505092915050565b6000613a676014836144ca565b9150613a72826148a8565b602082019050919050565b6000613a8a6032836144ca565b9150613a95826148d1565b604082019050919050565b6000613aad6026836144ca565b9150613ab882614920565b604082019050919050565b6000613ad0602e836144ca565b9150613adb8261496f565b604082019050919050565b6000613af3601c836144ca565b9150613afe826149be565b602082019050919050565b6000613b166024836144ca565b9150613b21826149e7565b604082019050919050565b6000613b396019836144ca565b9150613b4482614a36565b602082019050919050565b6000613b5c601c836144ca565b9150613b6782614a5f565b602082019050919050565b6000613b7f6029836144ca565b9150613b8a82614a88565b604082019050919050565b6000613ba26013836144ca565b9150613bad82614ad7565b602082019050919050565b6000613bc56023836144ca565b9150613bd082614b00565b604082019050919050565b6000613be8600c836144ca565b9150613bf382614b4f565b602082019050919050565b6000613c0b602c836144ca565b9150613c1682614b78565b604082019050919050565b6000613c2e6016836144ca565b9150613c3982614bc7565b602082019050919050565b6000613c516038836144ca565b9150613c5c82614bf0565b604082019050919050565b6000613c74602a836144ca565b9150613c7f82614c3f565b604082019050919050565b6000613c976029836144ca565b9150613ca282614c8e565b604082019050919050565b6000613cba6017836144ca565b9150613cc582614cdd565b602082019050919050565b6000613cdd6020836144ca565b9150613ce882614d06565b602082019050919050565b6000613d00602c836144ca565b9150613d0b82614d2f565b604082019050919050565b6000613d236020836144ca565b9150613d2e82614d7e565b602082019050919050565b6000613d466017836144ca565b9150613d5182614da7565b602082019050919050565b6000613d696029836144ca565b9150613d7482614dd0565b604082019050919050565b6000613d8c602f836144ca565b9150613d9782614e1f565b604082019050919050565b6000613daf6030836144ca565b9150613dba82614e6e565b604082019050919050565b6000613dd26021836144ca565b9150613ddd82614ebd565b604082019050919050565b6000613df56031836144ca565b9150613e0082614f0c565b604082019050919050565b6000613e186006836144ca565b9150613e2382614f5b565b602082019050919050565b6000613e3b6023836144ca565b9150613e4682614f84565b604082019050919050565b6000613e5e6030836144ca565b9150613e6982614fd3565b604082019050919050565b613e7d81614627565b82525050565b613e94613e8f82614627565b614750565b82525050565b613ea381614631565b82525050565b6000613eb58284613a29565b915081905092915050565b6000613ecc8285613a29565b9150613ed88284613a29565b91508190509392505050565b6000613ef08286613e83565b602082019150613f008285613e83565b602082019150613f108284613982565b601482019150819050949350505050565b6000602082019050613f366000830184613973565b92915050565b6000608082019050613f516000830187613973565b613f5e6020830186613973565b613f6b6040830185613e74565b8181036060830152613f7d81846139b7565b905095945050505050565b6000602082019050613f9d6000830184613999565b92915050565b6000608082019050613fb860008301876139a8565b613fc56020830186613e9a565b613fd260408301856139a8565b613fdf60608301846139a8565b95945050505050565b6000602082019050818103600083015261400281846139f0565b905092915050565b6000602082019050818103600083015261402381613a5a565b9050919050565b6000602082019050818103600083015261404381613a7d565b9050919050565b6000602082019050818103600083015261406381613aa0565b9050919050565b6000602082019050818103600083015261408381613ac3565b9050919050565b600060208201905081810360008301526140a381613ae6565b9050919050565b600060208201905081810360008301526140c381613b09565b9050919050565b600060208201905081810360008301526140e381613b2c565b9050919050565b6000602082019050818103600083015261410381613b4f565b9050919050565b6000602082019050818103600083015261412381613b72565b9050919050565b6000602082019050818103600083015261414381613b95565b9050919050565b6000602082019050818103600083015261416381613bb8565b9050919050565b6000602082019050818103600083015261418381613bdb565b9050919050565b600060208201905081810360008301526141a381613bfe565b9050919050565b600060208201905081810360008301526141c381613c21565b9050919050565b600060208201905081810360008301526141e381613c44565b9050919050565b6000602082019050818103600083015261420381613c67565b9050919050565b6000602082019050818103600083015261422381613c8a565b9050919050565b6000602082019050818103600083015261424381613cad565b9050919050565b6000602082019050818103600083015261426381613cd0565b9050919050565b6000602082019050818103600083015261428381613cf3565b9050919050565b600060208201905081810360008301526142a381613d16565b9050919050565b600060208201905081810360008301526142c381613d39565b9050919050565b600060208201905081810360008301526142e381613d5c565b9050919050565b6000602082019050818103600083015261430381613d7f565b9050919050565b6000602082019050818103600083015261432381613da2565b9050919050565b6000602082019050818103600083015261434381613dc5565b9050919050565b6000602082019050818103600083015261436381613de8565b9050919050565b6000602082019050818103600083015261438381613e0b565b9050919050565b600060208201905081810360008301526143a381613e2e565b9050919050565b600060208201905081810360008301526143c381613e51565b9050919050565b60006020820190506143df6000830184613e74565b92915050565b60006060820190506143fa6000830186613e9a565b61440760208301856139a8565b61441460408301846139a8565b949350505050565b6000614426614437565b905061443282826146b2565b919050565b6000604051905090565b600067ffffffffffffffff82111561445c5761445b614847565b5b6144658261488a565b9050602081019050919050565b600067ffffffffffffffff82111561448d5761448c614847565b5b6144968261488a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f182614627565b91506144fc83614627565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145315761453061478b565b5b828201905092915050565b600061454782614627565b915061455283614627565b925082614562576145616147ba565b5b828204905092915050565b600061457882614627565b915061458383614627565b9250828210156145965761459561478b565b5b828203905092915050565b60006145ac82614607565b9050919050565b60006145be82614607565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561466b578082015181840152602081019050614650565b8381111561467a576000848401525b50505050565b6000600282049050600182168061469857607f821691505b602082108114156146ac576146ab6147e9565b5b50919050565b6146bb8261488a565b810181811067ffffffffffffffff821117156146da576146d9614847565b5b80604052505050565b60006146ee82614627565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147215761472061478b565b5b600182019050919050565b60006147378261473e565b9050919050565b60006147498261489b565b9050919050565b6000819050919050565b600061476582614627565b915061477083614627565b9250826147805761477f6147ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f425420686173206e6f7420617070726f766564206275726e696e6720666f722060008201527f7468697320746f6b656e20796574000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5370656963696663207365712069732061626f766520737570706c7900000000600082015250565b7f4d65746176657273616c2069732066756c6c79206d696e74656420666f72207460008201527f68697320746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f57726f6e67206465736972656420746f6b656e00000000000000000000000000600082015250565b7f436f6e7472616374206973206e6f7420776f7274682074686174206d7563682060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420646174610000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53657175656e636520616c72656164792074616b656e00000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374206d6573736167652076616c7565000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e7320617265206e6f74206d696e7461626c65000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420617070726f76656420746f206d696e742060008201527f7468697320746f6b656e20616761696e00000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f66726f7a656e0000000000000000000000000000000000000000000000000000600082015250565b7f4e6f2073657175656e63657320657869737420756e646572207468697320766160008201527f6c75650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61502b816145a1565b811461503657600080fd5b50565b615042816145b3565b811461504d57600080fd5b50565b615059816145c5565b811461506457600080fd5b50565b615070816145d1565b811461507b57600080fd5b50565b615087816145db565b811461509257600080fd5b50565b61509e81614627565b81146150a957600080fd5b5056fea26469706673582212208c76e5c7a8c0ca26c4ff542155889a0a79a58ea2c0c61949618dd182d642c13664736f6c63430008070033546865204d65746176657273616c20536563726574204b65797320436f6c6c656374696f6e206279204254000000000000000000000000e07ca940b5e50b1aaffccc432a1505fac8139e250000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d506d7448647661686e613242316b6643483634664d59654c50486a5355746e394d5462526f7937453473596f2f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806381eaf99b11610144578063a7bb5803116100b6578063dd9c1f231161007a578063dd9c1f231461090f578063e985e9c514610926578063ec3528e514610963578063f03682071461098e578063f2fde38b146109b9578063fc3dbc18146109e25761025c565b8063a7bb580314610818578063b88d4fde14610857578063badcd02714610880578063c87b56dd146108a9578063d11e08e2146108e65761025c565b806395d89b411161010857806395d89b411461070a57806397aba7f914610735578063a067330014610772578063a0d57ed41461079d578063a22cb465146107c6578063a2b40d19146107ef5761025c565b806381eaf99b14610656578063822eb34c1461066d5780638da5cb5b1461069857806390183f3f146106c357806391b8b68d146106ee5761025c565b806325fd90f3116101dd5780636352211e116101a15780636352211e146105225780636554f72f1461055f57806370a0823114610588578063715018a6146105c557806373660f1f146105dc5780637e660e38146106195761025c565b806325fd90f31461045157806342842e0e1461047c57806342966c68146104a557806350b66bb9146104ce57806355f804b3146104f95761025c565b8063122cc2ac11610224578063122cc2ac1461036c57806315756f681461038357806316c43fd8146103c057806323a16c26146103fd57806323b872dd146104285761025c565b806301ffc9a71461026157806303163d551461029e57806306fdde03146102db578063081812fc14610306578063095ea7b314610343575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613705565b610a1f565b6040516102959190613f88565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906138cd565b610b01565b6040516102d29190613f88565b60405180910390f35b3480156102e757600080fd5b506102f0610c71565b6040516102fd9190613fe8565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613860565b610d03565b60405161033a9190613f21565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613669565b610d88565b005b34801561037857600080fd5b50610381610ea0565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613860565b610fe1565b6040516103b79190613f88565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906134e6565b611001565b6040516103f49190613f88565b60405180910390f35b34801561040957600080fd5b50610412611070565b60405161041f91906143ca565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613553565b6110bf565b005b34801561045d57600080fd5b5061046661111f565b6040516104739190613f88565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613553565b611132565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613860565b611152565b005b3480156104da57600080fd5b506104e361120e565b6040516104f09190613f88565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613817565b611221565b005b34801561052e57600080fd5b5061054960048036038101906105449190613860565b6112d1565b6040516105569190613f21565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061388d565b611383565b005b34801561059457600080fd5b506105af60048036038101906105aa91906134e6565b61142e565b6040516105bc91906143ca565b60405180910390f35b3480156105d157600080fd5b506105da6114e6565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190613860565b61156e565b6040516106109190613f88565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906136a9565b61158e565b60405161064d9190613f21565b60405180910390f35b34801561066257600080fd5b5061066b6115a2565b005b34801561067957600080fd5b50610682611673565b60405161068f91906143ca565b60405180910390f35b3480156106a457600080fd5b506106ad61167d565b6040516106ba9190613f21565b60405180910390f35b3480156106cf57600080fd5b506106d86116a7565b6040516106e59190613f88565b60405180910390f35b610708600480360381019061070391906137a8565b6116ba565b005b34801561071657600080fd5b5061071f611d03565b60405161072c9190613fe8565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906136a9565b611d95565b6040516107699190613f21565b60405180910390f35b34801561077e57600080fd5b50610787611e0a565b60405161079491906143ca565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf91906134e6565b611e10565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613629565b611ed0565b005b3480156107fb57600080fd5b5061081660048036038101906108119190613860565b612051565b005b34801561082457600080fd5b5061083f600480360381019061083a919061375f565b6120d7565b60405161084e939291906143e5565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906135a6565b61211a565b005b34801561088c57600080fd5b506108a760048036038101906108a29190613920565b61217c565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613860565b61224c565b6040516108dd9190613fe8565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613860565b6122f3565b005b34801561091b57600080fd5b50610924612379565b005b34801561093257600080fd5b5061094d60048036038101906109489190613513565b612421565b60405161095a9190613f88565b60405180910390f35b34801561096f57600080fd5b506109786124b5565b60405161098591906143ca565b60405180910390f35b34801561099a57600080fd5b506109a36124bb565b6040516109b091906143ca565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906134e6565b6124c1565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613860565b6125b9565b604051610a169190613f88565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afa5750610af9826125e3565b5b9050919050565b6000610b0b61264d565b73ffffffffffffffffffffffffffffffffffffffff16610b2961167d565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061428a565b60405180910390fd5b600115158315151415610bdc578173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bd2573d6000803e3d6000fd5b5060019050610c6a565b478410610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c159061414a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015610c64573d6000803e3d6000fd5b50600190505b9392505050565b606060008054610c8090614680565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90614680565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b6000610d0e82612655565b610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061426a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d93826112d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061432a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e2361264d565b73ffffffffffffffffffffffffffffffffffffffff161480610e525750610e5181610e4c61264d565b612421565b5b610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e88906141ca565b60405180910390fd5b610e9b83836126c1565b505050565b610ea861264d565b73ffffffffffffffffffffffffffffffffffffffff16610ec661167d565b73ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f139061428a565b60405180910390fd5b6001600b60156101000a81548160ff0219169083151502179055507f42f4975393bbf3dbfd1456b8a7c0adb6b9e6f022ebbc169e1aa1b94b10d6ec806001604051610f679190613f88565b60405180910390a16000600190505b60146000600d548152602001908152602001600020600001548111610fde57807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207604051610fc39061436a565b60405180910390a28080610fd6906146e3565b915050610f76565b50565b600f6020528060005260406000206000915054906101000a900460ff1681565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600d548152602001908152602001600020541415611066576001905061106b565b600090505b919050565b6000600160146000600d54815260200190815260200160002060010154611097919061456d565b60146000600d548152602001908152602001600020600001546110ba919061456d565b905090565b6110d06110ca61264d565b8261277a565b61110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069061434a565b60405180910390fd5b61111a838383612858565b505050565b600b60009054906101000a900460ff1681565b61114d8383836040518060200160405280600081525061211a565b505050565b600f600082815260200190815260200160002060009054906101000a900460ff166111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a99061406a565b60405180910390fd5b6111c36111bd61264d565b8261277a565b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f9906143aa565b60405180910390fd5b61120b81612ab4565b50565b600b60159054906101000a900460ff1681565b61122961264d565b73ffffffffffffffffffffffffffffffffffffffff1661124761167d565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112949061428a565b60405180910390fd5b600b60159054906101000a900460ff16156112b757600080fd5b80600c90805190602001906112cd9291906132d0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061420a565b60405180910390fd5b80915050919050565b61138b61264d565b73ffffffffffffffffffffffffffffffffffffffff166113a961167d565b73ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f69061428a565b60405180910390fd5b80600f600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906141ea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ee61264d565b73ffffffffffffffffffffffffffffffffffffffff1661150c61167d565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115599061428a565b60405180910390fd5b61156c6000612bc5565b565b60116020528060005260406000206000915054906101000a900460ff1681565b600061159a8383611d95565b905092915050565b6115aa61264d565b73ffffffffffffffffffffffffffffffffffffffff166115c861167d565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061428a565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055507f58a3ce2474837ac2e28207d3eea22158d0a76daf1cb2982b420f3b648ec0d6a760016040516116699190613f88565b60405180910390a1565b6000600d54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60009054906101000a900460ff1681565b600d5482146116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f59061412a565b60405180910390fd5b600a54341015611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a9061422a565b60405180910390fd5b601460008381526020019081526020016000206000015481111561179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906140ea565b60405180910390fd5b600081116117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061438a565b60405180910390fd5b601460006001846117f0919061456d565b8152602001908152602001600020600001548111611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061438a565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b906141aa565b60405180910390fd5b60008282336040516020016118bb93929190613ee4565b60405160208183030381529060405290506000818051906020012090506118e2818661158e565b73ffffffffffffffffffffffffffffffffffffffff16600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119689061416a565b60405180910390fd5b600015156013836040516119859190613ea9565b908152602001604051809103902060009054906101000a900460ff161515146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da9061400a565b60405180910390fd5b601460008581526020019081526020016000206000015460146000868152602001908152602001600020600101541115611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061410a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611abb57503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b611ac457600080fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000205414611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e9061430a565b60405180910390fd5b600b60009054906101000a900460ff16611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906142aa565b60405180910390fd5b6000839050611bd7600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612c8b565b611c14600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16338360405180602001604052806000815250612ca9565b60016011600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601384604051611c529190613ea9565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878152602001908152602001600020819055506001601460008781526020019081526020016000206001016000828254611cf491906144e6565b92505081905550505050505050565b606060018054611d1290614680565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3e90614680565b8015611d8b5780601f10611d6057610100808354040283529160200191611d8b565b820191906000526020600020905b815481529060010190602001808311611d6e57829003601f168201915b5050505050905090565b600080600080611da4856120d7565b80935081945082955050505060018684848460405160008152602001604052604051611dd39493929190613fa3565b6020604051602081039080840390855afa158015611df5573d6000803e3d6000fd5b50505060206040510351935050505092915050565b60085481565b611e1861264d565b73ffffffffffffffffffffffffffffffffffffffff16611e3661167d565b73ffffffffffffffffffffffffffffffffffffffff1614611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e839061428a565b60405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ed861264d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906140ca565b60405180910390fd5b8060056000611f5361264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661200061264d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120459190613f88565b60405180910390a35050565b61205961264d565b73ffffffffffffffffffffffffffffffffffffffff1661207761167d565b73ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c49061428a565b60405180910390fd5b80600a8190555050565b600080600060418451146120ea57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b61212b61212561264d565b8361277a565b61216a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121619061434a565b60405180910390fd5b61217684848484612ca9565b50505050565b61218461264d565b73ffffffffffffffffffffffffffffffffffffffff166121a261167d565b73ffffffffffffffffffffffffffffffffffffffff16146121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef9061428a565b60405180910390fd5b600e60009054906101000a900460ff1661221157600080fd5b816014600085815260200190815260200160002060000181905550806014600085815260200190815260200160002060010181905550505050565b606061225782612655565b612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d906142ea565b60405180910390fd5b60006122a0612d05565b905060008151116122c057604051806020016040528060008152506122eb565b806122ca84612d97565b6040516020016122db929190613ec0565b6040516020818303038152906040525b915050919050565b6122fb61264d565b73ffffffffffffffffffffffffffffffffffffffff1661231961167d565b73ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123669061428a565b60405180910390fd5b80600d8190555050565b61238161264d565b73ffffffffffffffffffffffffffffffffffffffff1661239f61167d565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec9061428a565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b60095481565b6124c961264d565b73ffffffffffffffffffffffffffffffffffffffff166124e761167d565b73ffffffffffffffffffffffffffffffffffffffff161461253d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125349061428a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a49061404a565b60405180910390fd5b6125b681612bc5565b50565b60006011600083815260200190815260200160002060009054906101000a900460ff169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612734836112d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061278582612655565b6127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb9061418a565b60405180910390fd5b60006127cf836112d1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061283e57508373ffffffffffffffffffffffffffffffffffffffff1661282684610d03565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284f575061284e8185612421565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612878826112d1565b73ffffffffffffffffffffffffffffffffffffffff16146128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906142ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612935906140aa565b60405180910390fd5b612949838383612ef8565b6129546000826126c1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a4919061456d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fb91906144e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612abf826112d1565b9050612acd81600084612ef8565b612ad86000836126c1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b28919061456d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ca5828260405180602001604052806000815250612efd565b5050565b612cb4848484612858565b612cc084848484612f58565b612cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf69061402a565b60405180910390fd5b50505050565b6060600c8054612d1490614680565b80601f0160208091040260200160405190810160405280929190818152602001828054612d4090614680565b8015612d8d5780601f10612d6257610100808354040283529160200191612d8d565b820191906000526020600020905b815481529060010190602001808311612d7057829003601f168201915b5050505050905090565b60606000821415612ddf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ef3565b600082905060005b60008214612e11578080612dfa906146e3565b915050600a82612e0a919061453c565b9150612de7565b60008167ffffffffffffffff811115612e2d57612e2c614847565b5b6040519080825280601f01601f191660200182016040528015612e5f5781602001600182028036833780820191505090505b5090505b60008514612eec57600182612e78919061456d565b9150600a85612e87919061475a565b6030612e9391906144e6565b60f81b818381518110612ea957612ea8614818565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ee5919061453c565b9450612e63565b8093505050505b919050565b505050565b612f0783836130ef565b612f146000848484612f58565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a9061402a565b60405180910390fd5b505050565b6000612f798473ffffffffffffffffffffffffffffffffffffffff166132bd565b156130e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa261264d565b8786866040518563ffffffff1660e01b8152600401612fc49493929190613f3c565b602060405180830381600087803b158015612fde57600080fd5b505af192505050801561300f57506040513d601f19601f8201168201806040525081019061300c9190613732565b60015b613092573d806000811461303f576040519150601f19603f3d011682016040523d82523d6000602084013e613044565b606091505b5060008151141561308a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130819061402a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561315f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131569061424a565b60405180910390fd5b61316881612655565b156131a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319f9061408a565b60405180910390fd5b6131b460008383612ef8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461320491906144e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132dc90614680565b90600052602060002090601f0160209004810192826132fe5760008555613345565b82601f1061331757805160ff1916838001178555613345565b82800160010185558215613345579182015b82811115613344578251825591602001919060010190613329565b5b5090506133529190613356565b5090565b5b8082111561336f576000816000905550600101613357565b5090565b600061338661338184614441565b61441c565b9050828152602081018484840111156133a2576133a161487b565b5b6133ad84828561463e565b509392505050565b60006133c86133c384614472565b61441c565b9050828152602081018484840111156133e4576133e361487b565b5b6133ef84828561463e565b509392505050565b60008135905061340681615022565b92915050565b60008135905061341b81615039565b92915050565b60008135905061343081615050565b92915050565b60008135905061344581615067565b92915050565b60008135905061345a8161507e565b92915050565b60008151905061346f8161507e565b92915050565b600082601f83011261348a57613489614876565b5b813561349a848260208601613373565b91505092915050565b600082601f8301126134b8576134b7614876565b5b81356134c88482602086016133b5565b91505092915050565b6000813590506134e081615095565b92915050565b6000602082840312156134fc576134fb614885565b5b600061350a848285016133f7565b91505092915050565b6000806040838503121561352a57613529614885565b5b6000613538858286016133f7565b9250506020613549858286016133f7565b9150509250929050565b60008060006060848603121561356c5761356b614885565b5b600061357a868287016133f7565b935050602061358b868287016133f7565b925050604061359c868287016134d1565b9150509250925092565b600080600080608085870312156135c0576135bf614885565b5b60006135ce878288016133f7565b94505060206135df878288016133f7565b93505060406135f0878288016134d1565b925050606085013567ffffffffffffffff81111561361157613610614880565b5b61361d87828801613475565b91505092959194509250565b600080604083850312156136405761363f614885565b5b600061364e858286016133f7565b925050602061365f85828601613421565b9150509250929050565b600080604083850312156136805761367f614885565b5b600061368e858286016133f7565b925050602061369f858286016134d1565b9150509250929050565b600080604083850312156136c0576136bf614885565b5b60006136ce85828601613436565b925050602083013567ffffffffffffffff8111156136ef576136ee614880565b5b6136fb85828601613475565b9150509250929050565b60006020828403121561371b5761371a614885565b5b60006137298482850161344b565b91505092915050565b60006020828403121561374857613747614885565b5b600061375684828501613460565b91505092915050565b60006020828403121561377557613774614885565b5b600082013567ffffffffffffffff81111561379357613792614880565b5b61379f84828501613475565b91505092915050565b6000806000606084860312156137c1576137c0614885565b5b600084013567ffffffffffffffff8111156137df576137de614880565b5b6137eb86828701613475565b93505060206137fc868287016134d1565b925050604061380d868287016134d1565b9150509250925092565b60006020828403121561382d5761382c614885565b5b600082013567ffffffffffffffff81111561384b5761384a614880565b5b613857848285016134a3565b91505092915050565b60006020828403121561387657613875614885565b5b6000613884848285016134d1565b91505092915050565b600080604083850312156138a4576138a3614885565b5b60006138b2858286016134d1565b92505060206138c385828601613421565b9150509250929050565b6000806000606084860312156138e6576138e5614885565b5b60006138f4868287016134d1565b935050602061390586828701613421565b92505060406139168682870161340c565b9150509250925092565b60008060006060848603121561393957613938614885565b5b6000613947868287016134d1565b9350506020613958868287016134d1565b9250506040613969868287016134d1565b9150509250925092565b61397c816145a1565b82525050565b61399361398e826145a1565b61472c565b82525050565b6139a2816145c5565b82525050565b6139b1816145d1565b82525050565b60006139c2826144a3565b6139cc81856144b9565b93506139dc81856020860161464d565b6139e58161488a565b840191505092915050565b60006139fb826144ae565b613a0581856144ca565b9350613a1581856020860161464d565b613a1e8161488a565b840191505092915050565b6000613a34826144ae565b613a3e81856144db565b9350613a4e81856020860161464d565b80840191505092915050565b6000613a676014836144ca565b9150613a72826148a8565b602082019050919050565b6000613a8a6032836144ca565b9150613a95826148d1565b604082019050919050565b6000613aad6026836144ca565b9150613ab882614920565b604082019050919050565b6000613ad0602e836144ca565b9150613adb8261496f565b604082019050919050565b6000613af3601c836144ca565b9150613afe826149be565b602082019050919050565b6000613b166024836144ca565b9150613b21826149e7565b604082019050919050565b6000613b396019836144ca565b9150613b4482614a36565b602082019050919050565b6000613b5c601c836144ca565b9150613b6782614a5f565b602082019050919050565b6000613b7f6029836144ca565b9150613b8a82614a88565b604082019050919050565b6000613ba26013836144ca565b9150613bad82614ad7565b602082019050919050565b6000613bc56023836144ca565b9150613bd082614b00565b604082019050919050565b6000613be8600c836144ca565b9150613bf382614b4f565b602082019050919050565b6000613c0b602c836144ca565b9150613c1682614b78565b604082019050919050565b6000613c2e6016836144ca565b9150613c3982614bc7565b602082019050919050565b6000613c516038836144ca565b9150613c5c82614bf0565b604082019050919050565b6000613c74602a836144ca565b9150613c7f82614c3f565b604082019050919050565b6000613c976029836144ca565b9150613ca282614c8e565b604082019050919050565b6000613cba6017836144ca565b9150613cc582614cdd565b602082019050919050565b6000613cdd6020836144ca565b9150613ce882614d06565b602082019050919050565b6000613d00602c836144ca565b9150613d0b82614d2f565b604082019050919050565b6000613d236020836144ca565b9150613d2e82614d7e565b602082019050919050565b6000613d466017836144ca565b9150613d5182614da7565b602082019050919050565b6000613d696029836144ca565b9150613d7482614dd0565b604082019050919050565b6000613d8c602f836144ca565b9150613d9782614e1f565b604082019050919050565b6000613daf6030836144ca565b9150613dba82614e6e565b604082019050919050565b6000613dd26021836144ca565b9150613ddd82614ebd565b604082019050919050565b6000613df56031836144ca565b9150613e0082614f0c565b604082019050919050565b6000613e186006836144ca565b9150613e2382614f5b565b602082019050919050565b6000613e3b6023836144ca565b9150613e4682614f84565b604082019050919050565b6000613e5e6030836144ca565b9150613e6982614fd3565b604082019050919050565b613e7d81614627565b82525050565b613e94613e8f82614627565b614750565b82525050565b613ea381614631565b82525050565b6000613eb58284613a29565b915081905092915050565b6000613ecc8285613a29565b9150613ed88284613a29565b91508190509392505050565b6000613ef08286613e83565b602082019150613f008285613e83565b602082019150613f108284613982565b601482019150819050949350505050565b6000602082019050613f366000830184613973565b92915050565b6000608082019050613f516000830187613973565b613f5e6020830186613973565b613f6b6040830185613e74565b8181036060830152613f7d81846139b7565b905095945050505050565b6000602082019050613f9d6000830184613999565b92915050565b6000608082019050613fb860008301876139a8565b613fc56020830186613e9a565b613fd260408301856139a8565b613fdf60608301846139a8565b95945050505050565b6000602082019050818103600083015261400281846139f0565b905092915050565b6000602082019050818103600083015261402381613a5a565b9050919050565b6000602082019050818103600083015261404381613a7d565b9050919050565b6000602082019050818103600083015261406381613aa0565b9050919050565b6000602082019050818103600083015261408381613ac3565b9050919050565b600060208201905081810360008301526140a381613ae6565b9050919050565b600060208201905081810360008301526140c381613b09565b9050919050565b600060208201905081810360008301526140e381613b2c565b9050919050565b6000602082019050818103600083015261410381613b4f565b9050919050565b6000602082019050818103600083015261412381613b72565b9050919050565b6000602082019050818103600083015261414381613b95565b9050919050565b6000602082019050818103600083015261416381613bb8565b9050919050565b6000602082019050818103600083015261418381613bdb565b9050919050565b600060208201905081810360008301526141a381613bfe565b9050919050565b600060208201905081810360008301526141c381613c21565b9050919050565b600060208201905081810360008301526141e381613c44565b9050919050565b6000602082019050818103600083015261420381613c67565b9050919050565b6000602082019050818103600083015261422381613c8a565b9050919050565b6000602082019050818103600083015261424381613cad565b9050919050565b6000602082019050818103600083015261426381613cd0565b9050919050565b6000602082019050818103600083015261428381613cf3565b9050919050565b600060208201905081810360008301526142a381613d16565b9050919050565b600060208201905081810360008301526142c381613d39565b9050919050565b600060208201905081810360008301526142e381613d5c565b9050919050565b6000602082019050818103600083015261430381613d7f565b9050919050565b6000602082019050818103600083015261432381613da2565b9050919050565b6000602082019050818103600083015261434381613dc5565b9050919050565b6000602082019050818103600083015261436381613de8565b9050919050565b6000602082019050818103600083015261438381613e0b565b9050919050565b600060208201905081810360008301526143a381613e2e565b9050919050565b600060208201905081810360008301526143c381613e51565b9050919050565b60006020820190506143df6000830184613e74565b92915050565b60006060820190506143fa6000830186613e9a565b61440760208301856139a8565b61441460408301846139a8565b949350505050565b6000614426614437565b905061443282826146b2565b919050565b6000604051905090565b600067ffffffffffffffff82111561445c5761445b614847565b5b6144658261488a565b9050602081019050919050565b600067ffffffffffffffff82111561448d5761448c614847565b5b6144968261488a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f182614627565b91506144fc83614627565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145315761453061478b565b5b828201905092915050565b600061454782614627565b915061455283614627565b925082614562576145616147ba565b5b828204905092915050565b600061457882614627565b915061458383614627565b9250828210156145965761459561478b565b5b828203905092915050565b60006145ac82614607565b9050919050565b60006145be82614607565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561466b578082015181840152602081019050614650565b8381111561467a576000848401525b50505050565b6000600282049050600182168061469857607f821691505b602082108114156146ac576146ab6147e9565b5b50919050565b6146bb8261488a565b810181811067ffffffffffffffff821117156146da576146d9614847565b5b80604052505050565b60006146ee82614627565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147215761472061478b565b5b600182019050919050565b60006147378261473e565b9050919050565b60006147498261489b565b9050919050565b6000819050919050565b600061476582614627565b915061477083614627565b9250826147805761477f6147ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f425420686173206e6f7420617070726f766564206275726e696e6720666f722060008201527f7468697320746f6b656e20796574000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5370656963696663207365712069732061626f766520737570706c7900000000600082015250565b7f4d65746176657273616c2069732066756c6c79206d696e74656420666f72207460008201527f68697320746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f57726f6e67206465736972656420746f6b656e00000000000000000000000000600082015250565b7f436f6e7472616374206973206e6f7420776f7274682074686174206d7563682060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420646174610000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53657175656e636520616c72656164792074616b656e00000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374206d6573736167652076616c7565000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e7320617265206e6f74206d696e7461626c65000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420617070726f76656420746f206d696e742060008201527f7468697320746f6b656e20616761696e00000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f66726f7a656e0000000000000000000000000000000000000000000000000000600082015250565b7f4e6f2073657175656e63657320657869737420756e646572207468697320766160008201527f6c75650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61502b816145a1565b811461503657600080fd5b50565b615042816145b3565b811461504d57600080fd5b50565b615059816145c5565b811461506457600080fd5b50565b615070816145d1565b811461507b57600080fd5b50565b615087816145db565b811461509257600080fd5b50565b61509e81614627565b81146150a957600080fd5b5056fea26469706673582212208c76e5c7a8c0ca26c4ff542155889a0a79a58ea2c0c61949618dd182d642c13664736f6c63430008070033

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

000000000000000000000000e07ca940b5e50b1aaffccc432a1505fac8139e250000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d506d7448647661686e613242316b6643483634664d59654c50486a5355746e394d5462526f7937453473596f2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _verification (address): 0xE07CA940b5e50B1AAffCCC432A1505faC8139e25
Arg [1] : _intialbaseuri (string): https://gateway.pinata.cloud/ipfs/QmPmtHdvahna2B1kfCH64fMYeLPHjSUtn9MTbRoy7E4sYo/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000e07ca940b5e50b1aaffccc432a1505fac8139e25
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d506d7448647661686e613242316b6643483634664d59654c50486a53
Arg [5] : 55746e394d5462526f7937453473596f2f000000000000000000000000000000


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.