ETH Price: $3,012.17 (-0.02%)
Gas: 5 Gwei

Token

MoneyHero.club Membership Tickets (MYHCLB)
 

Overview

Max Total Supply

531 MYHCLB

Holders

352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MYHCLB
0x05d02f6ea5877629e7e4741de98261efe02bf265
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:
MYHDiscordNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : MYHDiscordNFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";

contract MYHDiscordNFT is ERC721A, Ownable {
    bool public earlyMintOpen = false;
    bool public regularMintOpen = false;
    uint256 private maxEarlyMint = 3;
    uint256 public pauseAtId = 0;

    string private uri =
        "https://gateway.pinata.cloud/ipfs/QmbDiMfGDbrFGqatFtngW3BvMyYog8rUiiRHAbhZFzsMHQ";

    uint256 public pricePerNFT;

    mapping(address => uint256) private numberMinted;
    mapping(uint256 => string) private uriByTokenId;

    constructor(uint256 _pricePerNFT)
        ERC721A("MoneyHero.club Membership Tickets", "MYHCLB")
    {
        pricePerNFT = _pricePerNFT;
    }

    //Minting controls
    function openEarlyMint(bool _isOpen) public onlyOwner {
        earlyMintOpen = _isOpen;
    }

    function openMint(bool _isOpen) public onlyOwner {
        regularMintOpen = _isOpen;
    }

    function newInfluencer(uint256 _maxMintsForInfluencer, string memory _uri)
        public
        onlyOwner
    {
        pauseAtId = currentIndex + _maxMintsForInfluencer;
        uri = _uri;
    }

    function mint(uint256 _quantity) public payable {
        require(earlyMintOpen || regularMintOpen);
        require(msg.value == pricePerNFT * _quantity, "Wrong ETH amount sent.");
        require(
            (currentIndex + _quantity) < pauseAtId + 1,
            "Reached pauseAt Id value"
        );

        if (!regularMintOpen) {
            //Only whitelisted users can mint
            require(
                _quantity < (maxEarlyMint + 1 - numberMinted[msg.sender]),
                "User attempted to mint more than max allowed"
            );
            numberMinted[msg.sender] += _quantity;
        }

        for (uint256 i = 0; i < _quantity; i++) {
            uriByTokenId[currentIndex + i] = uri;
        }

        _safeMint(msg.sender, _quantity);
    }

    //Admin edit & withdraw eth functions
    function setPricePerNFT(uint256 _pricePerNFT) public onlyOwner {
        pricePerNFT = _pricePerNFT;
    }

    function setUri(string memory _uri) public onlyOwner {
        uri = _uri;
    }

    function setMaxEarlyMint(uint256 _max) public onlyOwner {
        maxEarlyMint = _max;
    }

    function setPauseAtId(uint256 _pauseAtId) public onlyOwner {
        pauseAtId = _pauseAtId;
    }

    function setUriById(uint256 _id, string memory _uri) public onlyOwner {
        uriByTokenId[_id] = _uri;
    }

    function withdrawEth() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    //Metadata URI functions
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return
            bytes(uriByTokenId[tokenId]).length > 0
                ? uriByTokenId[tokenId]
                : "";
    }

    function ownedTokensByAddress(address owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 totalTokensOwned = balanceOf(owner);
        uint256[] memory allTokenIds = new uint256[](totalTokensOwned);
        for (uint256 i = 0; i < totalTokensOwned; i++) {
            allTokenIds[i] = (tokenOfOwnerByIndex(owner, i));
        }
        return allTokenIds;
    }
}

File 2 of 12 : 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 3 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 4 of 12 : 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 5 of 12 : 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 6 of 12 : 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 7 of 12 : 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 8 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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":"uint256","name":"_pricePerNFT","type":"uint256"}],"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":[{"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":[],"name":"earlyMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsForInfluencer","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"newInfluencer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpen","type":"bool"}],"name":"openEarlyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpen","type":"bool"}],"name":"openMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ownedTokensByAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"pauseAtId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"regularMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxEarlyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pauseAtId","type":"uint256"}],"name":"setPauseAtId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePerNFT","type":"uint256"}],"name":"setPricePerNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setUriById","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080556000600760146101000a81548160ff0219169083151502179055506000600760156101000a81548160ff021916908315150217905550600360085560006009556040518060800160405280605081526020016200496760509139600a9080519060200190620000799291906200022d565b503480156200008757600080fd5b50604051620049d8380380620049d88339818101604052810190620000ad9190620002f4565b604051806060016040528060218152602001620049b7602191396040518060400160405280600681526020017f4d5948434c4200000000000000000000000000000000000000000000000000008152508160019080519060200190620001159291906200022d565b5080600290805190602001906200012e9291906200022d565b50505062000151620001456200015f60201b60201c565b6200016760201b60201c565b80600b8190555050620003a9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023b906200032a565b90600052602060002090601f0160209004810192826200025f5760008555620002ab565b82601f106200027a57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002aa5782518255916020019190600101906200028d565b5b509050620002ba9190620002be565b5090565b5b80821115620002d9576000816000905550600101620002bf565b5090565b600081519050620002ee816200038f565b92915050565b6000602082840312156200030757600080fd5b60006200031784828501620002dd565b91505092915050565b6000819050919050565b600060028204905060018216806200034357607f821691505b602082108114156200035a576200035962000360565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200039a8162000320565b8114620003a657600080fd5b50565b6145ae80620003b96000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063a80f3c68116100a0578063cbd4e61b1161006f578063cbd4e61b1461070e578063cc9f019414610737578063dba028c214610760578063e985e9c51461079d578063f2fde38b146107da576101f9565b8063a80f3c6814610654578063ab4926b01461067f578063b88d4fde146106a8578063c87b56dd146106d1576101f9565b8063a0712d68116100dc578063a0712d68146105cf578063a0a863dd146105eb578063a0ef91df14610614578063a22cb4651461062b576101f9565b80638da5cb5b146105255780639313ee1d1461055057806395d89b411461057b5780639b642de1146105a6576101f9565b80632f745c591161019057806358a85bca1161015f57806358a85bca146104405780636352211e14610469578063706b8722146104a657806370a08231146104d1578063715018a61461050e576101f9565b80632f745c59146103745780633730f319146103b157806342842e0e146103da5780634f6ccce714610403576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd1461032257806325b1288f1461034b576101f9565b806301ffc9a7146101fe5780630628aa701461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906131d1565b610803565b6040516102329190613790565b60405180910390f35b34801561024757600080fd5b5061025061094d565b60405161025d9190613a8d565b60405180910390f35b34801561027257600080fd5b5061027b610953565b60405161028891906137ab565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613264565b6109e5565b6040516102c59190613707565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061316c565b610a6a565b005b34801561030357600080fd5b5061030c610b83565b6040516103199190613a8d565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190613066565b610b8c565b005b34801561035757600080fd5b50610372600480360381019061036d9190613264565b610b9c565b005b34801561038057600080fd5b5061039b6004803603810190610396919061316c565b610c22565b6040516103a89190613a8d565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613264565b610e20565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190613066565b610ea6565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613264565b610ec6565b6040516104379190613a8d565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906131a8565b610f19565b005b34801561047557600080fd5b50610490600480360381019061048b9190613264565b610fb2565b60405161049d9190613707565b60405180910390f35b3480156104b257600080fd5b506104bb610fc8565b6040516104c89190613a8d565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613001565b610fce565b6040516105059190613a8d565b60405180910390f35b34801561051a57600080fd5b506105236110b7565b005b34801561053157600080fd5b5061053a61113f565b6040516105479190613707565b60405180910390f35b34801561055c57600080fd5b50610565611169565b6040516105729190613790565b60405180910390f35b34801561058757600080fd5b5061059061117c565b60405161059d91906137ab565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613223565b61120e565b005b6105e960048036038101906105e49190613264565b6112a4565b005b3480156105f757600080fd5b50610612600480360381019061060d919061328d565b6114eb565b005b34801561062057600080fd5b50610629611593565b005b34801561063757600080fd5b50610652600480360381019061064d9190613130565b611658565b005b34801561066057600080fd5b506106696117d9565b6040516106769190613790565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061328d565b6117ec565b005b3480156106b457600080fd5b506106cf60048036038101906106ca91906130b5565b611897565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190613264565b6118f3565b60405161070591906137ab565b60405180910390f35b34801561071a57600080fd5b50610735600480360381019061073091906131a8565b611a1d565b005b34801561074357600080fd5b5061075e60048036038101906107599190613264565b611ab6565b005b34801561076c57600080fd5b5061078760048036038101906107829190613001565b611b3c565b604051610794919061376e565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf919061302a565b611c36565b6040516107d19190613790565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc9190613001565b611cca565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610946575061094582611dc2565b5b9050919050565b600b5481565b60606001805461096290613dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90613dc6565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f082611e2c565b610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613a6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7582610fb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906139ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b05611e39565b73ffffffffffffffffffffffffffffffffffffffff161480610b345750610b3381610b2e611e39565b611c36565b5b610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a9061386d565b60405180910390fd5b610b7e838383611e41565b505050565b60008054905090565b610b97838383611ef3565b505050565b610ba4611e39565b73ffffffffffffffffffffffffffffffffffffffff16610bc261113f565b73ffffffffffffffffffffffffffffffffffffffff1614610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906138ed565b60405180910390fd5b8060088190555050565b6000610c2d83610fce565b8210610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906137cd565b60405180910390fd5b6000610c78610b83565b905060008060005b83811015610dde576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dca5786841415610dbb578195505050505050610e1a565b8380610dc690613e29565b9450505b508080610dd690613e29565b915050610c80565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613a4d565b60405180910390fd5b92915050565b610e28611e39565b73ffffffffffffffffffffffffffffffffffffffff16610e4661113f565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906138ed565b60405180910390fd5b8060098190555050565b610ec183838360405180602001604052806000815250611897565b505050565b6000610ed0610b83565b8210610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f089061382d565b60405180910390fd5b819050919050565b610f21611e39565b73ffffffffffffffffffffffffffffffffffffffff16610f3f61113f565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c906138ed565b60405180910390fd5b80600760156101000a81548160ff02191690831515021790555050565b6000610fbd8261249a565b600001519050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110369061388d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110bf611e39565b73ffffffffffffffffffffffffffffffffffffffff166110dd61113f565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a906138ed565b60405180910390fd5b61113d60006125f5565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760149054906101000a900460ff1681565b60606002805461118b90613dc6565b80601f01602080910402602001604051908101604052809291908181526020018280546111b790613dc6565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b5050505050905090565b611216611e39565b73ffffffffffffffffffffffffffffffffffffffff1661123461113f565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906138ed565b60405180910390fd5b80600a90805190602001906112a0929190612d5e565b5050565b600760149054906101000a900460ff16806112cb5750600760159054906101000a900460ff165b6112d457600080fd5b80600b546112e29190613c3c565b3414611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906138cd565b60405180910390fd5b60016009546113329190613be6565b816000546113409190613be6565b10611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061396d565b60405180910390fd5b600760159054906101000a900460ff1661148557600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460016008546113e39190613be6565b6113ed9190613c96565b811061142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061398d565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461147d9190613be6565b925050819055505b60005b818110156114dd57600a600d6000836000546114a49190613be6565b81526020019081526020016000209080546114be90613dc6565b6114c9929190612de4565b5080806114d590613e29565b915050611488565b506114e833826126bb565b50565b6114f3611e39565b73ffffffffffffffffffffffffffffffffffffffff1661151161113f565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906138ed565b60405180910390fd5b80600d6000848152602001908152602001600020908051906020019061158e929190612d5e565b505050565b61159b611e39565b73ffffffffffffffffffffffffffffffffffffffff166115b961113f565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906138ed565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611655573d6000803e3d6000fd5b50565b611660611e39565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c59061392d565b60405180910390fd5b80600660006116db611e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611788611e39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117cd9190613790565b60405180910390a35050565b600760159054906101000a900460ff1681565b6117f4611e39565b73ffffffffffffffffffffffffffffffffffffffff1661181261113f565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f906138ed565b60405180910390fd5b816000546118769190613be6565b60098190555080600a9080519060200190611892929190612d5e565b505050565b6118a2848484611ef3565b6118ae848484846126d9565b6118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e4906139ed565b60405180910390fd5b50505050565b60606118fe82611e2c565b61193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119349061390d565b60405180910390fd5b6000600d6000848152602001908152602001600020805461195d90613dc6565b9050116119795760405180602001604052806000815250611a16565b600d6000838152602001908152602001600020805461199790613dc6565b80601f01602080910402602001604051908101604052809291908181526020018280546119c390613dc6565b8015611a105780601f106119e557610100808354040283529160200191611a10565b820191906000526020600020905b8154815290600101906020018083116119f357829003601f168201915b50505050505b9050919050565b611a25611e39565b73ffffffffffffffffffffffffffffffffffffffff16611a4361113f565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a90906138ed565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b611abe611e39565b73ffffffffffffffffffffffffffffffffffffffff16611adc61113f565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906138ed565b60405180910390fd5b80600b8190555050565b60606000611b4983610fce565b905060008167ffffffffffffffff811115611b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611bbb5781602001602082028036833780820191505090505b50905060005b82811015611c2b57611bd38582610c22565b828281518110611c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611c2390613e29565b915050611bc1565b508092505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd2611e39565b73ffffffffffffffffffffffffffffffffffffffff16611cf061113f565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906138ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad906137ed565b60405180910390fd5b611dbf816125f5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611efe8261249a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f25611e39565b73ffffffffffffffffffffffffffffffffffffffff161480611f815750611f4a611e39565b73ffffffffffffffffffffffffffffffffffffffff16611f69846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f9d5750611f9c8260000151611f97611e39565b611c36565b5b905080611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd69061394d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612048906138ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b89061384d565b60405180910390fd5b6120ce8585856001612870565b6120de6000848460000151611e41565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122e49190613be6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561242a5761235a81611e2c565b15612429576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124928686866001612876565b505050505050565b6124a2612e71565b6124ab82611e2c565b6124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e19061380d565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125dc5780925050506125f0565b5080806125e890613d9c565b9150506124f0565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126d582826040518060200160405280600081525061287c565b5050565b60006126fa8473ffffffffffffffffffffffffffffffffffffffff16612d3b565b15612863578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612723611e39565b8786866040518563ffffffff1660e01b81526004016127459493929190613722565b602060405180830381600087803b15801561275f57600080fd5b505af192505050801561279057506040513d601f19601f8201168201806040525081019061278d91906131fa565b60015b612813573d80600081146127c0576040519150601f19603f3d011682016040523d82523d6000602084013e6127c5565b606091505b5060008151141561280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906139ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612868565b600190505b949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990613a2d565b60405180910390fd5b6128fb81611e2c565b1561293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290613a0d565b60405180910390fd5b6000831161297e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612975906139cd565b60405180910390fd5b61298b6000858386612870565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a889190613ba0565b6fffffffffffffffffffffffffffffffff168152602001858360200151612aaf9190613ba0565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d1e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cbe60008884886126d9565b612cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf4906139ed565b60405180910390fd5b8180612d0890613e29565b9250508080612d1690613e29565b915050612c4d565b5080600081905550612d336000878588612876565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d6a90613dc6565b90600052602060002090601f016020900481019282612d8c5760008555612dd3565b82601f10612da557805160ff1916838001178555612dd3565b82800160010185558215612dd3579182015b82811115612dd2578251825591602001919060010190612db7565b5b509050612de09190612eab565b5090565b828054612df090613dc6565b90600052602060002090601f016020900481019282612e125760008555612e60565b82601f10612e235780548555612e60565b82800160010185558215612e6057600052602060002091601f016020900482015b82811115612e5f578254825591600101919060010190612e44565b5b509050612e6d9190612eab565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ec4576000816000905550600101612eac565b5090565b6000612edb612ed684613acd565b613aa8565b905082815260208101848484011115612ef357600080fd5b612efe848285613d5a565b509392505050565b6000612f19612f1484613afe565b613aa8565b905082815260208101848484011115612f3157600080fd5b612f3c848285613d5a565b509392505050565b600081359050612f538161451c565b92915050565b600081359050612f6881614533565b92915050565b600081359050612f7d8161454a565b92915050565b600081519050612f928161454a565b92915050565b600082601f830112612fa957600080fd5b8135612fb9848260208601612ec8565b91505092915050565b600082601f830112612fd357600080fd5b8135612fe3848260208601612f06565b91505092915050565b600081359050612ffb81614561565b92915050565b60006020828403121561301357600080fd5b600061302184828501612f44565b91505092915050565b6000806040838503121561303d57600080fd5b600061304b85828601612f44565b925050602061305c85828601612f44565b9150509250929050565b60008060006060848603121561307b57600080fd5b600061308986828701612f44565b935050602061309a86828701612f44565b92505060406130ab86828701612fec565b9150509250925092565b600080600080608085870312156130cb57600080fd5b60006130d987828801612f44565b94505060206130ea87828801612f44565b93505060406130fb87828801612fec565b925050606085013567ffffffffffffffff81111561311857600080fd5b61312487828801612f98565b91505092959194509250565b6000806040838503121561314357600080fd5b600061315185828601612f44565b925050602061316285828601612f59565b9150509250929050565b6000806040838503121561317f57600080fd5b600061318d85828601612f44565b925050602061319e85828601612fec565b9150509250929050565b6000602082840312156131ba57600080fd5b60006131c884828501612f59565b91505092915050565b6000602082840312156131e357600080fd5b60006131f184828501612f6e565b91505092915050565b60006020828403121561320c57600080fd5b600061321a84828501612f83565b91505092915050565b60006020828403121561323557600080fd5b600082013567ffffffffffffffff81111561324f57600080fd5b61325b84828501612fc2565b91505092915050565b60006020828403121561327657600080fd5b600061328484828501612fec565b91505092915050565b600080604083850312156132a057600080fd5b60006132ae85828601612fec565b925050602083013567ffffffffffffffff8111156132cb57600080fd5b6132d785828601612fc2565b9150509250929050565b60006132ed83836136e9565b60208301905092915050565b61330281613cca565b82525050565b600061331382613b3f565b61331d8185613b6d565b935061332883613b2f565b8060005b8381101561335957815161334088826132e1565b975061334b83613b60565b92505060018101905061332c565b5085935050505092915050565b61336f81613cdc565b82525050565b600061338082613b4a565b61338a8185613b7e565b935061339a818560208601613d69565b6133a381613eff565b840191505092915050565b60006133b982613b55565b6133c38185613b8f565b93506133d3818560208601613d69565b6133dc81613eff565b840191505092915050565b60006133f4602283613b8f565b91506133ff82613f10565b604082019050919050565b6000613417602683613b8f565b915061342282613f5f565b604082019050919050565b600061343a602a83613b8f565b915061344582613fae565b604082019050919050565b600061345d602383613b8f565b915061346882613ffd565b604082019050919050565b6000613480602583613b8f565b915061348b8261404c565b604082019050919050565b60006134a3603983613b8f565b91506134ae8261409b565b604082019050919050565b60006134c6602b83613b8f565b91506134d1826140ea565b604082019050919050565b60006134e9602683613b8f565b91506134f482614139565b604082019050919050565b600061350c601683613b8f565b915061351782614188565b602082019050919050565b600061352f602083613b8f565b915061353a826141b1565b602082019050919050565b6000613552602f83613b8f565b915061355d826141da565b604082019050919050565b6000613575601a83613b8f565b915061358082614229565b602082019050919050565b6000613598603283613b8f565b91506135a382614252565b604082019050919050565b60006135bb601883613b8f565b91506135c6826142a1565b602082019050919050565b60006135de602c83613b8f565b91506135e9826142ca565b604082019050919050565b6000613601602283613b8f565b915061360c82614319565b604082019050919050565b6000613624602383613b8f565b915061362f82614368565b604082019050919050565b6000613647603383613b8f565b9150613652826143b7565b604082019050919050565b600061366a601d83613b8f565b915061367582614406565b602082019050919050565b600061368d602183613b8f565b91506136988261442f565b604082019050919050565b60006136b0602e83613b8f565b91506136bb8261447e565b604082019050919050565b60006136d3602d83613b8f565b91506136de826144cd565b604082019050919050565b6136f281613d50565b82525050565b61370181613d50565b82525050565b600060208201905061371c60008301846132f9565b92915050565b600060808201905061373760008301876132f9565b61374460208301866132f9565b61375160408301856136f8565b81810360608301526137638184613375565b905095945050505050565b600060208201905081810360008301526137888184613308565b905092915050565b60006020820190506137a56000830184613366565b92915050565b600060208201905081810360008301526137c581846133ae565b905092915050565b600060208201905081810360008301526137e6816133e7565b9050919050565b600060208201905081810360008301526138068161340a565b9050919050565b600060208201905081810360008301526138268161342d565b9050919050565b6000602082019050818103600083015261384681613450565b9050919050565b6000602082019050818103600083015261386681613473565b9050919050565b6000602082019050818103600083015261388681613496565b9050919050565b600060208201905081810360008301526138a6816134b9565b9050919050565b600060208201905081810360008301526138c6816134dc565b9050919050565b600060208201905081810360008301526138e6816134ff565b9050919050565b6000602082019050818103600083015261390681613522565b9050919050565b6000602082019050818103600083015261392681613545565b9050919050565b6000602082019050818103600083015261394681613568565b9050919050565b600060208201905081810360008301526139668161358b565b9050919050565b60006020820190508181036000830152613986816135ae565b9050919050565b600060208201905081810360008301526139a6816135d1565b9050919050565b600060208201905081810360008301526139c6816135f4565b9050919050565b600060208201905081810360008301526139e681613617565b9050919050565b60006020820190508181036000830152613a068161363a565b9050919050565b60006020820190508181036000830152613a268161365d565b9050919050565b60006020820190508181036000830152613a4681613680565b9050919050565b60006020820190508181036000830152613a66816136a3565b9050919050565b60006020820190508181036000830152613a86816136c6565b9050919050565b6000602082019050613aa260008301846136f8565b92915050565b6000613ab2613ac3565b9050613abe8282613df8565b919050565b6000604051905090565b600067ffffffffffffffff821115613ae857613ae7613ed0565b5b613af182613eff565b9050602081019050919050565b600067ffffffffffffffff821115613b1957613b18613ed0565b5b613b2282613eff565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613bab82613d14565b9150613bb683613d14565b9250826fffffffffffffffffffffffffffffffff03821115613bdb57613bda613e72565b5b828201905092915050565b6000613bf182613d50565b9150613bfc83613d50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3157613c30613e72565b5b828201905092915050565b6000613c4782613d50565b9150613c5283613d50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8b57613c8a613e72565b5b828202905092915050565b6000613ca182613d50565b9150613cac83613d50565b925082821015613cbf57613cbe613e72565b5b828203905092915050565b6000613cd582613d30565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d87578082015181840152602081019050613d6c565b83811115613d96576000848401525b50505050565b6000613da782613d50565b91506000821415613dbb57613dba613e72565b5b600182039050919050565b60006002820490506001821680613dde57607f821691505b60208210811415613df257613df1613ea1565b5b50919050565b613e0182613eff565b810181811067ffffffffffffffff82111715613e2057613e1f613ed0565b5b80604052505050565b6000613e3482613d50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e6757613e66613e72565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f57726f6e672045544820616d6f756e742073656e742e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5265616368656420706175736541742049642076616c75650000000000000000600082015250565b7f5573657220617474656d7074656420746f206d696e74206d6f7265207468616e60008201527f206d617820616c6c6f7765640000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61452581613cca565b811461453057600080fd5b50565b61453c81613cdc565b811461454757600080fd5b50565b61455381613ce8565b811461455e57600080fd5b50565b61456a81613d50565b811461457557600080fd5b5056fea2646970667358221220eb33ac859852ebd7b0d1e6ccf7c34663a32cfc701d413b5e2d109ac514d4dcf864736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6244694d6647446272464771617446746e67573342764d79596f67387255696952484162685a467a734d48514d6f6e65794865726f2e636c7562204d656d62657273686970205469636b6574730000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063a80f3c68116100a0578063cbd4e61b1161006f578063cbd4e61b1461070e578063cc9f019414610737578063dba028c214610760578063e985e9c51461079d578063f2fde38b146107da576101f9565b8063a80f3c6814610654578063ab4926b01461067f578063b88d4fde146106a8578063c87b56dd146106d1576101f9565b8063a0712d68116100dc578063a0712d68146105cf578063a0a863dd146105eb578063a0ef91df14610614578063a22cb4651461062b576101f9565b80638da5cb5b146105255780639313ee1d1461055057806395d89b411461057b5780639b642de1146105a6576101f9565b80632f745c591161019057806358a85bca1161015f57806358a85bca146104405780636352211e14610469578063706b8722146104a657806370a08231146104d1578063715018a61461050e576101f9565b80632f745c59146103745780633730f319146103b157806342842e0e146103da5780634f6ccce714610403576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd1461032257806325b1288f1461034b576101f9565b806301ffc9a7146101fe5780630628aa701461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906131d1565b610803565b6040516102329190613790565b60405180910390f35b34801561024757600080fd5b5061025061094d565b60405161025d9190613a8d565b60405180910390f35b34801561027257600080fd5b5061027b610953565b60405161028891906137ab565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613264565b6109e5565b6040516102c59190613707565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061316c565b610a6a565b005b34801561030357600080fd5b5061030c610b83565b6040516103199190613a8d565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190613066565b610b8c565b005b34801561035757600080fd5b50610372600480360381019061036d9190613264565b610b9c565b005b34801561038057600080fd5b5061039b6004803603810190610396919061316c565b610c22565b6040516103a89190613a8d565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613264565b610e20565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190613066565b610ea6565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613264565b610ec6565b6040516104379190613a8d565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906131a8565b610f19565b005b34801561047557600080fd5b50610490600480360381019061048b9190613264565b610fb2565b60405161049d9190613707565b60405180910390f35b3480156104b257600080fd5b506104bb610fc8565b6040516104c89190613a8d565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613001565b610fce565b6040516105059190613a8d565b60405180910390f35b34801561051a57600080fd5b506105236110b7565b005b34801561053157600080fd5b5061053a61113f565b6040516105479190613707565b60405180910390f35b34801561055c57600080fd5b50610565611169565b6040516105729190613790565b60405180910390f35b34801561058757600080fd5b5061059061117c565b60405161059d91906137ab565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613223565b61120e565b005b6105e960048036038101906105e49190613264565b6112a4565b005b3480156105f757600080fd5b50610612600480360381019061060d919061328d565b6114eb565b005b34801561062057600080fd5b50610629611593565b005b34801561063757600080fd5b50610652600480360381019061064d9190613130565b611658565b005b34801561066057600080fd5b506106696117d9565b6040516106769190613790565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061328d565b6117ec565b005b3480156106b457600080fd5b506106cf60048036038101906106ca91906130b5565b611897565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190613264565b6118f3565b60405161070591906137ab565b60405180910390f35b34801561071a57600080fd5b50610735600480360381019061073091906131a8565b611a1d565b005b34801561074357600080fd5b5061075e60048036038101906107599190613264565b611ab6565b005b34801561076c57600080fd5b5061078760048036038101906107829190613001565b611b3c565b604051610794919061376e565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf919061302a565b611c36565b6040516107d19190613790565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc9190613001565b611cca565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610946575061094582611dc2565b5b9050919050565b600b5481565b60606001805461096290613dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90613dc6565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f082611e2c565b610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613a6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7582610fb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906139ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b05611e39565b73ffffffffffffffffffffffffffffffffffffffff161480610b345750610b3381610b2e611e39565b611c36565b5b610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a9061386d565b60405180910390fd5b610b7e838383611e41565b505050565b60008054905090565b610b97838383611ef3565b505050565b610ba4611e39565b73ffffffffffffffffffffffffffffffffffffffff16610bc261113f565b73ffffffffffffffffffffffffffffffffffffffff1614610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906138ed565b60405180910390fd5b8060088190555050565b6000610c2d83610fce565b8210610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906137cd565b60405180910390fd5b6000610c78610b83565b905060008060005b83811015610dde576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dca5786841415610dbb578195505050505050610e1a565b8380610dc690613e29565b9450505b508080610dd690613e29565b915050610c80565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613a4d565b60405180910390fd5b92915050565b610e28611e39565b73ffffffffffffffffffffffffffffffffffffffff16610e4661113f565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906138ed565b60405180910390fd5b8060098190555050565b610ec183838360405180602001604052806000815250611897565b505050565b6000610ed0610b83565b8210610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f089061382d565b60405180910390fd5b819050919050565b610f21611e39565b73ffffffffffffffffffffffffffffffffffffffff16610f3f61113f565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c906138ed565b60405180910390fd5b80600760156101000a81548160ff02191690831515021790555050565b6000610fbd8261249a565b600001519050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110369061388d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110bf611e39565b73ffffffffffffffffffffffffffffffffffffffff166110dd61113f565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a906138ed565b60405180910390fd5b61113d60006125f5565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760149054906101000a900460ff1681565b60606002805461118b90613dc6565b80601f01602080910402602001604051908101604052809291908181526020018280546111b790613dc6565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b5050505050905090565b611216611e39565b73ffffffffffffffffffffffffffffffffffffffff1661123461113f565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906138ed565b60405180910390fd5b80600a90805190602001906112a0929190612d5e565b5050565b600760149054906101000a900460ff16806112cb5750600760159054906101000a900460ff165b6112d457600080fd5b80600b546112e29190613c3c565b3414611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906138cd565b60405180910390fd5b60016009546113329190613be6565b816000546113409190613be6565b10611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061396d565b60405180910390fd5b600760159054906101000a900460ff1661148557600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460016008546113e39190613be6565b6113ed9190613c96565b811061142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061398d565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461147d9190613be6565b925050819055505b60005b818110156114dd57600a600d6000836000546114a49190613be6565b81526020019081526020016000209080546114be90613dc6565b6114c9929190612de4565b5080806114d590613e29565b915050611488565b506114e833826126bb565b50565b6114f3611e39565b73ffffffffffffffffffffffffffffffffffffffff1661151161113f565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906138ed565b60405180910390fd5b80600d6000848152602001908152602001600020908051906020019061158e929190612d5e565b505050565b61159b611e39565b73ffffffffffffffffffffffffffffffffffffffff166115b961113f565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906138ed565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611655573d6000803e3d6000fd5b50565b611660611e39565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c59061392d565b60405180910390fd5b80600660006116db611e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611788611e39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117cd9190613790565b60405180910390a35050565b600760159054906101000a900460ff1681565b6117f4611e39565b73ffffffffffffffffffffffffffffffffffffffff1661181261113f565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f906138ed565b60405180910390fd5b816000546118769190613be6565b60098190555080600a9080519060200190611892929190612d5e565b505050565b6118a2848484611ef3565b6118ae848484846126d9565b6118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e4906139ed565b60405180910390fd5b50505050565b60606118fe82611e2c565b61193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119349061390d565b60405180910390fd5b6000600d6000848152602001908152602001600020805461195d90613dc6565b9050116119795760405180602001604052806000815250611a16565b600d6000838152602001908152602001600020805461199790613dc6565b80601f01602080910402602001604051908101604052809291908181526020018280546119c390613dc6565b8015611a105780601f106119e557610100808354040283529160200191611a10565b820191906000526020600020905b8154815290600101906020018083116119f357829003601f168201915b50505050505b9050919050565b611a25611e39565b73ffffffffffffffffffffffffffffffffffffffff16611a4361113f565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a90906138ed565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b611abe611e39565b73ffffffffffffffffffffffffffffffffffffffff16611adc61113f565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906138ed565b60405180910390fd5b80600b8190555050565b60606000611b4983610fce565b905060008167ffffffffffffffff811115611b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611bbb5781602001602082028036833780820191505090505b50905060005b82811015611c2b57611bd38582610c22565b828281518110611c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611c2390613e29565b915050611bc1565b508092505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd2611e39565b73ffffffffffffffffffffffffffffffffffffffff16611cf061113f565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906138ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad906137ed565b60405180910390fd5b611dbf816125f5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611efe8261249a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f25611e39565b73ffffffffffffffffffffffffffffffffffffffff161480611f815750611f4a611e39565b73ffffffffffffffffffffffffffffffffffffffff16611f69846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f9d5750611f9c8260000151611f97611e39565b611c36565b5b905080611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd69061394d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612048906138ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b89061384d565b60405180910390fd5b6120ce8585856001612870565b6120de6000848460000151611e41565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122e49190613be6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561242a5761235a81611e2c565b15612429576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124928686866001612876565b505050505050565b6124a2612e71565b6124ab82611e2c565b6124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e19061380d565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125dc5780925050506125f0565b5080806125e890613d9c565b9150506124f0565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126d582826040518060200160405280600081525061287c565b5050565b60006126fa8473ffffffffffffffffffffffffffffffffffffffff16612d3b565b15612863578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612723611e39565b8786866040518563ffffffff1660e01b81526004016127459493929190613722565b602060405180830381600087803b15801561275f57600080fd5b505af192505050801561279057506040513d601f19601f8201168201806040525081019061278d91906131fa565b60015b612813573d80600081146127c0576040519150601f19603f3d011682016040523d82523d6000602084013e6127c5565b606091505b5060008151141561280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906139ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612868565b600190505b949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990613a2d565b60405180910390fd5b6128fb81611e2c565b1561293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290613a0d565b60405180910390fd5b6000831161297e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612975906139cd565b60405180910390fd5b61298b6000858386612870565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a889190613ba0565b6fffffffffffffffffffffffffffffffff168152602001858360200151612aaf9190613ba0565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d1e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cbe60008884886126d9565b612cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf4906139ed565b60405180910390fd5b8180612d0890613e29565b9250508080612d1690613e29565b915050612c4d565b5080600081905550612d336000878588612876565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d6a90613dc6565b90600052602060002090601f016020900481019282612d8c5760008555612dd3565b82601f10612da557805160ff1916838001178555612dd3565b82800160010185558215612dd3579182015b82811115612dd2578251825591602001919060010190612db7565b5b509050612de09190612eab565b5090565b828054612df090613dc6565b90600052602060002090601f016020900481019282612e125760008555612e60565b82601f10612e235780548555612e60565b82800160010185558215612e6057600052602060002091601f016020900482015b82811115612e5f578254825591600101919060010190612e44565b5b509050612e6d9190612eab565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ec4576000816000905550600101612eac565b5090565b6000612edb612ed684613acd565b613aa8565b905082815260208101848484011115612ef357600080fd5b612efe848285613d5a565b509392505050565b6000612f19612f1484613afe565b613aa8565b905082815260208101848484011115612f3157600080fd5b612f3c848285613d5a565b509392505050565b600081359050612f538161451c565b92915050565b600081359050612f6881614533565b92915050565b600081359050612f7d8161454a565b92915050565b600081519050612f928161454a565b92915050565b600082601f830112612fa957600080fd5b8135612fb9848260208601612ec8565b91505092915050565b600082601f830112612fd357600080fd5b8135612fe3848260208601612f06565b91505092915050565b600081359050612ffb81614561565b92915050565b60006020828403121561301357600080fd5b600061302184828501612f44565b91505092915050565b6000806040838503121561303d57600080fd5b600061304b85828601612f44565b925050602061305c85828601612f44565b9150509250929050565b60008060006060848603121561307b57600080fd5b600061308986828701612f44565b935050602061309a86828701612f44565b92505060406130ab86828701612fec565b9150509250925092565b600080600080608085870312156130cb57600080fd5b60006130d987828801612f44565b94505060206130ea87828801612f44565b93505060406130fb87828801612fec565b925050606085013567ffffffffffffffff81111561311857600080fd5b61312487828801612f98565b91505092959194509250565b6000806040838503121561314357600080fd5b600061315185828601612f44565b925050602061316285828601612f59565b9150509250929050565b6000806040838503121561317f57600080fd5b600061318d85828601612f44565b925050602061319e85828601612fec565b9150509250929050565b6000602082840312156131ba57600080fd5b60006131c884828501612f59565b91505092915050565b6000602082840312156131e357600080fd5b60006131f184828501612f6e565b91505092915050565b60006020828403121561320c57600080fd5b600061321a84828501612f83565b91505092915050565b60006020828403121561323557600080fd5b600082013567ffffffffffffffff81111561324f57600080fd5b61325b84828501612fc2565b91505092915050565b60006020828403121561327657600080fd5b600061328484828501612fec565b91505092915050565b600080604083850312156132a057600080fd5b60006132ae85828601612fec565b925050602083013567ffffffffffffffff8111156132cb57600080fd5b6132d785828601612fc2565b9150509250929050565b60006132ed83836136e9565b60208301905092915050565b61330281613cca565b82525050565b600061331382613b3f565b61331d8185613b6d565b935061332883613b2f565b8060005b8381101561335957815161334088826132e1565b975061334b83613b60565b92505060018101905061332c565b5085935050505092915050565b61336f81613cdc565b82525050565b600061338082613b4a565b61338a8185613b7e565b935061339a818560208601613d69565b6133a381613eff565b840191505092915050565b60006133b982613b55565b6133c38185613b8f565b93506133d3818560208601613d69565b6133dc81613eff565b840191505092915050565b60006133f4602283613b8f565b91506133ff82613f10565b604082019050919050565b6000613417602683613b8f565b915061342282613f5f565b604082019050919050565b600061343a602a83613b8f565b915061344582613fae565b604082019050919050565b600061345d602383613b8f565b915061346882613ffd565b604082019050919050565b6000613480602583613b8f565b915061348b8261404c565b604082019050919050565b60006134a3603983613b8f565b91506134ae8261409b565b604082019050919050565b60006134c6602b83613b8f565b91506134d1826140ea565b604082019050919050565b60006134e9602683613b8f565b91506134f482614139565b604082019050919050565b600061350c601683613b8f565b915061351782614188565b602082019050919050565b600061352f602083613b8f565b915061353a826141b1565b602082019050919050565b6000613552602f83613b8f565b915061355d826141da565b604082019050919050565b6000613575601a83613b8f565b915061358082614229565b602082019050919050565b6000613598603283613b8f565b91506135a382614252565b604082019050919050565b60006135bb601883613b8f565b91506135c6826142a1565b602082019050919050565b60006135de602c83613b8f565b91506135e9826142ca565b604082019050919050565b6000613601602283613b8f565b915061360c82614319565b604082019050919050565b6000613624602383613b8f565b915061362f82614368565b604082019050919050565b6000613647603383613b8f565b9150613652826143b7565b604082019050919050565b600061366a601d83613b8f565b915061367582614406565b602082019050919050565b600061368d602183613b8f565b91506136988261442f565b604082019050919050565b60006136b0602e83613b8f565b91506136bb8261447e565b604082019050919050565b60006136d3602d83613b8f565b91506136de826144cd565b604082019050919050565b6136f281613d50565b82525050565b61370181613d50565b82525050565b600060208201905061371c60008301846132f9565b92915050565b600060808201905061373760008301876132f9565b61374460208301866132f9565b61375160408301856136f8565b81810360608301526137638184613375565b905095945050505050565b600060208201905081810360008301526137888184613308565b905092915050565b60006020820190506137a56000830184613366565b92915050565b600060208201905081810360008301526137c581846133ae565b905092915050565b600060208201905081810360008301526137e6816133e7565b9050919050565b600060208201905081810360008301526138068161340a565b9050919050565b600060208201905081810360008301526138268161342d565b9050919050565b6000602082019050818103600083015261384681613450565b9050919050565b6000602082019050818103600083015261386681613473565b9050919050565b6000602082019050818103600083015261388681613496565b9050919050565b600060208201905081810360008301526138a6816134b9565b9050919050565b600060208201905081810360008301526138c6816134dc565b9050919050565b600060208201905081810360008301526138e6816134ff565b9050919050565b6000602082019050818103600083015261390681613522565b9050919050565b6000602082019050818103600083015261392681613545565b9050919050565b6000602082019050818103600083015261394681613568565b9050919050565b600060208201905081810360008301526139668161358b565b9050919050565b60006020820190508181036000830152613986816135ae565b9050919050565b600060208201905081810360008301526139a6816135d1565b9050919050565b600060208201905081810360008301526139c6816135f4565b9050919050565b600060208201905081810360008301526139e681613617565b9050919050565b60006020820190508181036000830152613a068161363a565b9050919050565b60006020820190508181036000830152613a268161365d565b9050919050565b60006020820190508181036000830152613a4681613680565b9050919050565b60006020820190508181036000830152613a66816136a3565b9050919050565b60006020820190508181036000830152613a86816136c6565b9050919050565b6000602082019050613aa260008301846136f8565b92915050565b6000613ab2613ac3565b9050613abe8282613df8565b919050565b6000604051905090565b600067ffffffffffffffff821115613ae857613ae7613ed0565b5b613af182613eff565b9050602081019050919050565b600067ffffffffffffffff821115613b1957613b18613ed0565b5b613b2282613eff565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613bab82613d14565b9150613bb683613d14565b9250826fffffffffffffffffffffffffffffffff03821115613bdb57613bda613e72565b5b828201905092915050565b6000613bf182613d50565b9150613bfc83613d50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3157613c30613e72565b5b828201905092915050565b6000613c4782613d50565b9150613c5283613d50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8b57613c8a613e72565b5b828202905092915050565b6000613ca182613d50565b9150613cac83613d50565b925082821015613cbf57613cbe613e72565b5b828203905092915050565b6000613cd582613d30565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d87578082015181840152602081019050613d6c565b83811115613d96576000848401525b50505050565b6000613da782613d50565b91506000821415613dbb57613dba613e72565b5b600182039050919050565b60006002820490506001821680613dde57607f821691505b60208210811415613df257613df1613ea1565b5b50919050565b613e0182613eff565b810181811067ffffffffffffffff82111715613e2057613e1f613ed0565b5b80604052505050565b6000613e3482613d50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e6757613e66613e72565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f57726f6e672045544820616d6f756e742073656e742e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5265616368656420706175736541742049642076616c75650000000000000000600082015250565b7f5573657220617474656d7074656420746f206d696e74206d6f7265207468616e60008201527f206d617820616c6c6f7765640000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61452581613cca565b811461453057600080fd5b50565b61453c81613cdc565b811461454757600080fd5b50565b61455381613ce8565b811461455e57600080fd5b50565b61456a81613d50565b811461457557600080fd5b5056fea2646970667358221220eb33ac859852ebd7b0d1e6ccf7c34663a32cfc701d413b5e2d109ac514d4dcf864736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _pricePerNFT (uint256): 0

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


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.