ETH Price: $2,408.81 (-4.00%)
Gas: 2.39 Gwei

Token

MUSESS (MUSESS)
 

Overview

Max Total Supply

93 MUSESS

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MUSESS
0x5111B7f67f2E606879e10438121C428ff4F94A04
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:
Musess

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Musess.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
 * @title Musess
 */
contract Musess is ERC721, Ownable {
    using Counters for Counters.Counter;
    bool public sale_active = false;
    string public contract_ipfs_json;
    Counters.Counter private token_id_counter;
    uint256 public minting_price_presale = 0.15 ether;
    uint256 public minting_price_sale = 0.18 ether;
    uint256 public HARD_CAP = 999;
    uint256 public SOFT_CAP = 990;
    uint256 public MAX_AMOUNT = 20;
    bytes32 public MERKLE_ROOT_PRESALE;
    bytes32 public MERKLE_ROOT_FREE;
    bool public is_collection_revealed = false;
    bool public is_collection_locked = false;
    string public notrevealed_nft = "https://musess-api-otpxj.ondigitalocean.app/nft/unrevealed";
    string public contract_base_uri;
    address public vault_address;
    mapping(address => bool) minted_whitelist;

    constructor(string memory _name, string memory _ticker)
        ERC721(_name, _ticker)
    {}

    function _baseURI() internal view override returns (string memory) {
        return contract_base_uri;
    }

    function totalSupply() public view returns (uint256) {
        return token_id_counter.current();
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        if (is_collection_revealed == true) {
            string memory _tknId = Strings.toString(_tokenId);
            return string(abi.encodePacked(contract_base_uri, _tknId, ".json"));
        } else {
            return notrevealed_nft;
        }
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory ownerTokens)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTkns = totalSupply();
            uint256 resultIndex = 0;
            uint256 tnkId;

            for (tnkId = 1; tnkId <= totalTkns; tnkId++) {
                if (ownerOf(tnkId) == _owner) {
                    result[resultIndex] = tnkId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    function contractURI() public view returns (string memory) {
        return contract_ipfs_json;
    }

    function fixURIs(uint8 _type, string memory _newURI) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        if (_type == 0) {
            contract_base_uri = _newURI;
        } else if (_type == 1) {
            notrevealed_nft = _newURI;
        } else if (_type == 3) {
            contract_ipfs_json = _newURI;
        }
    }

    /*
        This method will allow owner reveal the collection
     */

    function revealCollection() external onlyOwner {
        is_collection_revealed = true;
    }

    /*
        This method will allow owner lock the collection
     */

    function lockCollection() external onlyOwner {
        is_collection_locked = true;
    }

    /*
        This method will allow owner to start and stop the sale
    */
    function fixSaleState(bool _newState) external onlyOwner {
        sale_active = _newState;
    }

    /*
        This method will allow owner to fix max amount of nfts per minting
    */
    function fixMaxAmount(uint256 _newMax) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        MAX_AMOUNT = _newMax;
    }

    /*
        This method will allow owner to fix the minting price
    */
    function fixPrice(uint256 _price, uint8 _priceType) external onlyOwner {
        if (_priceType == 1) {
            minting_price_presale = _price;
        } else {
            minting_price_sale = _price;
        }
    }

    /*
        This method will allow owner to change the gnosis safe wallet
    */
    function fixVault(address _newAddress) external onlyOwner {
        require(_newAddress != address(0), "Can't use black hole");
        vault_address = _newAddress;
    }

    /*
        This method will allow owner to set the merkle root
    */
    function fixMerkleRoot(bytes32 _root, uint8 _listType) external onlyOwner {
        if (_listType == 1) {
            MERKLE_ROOT_PRESALE = _root;
        } else {
            MERKLE_ROOT_FREE = _root;
        }
    }

    /*
        This method will mint the token to provided user, can be called just by the proxy address.
    */
    function dropNFT(address _to, uint256 _amount) external onlyOwner {
        uint256 reached = token_id_counter.current() + _amount;
        require(reached <= HARD_CAP, "Hard cap reached");
        for (uint256 j = 1; j <= _amount; j++) {
            token_id_counter.increment();
            uint256 newTokenId = token_id_counter.current();
            _mint(_to, newTokenId);
        }
    }

    /*
        This method will claim the free nft
    */
    function claimNFT(bytes32[] calldata _merkleProof) external {
        require(
            (token_id_counter.current() + 1) <= SOFT_CAP,
            "Hard cap reached"
        );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        bool whitelisted = MerkleProof.verify(
            _merkleProof,
            MERKLE_ROOT_FREE,
            leaf
        );
        require(
            whitelisted && !minted_whitelist[msg.sender],
            "Not whitelisted or minted yet"
        );
        minted_whitelist[msg.sender] = true;
        token_id_counter.increment();
        uint256 id = token_id_counter.current();
        _mint(msg.sender, id);
    }

    /*
        This method will allow users to buy the nft
    */
    function buyNFT(bytes32[] calldata _merkleProof) external payable {
        require(sale_active, "Can't buy because sale is not active");
        bool isWhitelisted = false;
        uint256 minting_price = minting_price_sale;
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        isWhitelisted = MerkleProof.verify(
            _merkleProof,
            MERKLE_ROOT_PRESALE,
            leaf
        );
        if (isWhitelisted) {
            minting_price = minting_price_presale;
        }
        require(
            msg.value % minting_price == 0 && msg.value > 0,
            "Not in whitelist or price is wrong"
        );
        uint256 amount = msg.value / minting_price;
        require(
            amount >= 1 && amount <= MAX_AMOUNT,
            "Amount should be at least 1 and must be less or equal to max amount"
        );
        require((amount + totalSupply()) <= SOFT_CAP, "Soft cap reached");
        uint256 j = 0;
        for (j = 0; j < amount; j++) {
            token_id_counter.increment();
            uint256 id = token_id_counter.current();
            _mint(msg.sender, id);
        }
    }

    /*
        This method will allow owner to withdraw all ethers
    */
    function withdrawFunds() external onlyOwner {
        uint256 balance = address(this).balance;
        require(vault_address != address(0) && balance > 0, "Can't withdraw");
        bool success;
        (success, ) = vault_address.call{value: balance}("");
        require(success, "Withdraw to vault failed");
    }
}

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 {}

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

File 3 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

File 4 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","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":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"},{"inputs":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MERKLE_ROOT_FREE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MERKLE_ROOT_PRESALE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOFT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claimNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract_base_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract_ipfs_json","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"dropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"fixMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"uint8","name":"_listType","type":"uint8"}],"name":"fixMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint8","name":"_priceType","type":"uint8"}],"name":"fixPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"fixSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_type","type":"uint8"},{"internalType":"string","name":"_newURI","type":"string"}],"name":"fixURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"fixVault","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":"is_collection_locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_collection_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minting_price_presale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minting_price_sale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notrevealed_nft","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","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":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","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":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"vault_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff021916908315150217905550670214e8348c4f000060095567027f7d0bdb920000600a556103e7600b556103de600c556014600d556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506040518060600160405280603a8152602001620053b3603a913960119080519060200190620000af9291906200020f565b50348015620000bd57600080fd5b50604051620053ed380380620053ed8339818101604052810190620000e391906200033d565b81818160009080519060200190620000fd9291906200020f565b508060019080519060200190620001169291906200020f565b505050620001396200012d6200014160201b60201c565b6200014960201b60201c565b505062000546565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021d9062000457565b90600052602060002090601f0160209004810192826200024157600085556200028d565b82601f106200025c57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028c5782518255916020019190600101906200026f565b5b5090506200029c9190620002a0565b5090565b5b80821115620002bb576000816000905550600101620002a1565b5090565b6000620002d6620002d084620003eb565b620003c2565b905082815260208101848484011115620002f557620002f462000526565b5b6200030284828562000421565b509392505050565b600082601f83011262000322576200032162000521565b5b815162000334848260208601620002bf565b91505092915050565b6000806040838503121562000357576200035662000530565b5b600083015167ffffffffffffffff8111156200037857620003776200052b565b5b62000386858286016200030a565b925050602083015167ffffffffffffffff811115620003aa57620003a96200052b565b5b620003b8858286016200030a565b9150509250929050565b6000620003ce620003e1565b9050620003dc82826200048d565b919050565b6000604051905090565b600067ffffffffffffffff821115620004095762000408620004f2565b5b620004148262000535565b9050602081019050919050565b60005b838110156200044157808201518184015260208101905062000424565b8381111562000451576000848401525b50505050565b600060028204905060018216806200047057607f821691505b60208210811415620004875762000486620004c3565b5b50919050565b620004988262000535565b810181811067ffffffffffffffff82111715620004ba57620004b9620004f2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614e5d80620005566000396000f3fe6080604052600436106102725760003560e01c806383bc52451161014f578063c87b56dd116100c1578063e8a3d4851161007a578063e8a3d485146108fb578063e985e9c514610926578063edf8cb6014610963578063f0b0eb871461098c578063f2fde38b146109b5578063f776d72c146109de57610272565b8063c87b56dd146107f8578063cef220a314610835578063d40dc87014610851578063daf68ef31461087c578063e0df7216146108a5578063e8987498146108d057610272565b8063a0073b8811610113578063a0073b88146106fc578063a22cb46514610727578063a24721d314610750578063b652dc2f14610779578063b88d4fde146107a4578063c5e5e9c8146107cd57610272565b806383bc5245146106155780638462151c1461063e5780638b22f3411461067b5780638da5cb5b146106a657806395d89b41146106d157610272565b80632b1fe0ef116101e85780635ec9115c116101ac5780635ec9115c1461050557806361ad20571461052e5780636352211e1461055957806370a0823114610596578063715018a6146105d3578063733f2399146105ea57610272565b80632b1fe0ef146104465780633a03171c1461047157806340d0b4a91461049c57806342842e0e146104b35780635e01967c146104dc57610272565b80630ee83a711161023a5780630ee83a71146103705780630f0b41991461038757806318160ddd146103b257806323b872dd146103dd57806324600fc31461040657806326a943211461041d57610272565b806301ffc9a7146102775780630346f18f146102b457806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061371a565b610a09565b6040516102ab9190613ed0565b60405180910390f35b3480156102c057600080fd5b506102c9610aeb565b6040516102d69190613f06565b60405180910390f35b3480156102eb57600080fd5b506102f4610b79565b6040516103019190613f06565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613774565b610c0b565b60405161033e9190613e47565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613620565b610c90565b005b34801561037c57600080fd5b50610385610da8565b005b34801561039357600080fd5b5061039c610e41565b6040516103a99190614248565b60405180910390f35b3480156103be57600080fd5b506103c7610e47565b6040516103d49190614248565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061350a565b610e58565b005b34801561041257600080fd5b5061041b610eb8565b005b34801561042957600080fd5b50610444600480360381019061043f91906137e1565b6110ab565b005b34801561045257600080fd5b5061045b6111f1565b6040516104689190613eeb565b60405180910390f35b34801561047d57600080fd5b506104866111f7565b6040516104939190614248565b60405180910390f35b3480156104a857600080fd5b506104b16111fd565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061350a565b611296565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061349d565b6112b6565b005b34801561051157600080fd5b5061052c600480360381019061052791906137a1565b6113e6565b005b34801561053a57600080fd5b50610543611486565b6040516105509190613f06565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190613774565b611514565b60405161058d9190613e47565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b8919061349d565b6115c6565b6040516105ca9190614248565b60405180910390f35b3480156105df57600080fd5b506105e861167e565b005b3480156105f657600080fd5b506105ff611706565b60405161060c9190613e47565b60405180910390f35b34801561062157600080fd5b5061063c600480360381019061063791906136ad565b61172c565b005b34801561064a57600080fd5b506106656004803603810190610660919061349d565b6117c5565b6040516106729190613eae565b60405180910390f35b34801561068757600080fd5b50610690611923565b60405161069d9190613ed0565b60405180910390f35b3480156106b257600080fd5b506106bb611936565b6040516106c89190613e47565b60405180910390f35b3480156106dd57600080fd5b506106e6611960565b6040516106f39190613f06565b60405180910390f35b34801561070857600080fd5b506107116119f2565b60405161071e9190613f06565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906135e0565b611a80565b005b34801561075c57600080fd5b5061077760048036038101906107729190613620565b611a96565b005b34801561078557600080fd5b5061078e611bba565b60405161079b9190614248565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061355d565b611bc0565b005b3480156107d957600080fd5b506107e2611c22565b6040516107ef9190614248565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613774565b611c28565b60405161082c9190613f06565b60405180910390f35b61084f600480360381019061084a9190613660565b611d11565b005b34801561085d57600080fd5b50610866611f4c565b6040516108739190614248565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190613774565b611f52565b005b3480156108b157600080fd5b506108ba612028565b6040516108c79190613ed0565b60405180910390f35b3480156108dc57600080fd5b506108e561203b565b6040516108f29190613ed0565b60405180910390f35b34801561090757600080fd5b5061091061204e565b60405161091d9190613f06565b60405180910390f35b34801561093257600080fd5b5061094d600480360381019061094891906134ca565b6120e0565b60405161095a9190613ed0565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190613660565b612174565b005b34801561099857600080fd5b506109b360048036038101906109ae91906136da565b612362565b005b3480156109c157600080fd5b506109dc60048036038101906109d7919061349d565b612402565b005b3480156109ea57600080fd5b506109f36124fa565b604051610a009190613eeb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae45750610ae382612500565b5b9050919050565b60078054610af89061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b249061450e565b8015610b715780601f10610b4657610100808354040283529160200191610b71565b820191906000526020600020905b815481529060010190602001808311610b5457829003601f168201915b505050505081565b606060008054610b889061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb49061450e565b8015610c015780601f10610bd657610100808354040283529160200191610c01565b820191906000526020600020905b815481529060010190602001808311610be457829003601f168201915b5050505050905090565b6000610c168261256a565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90614168565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9b82611514565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906141a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2b6125d6565b73ffffffffffffffffffffffffffffffffffffffff161480610d5a5750610d5981610d546125d6565b6120e0565b5b610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090614068565b60405180910390fd5b610da383836125de565b505050565b610db06125d6565b73ffffffffffffffffffffffffffffffffffffffff16610dce611936565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614188565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b600a5481565b6000610e536008612697565b905090565b610e69610e636125d6565b826126a5565b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90614228565b60405180910390fd5b610eb3838383612783565b505050565b610ec06125d6565b73ffffffffffffffffffffffffffffffffffffffff16610ede611936565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90614188565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610f985750600081115b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90614088565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161101f90613e32565b60006040518083038185875af1925050503d806000811461105c576040519150601f19603f3d011682016040523d82523d6000602084013e611061565b606091505b505080915050806110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90614208565b60405180910390fd5b5050565b6110b36125d6565b73ffffffffffffffffffffffffffffffffffffffff166110d1611936565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90614188565b60405180910390fd5b601060019054906101000a900460ff1615611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613f28565b60405180910390fd5b60008260ff16141561119f578060129080519060200190611199929190613231565b506111ed565b60018260ff1614156111c75780601190805190602001906111c1929190613231565b506111ec565b60038260ff1614156111eb5780600790805190602001906111e9929190613231565b505b5b5b5050565b600f5481565b600b5481565b6112056125d6565b73ffffffffffffffffffffffffffffffffffffffff16611223611936565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090614188565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b6112b183838360405180602001604052806000815250611bc0565b505050565b6112be6125d6565b73ffffffffffffffffffffffffffffffffffffffff166112dc611936565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990614188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614148565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113ee6125d6565b73ffffffffffffffffffffffffffffffffffffffff1661140c611936565b73ffffffffffffffffffffffffffffffffffffffff1614611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990614188565b60405180910390fd5b60018160ff16141561147a5781600981905550611482565b81600a819055505b5050565b601280546114939061450e565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf9061450e565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b4906140c8565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906140a8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116866125d6565b73ffffffffffffffffffffffffffffffffffffffff166116a4611936565b73ffffffffffffffffffffffffffffffffffffffff16146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614188565b60405180910390fd5b61170460006129ea565b565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117346125d6565b73ffffffffffffffffffffffffffffffffffffffff16611752611936565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614188565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b606060006117d2836115c6565b9050600081141561182f57600067ffffffffffffffff8111156117f8576117f76146cb565b5b6040519080825280602002602001820160405280156118265781602001602082028036833780820191505090505b5091505061191e565b60008167ffffffffffffffff81111561184b5761184a6146cb565b5b6040519080825280602002602001820160405280156118795781602001602082028036833780820191505090505b5090506000611886610e47565b9050600080600190505b828111611915578673ffffffffffffffffffffffffffffffffffffffff166118b782611514565b73ffffffffffffffffffffffffffffffffffffffff16141561190257808483815181106118e7576118e661469c565b5b60200260200101818152505081806118fe90614571565b9250505b808061190d90614571565b915050611890565b83955050505050505b919050565b601060019054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461196f9061450e565b80601f016020809104026020016040519081016040528092919081815260200182805461199b9061450e565b80156119e85780601f106119bd576101008083540402835291602001916119e8565b820191906000526020600020905b8154815290600101906020018083116119cb57829003601f168201915b5050505050905090565b601180546119ff9061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b9061450e565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b505050505081565b611a92611a8b6125d6565b8383612ab0565b5050565b611a9e6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611abc611936565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990614188565b60405180910390fd5b600081611b1f6008612697565b611b299190614386565b9050600b54811115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906141e8565b60405180910390fd5b6000600190505b828111611bb457611b886008612c1d565b6000611b946008612697565b9050611ba08582612c33565b508080611bac90614571565b915050611b77565b50505050565b600c5481565b611bd1611bcb6125d6565b836126a5565b611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790614228565b60405180910390fd5b611c1c84848484612e0d565b50505050565b60095481565b606060011515601060009054906101000a900460ff1615151415611c7e576000611c5183612e69565b9050601281604051602001611c67929190613e03565b604051602081830303815290604052915050611d0c565b60118054611c8b9061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb79061450e565b8015611d045780601f10611cd957610100808354040283529160200191611d04565b820191906000526020600020905b815481529060010190602001808311611ce757829003601f168201915b505050505090505b919050565b600660149054906101000a900460ff16611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5790613fe8565b60405180910390fd5b600080600a549050600033604051602001611d7b9190613de8565b604051602081830303815290604052805190602001209050611de1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612fca565b92508215611def5760095491505b60008234611dfd91906145de565b148015611e0a5750600034115b611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090614108565b60405180910390fd5b60008234611e5791906143dc565b905060018110158015611e6c5750600d548111155b611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290613f48565b60405180910390fd5b600c54611eb6610e47565b82611ec19190614386565b1115611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef9906140e8565b60405180910390fd5b60005b81811015611f4357611f176008612c1d565b6000611f236008612697565b9050611f2f3382612c33565b508080611f3b90614571565b915050611f05565b50505050505050565b600d5481565b611f5a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611f78611936565b73ffffffffffffffffffffffffffffffffffffffff1614611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590614188565b60405180910390fd5b601060019054906101000a900460ff161561201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590613f28565b60405180910390fd5b80600d8190555050565b600660149054906101000a900460ff1681565b601060009054906101000a900460ff1681565b60606007805461205d9061450e565b80601f01602080910402602001604051908101604052809291908181526020018280546120899061450e565b80156120d65780601f106120ab576101008083540402835291602001916120d6565b820191906000526020600020905b8154815290600101906020018083116120b957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5460016121836008612697565b61218d9190614386565b11156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c5906141e8565b60405180910390fd5b6000336040516020016121e19190613de8565b6040516020818303038152906040528051906020012090506000612249848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5484612fca565b90508080156122a25750601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d8906141c8565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506123436008612c1d565b600061234f6008612697565b905061235b3382612c33565b5050505050565b61236a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16612388611936565b73ffffffffffffffffffffffffffffffffffffffff16146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d590614188565b60405180910390fd5b60018160ff1614156123f65781600e819055506123fe565b81600f819055505b5050565b61240a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16612428611936565b73ffffffffffffffffffffffffffffffffffffffff161461247e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247590614188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613f88565b60405180910390fd5b6124f7816129ea565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661265183611514565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006126b08261256a565b6126ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e690614048565b60405180910390fd5b60006126fa83611514565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061276957508373ffffffffffffffffffffffffffffffffffffffff1661275184610c0b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061277a575061277981856120e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127a382611514565b73ffffffffffffffffffffffffffffffffffffffff16146127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090613fa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614008565b60405180910390fd5b612874838383612fe1565b61287f6000826125de565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128cf919061440d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129269190614386565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129e5838383612fe6565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1690614028565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c109190613ed0565b60405180910390a3505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9a90614128565b60405180910390fd5b612cac8161256a565b15612cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce390613fc8565b60405180910390fd5b612cf860008383612fe1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d489190614386565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e0960008383612fe6565b5050565b612e18848484612783565b612e2484848484612feb565b612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a90613f68565b60405180910390fd5b50505050565b60606000821415612eb1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc5565b600082905060005b60008214612ee3578080612ecc90614571565b915050600a82612edc91906143dc565b9150612eb9565b60008167ffffffffffffffff811115612eff57612efe6146cb565b5b6040519080825280601f01601f191660200182016040528015612f315781602001600182028036833780820191505090505b5090505b60008514612fbe57600182612f4a919061440d565b9150600a85612f5991906145de565b6030612f659190614386565b60f81b818381518110612f7b57612f7a61469c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb791906143dc565b9450612f35565b8093505050505b919050565b600082612fd78584613182565b1490509392505050565b505050565b505050565b600061300c8473ffffffffffffffffffffffffffffffffffffffff166131f7565b15613175578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130356125d6565b8786866040518563ffffffff1660e01b81526004016130579493929190613e62565b602060405180830381600087803b15801561307157600080fd5b505af19250505080156130a257506040513d601f19601f8201168201806040525081019061309f9190613747565b60015b613125573d80600081146130d2576040519150601f19603f3d011682016040523d82523d6000602084013e6130d7565b606091505b5060008151141561311d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311490613f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061317a565b600190505b949350505050565b60008082905060005b84518110156131ec5760008582815181106131a9576131a861469c565b5b602002602001015190508083116131cb576131c4838261321a565b92506131d8565b6131d5818461321a565b92505b5080806131e490614571565b91505061318b565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b82805461323d9061450e565b90600052602060002090601f01602090048101928261325f57600085556132a6565b82601f1061327857805160ff19168380011785556132a6565b828001600101855582156132a6579182015b828111156132a557825182559160200191906001019061328a565b5b5090506132b391906132b7565b5090565b5b808211156132d05760008160009055506001016132b8565b5090565b60006132e76132e284614288565b614263565b90508281526020810184848401111561330357613302614709565b5b61330e8482856144cc565b509392505050565b6000613329613324846142b9565b614263565b90508281526020810184848401111561334557613344614709565b5b6133508482856144cc565b509392505050565b60008135905061336781614d9d565b92915050565b60008083601f840112613383576133826146ff565b5b8235905067ffffffffffffffff8111156133a05761339f6146fa565b5b6020830191508360208202830111156133bc576133bb614704565b5b9250929050565b6000813590506133d281614db4565b92915050565b6000813590506133e781614dcb565b92915050565b6000813590506133fc81614de2565b92915050565b60008151905061341181614de2565b92915050565b600082601f83011261342c5761342b6146ff565b5b813561343c8482602086016132d4565b91505092915050565b600082601f83011261345a576134596146ff565b5b813561346a848260208601613316565b91505092915050565b60008135905061348281614df9565b92915050565b60008135905061349781614e10565b92915050565b6000602082840312156134b3576134b2614713565b5b60006134c184828501613358565b91505092915050565b600080604083850312156134e1576134e0614713565b5b60006134ef85828601613358565b925050602061350085828601613358565b9150509250929050565b60008060006060848603121561352357613522614713565b5b600061353186828701613358565b935050602061354286828701613358565b925050604061355386828701613473565b9150509250925092565b6000806000806080858703121561357757613576614713565b5b600061358587828801613358565b945050602061359687828801613358565b93505060406135a787828801613473565b925050606085013567ffffffffffffffff8111156135c8576135c761470e565b5b6135d487828801613417565b91505092959194509250565b600080604083850312156135f7576135f6614713565b5b600061360585828601613358565b9250506020613616858286016133c3565b9150509250929050565b6000806040838503121561363757613636614713565b5b600061364585828601613358565b925050602061365685828601613473565b9150509250929050565b6000806020838503121561367757613676614713565b5b600083013567ffffffffffffffff8111156136955761369461470e565b5b6136a18582860161336d565b92509250509250929050565b6000602082840312156136c3576136c2614713565b5b60006136d1848285016133c3565b91505092915050565b600080604083850312156136f1576136f0614713565b5b60006136ff858286016133d8565b925050602061371085828601613488565b9150509250929050565b6000602082840312156137305761372f614713565b5b600061373e848285016133ed565b91505092915050565b60006020828403121561375d5761375c614713565b5b600061376b84828501613402565b91505092915050565b60006020828403121561378a57613789614713565b5b600061379884828501613473565b91505092915050565b600080604083850312156137b8576137b7614713565b5b60006137c685828601613473565b92505060206137d785828601613488565b9150509250929050565b600080604083850312156137f8576137f7614713565b5b600061380685828601613488565b925050602083013567ffffffffffffffff8111156138275761382661470e565b5b61383385828601613445565b9150509250929050565b60006138498383613dca565b60208301905092915050565b61385e81614441565b82525050565b61387561387082614441565b6145ba565b82525050565b60006138868261430f565b613890818561433d565b935061389b836142ea565b8060005b838110156138cc5781516138b3888261383d565b97506138be83614330565b92505060018101905061389f565b5085935050505092915050565b6138e281614453565b82525050565b6138f18161445f565b82525050565b60006139028261431a565b61390c818561434e565b935061391c8185602086016144db565b61392581614718565b840191505092915050565b600061393b82614325565b613945818561436a565b93506139558185602086016144db565b61395e81614718565b840191505092915050565b600061397482614325565b61397e818561437b565b935061398e8185602086016144db565b80840191505092915050565b600081546139a78161450e565b6139b1818661437b565b945060018216600081146139cc57600181146139dd57613a10565b60ff19831686528186019350613a10565b6139e6856142fa565b60005b83811015613a08578154818901526001820191506020810190506139e9565b838801955050505b50505092915050565b6000613a2660118361436a565b9150613a3182614736565b602082019050919050565b6000613a4960438361436a565b9150613a548261475f565b606082019050919050565b6000613a6c60328361436a565b9150613a77826147d4565b604082019050919050565b6000613a8f60268361436a565b9150613a9a82614823565b604082019050919050565b6000613ab260258361436a565b9150613abd82614872565b604082019050919050565b6000613ad5601c8361436a565b9150613ae0826148c1565b602082019050919050565b6000613af860248361436a565b9150613b03826148ea565b604082019050919050565b6000613b1b60248361436a565b9150613b2682614939565b604082019050919050565b6000613b3e60198361436a565b9150613b4982614988565b602082019050919050565b6000613b61602c8361436a565b9150613b6c826149b1565b604082019050919050565b6000613b8460388361436a565b9150613b8f82614a00565b604082019050919050565b6000613ba7600e8361436a565b9150613bb282614a4f565b602082019050919050565b6000613bca602a8361436a565b9150613bd582614a78565b604082019050919050565b6000613bed60298361436a565b9150613bf882614ac7565b604082019050919050565b6000613c1060108361436a565b9150613c1b82614b16565b602082019050919050565b6000613c3360228361436a565b9150613c3e82614b3f565b604082019050919050565b6000613c5660208361436a565b9150613c6182614b8e565b602082019050919050565b6000613c7960148361436a565b9150613c8482614bb7565b602082019050919050565b6000613c9c602c8361436a565b9150613ca782614be0565b604082019050919050565b6000613cbf60058361437b565b9150613cca82614c2f565b600582019050919050565b6000613ce260208361436a565b9150613ced82614c58565b602082019050919050565b6000613d0560218361436a565b9150613d1082614c81565b604082019050919050565b6000613d28601d8361436a565b9150613d3382614cd0565b602082019050919050565b6000613d4b60108361436a565b9150613d5682614cf9565b602082019050919050565b6000613d6e60188361436a565b9150613d7982614d22565b602082019050919050565b6000613d9160008361435f565b9150613d9c82614d4b565b600082019050919050565b6000613db460318361436a565b9150613dbf82614d4e565b604082019050919050565b613dd3816144b5565b82525050565b613de2816144b5565b82525050565b6000613df48284613864565b60148201915081905092915050565b6000613e0f828561399a565b9150613e1b8284613969565b9150613e2682613cb2565b91508190509392505050565b6000613e3d82613d84565b9150819050919050565b6000602082019050613e5c6000830184613855565b92915050565b6000608082019050613e776000830187613855565b613e846020830186613855565b613e916040830185613dd9565b8181036060830152613ea381846138f7565b905095945050505050565b60006020820190508181036000830152613ec8818461387b565b905092915050565b6000602082019050613ee560008301846138d9565b92915050565b6000602082019050613f0060008301846138e8565b92915050565b60006020820190508181036000830152613f208184613930565b905092915050565b60006020820190508181036000830152613f4181613a19565b9050919050565b60006020820190508181036000830152613f6181613a3c565b9050919050565b60006020820190508181036000830152613f8181613a5f565b9050919050565b60006020820190508181036000830152613fa181613a82565b9050919050565b60006020820190508181036000830152613fc181613aa5565b9050919050565b60006020820190508181036000830152613fe181613ac8565b9050919050565b6000602082019050818103600083015261400181613aeb565b9050919050565b6000602082019050818103600083015261402181613b0e565b9050919050565b6000602082019050818103600083015261404181613b31565b9050919050565b6000602082019050818103600083015261406181613b54565b9050919050565b6000602082019050818103600083015261408181613b77565b9050919050565b600060208201905081810360008301526140a181613b9a565b9050919050565b600060208201905081810360008301526140c181613bbd565b9050919050565b600060208201905081810360008301526140e181613be0565b9050919050565b6000602082019050818103600083015261410181613c03565b9050919050565b6000602082019050818103600083015261412181613c26565b9050919050565b6000602082019050818103600083015261414181613c49565b9050919050565b6000602082019050818103600083015261416181613c6c565b9050919050565b6000602082019050818103600083015261418181613c8f565b9050919050565b600060208201905081810360008301526141a181613cd5565b9050919050565b600060208201905081810360008301526141c181613cf8565b9050919050565b600060208201905081810360008301526141e181613d1b565b9050919050565b6000602082019050818103600083015261420181613d3e565b9050919050565b6000602082019050818103600083015261422181613d61565b9050919050565b6000602082019050818103600083015261424181613da7565b9050919050565b600060208201905061425d6000830184613dd9565b92915050565b600061426d61427e565b90506142798282614540565b919050565b6000604051905090565b600067ffffffffffffffff8211156142a3576142a26146cb565b5b6142ac82614718565b9050602081019050919050565b600067ffffffffffffffff8211156142d4576142d36146cb565b5b6142dd82614718565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614391826144b5565b915061439c836144b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143d1576143d061460f565b5b828201905092915050565b60006143e7826144b5565b91506143f2836144b5565b9250826144025761440161463e565b5b828204905092915050565b6000614418826144b5565b9150614423836144b5565b9250828210156144365761443561460f565b5b828203905092915050565b600061444c82614495565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144f95780820151818401526020810190506144de565b83811115614508576000848401525b50505050565b6000600282049050600182168061452657607f821691505b6020821081141561453a5761453961466d565b5b50919050565b61454982614718565b810181811067ffffffffffffffff82111715614568576145676146cb565b5b80604052505050565b600061457c826144b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145af576145ae61460f565b5b600182019050919050565b60006145c5826145cc565b9050919050565b60006145d782614729565b9050919050565b60006145e9826144b5565b91506145f4836144b5565b9250826146045761460361463e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f206d617820616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f536f667420636170207265616368656400000000000000000000000000000000600082015250565b7f4e6f7420696e2077686974656c697374206f722070726963652069732077726f60008201527f6e67000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742077686974656c6973746564206f72206d696e74656420796574000000600082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b614da681614441565b8114614db157600080fd5b50565b614dbd81614453565b8114614dc857600080fd5b50565b614dd48161445f565b8114614ddf57600080fd5b50565b614deb81614469565b8114614df657600080fd5b50565b614e02816144b5565b8114614e0d57600080fd5b50565b614e19816144bf565b8114614e2457600080fd5b5056fea2646970667358221220002ea98789520e6636fe29657637e1500a72e6e0cb9d4a32d24859500d4dd86164736f6c6343000806003368747470733a2f2f6d75736573732d6170692d6f7470786a2e6f6e6469676974616c6f6365616e2e6170702f6e66742f756e72657665616c65640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000064d5553455353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d55534553530000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806383bc52451161014f578063c87b56dd116100c1578063e8a3d4851161007a578063e8a3d485146108fb578063e985e9c514610926578063edf8cb6014610963578063f0b0eb871461098c578063f2fde38b146109b5578063f776d72c146109de57610272565b8063c87b56dd146107f8578063cef220a314610835578063d40dc87014610851578063daf68ef31461087c578063e0df7216146108a5578063e8987498146108d057610272565b8063a0073b8811610113578063a0073b88146106fc578063a22cb46514610727578063a24721d314610750578063b652dc2f14610779578063b88d4fde146107a4578063c5e5e9c8146107cd57610272565b806383bc5245146106155780638462151c1461063e5780638b22f3411461067b5780638da5cb5b146106a657806395d89b41146106d157610272565b80632b1fe0ef116101e85780635ec9115c116101ac5780635ec9115c1461050557806361ad20571461052e5780636352211e1461055957806370a0823114610596578063715018a6146105d3578063733f2399146105ea57610272565b80632b1fe0ef146104465780633a03171c1461047157806340d0b4a91461049c57806342842e0e146104b35780635e01967c146104dc57610272565b80630ee83a711161023a5780630ee83a71146103705780630f0b41991461038757806318160ddd146103b257806323b872dd146103dd57806324600fc31461040657806326a943211461041d57610272565b806301ffc9a7146102775780630346f18f146102b457806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061371a565b610a09565b6040516102ab9190613ed0565b60405180910390f35b3480156102c057600080fd5b506102c9610aeb565b6040516102d69190613f06565b60405180910390f35b3480156102eb57600080fd5b506102f4610b79565b6040516103019190613f06565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613774565b610c0b565b60405161033e9190613e47565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613620565b610c90565b005b34801561037c57600080fd5b50610385610da8565b005b34801561039357600080fd5b5061039c610e41565b6040516103a99190614248565b60405180910390f35b3480156103be57600080fd5b506103c7610e47565b6040516103d49190614248565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061350a565b610e58565b005b34801561041257600080fd5b5061041b610eb8565b005b34801561042957600080fd5b50610444600480360381019061043f91906137e1565b6110ab565b005b34801561045257600080fd5b5061045b6111f1565b6040516104689190613eeb565b60405180910390f35b34801561047d57600080fd5b506104866111f7565b6040516104939190614248565b60405180910390f35b3480156104a857600080fd5b506104b16111fd565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061350a565b611296565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061349d565b6112b6565b005b34801561051157600080fd5b5061052c600480360381019061052791906137a1565b6113e6565b005b34801561053a57600080fd5b50610543611486565b6040516105509190613f06565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190613774565b611514565b60405161058d9190613e47565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b8919061349d565b6115c6565b6040516105ca9190614248565b60405180910390f35b3480156105df57600080fd5b506105e861167e565b005b3480156105f657600080fd5b506105ff611706565b60405161060c9190613e47565b60405180910390f35b34801561062157600080fd5b5061063c600480360381019061063791906136ad565b61172c565b005b34801561064a57600080fd5b506106656004803603810190610660919061349d565b6117c5565b6040516106729190613eae565b60405180910390f35b34801561068757600080fd5b50610690611923565b60405161069d9190613ed0565b60405180910390f35b3480156106b257600080fd5b506106bb611936565b6040516106c89190613e47565b60405180910390f35b3480156106dd57600080fd5b506106e6611960565b6040516106f39190613f06565b60405180910390f35b34801561070857600080fd5b506107116119f2565b60405161071e9190613f06565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906135e0565b611a80565b005b34801561075c57600080fd5b5061077760048036038101906107729190613620565b611a96565b005b34801561078557600080fd5b5061078e611bba565b60405161079b9190614248565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061355d565b611bc0565b005b3480156107d957600080fd5b506107e2611c22565b6040516107ef9190614248565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613774565b611c28565b60405161082c9190613f06565b60405180910390f35b61084f600480360381019061084a9190613660565b611d11565b005b34801561085d57600080fd5b50610866611f4c565b6040516108739190614248565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190613774565b611f52565b005b3480156108b157600080fd5b506108ba612028565b6040516108c79190613ed0565b60405180910390f35b3480156108dc57600080fd5b506108e561203b565b6040516108f29190613ed0565b60405180910390f35b34801561090757600080fd5b5061091061204e565b60405161091d9190613f06565b60405180910390f35b34801561093257600080fd5b5061094d600480360381019061094891906134ca565b6120e0565b60405161095a9190613ed0565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190613660565b612174565b005b34801561099857600080fd5b506109b360048036038101906109ae91906136da565b612362565b005b3480156109c157600080fd5b506109dc60048036038101906109d7919061349d565b612402565b005b3480156109ea57600080fd5b506109f36124fa565b604051610a009190613eeb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae45750610ae382612500565b5b9050919050565b60078054610af89061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b249061450e565b8015610b715780601f10610b4657610100808354040283529160200191610b71565b820191906000526020600020905b815481529060010190602001808311610b5457829003601f168201915b505050505081565b606060008054610b889061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb49061450e565b8015610c015780601f10610bd657610100808354040283529160200191610c01565b820191906000526020600020905b815481529060010190602001808311610be457829003601f168201915b5050505050905090565b6000610c168261256a565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90614168565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9b82611514565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906141a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2b6125d6565b73ffffffffffffffffffffffffffffffffffffffff161480610d5a5750610d5981610d546125d6565b6120e0565b5b610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090614068565b60405180910390fd5b610da383836125de565b505050565b610db06125d6565b73ffffffffffffffffffffffffffffffffffffffff16610dce611936565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614188565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b600a5481565b6000610e536008612697565b905090565b610e69610e636125d6565b826126a5565b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90614228565b60405180910390fd5b610eb3838383612783565b505050565b610ec06125d6565b73ffffffffffffffffffffffffffffffffffffffff16610ede611936565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90614188565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610f985750600081115b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90614088565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161101f90613e32565b60006040518083038185875af1925050503d806000811461105c576040519150601f19603f3d011682016040523d82523d6000602084013e611061565b606091505b505080915050806110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90614208565b60405180910390fd5b5050565b6110b36125d6565b73ffffffffffffffffffffffffffffffffffffffff166110d1611936565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90614188565b60405180910390fd5b601060019054906101000a900460ff1615611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613f28565b60405180910390fd5b60008260ff16141561119f578060129080519060200190611199929190613231565b506111ed565b60018260ff1614156111c75780601190805190602001906111c1929190613231565b506111ec565b60038260ff1614156111eb5780600790805190602001906111e9929190613231565b505b5b5b5050565b600f5481565b600b5481565b6112056125d6565b73ffffffffffffffffffffffffffffffffffffffff16611223611936565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090614188565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b6112b183838360405180602001604052806000815250611bc0565b505050565b6112be6125d6565b73ffffffffffffffffffffffffffffffffffffffff166112dc611936565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990614188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614148565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113ee6125d6565b73ffffffffffffffffffffffffffffffffffffffff1661140c611936565b73ffffffffffffffffffffffffffffffffffffffff1614611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990614188565b60405180910390fd5b60018160ff16141561147a5781600981905550611482565b81600a819055505b5050565b601280546114939061450e565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf9061450e565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b4906140c8565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906140a8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116866125d6565b73ffffffffffffffffffffffffffffffffffffffff166116a4611936565b73ffffffffffffffffffffffffffffffffffffffff16146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614188565b60405180910390fd5b61170460006129ea565b565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117346125d6565b73ffffffffffffffffffffffffffffffffffffffff16611752611936565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614188565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b606060006117d2836115c6565b9050600081141561182f57600067ffffffffffffffff8111156117f8576117f76146cb565b5b6040519080825280602002602001820160405280156118265781602001602082028036833780820191505090505b5091505061191e565b60008167ffffffffffffffff81111561184b5761184a6146cb565b5b6040519080825280602002602001820160405280156118795781602001602082028036833780820191505090505b5090506000611886610e47565b9050600080600190505b828111611915578673ffffffffffffffffffffffffffffffffffffffff166118b782611514565b73ffffffffffffffffffffffffffffffffffffffff16141561190257808483815181106118e7576118e661469c565b5b60200260200101818152505081806118fe90614571565b9250505b808061190d90614571565b915050611890565b83955050505050505b919050565b601060019054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461196f9061450e565b80601f016020809104026020016040519081016040528092919081815260200182805461199b9061450e565b80156119e85780601f106119bd576101008083540402835291602001916119e8565b820191906000526020600020905b8154815290600101906020018083116119cb57829003601f168201915b5050505050905090565b601180546119ff9061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b9061450e565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b505050505081565b611a92611a8b6125d6565b8383612ab0565b5050565b611a9e6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611abc611936565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990614188565b60405180910390fd5b600081611b1f6008612697565b611b299190614386565b9050600b54811115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906141e8565b60405180910390fd5b6000600190505b828111611bb457611b886008612c1d565b6000611b946008612697565b9050611ba08582612c33565b508080611bac90614571565b915050611b77565b50505050565b600c5481565b611bd1611bcb6125d6565b836126a5565b611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790614228565b60405180910390fd5b611c1c84848484612e0d565b50505050565b60095481565b606060011515601060009054906101000a900460ff1615151415611c7e576000611c5183612e69565b9050601281604051602001611c67929190613e03565b604051602081830303815290604052915050611d0c565b60118054611c8b9061450e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb79061450e565b8015611d045780601f10611cd957610100808354040283529160200191611d04565b820191906000526020600020905b815481529060010190602001808311611ce757829003601f168201915b505050505090505b919050565b600660149054906101000a900460ff16611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5790613fe8565b60405180910390fd5b600080600a549050600033604051602001611d7b9190613de8565b604051602081830303815290604052805190602001209050611de1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612fca565b92508215611def5760095491505b60008234611dfd91906145de565b148015611e0a5750600034115b611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090614108565b60405180910390fd5b60008234611e5791906143dc565b905060018110158015611e6c5750600d548111155b611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290613f48565b60405180910390fd5b600c54611eb6610e47565b82611ec19190614386565b1115611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef9906140e8565b60405180910390fd5b60005b81811015611f4357611f176008612c1d565b6000611f236008612697565b9050611f2f3382612c33565b508080611f3b90614571565b915050611f05565b50505050505050565b600d5481565b611f5a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611f78611936565b73ffffffffffffffffffffffffffffffffffffffff1614611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590614188565b60405180910390fd5b601060019054906101000a900460ff161561201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590613f28565b60405180910390fd5b80600d8190555050565b600660149054906101000a900460ff1681565b601060009054906101000a900460ff1681565b60606007805461205d9061450e565b80601f01602080910402602001604051908101604052809291908181526020018280546120899061450e565b80156120d65780601f106120ab576101008083540402835291602001916120d6565b820191906000526020600020905b8154815290600101906020018083116120b957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5460016121836008612697565b61218d9190614386565b11156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c5906141e8565b60405180910390fd5b6000336040516020016121e19190613de8565b6040516020818303038152906040528051906020012090506000612249848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5484612fca565b90508080156122a25750601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d8906141c8565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506123436008612c1d565b600061234f6008612697565b905061235b3382612c33565b5050505050565b61236a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16612388611936565b73ffffffffffffffffffffffffffffffffffffffff16146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d590614188565b60405180910390fd5b60018160ff1614156123f65781600e819055506123fe565b81600f819055505b5050565b61240a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16612428611936565b73ffffffffffffffffffffffffffffffffffffffff161461247e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247590614188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613f88565b60405180910390fd5b6124f7816129ea565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661265183611514565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006126b08261256a565b6126ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e690614048565b60405180910390fd5b60006126fa83611514565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061276957508373ffffffffffffffffffffffffffffffffffffffff1661275184610c0b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061277a575061277981856120e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127a382611514565b73ffffffffffffffffffffffffffffffffffffffff16146127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090613fa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614008565b60405180910390fd5b612874838383612fe1565b61287f6000826125de565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128cf919061440d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129269190614386565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129e5838383612fe6565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1690614028565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c109190613ed0565b60405180910390a3505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9a90614128565b60405180910390fd5b612cac8161256a565b15612cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce390613fc8565b60405180910390fd5b612cf860008383612fe1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d489190614386565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e0960008383612fe6565b5050565b612e18848484612783565b612e2484848484612feb565b612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a90613f68565b60405180910390fd5b50505050565b60606000821415612eb1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc5565b600082905060005b60008214612ee3578080612ecc90614571565b915050600a82612edc91906143dc565b9150612eb9565b60008167ffffffffffffffff811115612eff57612efe6146cb565b5b6040519080825280601f01601f191660200182016040528015612f315781602001600182028036833780820191505090505b5090505b60008514612fbe57600182612f4a919061440d565b9150600a85612f5991906145de565b6030612f659190614386565b60f81b818381518110612f7b57612f7a61469c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb791906143dc565b9450612f35565b8093505050505b919050565b600082612fd78584613182565b1490509392505050565b505050565b505050565b600061300c8473ffffffffffffffffffffffffffffffffffffffff166131f7565b15613175578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130356125d6565b8786866040518563ffffffff1660e01b81526004016130579493929190613e62565b602060405180830381600087803b15801561307157600080fd5b505af19250505080156130a257506040513d601f19601f8201168201806040525081019061309f9190613747565b60015b613125573d80600081146130d2576040519150601f19603f3d011682016040523d82523d6000602084013e6130d7565b606091505b5060008151141561311d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311490613f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061317a565b600190505b949350505050565b60008082905060005b84518110156131ec5760008582815181106131a9576131a861469c565b5b602002602001015190508083116131cb576131c4838261321a565b92506131d8565b6131d5818461321a565b92505b5080806131e490614571565b91505061318b565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b82805461323d9061450e565b90600052602060002090601f01602090048101928261325f57600085556132a6565b82601f1061327857805160ff19168380011785556132a6565b828001600101855582156132a6579182015b828111156132a557825182559160200191906001019061328a565b5b5090506132b391906132b7565b5090565b5b808211156132d05760008160009055506001016132b8565b5090565b60006132e76132e284614288565b614263565b90508281526020810184848401111561330357613302614709565b5b61330e8482856144cc565b509392505050565b6000613329613324846142b9565b614263565b90508281526020810184848401111561334557613344614709565b5b6133508482856144cc565b509392505050565b60008135905061336781614d9d565b92915050565b60008083601f840112613383576133826146ff565b5b8235905067ffffffffffffffff8111156133a05761339f6146fa565b5b6020830191508360208202830111156133bc576133bb614704565b5b9250929050565b6000813590506133d281614db4565b92915050565b6000813590506133e781614dcb565b92915050565b6000813590506133fc81614de2565b92915050565b60008151905061341181614de2565b92915050565b600082601f83011261342c5761342b6146ff565b5b813561343c8482602086016132d4565b91505092915050565b600082601f83011261345a576134596146ff565b5b813561346a848260208601613316565b91505092915050565b60008135905061348281614df9565b92915050565b60008135905061349781614e10565b92915050565b6000602082840312156134b3576134b2614713565b5b60006134c184828501613358565b91505092915050565b600080604083850312156134e1576134e0614713565b5b60006134ef85828601613358565b925050602061350085828601613358565b9150509250929050565b60008060006060848603121561352357613522614713565b5b600061353186828701613358565b935050602061354286828701613358565b925050604061355386828701613473565b9150509250925092565b6000806000806080858703121561357757613576614713565b5b600061358587828801613358565b945050602061359687828801613358565b93505060406135a787828801613473565b925050606085013567ffffffffffffffff8111156135c8576135c761470e565b5b6135d487828801613417565b91505092959194509250565b600080604083850312156135f7576135f6614713565b5b600061360585828601613358565b9250506020613616858286016133c3565b9150509250929050565b6000806040838503121561363757613636614713565b5b600061364585828601613358565b925050602061365685828601613473565b9150509250929050565b6000806020838503121561367757613676614713565b5b600083013567ffffffffffffffff8111156136955761369461470e565b5b6136a18582860161336d565b92509250509250929050565b6000602082840312156136c3576136c2614713565b5b60006136d1848285016133c3565b91505092915050565b600080604083850312156136f1576136f0614713565b5b60006136ff858286016133d8565b925050602061371085828601613488565b9150509250929050565b6000602082840312156137305761372f614713565b5b600061373e848285016133ed565b91505092915050565b60006020828403121561375d5761375c614713565b5b600061376b84828501613402565b91505092915050565b60006020828403121561378a57613789614713565b5b600061379884828501613473565b91505092915050565b600080604083850312156137b8576137b7614713565b5b60006137c685828601613473565b92505060206137d785828601613488565b9150509250929050565b600080604083850312156137f8576137f7614713565b5b600061380685828601613488565b925050602083013567ffffffffffffffff8111156138275761382661470e565b5b61383385828601613445565b9150509250929050565b60006138498383613dca565b60208301905092915050565b61385e81614441565b82525050565b61387561387082614441565b6145ba565b82525050565b60006138868261430f565b613890818561433d565b935061389b836142ea565b8060005b838110156138cc5781516138b3888261383d565b97506138be83614330565b92505060018101905061389f565b5085935050505092915050565b6138e281614453565b82525050565b6138f18161445f565b82525050565b60006139028261431a565b61390c818561434e565b935061391c8185602086016144db565b61392581614718565b840191505092915050565b600061393b82614325565b613945818561436a565b93506139558185602086016144db565b61395e81614718565b840191505092915050565b600061397482614325565b61397e818561437b565b935061398e8185602086016144db565b80840191505092915050565b600081546139a78161450e565b6139b1818661437b565b945060018216600081146139cc57600181146139dd57613a10565b60ff19831686528186019350613a10565b6139e6856142fa565b60005b83811015613a08578154818901526001820191506020810190506139e9565b838801955050505b50505092915050565b6000613a2660118361436a565b9150613a3182614736565b602082019050919050565b6000613a4960438361436a565b9150613a548261475f565b606082019050919050565b6000613a6c60328361436a565b9150613a77826147d4565b604082019050919050565b6000613a8f60268361436a565b9150613a9a82614823565b604082019050919050565b6000613ab260258361436a565b9150613abd82614872565b604082019050919050565b6000613ad5601c8361436a565b9150613ae0826148c1565b602082019050919050565b6000613af860248361436a565b9150613b03826148ea565b604082019050919050565b6000613b1b60248361436a565b9150613b2682614939565b604082019050919050565b6000613b3e60198361436a565b9150613b4982614988565b602082019050919050565b6000613b61602c8361436a565b9150613b6c826149b1565b604082019050919050565b6000613b8460388361436a565b9150613b8f82614a00565b604082019050919050565b6000613ba7600e8361436a565b9150613bb282614a4f565b602082019050919050565b6000613bca602a8361436a565b9150613bd582614a78565b604082019050919050565b6000613bed60298361436a565b9150613bf882614ac7565b604082019050919050565b6000613c1060108361436a565b9150613c1b82614b16565b602082019050919050565b6000613c3360228361436a565b9150613c3e82614b3f565b604082019050919050565b6000613c5660208361436a565b9150613c6182614b8e565b602082019050919050565b6000613c7960148361436a565b9150613c8482614bb7565b602082019050919050565b6000613c9c602c8361436a565b9150613ca782614be0565b604082019050919050565b6000613cbf60058361437b565b9150613cca82614c2f565b600582019050919050565b6000613ce260208361436a565b9150613ced82614c58565b602082019050919050565b6000613d0560218361436a565b9150613d1082614c81565b604082019050919050565b6000613d28601d8361436a565b9150613d3382614cd0565b602082019050919050565b6000613d4b60108361436a565b9150613d5682614cf9565b602082019050919050565b6000613d6e60188361436a565b9150613d7982614d22565b602082019050919050565b6000613d9160008361435f565b9150613d9c82614d4b565b600082019050919050565b6000613db460318361436a565b9150613dbf82614d4e565b604082019050919050565b613dd3816144b5565b82525050565b613de2816144b5565b82525050565b6000613df48284613864565b60148201915081905092915050565b6000613e0f828561399a565b9150613e1b8284613969565b9150613e2682613cb2565b91508190509392505050565b6000613e3d82613d84565b9150819050919050565b6000602082019050613e5c6000830184613855565b92915050565b6000608082019050613e776000830187613855565b613e846020830186613855565b613e916040830185613dd9565b8181036060830152613ea381846138f7565b905095945050505050565b60006020820190508181036000830152613ec8818461387b565b905092915050565b6000602082019050613ee560008301846138d9565b92915050565b6000602082019050613f0060008301846138e8565b92915050565b60006020820190508181036000830152613f208184613930565b905092915050565b60006020820190508181036000830152613f4181613a19565b9050919050565b60006020820190508181036000830152613f6181613a3c565b9050919050565b60006020820190508181036000830152613f8181613a5f565b9050919050565b60006020820190508181036000830152613fa181613a82565b9050919050565b60006020820190508181036000830152613fc181613aa5565b9050919050565b60006020820190508181036000830152613fe181613ac8565b9050919050565b6000602082019050818103600083015261400181613aeb565b9050919050565b6000602082019050818103600083015261402181613b0e565b9050919050565b6000602082019050818103600083015261404181613b31565b9050919050565b6000602082019050818103600083015261406181613b54565b9050919050565b6000602082019050818103600083015261408181613b77565b9050919050565b600060208201905081810360008301526140a181613b9a565b9050919050565b600060208201905081810360008301526140c181613bbd565b9050919050565b600060208201905081810360008301526140e181613be0565b9050919050565b6000602082019050818103600083015261410181613c03565b9050919050565b6000602082019050818103600083015261412181613c26565b9050919050565b6000602082019050818103600083015261414181613c49565b9050919050565b6000602082019050818103600083015261416181613c6c565b9050919050565b6000602082019050818103600083015261418181613c8f565b9050919050565b600060208201905081810360008301526141a181613cd5565b9050919050565b600060208201905081810360008301526141c181613cf8565b9050919050565b600060208201905081810360008301526141e181613d1b565b9050919050565b6000602082019050818103600083015261420181613d3e565b9050919050565b6000602082019050818103600083015261422181613d61565b9050919050565b6000602082019050818103600083015261424181613da7565b9050919050565b600060208201905061425d6000830184613dd9565b92915050565b600061426d61427e565b90506142798282614540565b919050565b6000604051905090565b600067ffffffffffffffff8211156142a3576142a26146cb565b5b6142ac82614718565b9050602081019050919050565b600067ffffffffffffffff8211156142d4576142d36146cb565b5b6142dd82614718565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614391826144b5565b915061439c836144b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143d1576143d061460f565b5b828201905092915050565b60006143e7826144b5565b91506143f2836144b5565b9250826144025761440161463e565b5b828204905092915050565b6000614418826144b5565b9150614423836144b5565b9250828210156144365761443561460f565b5b828203905092915050565b600061444c82614495565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144f95780820151818401526020810190506144de565b83811115614508576000848401525b50505050565b6000600282049050600182168061452657607f821691505b6020821081141561453a5761453961466d565b5b50919050565b61454982614718565b810181811067ffffffffffffffff82111715614568576145676146cb565b5b80604052505050565b600061457c826144b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145af576145ae61460f565b5b600182019050919050565b60006145c5826145cc565b9050919050565b60006145d782614729565b9050919050565b60006145e9826144b5565b91506145f4836144b5565b9250826146045761460361463e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f206d617820616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f536f667420636170207265616368656400000000000000000000000000000000600082015250565b7f4e6f7420696e2077686974656c697374206f722070726963652069732077726f60008201527f6e67000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742077686974656c6973746564206f72206d696e74656420796574000000600082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b614da681614441565b8114614db157600080fd5b50565b614dbd81614453565b8114614dc857600080fd5b50565b614dd48161445f565b8114614ddf57600080fd5b50565b614deb81614469565b8114614df657600080fd5b50565b614e02816144b5565b8114614e0d57600080fd5b50565b614e19816144bf565b8114614e2457600080fd5b5056fea2646970667358221220002ea98789520e6636fe29657637e1500a72e6e0cb9d4a32d24859500d4dd86164736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000064d5553455353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d55534553530000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MUSESS
Arg [1] : _ticker (string): MUSESS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 4d55534553530000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4d55534553530000000000000000000000000000000000000000000000000000


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.