ETH Price: $3,008.12 (-8.38%)

Token

MisphitsNFT (MISPHITS)
 

Overview

Max Total Supply

559 MISPHITS

Holders

153

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MISPHITS
0xd17b9a2d47ec4a989501cdf176c33daa0859d0bb
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:
MisphitsNFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : MisphitsNFT.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/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
 * @title MisphitsNFT
 */
contract MisphitsNFT is ERC721, Ownable {
    using Counters for Counters.Counter;
    mapping(uint256 => string) public causes_of_nft;
    bool public whitelist_active = true;
    bool public sale_active = false;
    bool public is_collection_revealed = false;
    bool public is_collection_locked = false;
    string public contract_ipfs_json;
    Counters.Counter private _tokenIdCounter;
    uint256 public minting_price_public = 0.1 ether;
    uint256 public minting_price_wl = 0.09 ether;
    uint256 public HARD_CAP = 4444;
    uint256 public MAX_AMOUNT = 5;
    uint256 public MAX_WHITELIST = 10;
    bytes32 public MERKLE_ROOT;
    string public contract_base_uri = "ipfs://";
    address public vault_address;
    mapping(address => uint256) public minted_whitelist;

    constructor(
        string memory _name,
        string memory _ticker,
        string memory _contract_ipfs
    ) ERC721(_name, _ticker) {
        contract_ipfs_json = _contract_ipfs;
        vault_address = msg.sender;
    }

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

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

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

    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 fixContractURI(string memory _newURI) public onlyOwner {
        require(!is_collection_locked, "Collection locked");
        contract_ipfs_json = _newURI;
    }

    function fixBaseURI(string memory _newURI) public onlyOwner {
        require(!is_collection_locked, "Collection locked");
        contract_base_uri = _newURI;
    }

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

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

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

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

    /*
        This method will allow owner to start and stop the sale
    */
    function fixSaleState(bool newState) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        sale_active = newState;
    }

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

    /*
        This method will allow owner to fix the minting price
    */
    function fixPrice(uint256 price, uint8 kind) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        if (kind == 0) {
            minting_price_public = price;
        } else {
            minting_price_wl = price;
        }
    }

    /*
        This method will allow owner to fix the whitelist role
    */
    function fixWhitelist(bool state) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        whitelist_active = state;
    }

    /*
        This method will allow owner to change the gnosis safe wallet
    */
    function fixVault(address newAddress) public 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) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        MERKLE_ROOT = root;
    }

    /*
        This method will allow owner to fix the causes for an nft
    */
    function fixCause(uint256 tokenId, string memory cause) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        causes_of_nft[tokenId] = cause;
    }

    /*
        This method will mint the token to provided user, can be called just by the proxy address.
    */
    function dropNFT(
        address _to,
        uint256 _amount,
        string[] memory causes
    ) public onlyOwner {
        uint256 reached = _tokenIdCounter.current() + _amount;
        require(reached <= HARD_CAP, "Hard cap reached");
        for (uint256 j = 0; j < _amount; j++) {
            _tokenIdCounter.increment();
            uint256 nextId = _tokenIdCounter.current();
            causes_of_nft[nextId] = causes[j];
            _mint(_to, nextId);
        }
    }

    /*
        This method will return the whitelisting state for a proof
    */
    function isWhitelisted(bytes32[] calldata _merkleProof, address _address)
        public
        view
        returns (bool)
    {
        require(whitelist_active, "Whitelist is not active");
        bytes32 leaf = keccak256(abi.encodePacked(_address));
        bool whitelisted = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
        return whitelisted;
    }

    /*
        This method will allow owner to withdraw all ethers
    */
    function withdrawEther() 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");
    }

    /*
        This method will allow users to buy the nft
    */
    function buyNFT(bytes32[] calldata _merkleProof, string[] memory causes)
        public
        payable
    {
        require(sale_active, "Can't buy because sale is not active");
        bool canMint = true;
        uint256 minting_price = minting_price_public;
        if (whitelist_active) {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            canMint = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
            minting_price = minting_price_wl;
        }
        require(
            canMint && msg.value % minting_price == 0,
            "Sorry you can't mint right now"
        );
        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"
        );
        uint256 reached_hardcap = amount + totalSupply();
        require(reached_hardcap <= HARD_CAP, "Hard cap reached");
        if (whitelist_active) {
            uint256 reached_wlcap = amount + minted_whitelist[msg.sender];
            require(
                reached_wlcap <= MAX_WHITELIST,
                "Can't mint more NFTs in whitelist"
            );
            minted_whitelist[msg.sender] += amount;
        }
        for (uint256 j = 0; j < amount; j++) {
            _tokenIdCounter.increment();
            uint256 nextId = _tokenIdCounter.current();
            causes_of_nft[nextId] = causes[j];
            _mint(msg.sender, nextId);
        }
    }
}

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 : 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 5 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 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"},{"internalType":"string","name":"_contract_ipfs","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":"MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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[]"},{"internalType":"string[]","name":"causes","type":"string[]"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"causes_of_nft","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"},{"internalType":"string[]","name":"causes","type":"string[]"}],"name":"dropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"fixBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"cause","type":"string"}],"name":"fixCause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"fixContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"}],"name":"fixMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"fixMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"kind","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":"address","name":"newAddress","type":"address"}],"name":"fixVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"fixWhitelist","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","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":[{"internalType":"address","name":"","type":"address"}],"name":"minted_whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minting_price_public","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minting_price_wl","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":"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":"whitelist_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055506000600860036101000a81548160ff02191690831515021790555067016345785d8a0000600b5567013fbe85edc90000600c5561115c600d556005600e55600a600f556040518060400160405280600781526020017f697066733a2f2f0000000000000000000000000000000000000000000000000081525060119080519060200190620000e5929190620002a0565b50348015620000f357600080fd5b5060405162005b1438038062005b148339818101604052810190620001199190620003ce565b8282816000908051906020019062000133929190620002a0565b5080600190805190602001906200014c929190620002a0565b5050506200016f62000163620001d260201b60201c565b620001da60201b60201c565b806009908051906020019062000187929190620002a0565b5033601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200060b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ae906200051c565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b6000620003676200036184620004b0565b62000487565b905082815260208101848484011115620003865762000385620005eb565b5b62000393848285620004e6565b509392505050565b600082601f830112620003b357620003b2620005e6565b5b8151620003c584826020860162000350565b91505092915050565b600080600060608486031215620003ea57620003e9620005f5565b5b600084015167ffffffffffffffff8111156200040b576200040a620005f0565b5b62000419868287016200039b565b935050602084015167ffffffffffffffff8111156200043d576200043c620005f0565b5b6200044b868287016200039b565b925050604084015167ffffffffffffffff8111156200046f576200046e620005f0565b5b6200047d868287016200039b565b9150509250925092565b600062000493620004a6565b9050620004a1828262000552565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ce57620004cd620005b7565b5b620004d982620005fa565b9050602081019050919050565b60005b8381101562000506578082015181840152602081019050620004e9565b8381111562000516576000848401525b50505050565b600060028204905060018216806200053557607f821691505b602082108114156200054c576200054b62000588565b5b50919050565b6200055d82620005fa565b810181811067ffffffffffffffff821117156200057f576200057e620005b7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6154f9806200061b6000396000f3fe6080604052600436106102ae5760003560e01c80636352211e1161017557806395f61c48116100dc578063d40dc87011610095578063e89874981161006f578063e898749814610a67578063e8a3d48514610a92578063e985e9c514610abd578063f2fde38b14610afa576102ae565b8063d40dc870146109d4578063debefaa6146109ff578063e0df721614610a3c576102ae565b806395f61c48146108d557806398a7276114610900578063a22cb4651461091c578063b88d4fde14610945578063c59099b11461096e578063c87b56dd14610997576102ae565b806383bc52451161012e57806383bc5245146107b15780638462151c146107da5780638b22f341146108175780638da5cb5b1461084257806393ec3e881461086d57806395d89b41146108aa576102ae565b80636352211e146106b357806370a08231146106f0578063715018a61461072d578063733f2399146107445780637362377b1461076f5780637f9307f714610786576102ae565b80633a03171c1161021957806351e75e8b116101d257806351e75e8b146105b95780635489af0f146105e45780635e01967c1461060d5780635e50d64c146106365780635ec9115c1461065f57806361ad205714610688576102ae565b80633a03171c146104bd5780633b6e2873146104e85780633ff34f211461051357806340d0b4a91461055057806342842e0e1461056757806347d0c93014610590576102ae565b80631036b3c51161026b5780631036b3c5146103c357806314f7b61e146103ee57806318160ddd14610417578063211eb07d1461044257806323b872dd1461046b5780632a1436c214610494576102ae565b806301ffc9a7146102b35780630346f18f146102f057806306fdde031461031b578063081812fc14610346578063095ea7b3146103835780630ee83a71146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613d41565b610b23565b6040516102e79190614540565b60405180910390f35b3480156102fc57600080fd5b50610305610c05565b6040516103129190614576565b60405180910390f35b34801561032757600080fd5b50610330610c93565b60405161033d9190614576565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190613de4565b610d25565b60405161037a91906144b7565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190613b5c565b610daa565b005b3480156103b857600080fd5b506103c1610ec2565b005b3480156103cf57600080fd5b506103d8610f5b565b6040516103e59190614540565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613e6d565b610f6e565b005b34801561042357600080fd5b5061042c61105e565b60405161043991906148b8565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613d9b565b61106f565b005b34801561047757600080fd5b50610492600480360381019061048d9190613a46565b611155565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613ce7565b6111b5565b005b3480156104c957600080fd5b506104d261129e565b6040516104df91906148b8565b60405180910390f35b3480156104f457600080fd5b506104fd6112a4565b60405161050a91906148b8565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190613de4565b6112aa565b6040516105479190614576565b60405180910390f35b34801561055c57600080fd5b5061056561134a565b005b34801561057357600080fd5b5061058e60048036038101906105899190613a46565b6113e3565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613d14565b611403565b005b3480156105c557600080fd5b506105ce6114d9565b6040516105db919061455b565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190613d9b565b6114df565b005b34801561061957600080fd5b50610634600480360381019061062f91906139d9565b6115c5565b005b34801561064257600080fd5b5061065d60048036038101906106589190613b9c565b6116f5565b005b34801561066b57600080fd5b5061068660048036038101906106819190613e6d565b611859565b005b34801561069457600080fd5b5061069d611949565b6040516106aa9190614576565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190613de4565b6119d7565b6040516106e791906144b7565b60405180910390f35b3480156106fc57600080fd5b50610717600480360381019061071291906139d9565b611a89565b60405161072491906148b8565b60405180910390f35b34801561073957600080fd5b50610742611b41565b005b34801561075057600080fd5b50610759611bc9565b60405161076691906144b7565b60405180910390f35b34801561077b57600080fd5b50610784611bef565b005b34801561079257600080fd5b5061079b611de2565b6040516107a891906148b8565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613ce7565b611de8565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906139d9565b611ed1565b60405161080e919061451e565b60405180910390f35b34801561082357600080fd5b5061082c61202f565b6040516108399190614540565b60405180910390f35b34801561084e57600080fd5b50610857612042565b60405161086491906144b7565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906139d9565b61206c565b6040516108a191906148b8565b60405180910390f35b3480156108b657600080fd5b506108bf612084565b6040516108cc9190614576565b60405180910390f35b3480156108e157600080fd5b506108ea612116565b6040516108f791906148b8565b60405180910390f35b61091a60048036038101906109159190613c6b565b61211c565b005b34801561092857600080fd5b50610943600480360381019061093e9190613b1c565b6124b2565b005b34801561095157600080fd5b5061096c60048036038101906109679190613a99565b6124c8565b005b34801561097a57600080fd5b5061099560048036038101906109909190613e11565b61252a565b005b3480156109a357600080fd5b506109be60048036038101906109b99190613de4565b612622565b6040516109cb9190614576565b60405180910390f35b3480156109e057600080fd5b506109e961265c565b6040516109f691906148b8565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613c0b565b612662565b604051610a339190614540565b60405180910390f35b348015610a4857600080fd5b50610a5161273c565b604051610a5e9190614540565b60405180910390f35b348015610a7357600080fd5b50610a7c61274f565b604051610a899190614540565b60405180910390f35b348015610a9e57600080fd5b50610aa7612762565b604051610ab49190614576565b60405180910390f35b348015610ac957600080fd5b50610ae46004803603810190610adf9190613a06565b6127f4565b604051610af19190614540565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c91906139d9565b612888565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bfe5750610bfd82612980565b5b9050919050565b60098054610c1290614baa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e90614baa565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b505050505081565b606060008054610ca290614baa565b80601f0160208091040260200160405190810160405280929190818152602001828054610cce90614baa565b8015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b6000610d30826129ea565b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906147d8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610db5826119d7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90614818565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e45612a56565b73ffffffffffffffffffffffffffffffffffffffff161480610e745750610e7381610e6e612a56565b6127f4565b5b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90614718565b60405180910390fd5b610ebd8383612a5e565b505050565b610eca612a56565b73ffffffffffffffffffffffffffffffffffffffff16610ee8612042565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906147f8565b60405180910390fd5b6001600860036101000a81548160ff021916908315150217905550565b600860009054906101000a900460ff1681565b610f76612a56565b73ffffffffffffffffffffffffffffffffffffffff16610f94612042565b73ffffffffffffffffffffffffffffffffffffffff1614610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe1906147f8565b60405180910390fd5b600860039054906101000a900460ff161561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190614598565b60405180910390fd5b60008160ff1614156110525781600e8190555061105a565b81600f819055505b5050565b600061106a600a612b17565b905090565b611077612a56565b73ffffffffffffffffffffffffffffffffffffffff16611095612042565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e2906147f8565b60405180910390fd5b600860039054906101000a900460ff161561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290614598565b60405180910390fd5b80601190805190602001906111519291906136b1565b5050565b611166611160612a56565b82612b25565b6111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90614878565b60405180910390fd5b6111b0838383612c03565b505050565b6111bd612a56565b73ffffffffffffffffffffffffffffffffffffffff166111db612042565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611228906147f8565b60405180910390fd5b600860039054906101000a900460ff1615611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614598565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600d5481565b600c5481565b600760205280600052604060002060009150905080546112c990614baa565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590614baa565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b611352612a56565b73ffffffffffffffffffffffffffffffffffffffff16611370612042565b73ffffffffffffffffffffffffffffffffffffffff16146113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd906147f8565b60405180910390fd5b6001600860026101000a81548160ff021916908315150217905550565b6113fe838383604051806020016040528060008152506124c8565b505050565b61140b612a56565b73ffffffffffffffffffffffffffffffffffffffff16611429612042565b73ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611476906147f8565b60405180910390fd5b600860039054906101000a900460ff16156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690614598565b60405180910390fd5b8060108190555050565b60105481565b6114e7612a56565b73ffffffffffffffffffffffffffffffffffffffff16611505612042565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906147f8565b60405180910390fd5b600860039054906101000a900460ff16156115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290614598565b60405180910390fd5b80600990805190602001906115c19291906136b1565b5050565b6115cd612a56565b73ffffffffffffffffffffffffffffffffffffffff166115eb612042565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906147f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a8906147b8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116fd612a56565b73ffffffffffffffffffffffffffffffffffffffff1661171b612042565b73ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906147f8565b60405180910390fd5b60008261177e600a612b17565b6117889190614a22565b9050600d548111156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614838565b60405180910390fd5b60005b83811015611852576117e4600a612e6a565b60006117f0600a612b17565b905083828151811061180557611804614d38565b5b60200260200101516007600083815260200190815260200160002090805190602001906118339291906136b1565b5061183e8682612e80565b50808061184a90614c0d565b9150506117d2565b5050505050565b611861612a56565b73ffffffffffffffffffffffffffffffffffffffff1661187f612042565b73ffffffffffffffffffffffffffffffffffffffff16146118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906147f8565b60405180910390fd5b600860039054906101000a900460ff1615611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614598565b60405180910390fd5b60008160ff16141561193d5781600b81905550611945565b81600c819055505b5050565b6011805461195690614baa565b80601f016020809104026020016040519081016040528092919081815260200182805461198290614baa565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790614778565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614758565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b49612a56565b73ffffffffffffffffffffffffffffffffffffffff16611b67612042565b73ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb4906147f8565b60405180910390fd5b611bc7600061305a565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611bf7612a56565b73ffffffffffffffffffffffffffffffffffffffff16611c15612042565b73ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c62906147f8565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611ccf5750600081115b611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590614738565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d56906144a2565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b50508091505080611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd590614858565b60405180910390fd5b5050565b600b5481565b611df0612a56565b73ffffffffffffffffffffffffffffffffffffffff16611e0e612042565b73ffffffffffffffffffffffffffffffffffffffff1614611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906147f8565b60405180910390fd5b600860039054906101000a900460ff1615611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614598565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b60606000611ede83611a89565b90506000811415611f3b57600067ffffffffffffffff811115611f0457611f03614d67565b5b604051908082528060200260200182016040528015611f325781602001602082028036833780820191505090505b5091505061202a565b60008167ffffffffffffffff811115611f5757611f56614d67565b5b604051908082528060200260200182016040528015611f855781602001602082028036833780820191505090505b5090506000611f9261105e565b9050600080600190505b828111612021578673ffffffffffffffffffffffffffffffffffffffff16611fc3826119d7565b73ffffffffffffffffffffffffffffffffffffffff16141561200e5780848381518110611ff357611ff2614d38565b5b602002602001018181525050818061200a90614c0d565b9250505b808061201990614c0d565b915050611f9c565b83955050505050505b919050565b600860039054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60136020528060005260406000206000915090505481565b60606001805461209390614baa565b80601f01602080910402602001604051908101604052809291908181526020018280546120bf90614baa565b801561210c5780601f106120e15761010080835404028352916020019161210c565b820191906000526020600020905b8154815290600101906020018083116120ef57829003601f168201915b5050505050905090565b600f5481565b600860019054906101000a900460ff1661216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290614698565b60405180910390fd5b6000600190506000600b549050600860009054906101000a900460ff161561220f576000336040516020016121a09190614458565b604051602081830303815290604052805190602001209050612206868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483613120565b9250600c549150505b8180156122275750600081346122259190614c7a565b145b612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90614678565b60405180910390fd5b600081346122749190614a78565b9050600181101580156122895750600e548111155b6122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf906145d8565b60405180910390fd5b60006122d261105e565b826122dd9190614a22565b9050600d54811115612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90614838565b60405180910390fd5b600860009054906101000a900460ff1615612425576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123869190614a22565b9050600f548111156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490614898565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241c9190614a22565b92505081905550505b60005b828110156124a85761243a600a612e6a565b6000612446600a612b17565b905086828151811061245b5761245a614d38565b5b60200260200101516007600083815260200190815260200160002090805190602001906124899291906136b1565b506124943382612e80565b5080806124a090614c0d565b915050612428565b5050505050505050565b6124c46124bd612a56565b8383613137565b5050565b6124d96124d3612a56565b83612b25565b612518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250f90614878565b60405180910390fd5b612524848484846132a4565b50505050565b612532612a56565b73ffffffffffffffffffffffffffffffffffffffff16612550612042565b73ffffffffffffffffffffffffffffffffffffffff16146125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d906147f8565b60405180910390fd5b600860039054906101000a900460ff16156125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed90614598565b60405180910390fd5b8060076000848152602001908152602001600020908051906020019061261d9291906136b1565b505050565b6060600061262f83613300565b9050601181604051602001612645929190614473565b604051602081830303815290604052915050919050565b600e5481565b6000600860009054906101000a900460ff166126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa906145b8565b60405180910390fd5b6000826040516020016126c69190614458565b604051602081830303815290604052805190602001209050600061272e868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105484613120565b905080925050509392505050565b600860019054906101000a900460ff1681565b600860029054906101000a900460ff1681565b60606009805461277190614baa565b80601f016020809104026020016040519081016040528092919081815260200182805461279d90614baa565b80156127ea5780601f106127bf576101008083540402835291602001916127ea565b820191906000526020600020905b8154815290600101906020018083116127cd57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612890612a56565b73ffffffffffffffffffffffffffffffffffffffff166128ae612042565b73ffffffffffffffffffffffffffffffffffffffff1614612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb906147f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296b90614618565b60405180910390fd5b61297d8161305a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ad1836119d7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612b30826129ea565b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b66906146f8565b60405180910390fd5b6000612b7a836119d7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612be957508373ffffffffffffffffffffffffffffffffffffffff16612bd184610d25565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bfa5750612bf981856127f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c23826119d7565b73ffffffffffffffffffffffffffffffffffffffff1614612c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7090614638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce0906146b8565b60405180910390fd5b612cf4838383613461565b612cff600082612a5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d4f9190614aa9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da69190614a22565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e65838383613466565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee790614798565b60405180910390fd5b612ef9816129ea565b15612f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3090614658565b60405180910390fd5b612f4560008383613461565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f959190614a22565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461305660008383613466565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261312d858461346b565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319d906146d8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132979190614540565b60405180910390a3505050565b6132af848484612c03565b6132bb848484846134e0565b6132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f1906145f8565b60405180910390fd5b50505050565b60606000821415613348576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061345c565b600082905060005b6000821461337a57808061336390614c0d565b915050600a826133739190614a78565b9150613350565b60008167ffffffffffffffff81111561339657613395614d67565b5b6040519080825280601f01601f1916602001820160405280156133c85781602001600182028036833780820191505090505b5090505b60008514613455576001826133e19190614aa9565b9150600a856133f09190614c7a565b60306133fc9190614a22565b60f81b81838151811061341257613411614d38565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344e9190614a78565b94506133cc565b8093505050505b919050565b505050565b505050565b60008082905060005b84518110156134d557600085828151811061349257613491614d38565b5b602002602001015190508083116134b4576134ad8382613677565b92506134c1565b6134be8184613677565b92505b5080806134cd90614c0d565b915050613474565b508091505092915050565b60006135018473ffffffffffffffffffffffffffffffffffffffff1661368e565b1561366a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261352a612a56565b8786866040518563ffffffff1660e01b815260040161354c94939291906144d2565b602060405180830381600087803b15801561356657600080fd5b505af192505050801561359757506040513d601f19601f820116820180604052508101906135949190613d6e565b60015b61361a573d80600081146135c7576040519150601f19603f3d011682016040523d82523d6000602084013e6135cc565b606091505b50600081511415613612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613609906145f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061366f565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546136bd90614baa565b90600052602060002090601f0160209004810192826136df5760008555613726565b82601f106136f857805160ff1916838001178555613726565b82800160010185558215613726579182015b8281111561372557825182559160200191906001019061370a565b5b5090506137339190613737565b5090565b5b80821115613750576000816000905550600101613738565b5090565b6000613767613762846148f8565b6148d3565b9050808382526020820190508285602086028201111561378a57613789614da0565b5b60005b858110156137d857813567ffffffffffffffff8111156137b0576137af614d9b565b5b8086016137bd8982613981565b8552602085019450602084019350505060018101905061378d565b5050509392505050565b60006137f56137f084614924565b6148d3565b90508281526020810184848401111561381157613810614da5565b5b61381c848285614b68565b509392505050565b600061383761383284614955565b6148d3565b90508281526020810184848401111561385357613852614da5565b5b61385e848285614b68565b509392505050565b60008135905061387581615439565b92915050565b60008083601f84011261389157613890614d9b565b5b8235905067ffffffffffffffff8111156138ae576138ad614d96565b5b6020830191508360208202830111156138ca576138c9614da0565b5b9250929050565b600082601f8301126138e6576138e5614d9b565b5b81356138f6848260208601613754565b91505092915050565b60008135905061390e81615450565b92915050565b60008135905061392381615467565b92915050565b6000813590506139388161547e565b92915050565b60008151905061394d8161547e565b92915050565b600082601f83011261396857613967614d9b565b5b81356139788482602086016137e2565b91505092915050565b600082601f83011261399657613995614d9b565b5b81356139a6848260208601613824565b91505092915050565b6000813590506139be81615495565b92915050565b6000813590506139d3816154ac565b92915050565b6000602082840312156139ef576139ee614daf565b5b60006139fd84828501613866565b91505092915050565b60008060408385031215613a1d57613a1c614daf565b5b6000613a2b85828601613866565b9250506020613a3c85828601613866565b9150509250929050565b600080600060608486031215613a5f57613a5e614daf565b5b6000613a6d86828701613866565b9350506020613a7e86828701613866565b9250506040613a8f868287016139af565b9150509250925092565b60008060008060808587031215613ab357613ab2614daf565b5b6000613ac187828801613866565b9450506020613ad287828801613866565b9350506040613ae3878288016139af565b925050606085013567ffffffffffffffff811115613b0457613b03614daa565b5b613b1087828801613953565b91505092959194509250565b60008060408385031215613b3357613b32614daf565b5b6000613b4185828601613866565b9250506020613b52858286016138ff565b9150509250929050565b60008060408385031215613b7357613b72614daf565b5b6000613b8185828601613866565b9250506020613b92858286016139af565b9150509250929050565b600080600060608486031215613bb557613bb4614daf565b5b6000613bc386828701613866565b9350506020613bd4868287016139af565b925050604084013567ffffffffffffffff811115613bf557613bf4614daa565b5b613c01868287016138d1565b9150509250925092565b600080600060408486031215613c2457613c23614daf565b5b600084013567ffffffffffffffff811115613c4257613c41614daa565b5b613c4e8682870161387b565b93509350506020613c6186828701613866565b9150509250925092565b600080600060408486031215613c8457613c83614daf565b5b600084013567ffffffffffffffff811115613ca257613ca1614daa565b5b613cae8682870161387b565b9350935050602084013567ffffffffffffffff811115613cd157613cd0614daa565b5b613cdd868287016138d1565b9150509250925092565b600060208284031215613cfd57613cfc614daf565b5b6000613d0b848285016138ff565b91505092915050565b600060208284031215613d2a57613d29614daf565b5b6000613d3884828501613914565b91505092915050565b600060208284031215613d5757613d56614daf565b5b6000613d6584828501613929565b91505092915050565b600060208284031215613d8457613d83614daf565b5b6000613d928482850161393e565b91505092915050565b600060208284031215613db157613db0614daf565b5b600082013567ffffffffffffffff811115613dcf57613dce614daa565b5b613ddb84828501613981565b91505092915050565b600060208284031215613dfa57613df9614daf565b5b6000613e08848285016139af565b91505092915050565b60008060408385031215613e2857613e27614daf565b5b6000613e36858286016139af565b925050602083013567ffffffffffffffff811115613e5757613e56614daa565b5b613e6385828601613981565b9150509250929050565b60008060408385031215613e8457613e83614daf565b5b6000613e92858286016139af565b9250506020613ea3858286016139c4565b9150509250929050565b6000613eb9838361443a565b60208301905092915050565b613ece81614add565b82525050565b613ee5613ee082614add565b614c56565b82525050565b6000613ef6826149ab565b613f0081856149d9565b9350613f0b83614986565b8060005b83811015613f3c578151613f238882613ead565b9750613f2e836149cc565b925050600181019050613f0f565b5085935050505092915050565b613f5281614aef565b82525050565b613f6181614afb565b82525050565b6000613f72826149b6565b613f7c81856149ea565b9350613f8c818560208601614b77565b613f9581614db4565b840191505092915050565b6000613fab826149c1565b613fb58185614a06565b9350613fc5818560208601614b77565b613fce81614db4565b840191505092915050565b6000613fe4826149c1565b613fee8185614a17565b9350613ffe818560208601614b77565b80840191505092915050565b6000815461401781614baa565b6140218186614a17565b9450600182166000811461403c576001811461404d57614080565b60ff19831686528186019350614080565b61405685614996565b60005b8381101561407857815481890152600182019150602081019050614059565b838801955050505b50505092915050565b6000614096601183614a06565b91506140a182614dd2565b602082019050919050565b60006140b9601783614a06565b91506140c482614dfb565b602082019050919050565b60006140dc604383614a06565b91506140e782614e24565b606082019050919050565b60006140ff603283614a06565b915061410a82614e99565b604082019050919050565b6000614122602683614a06565b915061412d82614ee8565b604082019050919050565b6000614145602583614a06565b915061415082614f37565b604082019050919050565b6000614168601c83614a06565b915061417382614f86565b602082019050919050565b600061418b601e83614a06565b915061419682614faf565b602082019050919050565b60006141ae602483614a06565b91506141b982614fd8565b604082019050919050565b60006141d1602483614a06565b91506141dc82615027565b604082019050919050565b60006141f4601983614a06565b91506141ff82615076565b602082019050919050565b6000614217602c83614a06565b91506142228261509f565b604082019050919050565b600061423a603883614a06565b9150614245826150ee565b604082019050919050565b600061425d600e83614a06565b91506142688261513d565b602082019050919050565b6000614280602a83614a06565b915061428b82615166565b604082019050919050565b60006142a3602983614a06565b91506142ae826151b5565b604082019050919050565b60006142c6602083614a06565b91506142d182615204565b602082019050919050565b60006142e9601483614a06565b91506142f48261522d565b602082019050919050565b600061430c602c83614a06565b915061431782615256565b604082019050919050565b600061432f600583614a17565b915061433a826152a5565b600582019050919050565b6000614352602083614a06565b915061435d826152ce565b602082019050919050565b6000614375602183614a06565b9150614380826152f7565b604082019050919050565b6000614398601083614a06565b91506143a382615346565b602082019050919050565b60006143bb601883614a06565b91506143c68261536f565b602082019050919050565b60006143de6000836149fb565b91506143e982615398565b600082019050919050565b6000614401603183614a06565b915061440c8261539b565b604082019050919050565b6000614424602183614a06565b915061442f826153ea565b604082019050919050565b61444381614b51565b82525050565b61445281614b51565b82525050565b60006144648284613ed4565b60148201915081905092915050565b600061447f828561400a565b915061448b8284613fd9565b915061449682614322565b91508190509392505050565b60006144ad826143d1565b9150819050919050565b60006020820190506144cc6000830184613ec5565b92915050565b60006080820190506144e76000830187613ec5565b6144f46020830186613ec5565b6145016040830185614449565b81810360608301526145138184613f67565b905095945050505050565b600060208201905081810360008301526145388184613eeb565b905092915050565b60006020820190506145556000830184613f49565b92915050565b60006020820190506145706000830184613f58565b92915050565b600060208201905081810360008301526145908184613fa0565b905092915050565b600060208201905081810360008301526145b181614089565b9050919050565b600060208201905081810360008301526145d1816140ac565b9050919050565b600060208201905081810360008301526145f1816140cf565b9050919050565b60006020820190508181036000830152614611816140f2565b9050919050565b6000602082019050818103600083015261463181614115565b9050919050565b6000602082019050818103600083015261465181614138565b9050919050565b600060208201905081810360008301526146718161415b565b9050919050565b600060208201905081810360008301526146918161417e565b9050919050565b600060208201905081810360008301526146b1816141a1565b9050919050565b600060208201905081810360008301526146d1816141c4565b9050919050565b600060208201905081810360008301526146f1816141e7565b9050919050565b600060208201905081810360008301526147118161420a565b9050919050565b600060208201905081810360008301526147318161422d565b9050919050565b6000602082019050818103600083015261475181614250565b9050919050565b6000602082019050818103600083015261477181614273565b9050919050565b6000602082019050818103600083015261479181614296565b9050919050565b600060208201905081810360008301526147b1816142b9565b9050919050565b600060208201905081810360008301526147d1816142dc565b9050919050565b600060208201905081810360008301526147f1816142ff565b9050919050565b6000602082019050818103600083015261481181614345565b9050919050565b6000602082019050818103600083015261483181614368565b9050919050565b600060208201905081810360008301526148518161438b565b9050919050565b60006020820190508181036000830152614871816143ae565b9050919050565b60006020820190508181036000830152614891816143f4565b9050919050565b600060208201905081810360008301526148b181614417565b9050919050565b60006020820190506148cd6000830184614449565b92915050565b60006148dd6148ee565b90506148e98282614bdc565b919050565b6000604051905090565b600067ffffffffffffffff82111561491357614912614d67565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561493f5761493e614d67565b5b61494882614db4565b9050602081019050919050565b600067ffffffffffffffff8211156149705761496f614d67565b5b61497982614db4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a2d82614b51565b9150614a3883614b51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a6d57614a6c614cab565b5b828201905092915050565b6000614a8382614b51565b9150614a8e83614b51565b925082614a9e57614a9d614cda565b5b828204905092915050565b6000614ab482614b51565b9150614abf83614b51565b925082821015614ad257614ad1614cab565b5b828203905092915050565b6000614ae882614b31565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b95578082015181840152602081019050614b7a565b83811115614ba4576000848401525b50505050565b60006002820490506001821680614bc257607f821691505b60208210811415614bd657614bd5614d09565b5b50919050565b614be582614db4565b810181811067ffffffffffffffff82111715614c0457614c03614d67565b5b80604052505050565b6000614c1882614b51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c4b57614c4a614cab565b5b600182019050919050565b6000614c6182614c68565b9050919050565b6000614c7382614dc5565b9050919050565b6000614c8582614b51565b9150614c9083614b51565b925082614ca057614c9f614cda565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f206d617820616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f536f72727920796f752063616e2774206d696e74207269676874206e6f770000600082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265204e46547320696e2077686974656c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b61544281614add565b811461544d57600080fd5b50565b61545981614aef565b811461546457600080fd5b50565b61547081614afb565b811461547b57600080fd5b50565b61548781614b05565b811461549257600080fd5b50565b61549e81614b51565b81146154a957600080fd5b50565b6154b581614b5b565b81146154c057600080fd5b5056fea2646970667358221220472e834f5711c88cd82fb2a3b971032e3bef5c3168c1ec5ed81eaae3358fd2ad64736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d697370686974734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d4953504849545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012d00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e1161017557806395f61c48116100dc578063d40dc87011610095578063e89874981161006f578063e898749814610a67578063e8a3d48514610a92578063e985e9c514610abd578063f2fde38b14610afa576102ae565b8063d40dc870146109d4578063debefaa6146109ff578063e0df721614610a3c576102ae565b806395f61c48146108d557806398a7276114610900578063a22cb4651461091c578063b88d4fde14610945578063c59099b11461096e578063c87b56dd14610997576102ae565b806383bc52451161012e57806383bc5245146107b15780638462151c146107da5780638b22f341146108175780638da5cb5b1461084257806393ec3e881461086d57806395d89b41146108aa576102ae565b80636352211e146106b357806370a08231146106f0578063715018a61461072d578063733f2399146107445780637362377b1461076f5780637f9307f714610786576102ae565b80633a03171c1161021957806351e75e8b116101d257806351e75e8b146105b95780635489af0f146105e45780635e01967c1461060d5780635e50d64c146106365780635ec9115c1461065f57806361ad205714610688576102ae565b80633a03171c146104bd5780633b6e2873146104e85780633ff34f211461051357806340d0b4a91461055057806342842e0e1461056757806347d0c93014610590576102ae565b80631036b3c51161026b5780631036b3c5146103c357806314f7b61e146103ee57806318160ddd14610417578063211eb07d1461044257806323b872dd1461046b5780632a1436c214610494576102ae565b806301ffc9a7146102b35780630346f18f146102f057806306fdde031461031b578063081812fc14610346578063095ea7b3146103835780630ee83a71146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613d41565b610b23565b6040516102e79190614540565b60405180910390f35b3480156102fc57600080fd5b50610305610c05565b6040516103129190614576565b60405180910390f35b34801561032757600080fd5b50610330610c93565b60405161033d9190614576565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190613de4565b610d25565b60405161037a91906144b7565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190613b5c565b610daa565b005b3480156103b857600080fd5b506103c1610ec2565b005b3480156103cf57600080fd5b506103d8610f5b565b6040516103e59190614540565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613e6d565b610f6e565b005b34801561042357600080fd5b5061042c61105e565b60405161043991906148b8565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613d9b565b61106f565b005b34801561047757600080fd5b50610492600480360381019061048d9190613a46565b611155565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613ce7565b6111b5565b005b3480156104c957600080fd5b506104d261129e565b6040516104df91906148b8565b60405180910390f35b3480156104f457600080fd5b506104fd6112a4565b60405161050a91906148b8565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190613de4565b6112aa565b6040516105479190614576565b60405180910390f35b34801561055c57600080fd5b5061056561134a565b005b34801561057357600080fd5b5061058e60048036038101906105899190613a46565b6113e3565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613d14565b611403565b005b3480156105c557600080fd5b506105ce6114d9565b6040516105db919061455b565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190613d9b565b6114df565b005b34801561061957600080fd5b50610634600480360381019061062f91906139d9565b6115c5565b005b34801561064257600080fd5b5061065d60048036038101906106589190613b9c565b6116f5565b005b34801561066b57600080fd5b5061068660048036038101906106819190613e6d565b611859565b005b34801561069457600080fd5b5061069d611949565b6040516106aa9190614576565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190613de4565b6119d7565b6040516106e791906144b7565b60405180910390f35b3480156106fc57600080fd5b50610717600480360381019061071291906139d9565b611a89565b60405161072491906148b8565b60405180910390f35b34801561073957600080fd5b50610742611b41565b005b34801561075057600080fd5b50610759611bc9565b60405161076691906144b7565b60405180910390f35b34801561077b57600080fd5b50610784611bef565b005b34801561079257600080fd5b5061079b611de2565b6040516107a891906148b8565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613ce7565b611de8565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906139d9565b611ed1565b60405161080e919061451e565b60405180910390f35b34801561082357600080fd5b5061082c61202f565b6040516108399190614540565b60405180910390f35b34801561084e57600080fd5b50610857612042565b60405161086491906144b7565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906139d9565b61206c565b6040516108a191906148b8565b60405180910390f35b3480156108b657600080fd5b506108bf612084565b6040516108cc9190614576565b60405180910390f35b3480156108e157600080fd5b506108ea612116565b6040516108f791906148b8565b60405180910390f35b61091a60048036038101906109159190613c6b565b61211c565b005b34801561092857600080fd5b50610943600480360381019061093e9190613b1c565b6124b2565b005b34801561095157600080fd5b5061096c60048036038101906109679190613a99565b6124c8565b005b34801561097a57600080fd5b5061099560048036038101906109909190613e11565b61252a565b005b3480156109a357600080fd5b506109be60048036038101906109b99190613de4565b612622565b6040516109cb9190614576565b60405180910390f35b3480156109e057600080fd5b506109e961265c565b6040516109f691906148b8565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613c0b565b612662565b604051610a339190614540565b60405180910390f35b348015610a4857600080fd5b50610a5161273c565b604051610a5e9190614540565b60405180910390f35b348015610a7357600080fd5b50610a7c61274f565b604051610a899190614540565b60405180910390f35b348015610a9e57600080fd5b50610aa7612762565b604051610ab49190614576565b60405180910390f35b348015610ac957600080fd5b50610ae46004803603810190610adf9190613a06565b6127f4565b604051610af19190614540565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c91906139d9565b612888565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bfe5750610bfd82612980565b5b9050919050565b60098054610c1290614baa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e90614baa565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b505050505081565b606060008054610ca290614baa565b80601f0160208091040260200160405190810160405280929190818152602001828054610cce90614baa565b8015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b6000610d30826129ea565b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906147d8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610db5826119d7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90614818565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e45612a56565b73ffffffffffffffffffffffffffffffffffffffff161480610e745750610e7381610e6e612a56565b6127f4565b5b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90614718565b60405180910390fd5b610ebd8383612a5e565b505050565b610eca612a56565b73ffffffffffffffffffffffffffffffffffffffff16610ee8612042565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906147f8565b60405180910390fd5b6001600860036101000a81548160ff021916908315150217905550565b600860009054906101000a900460ff1681565b610f76612a56565b73ffffffffffffffffffffffffffffffffffffffff16610f94612042565b73ffffffffffffffffffffffffffffffffffffffff1614610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe1906147f8565b60405180910390fd5b600860039054906101000a900460ff161561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190614598565b60405180910390fd5b60008160ff1614156110525781600e8190555061105a565b81600f819055505b5050565b600061106a600a612b17565b905090565b611077612a56565b73ffffffffffffffffffffffffffffffffffffffff16611095612042565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e2906147f8565b60405180910390fd5b600860039054906101000a900460ff161561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290614598565b60405180910390fd5b80601190805190602001906111519291906136b1565b5050565b611166611160612a56565b82612b25565b6111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90614878565b60405180910390fd5b6111b0838383612c03565b505050565b6111bd612a56565b73ffffffffffffffffffffffffffffffffffffffff166111db612042565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611228906147f8565b60405180910390fd5b600860039054906101000a900460ff1615611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614598565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600d5481565b600c5481565b600760205280600052604060002060009150905080546112c990614baa565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590614baa565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b611352612a56565b73ffffffffffffffffffffffffffffffffffffffff16611370612042565b73ffffffffffffffffffffffffffffffffffffffff16146113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd906147f8565b60405180910390fd5b6001600860026101000a81548160ff021916908315150217905550565b6113fe838383604051806020016040528060008152506124c8565b505050565b61140b612a56565b73ffffffffffffffffffffffffffffffffffffffff16611429612042565b73ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611476906147f8565b60405180910390fd5b600860039054906101000a900460ff16156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690614598565b60405180910390fd5b8060108190555050565b60105481565b6114e7612a56565b73ffffffffffffffffffffffffffffffffffffffff16611505612042565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906147f8565b60405180910390fd5b600860039054906101000a900460ff16156115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290614598565b60405180910390fd5b80600990805190602001906115c19291906136b1565b5050565b6115cd612a56565b73ffffffffffffffffffffffffffffffffffffffff166115eb612042565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906147f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a8906147b8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116fd612a56565b73ffffffffffffffffffffffffffffffffffffffff1661171b612042565b73ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906147f8565b60405180910390fd5b60008261177e600a612b17565b6117889190614a22565b9050600d548111156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614838565b60405180910390fd5b60005b83811015611852576117e4600a612e6a565b60006117f0600a612b17565b905083828151811061180557611804614d38565b5b60200260200101516007600083815260200190815260200160002090805190602001906118339291906136b1565b5061183e8682612e80565b50808061184a90614c0d565b9150506117d2565b5050505050565b611861612a56565b73ffffffffffffffffffffffffffffffffffffffff1661187f612042565b73ffffffffffffffffffffffffffffffffffffffff16146118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906147f8565b60405180910390fd5b600860039054906101000a900460ff1615611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614598565b60405180910390fd5b60008160ff16141561193d5781600b81905550611945565b81600c819055505b5050565b6011805461195690614baa565b80601f016020809104026020016040519081016040528092919081815260200182805461198290614baa565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790614778565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614758565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b49612a56565b73ffffffffffffffffffffffffffffffffffffffff16611b67612042565b73ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb4906147f8565b60405180910390fd5b611bc7600061305a565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611bf7612a56565b73ffffffffffffffffffffffffffffffffffffffff16611c15612042565b73ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c62906147f8565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611ccf5750600081115b611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590614738565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d56906144a2565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b50508091505080611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd590614858565b60405180910390fd5b5050565b600b5481565b611df0612a56565b73ffffffffffffffffffffffffffffffffffffffff16611e0e612042565b73ffffffffffffffffffffffffffffffffffffffff1614611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906147f8565b60405180910390fd5b600860039054906101000a900460ff1615611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614598565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b60606000611ede83611a89565b90506000811415611f3b57600067ffffffffffffffff811115611f0457611f03614d67565b5b604051908082528060200260200182016040528015611f325781602001602082028036833780820191505090505b5091505061202a565b60008167ffffffffffffffff811115611f5757611f56614d67565b5b604051908082528060200260200182016040528015611f855781602001602082028036833780820191505090505b5090506000611f9261105e565b9050600080600190505b828111612021578673ffffffffffffffffffffffffffffffffffffffff16611fc3826119d7565b73ffffffffffffffffffffffffffffffffffffffff16141561200e5780848381518110611ff357611ff2614d38565b5b602002602001018181525050818061200a90614c0d565b9250505b808061201990614c0d565b915050611f9c565b83955050505050505b919050565b600860039054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60136020528060005260406000206000915090505481565b60606001805461209390614baa565b80601f01602080910402602001604051908101604052809291908181526020018280546120bf90614baa565b801561210c5780601f106120e15761010080835404028352916020019161210c565b820191906000526020600020905b8154815290600101906020018083116120ef57829003601f168201915b5050505050905090565b600f5481565b600860019054906101000a900460ff1661216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290614698565b60405180910390fd5b6000600190506000600b549050600860009054906101000a900460ff161561220f576000336040516020016121a09190614458565b604051602081830303815290604052805190602001209050612206868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483613120565b9250600c549150505b8180156122275750600081346122259190614c7a565b145b612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90614678565b60405180910390fd5b600081346122749190614a78565b9050600181101580156122895750600e548111155b6122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf906145d8565b60405180910390fd5b60006122d261105e565b826122dd9190614a22565b9050600d54811115612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90614838565b60405180910390fd5b600860009054906101000a900460ff1615612425576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123869190614a22565b9050600f548111156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490614898565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241c9190614a22565b92505081905550505b60005b828110156124a85761243a600a612e6a565b6000612446600a612b17565b905086828151811061245b5761245a614d38565b5b60200260200101516007600083815260200190815260200160002090805190602001906124899291906136b1565b506124943382612e80565b5080806124a090614c0d565b915050612428565b5050505050505050565b6124c46124bd612a56565b8383613137565b5050565b6124d96124d3612a56565b83612b25565b612518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250f90614878565b60405180910390fd5b612524848484846132a4565b50505050565b612532612a56565b73ffffffffffffffffffffffffffffffffffffffff16612550612042565b73ffffffffffffffffffffffffffffffffffffffff16146125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d906147f8565b60405180910390fd5b600860039054906101000a900460ff16156125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed90614598565b60405180910390fd5b8060076000848152602001908152602001600020908051906020019061261d9291906136b1565b505050565b6060600061262f83613300565b9050601181604051602001612645929190614473565b604051602081830303815290604052915050919050565b600e5481565b6000600860009054906101000a900460ff166126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa906145b8565b60405180910390fd5b6000826040516020016126c69190614458565b604051602081830303815290604052805190602001209050600061272e868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105484613120565b905080925050509392505050565b600860019054906101000a900460ff1681565b600860029054906101000a900460ff1681565b60606009805461277190614baa565b80601f016020809104026020016040519081016040528092919081815260200182805461279d90614baa565b80156127ea5780601f106127bf576101008083540402835291602001916127ea565b820191906000526020600020905b8154815290600101906020018083116127cd57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612890612a56565b73ffffffffffffffffffffffffffffffffffffffff166128ae612042565b73ffffffffffffffffffffffffffffffffffffffff1614612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb906147f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296b90614618565b60405180910390fd5b61297d8161305a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ad1836119d7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612b30826129ea565b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b66906146f8565b60405180910390fd5b6000612b7a836119d7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612be957508373ffffffffffffffffffffffffffffffffffffffff16612bd184610d25565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bfa5750612bf981856127f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c23826119d7565b73ffffffffffffffffffffffffffffffffffffffff1614612c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7090614638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce0906146b8565b60405180910390fd5b612cf4838383613461565b612cff600082612a5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d4f9190614aa9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da69190614a22565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e65838383613466565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee790614798565b60405180910390fd5b612ef9816129ea565b15612f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3090614658565b60405180910390fd5b612f4560008383613461565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f959190614a22565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461305660008383613466565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261312d858461346b565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319d906146d8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132979190614540565b60405180910390a3505050565b6132af848484612c03565b6132bb848484846134e0565b6132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f1906145f8565b60405180910390fd5b50505050565b60606000821415613348576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061345c565b600082905060005b6000821461337a57808061336390614c0d565b915050600a826133739190614a78565b9150613350565b60008167ffffffffffffffff81111561339657613395614d67565b5b6040519080825280601f01601f1916602001820160405280156133c85781602001600182028036833780820191505090505b5090505b60008514613455576001826133e19190614aa9565b9150600a856133f09190614c7a565b60306133fc9190614a22565b60f81b81838151811061341257613411614d38565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344e9190614a78565b94506133cc565b8093505050505b919050565b505050565b505050565b60008082905060005b84518110156134d557600085828151811061349257613491614d38565b5b602002602001015190508083116134b4576134ad8382613677565b92506134c1565b6134be8184613677565b92505b5080806134cd90614c0d565b915050613474565b508091505092915050565b60006135018473ffffffffffffffffffffffffffffffffffffffff1661368e565b1561366a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261352a612a56565b8786866040518563ffffffff1660e01b815260040161354c94939291906144d2565b602060405180830381600087803b15801561356657600080fd5b505af192505050801561359757506040513d601f19601f820116820180604052508101906135949190613d6e565b60015b61361a573d80600081146135c7576040519150601f19603f3d011682016040523d82523d6000602084013e6135cc565b606091505b50600081511415613612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613609906145f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061366f565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546136bd90614baa565b90600052602060002090601f0160209004810192826136df5760008555613726565b82601f106136f857805160ff1916838001178555613726565b82800160010185558215613726579182015b8281111561372557825182559160200191906001019061370a565b5b5090506137339190613737565b5090565b5b80821115613750576000816000905550600101613738565b5090565b6000613767613762846148f8565b6148d3565b9050808382526020820190508285602086028201111561378a57613789614da0565b5b60005b858110156137d857813567ffffffffffffffff8111156137b0576137af614d9b565b5b8086016137bd8982613981565b8552602085019450602084019350505060018101905061378d565b5050509392505050565b60006137f56137f084614924565b6148d3565b90508281526020810184848401111561381157613810614da5565b5b61381c848285614b68565b509392505050565b600061383761383284614955565b6148d3565b90508281526020810184848401111561385357613852614da5565b5b61385e848285614b68565b509392505050565b60008135905061387581615439565b92915050565b60008083601f84011261389157613890614d9b565b5b8235905067ffffffffffffffff8111156138ae576138ad614d96565b5b6020830191508360208202830111156138ca576138c9614da0565b5b9250929050565b600082601f8301126138e6576138e5614d9b565b5b81356138f6848260208601613754565b91505092915050565b60008135905061390e81615450565b92915050565b60008135905061392381615467565b92915050565b6000813590506139388161547e565b92915050565b60008151905061394d8161547e565b92915050565b600082601f83011261396857613967614d9b565b5b81356139788482602086016137e2565b91505092915050565b600082601f83011261399657613995614d9b565b5b81356139a6848260208601613824565b91505092915050565b6000813590506139be81615495565b92915050565b6000813590506139d3816154ac565b92915050565b6000602082840312156139ef576139ee614daf565b5b60006139fd84828501613866565b91505092915050565b60008060408385031215613a1d57613a1c614daf565b5b6000613a2b85828601613866565b9250506020613a3c85828601613866565b9150509250929050565b600080600060608486031215613a5f57613a5e614daf565b5b6000613a6d86828701613866565b9350506020613a7e86828701613866565b9250506040613a8f868287016139af565b9150509250925092565b60008060008060808587031215613ab357613ab2614daf565b5b6000613ac187828801613866565b9450506020613ad287828801613866565b9350506040613ae3878288016139af565b925050606085013567ffffffffffffffff811115613b0457613b03614daa565b5b613b1087828801613953565b91505092959194509250565b60008060408385031215613b3357613b32614daf565b5b6000613b4185828601613866565b9250506020613b52858286016138ff565b9150509250929050565b60008060408385031215613b7357613b72614daf565b5b6000613b8185828601613866565b9250506020613b92858286016139af565b9150509250929050565b600080600060608486031215613bb557613bb4614daf565b5b6000613bc386828701613866565b9350506020613bd4868287016139af565b925050604084013567ffffffffffffffff811115613bf557613bf4614daa565b5b613c01868287016138d1565b9150509250925092565b600080600060408486031215613c2457613c23614daf565b5b600084013567ffffffffffffffff811115613c4257613c41614daa565b5b613c4e8682870161387b565b93509350506020613c6186828701613866565b9150509250925092565b600080600060408486031215613c8457613c83614daf565b5b600084013567ffffffffffffffff811115613ca257613ca1614daa565b5b613cae8682870161387b565b9350935050602084013567ffffffffffffffff811115613cd157613cd0614daa565b5b613cdd868287016138d1565b9150509250925092565b600060208284031215613cfd57613cfc614daf565b5b6000613d0b848285016138ff565b91505092915050565b600060208284031215613d2a57613d29614daf565b5b6000613d3884828501613914565b91505092915050565b600060208284031215613d5757613d56614daf565b5b6000613d6584828501613929565b91505092915050565b600060208284031215613d8457613d83614daf565b5b6000613d928482850161393e565b91505092915050565b600060208284031215613db157613db0614daf565b5b600082013567ffffffffffffffff811115613dcf57613dce614daa565b5b613ddb84828501613981565b91505092915050565b600060208284031215613dfa57613df9614daf565b5b6000613e08848285016139af565b91505092915050565b60008060408385031215613e2857613e27614daf565b5b6000613e36858286016139af565b925050602083013567ffffffffffffffff811115613e5757613e56614daa565b5b613e6385828601613981565b9150509250929050565b60008060408385031215613e8457613e83614daf565b5b6000613e92858286016139af565b9250506020613ea3858286016139c4565b9150509250929050565b6000613eb9838361443a565b60208301905092915050565b613ece81614add565b82525050565b613ee5613ee082614add565b614c56565b82525050565b6000613ef6826149ab565b613f0081856149d9565b9350613f0b83614986565b8060005b83811015613f3c578151613f238882613ead565b9750613f2e836149cc565b925050600181019050613f0f565b5085935050505092915050565b613f5281614aef565b82525050565b613f6181614afb565b82525050565b6000613f72826149b6565b613f7c81856149ea565b9350613f8c818560208601614b77565b613f9581614db4565b840191505092915050565b6000613fab826149c1565b613fb58185614a06565b9350613fc5818560208601614b77565b613fce81614db4565b840191505092915050565b6000613fe4826149c1565b613fee8185614a17565b9350613ffe818560208601614b77565b80840191505092915050565b6000815461401781614baa565b6140218186614a17565b9450600182166000811461403c576001811461404d57614080565b60ff19831686528186019350614080565b61405685614996565b60005b8381101561407857815481890152600182019150602081019050614059565b838801955050505b50505092915050565b6000614096601183614a06565b91506140a182614dd2565b602082019050919050565b60006140b9601783614a06565b91506140c482614dfb565b602082019050919050565b60006140dc604383614a06565b91506140e782614e24565b606082019050919050565b60006140ff603283614a06565b915061410a82614e99565b604082019050919050565b6000614122602683614a06565b915061412d82614ee8565b604082019050919050565b6000614145602583614a06565b915061415082614f37565b604082019050919050565b6000614168601c83614a06565b915061417382614f86565b602082019050919050565b600061418b601e83614a06565b915061419682614faf565b602082019050919050565b60006141ae602483614a06565b91506141b982614fd8565b604082019050919050565b60006141d1602483614a06565b91506141dc82615027565b604082019050919050565b60006141f4601983614a06565b91506141ff82615076565b602082019050919050565b6000614217602c83614a06565b91506142228261509f565b604082019050919050565b600061423a603883614a06565b9150614245826150ee565b604082019050919050565b600061425d600e83614a06565b91506142688261513d565b602082019050919050565b6000614280602a83614a06565b915061428b82615166565b604082019050919050565b60006142a3602983614a06565b91506142ae826151b5565b604082019050919050565b60006142c6602083614a06565b91506142d182615204565b602082019050919050565b60006142e9601483614a06565b91506142f48261522d565b602082019050919050565b600061430c602c83614a06565b915061431782615256565b604082019050919050565b600061432f600583614a17565b915061433a826152a5565b600582019050919050565b6000614352602083614a06565b915061435d826152ce565b602082019050919050565b6000614375602183614a06565b9150614380826152f7565b604082019050919050565b6000614398601083614a06565b91506143a382615346565b602082019050919050565b60006143bb601883614a06565b91506143c68261536f565b602082019050919050565b60006143de6000836149fb565b91506143e982615398565b600082019050919050565b6000614401603183614a06565b915061440c8261539b565b604082019050919050565b6000614424602183614a06565b915061442f826153ea565b604082019050919050565b61444381614b51565b82525050565b61445281614b51565b82525050565b60006144648284613ed4565b60148201915081905092915050565b600061447f828561400a565b915061448b8284613fd9565b915061449682614322565b91508190509392505050565b60006144ad826143d1565b9150819050919050565b60006020820190506144cc6000830184613ec5565b92915050565b60006080820190506144e76000830187613ec5565b6144f46020830186613ec5565b6145016040830185614449565b81810360608301526145138184613f67565b905095945050505050565b600060208201905081810360008301526145388184613eeb565b905092915050565b60006020820190506145556000830184613f49565b92915050565b60006020820190506145706000830184613f58565b92915050565b600060208201905081810360008301526145908184613fa0565b905092915050565b600060208201905081810360008301526145b181614089565b9050919050565b600060208201905081810360008301526145d1816140ac565b9050919050565b600060208201905081810360008301526145f1816140cf565b9050919050565b60006020820190508181036000830152614611816140f2565b9050919050565b6000602082019050818103600083015261463181614115565b9050919050565b6000602082019050818103600083015261465181614138565b9050919050565b600060208201905081810360008301526146718161415b565b9050919050565b600060208201905081810360008301526146918161417e565b9050919050565b600060208201905081810360008301526146b1816141a1565b9050919050565b600060208201905081810360008301526146d1816141c4565b9050919050565b600060208201905081810360008301526146f1816141e7565b9050919050565b600060208201905081810360008301526147118161420a565b9050919050565b600060208201905081810360008301526147318161422d565b9050919050565b6000602082019050818103600083015261475181614250565b9050919050565b6000602082019050818103600083015261477181614273565b9050919050565b6000602082019050818103600083015261479181614296565b9050919050565b600060208201905081810360008301526147b1816142b9565b9050919050565b600060208201905081810360008301526147d1816142dc565b9050919050565b600060208201905081810360008301526147f1816142ff565b9050919050565b6000602082019050818103600083015261481181614345565b9050919050565b6000602082019050818103600083015261483181614368565b9050919050565b600060208201905081810360008301526148518161438b565b9050919050565b60006020820190508181036000830152614871816143ae565b9050919050565b60006020820190508181036000830152614891816143f4565b9050919050565b600060208201905081810360008301526148b181614417565b9050919050565b60006020820190506148cd6000830184614449565b92915050565b60006148dd6148ee565b90506148e98282614bdc565b919050565b6000604051905090565b600067ffffffffffffffff82111561491357614912614d67565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561493f5761493e614d67565b5b61494882614db4565b9050602081019050919050565b600067ffffffffffffffff8211156149705761496f614d67565b5b61497982614db4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a2d82614b51565b9150614a3883614b51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a6d57614a6c614cab565b5b828201905092915050565b6000614a8382614b51565b9150614a8e83614b51565b925082614a9e57614a9d614cda565b5b828204905092915050565b6000614ab482614b51565b9150614abf83614b51565b925082821015614ad257614ad1614cab565b5b828203905092915050565b6000614ae882614b31565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b95578082015181840152602081019050614b7a565b83811115614ba4576000848401525b50505050565b60006002820490506001821680614bc257607f821691505b60208210811415614bd657614bd5614d09565b5b50919050565b614be582614db4565b810181811067ffffffffffffffff82111715614c0457614c03614d67565b5b80604052505050565b6000614c1882614b51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c4b57614c4a614cab565b5b600182019050919050565b6000614c6182614c68565b9050919050565b6000614c7382614dc5565b9050919050565b6000614c8582614b51565b9150614c9083614b51565b925082614ca057614c9f614cda565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f206d617820616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f536f72727920796f752063616e2774206d696e74207269676874206e6f770000600082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265204e46547320696e2077686974656c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b61544281614add565b811461544d57600080fd5b50565b61545981614aef565b811461546457600080fd5b50565b61547081614afb565b811461547b57600080fd5b50565b61548781614b05565b811461549257600080fd5b50565b61549e81614b51565b81146154a957600080fd5b50565b6154b581614b5b565b81146154c057600080fd5b5056fea2646970667358221220472e834f5711c88cd82fb2a3b971032e3bef5c3168c1ec5ed81eaae3358fd2ad64736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d697370686974734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d4953504849545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012d00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MisphitsNFT
Arg [1] : _ticker (string): MISPHITS
Arg [2] : _contract_ipfs (string): -

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4d697370686974734e4654000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 4d49535048495453000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 2d00000000000000000000000000000000000000000000000000000000000000


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.