ETH Price: $3,427.55 (+3.23%)

Token

RyokoPets (RPETS)
 

Overview

Max Total Supply

354 RPETS

Holders

200

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xdn91.eth
Balance
4 RPETS
0x50f9c99caaf6cab4936beef274f6b622dd5dec45
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:
RyokoPets

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : RyokoPets.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "./Options.sol";

contract RyokoPets is ERC721A, ERC2981, Ownable, ReentrancyGuard, Options{
    string private baseURI;
    constructor(
        string memory _initBaseURI,
        string memory _initContractURI,
        uint96 _royaltyFees,
        uint256 _initCost
    ) ERC721A("RyokoPets", "RPETS") ReentrancyGuard(){
        setBaseURI(_initBaseURI);
        setContractURI(_initContractURI);
        setRoyaltyFees(msg.sender, _royaltyFees);
        setCost(_initCost);
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function mint(uint256 _quantity) nonReentrant external payable callerIsUser publicSaleStep{
        require(_quantity > 0);
        require(_quantity <= maxMintAmount);
        if(block.timestamp > blockTime){
            maxPublicSupply = maxSupply;
        }
        require(totalSupply() + _quantity <= maxPublicSupply, "Not enough tokens left");
        require(_quantity + _numberMinted(msg.sender) <= maxMintAmount, "Exceeded the limit");
        require(msg.value >= mintCost * _quantity, "Not enough ether sent");
        _safeMint(msg.sender, _quantity);
    }
    function whiteListMint(bytes32[] calldata _proof) nonReentrant external callerIsUser publicSaleStep{
        bytes32 _leaf = keccak256(abi.encodePacked(msg.sender));
        require(wlValid(_proof, _leaf), "Invalid proof");
        require(!wlTokens[msg.sender], "You already minted your token");
        wlTokens[msg.sender] = true;
        _safeMint(msg.sender, maxWlPerWallet);
    }
    function claimMint(bytes32[] calldata _proof) nonReentrant external callerIsUser callerIsRyokoHolder publicSaleStep{
        bytes32 _leaf = keccak256(abi.encodePacked(msg.sender));
        require(claimValid(_proof, _leaf), "Invalid proof");
        require(!claimedTokens[msg.sender], "You already claimed");
        claimedTokens[msg.sender] = true;
        _safeMint(msg.sender, maxClaimPerWallet);
    }
    function holdersMint() nonReentrant external callerIsUser callerIsRyokoHolder publicSaleStep{
        require(!holdersMinted[msg.sender], "You already minted your token");
        holdersMinted[msg.sender] = true;
        _safeMint(msg.sender, holdersMintPerWallet);
    }
    function ownerMint(uint256 _quantity) external onlyOwner{
        _safeMint(msg.sender, _quantity);
    }
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }
    function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
        if(revealed == false) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), baseExtension))
            : "";
    }
    function supportsInterface(bytes4 _interfaceId) public view override(ERC721A, ERC2981) returns (bool) {
        return super.supportsInterface(_interfaceId);
    }
    //Only Owner
    function setStep(Steps _state) public onlyOwner {
        step = _state;
    }
    function setBlockTime(uint256 _time) external onlyOwner{
        blockTime = _time;
    }
    function reveal() public onlyOwner {
        revealed = true;
    }
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function setContractURI(string memory _newContractURI) public onlyOwner {
        contractURI = _newContractURI;
    }
    function setRoyaltyFees(address _receiver, uint96 _newRoyaltyFees) public onlyOwner {
        _setDefaultRoyalty(_receiver, _newRoyaltyFees);
    }
    function setMaxMintAmount(uint256 _amount) external onlyOwner {
        maxMintAmount = _amount;
    }
    function setCost(uint256 _newCost) public onlyOwner {
        mintCost = _newCost;
    }
    function setWhiteListRoot(bytes32 _initwhiteListRoot) public onlyOwner {
        whiteListRoot = _initwhiteListRoot;
    }
    function setClaimListRoot(bytes32 _initclaimListRoot) public onlyOwner {
        claimListRoot = _initclaimListRoot;
    }
    function withdraw() nonReentrant public payable onlyOwner {
        (bool wd, ) = payable(owner()).call{value: address(this).balance}("");
        require(wd);
    }
}

File 2 of 17 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 17 : 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 4 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 17 : 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 6 of 17 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 7 of 17 : Options.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
interface Ryoko {
    function ownerOf(uint256 tokenId) external view returns (address);
    function balanceOf(address _owner) external view returns (uint256);
}
contract Options{
    uint256 public mintCost;
    string public contractURI;
    uint public blockTime;
    uint256 public maxPublicSupply = 2222;
    uint256 public maxSupply = 4444;
    uint256 public maxMintAmount = 10;
    uint256 public maxClaimPerWallet = 3;
    uint256 public maxWlPerWallet = 1;
    uint256 public holdersMintPerWallet = 1;
    enum Steps {
        Pause,
        PublicSale,
        SoldOut
    }
    Steps public step;
    bool public revealed = true;
    string public notRevealedUri = "ipfs://notrevealedurl";
    string public baseExtension = ".json";
    bytes32 public claimListRoot;
    bytes32 public whiteListRoot;
    mapping(address => bool) public claimedTokens;
    mapping(address => bool) public wlTokens;
    mapping(address => bool) public holdersMinted;
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "caller is contract");
        _;
    }
    modifier callerIsRyokoHolder() {
        require(firstCollection.balanceOf(msg.sender) > 0, "You need Ryoko tokens");
        _;
    }
    modifier publicSaleStep() {
        require(step == Steps.PublicSale, "Public sale off");
        _;
    }
    function claimValid(bytes32[] memory _proof, bytes32 _leaf) public view returns (bool) {
        return MerkleProof.verify(_proof, claimListRoot, _leaf);
    }
    function wlValid(bytes32[] memory _proof, bytes32 _leaf) public view returns (bool) {
        return MerkleProof.verify(_proof, whiteListRoot, _leaf);
    }
    Ryoko public firstCollection = Ryoko(0xdC268F7b4927Cfe7dAa6A5cCe8D52d473B095F13);
}

File 8 of 17 : 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 9 of 17 : 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 10 of 17 : 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 11 of 17 : 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 12 of 17 : 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 13 of 17 : 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 14 of 17 : 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);
}

File 15 of 17 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 16 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initContractURI","type":"string"},{"internalType":"uint96","name":"_royaltyFees","type":"uint96"},{"internalType":"uint256","name":"_initCost","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes32","name":"_leaf","type":"bytes32"}],"name":"claimValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstCollection","outputs":[{"internalType":"contract Ryoko","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"holdersMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holdersMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWlPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","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":"_quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setBlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_initclaimListRoot","type":"bytes32"}],"name":"setClaimListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_newRoyaltyFees","type":"uint96"}],"name":"setRoyaltyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Options.Steps","name":"_state","type":"uint8"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_initwhiteListRoot","type":"bytes32"}],"name":"setWhiteListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"step","outputs":[{"internalType":"enum Options.Steps","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes32","name":"_leaf","type":"bytes32"}],"name":"wlValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526108ae600f5561115c601055600a6011556003601255600160135560016014556001601560016101000a81548160ff0219169083151502179055506040518060400160405280601581526020017f697066733a2f2f6e6f7472657665616c656475726c0000000000000000000000815250601690805190602001906200008c929190620007cf565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060179080519060200190620000da929190620007cf565b5073dc268f7b4927cfe7daa6a5cce8d52d473b095f13601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013d57600080fd5b5060405162006aa538038062006aa583398181016040528101906200016391906200091f565b6040518060400160405280600981526020017f52796f6b6f5065747300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f52504554530000000000000000000000000000000000000000000000000000008152508160029080519060200190620001e7929190620007cf565b50806003908051906020019062000200929190620007cf565b50620002116200029060201b60201c565b6000819055505050620002396200022d6200029560201b60201c565b6200029d60201b60201c565b6001600b8190555062000252846200036360201b60201c565b62000263836200040e60201b60201c565b620002753383620004b960201b60201c565b62000286816200055e60201b60201c565b5050505062000d10565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003736200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000399620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e99062000a32565b60405180910390fd5b80601e90805190602001906200040a929190620007cf565b5050565b6200041e6200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000444620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200049d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004949062000a32565b60405180910390fd5b80600d9080519060200190620004b5929190620007cf565b5050565b620004c96200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004ef620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000548576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053f9062000a32565b60405180910390fd5b6200055a82826200062160201b60201c565b5050565b6200056e6200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000594620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e49062000a32565b60405180910390fd5b80600c8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000631620007c560201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006899062000a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000705576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fc9062000a76565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620007dd9062000b60565b90600052602060002090601f0160209004810192826200080157600085556200084d565b82601f106200081c57805160ff19168380011785556200084d565b828001600101855582156200084d579182015b828111156200084c5782518255916020019190600101906200082f565b5b5090506200085c919062000860565b5090565b5b808211156200087b57600081600090555060010162000861565b5090565b600062000896620008908462000ac1565b62000a98565b905082815260208101848484011115620008af57600080fd5b620008bc84828562000b2a565b509392505050565b600082601f830112620008d657600080fd5b8151620008e88482602086016200087f565b91505092915050565b600081519050620009028162000cdc565b92915050565b600081519050620009198162000cf6565b92915050565b600080600080608085870312156200093657600080fd5b600085015167ffffffffffffffff8111156200095157600080fd5b6200095f87828801620008c4565b945050602085015167ffffffffffffffff8111156200097d57600080fd5b6200098b87828801620008c4565b93505060406200099e8782880162000908565b9250506060620009b187828801620008f1565b91505092959194509250565b6000620009cc60208362000af7565b9150620009d98262000c3b565b602082019050919050565b6000620009f3602a8362000af7565b915062000a008262000c64565b604082019050919050565b600062000a1a60198362000af7565b915062000a278262000cb3565b602082019050919050565b6000602082019050818103600083015262000a4d81620009bd565b9050919050565b6000602082019050818103600083015262000a6f81620009e4565b9050919050565b6000602082019050818103600083015262000a918162000a0b565b9050919050565b600062000aa462000ab7565b905062000ab2828262000b96565b919050565b6000604051905090565b600067ffffffffffffffff82111562000adf5762000ade62000bfb565b5b62000aea8262000c2a565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b60005b8381101562000b4a57808201518184015260208101905062000b2d565b8381111562000b5a576000848401525b50505050565b6000600282049050600182168062000b7957607f821691505b6020821081141562000b905762000b8f62000bcc565b5b50919050565b62000ba18262000c2a565b810181811067ffffffffffffffff8211171562000bc35762000bc262000bfb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b62000ce78162000b08565b811462000cf357600080fd5b50565b62000d018162000b12565b811462000d0d57600080fd5b50565b615d858062000d206000396000f3fe60806040526004361061036b5760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063e8a3d48511610095578063f22140b71161006f578063f22140b714610c7b578063f2fde38b14610ca4578063f6841b3a14610ccd578063f8b89dfb14610d0a5761036b565b8063e8a3d48514610bea578063e985e9c514610c15578063f19e75d414610c525761036b565b8063c87b56dd116100d1578063c87b56dd14610b1a578063d5abeb0114610b57578063dc33e68114610b82578063e25fe17514610bbf5761036b565b8063b88d4fde14610a9b578063bdb4b84814610ac4578063c668286214610aef5761036b565b806397254e5511610164578063a475b5dd1161013e578063a475b5dd14610a05578063a960c65f14610a1c578063b66ebb1a14610a59578063b6f7082514610a705761036b565b806397254e5514610997578063a0712d68146109c0578063a22cb465146109dc5761036b565b806383a4db92116101a057806383a4db92146108ed5780638da5cb5b14610918578063938e3d7b1461094357806395d89b411461096c5761036b565b8063715018a614610884578063758b1ce31461089b57806377259f1d146108c45761036b565b80633ccfd60b116102a0578063518302271161023e5780636352211e116102185780636352211e146107b457806365f4fd12146107f15780636849fab01461081c57806370a08231146108475761036b565b8063518302271461073557806355f804b314610760578063602d561e146107895761036b565b806344b4fa731161027a57806344b4fa731461068d57806345149bb3146106b85780634565e9ff146106e157806348b151661461070a5761036b565b80633ccfd60b1461063157806342842e0e1461063b57806344a0d68a146106645761036b565b8063239c70ae1161030d5780632778768b116102e75780632778768b1461053c578063288743ac146105795780632a55205a146105b657806337e025b7146105f45761036b565b8063239c70ae146104bd57806323b872dd146104e857806326a74d8e146105115761036b565b8063081c8c4411610349578063081c8c4414610415578063088a4ed014610440578063095ea7b31461046957806318160ddd146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190614be8565b610d33565b6040516103a491906151e6565b60405180910390f35b3480156103b957600080fd5b506103c2610d45565b6040516103cf9190615252565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190614ca4565b610dd7565b60405161040c9190615156565b60405180910390f35b34801561042157600080fd5b5061042a610e53565b6040516104379190615252565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190614ca4565b610ee1565b005b34801561047557600080fd5b50610490600480360381019061048b9190614aae565b610f67565b005b34801561049e57600080fd5b506104a7611072565b6040516104b49190615454565b60405180910390f35b3480156104c957600080fd5b506104d2611089565b6040516104df9190615454565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906149a8565b61108f565b005b34801561051d57600080fd5b5061052661109f565b6040516105339190615454565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190614b6b565b6110a5565b60405161057091906151e6565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190614943565b6110bc565b6040516105ad91906151e6565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190614cf6565b6110dc565b6040516105eb9291906151bd565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190614b6b565b6112c7565b60405161062891906151e6565b60405180910390f35b6106396112de565b005b34801561064757600080fd5b50610662600480360381019061065d91906149a8565b611430565b005b34801561067057600080fd5b5061068b60048036038101906106869190614ca4565b611450565b005b34801561069957600080fd5b506106a26114d6565b6040516106af9190615454565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190614bbf565b6114dc565b005b3480156106ed57600080fd5b5061070860048036038101906107039190614b26565b611562565b005b34801561071657600080fd5b5061071f611980565b60405161072c9190615454565b60405180910390f35b34801561074157600080fd5b5061074a611986565b60405161075791906151e6565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190614c63565b611999565b005b34801561079557600080fd5b5061079e611a2f565b6040516107ab9190615201565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190614ca4565b611a35565b6040516107e89190615156565b60405180910390f35b3480156107fd57600080fd5b50610806611a4b565b6040516108139190615201565b60405180910390f35b34801561082857600080fd5b50610831611a51565b60405161083e919061521c565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190614943565b611a77565b60405161087b9190615454565b60405180910390f35b34801561089057600080fd5b50610899611b47565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614ca4565b611bcf565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190614aea565b611c55565b005b3480156108f957600080fd5b50610902611cdf565b60405161090f9190615454565b60405180910390f35b34801561092457600080fd5b5061092d611ce5565b60405161093a9190615156565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190614c63565b611d0f565b005b34801561097857600080fd5b50610981611da5565b60405161098e9190615252565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190614b26565b611e37565b005b6109da60048036038101906109d59190614ca4565b612168565b005b3480156109e857600080fd5b50610a0360048036038101906109fe9190614a72565b61242a565b005b348015610a1157600080fd5b50610a1a6125a2565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190614943565b61263b565b604051610a5091906151e6565b60405180910390f35b348015610a6557600080fd5b50610a6e61265b565b005b348015610a7c57600080fd5b50610a856129c1565b604051610a929190615454565b60405180910390f35b348015610aa757600080fd5b50610ac26004803603810190610abd91906149f7565b6129c7565b005b348015610ad057600080fd5b50610ad9612a43565b604051610ae69190615454565b60405180910390f35b348015610afb57600080fd5b50610b04612a49565b604051610b119190615252565b60405180910390f35b348015610b2657600080fd5b50610b416004803603810190610b3c9190614ca4565b612ad7565b604051610b4e9190615252565b60405180910390f35b348015610b6357600080fd5b50610b6c612c30565b604051610b799190615454565b60405180910390f35b348015610b8e57600080fd5b50610ba96004803603810190610ba49190614943565b612c36565b604051610bb69190615454565b60405180910390f35b348015610bcb57600080fd5b50610bd4612c48565b604051610be19190615237565b60405180910390f35b348015610bf657600080fd5b50610bff612c5b565b604051610c0c9190615252565b60405180910390f35b348015610c2157600080fd5b50610c3c6004803603810190610c37919061496c565b612ce9565b604051610c4991906151e6565b60405180910390f35b348015610c5e57600080fd5b50610c796004803603810190610c749190614ca4565b612d7d565b005b348015610c8757600080fd5b50610ca26004803603810190610c9d9190614bbf565b612e06565b005b348015610cb057600080fd5b50610ccb6004803603810190610cc69190614943565b612e8c565b005b348015610cd957600080fd5b50610cf46004803603810190610cef9190614943565b612f84565b604051610d0191906151e6565b60405180910390f35b348015610d1657600080fd5b50610d316004803603810190610d2c9190614c3a565b612fa4565b005b6000610d3e82613073565b9050919050565b606060028054610d54906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d80906157bb565b8015610dcd5780601f10610da257610100808354040283529160200191610dcd565b820191906000526020600020905b815481529060010190602001808311610db057829003601f168201915b5050505050905090565b6000610de2826130ed565b610e18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60168054610e60906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8c906157bb565b8015610ed95780601f10610eae57610100808354040283529160200191610ed9565b820191906000526020600020905b815481529060010190602001808311610ebc57829003601f168201915b505050505081565b610ee961313b565b73ffffffffffffffffffffffffffffffffffffffff16610f07611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490615374565b60405180910390fd5b8060118190555050565b6000610f7282611a35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fda576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff961313b565b73ffffffffffffffffffffffffffffffffffffffff161415801561102b57506110298161102461313b565b612ce9565b155b15611062576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61106d838383613143565b505050565b600061107c6131f5565b6001546000540303905090565b60115481565b61109a8383836131fa565b505050565b600f5481565b60006110b483601854846136b0565b905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156112725760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061127c6136c7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112a8919061560c565b6112b291906155db565b90508160000151819350935050509250929050565b60006112d683601954846136b0565b905092915050565b6002600b541415611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90615414565b60405180910390fd5b6002600b8190555061133461313b565b73ffffffffffffffffffffffffffffffffffffffff16611352611ce5565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90615374565b60405180910390fd5b60006113b2611ce5565b73ffffffffffffffffffffffffffffffffffffffff16476040516113d590615141565b60006040518083038185875af1925050503d8060008114611412576040519150601f19603f3d011682016040523d82523d6000602084013e611417565b606091505b505090508061142557600080fd5b506001600b81905550565b61144b838383604051806020016040528060008152506129c7565b505050565b61145861313b565b73ffffffffffffffffffffffffffffffffffffffff16611476611ce5565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390615374565b60405180910390fd5b80600c8190555050565b60125481565b6114e461313b565b73ffffffffffffffffffffffffffffffffffffffff16611502611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90615374565b60405180910390fd5b8060198190555050565b6002600b5414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906152f4565b60405180910390fd5b6000601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161167b9190615156565b60206040518083038186803b15801561169357600080fd5b505afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb9190614ccd565b1161170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290615274565b60405180910390fd5b60016002811115611745577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff16600281111561178d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490615354565b60405180910390fd5b6000336040516020016117e091906150f5565b604051602081830303815290604052805190602001209050611843838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050826110a5565b611882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611879906153d4565b60405180910390fd5b601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561190f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611906906152b4565b60405180910390fd5b6001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611973336012546136d1565b506001600b819055505050565b600e5481565b601560019054906101000a900460ff1681565b6119a161313b565b73ffffffffffffffffffffffffffffffffffffffff166119bf611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90615374565b60405180910390fd5b80601e9080519060200190611a2b9291906145f0565b5050565b60185481565b6000611a40826136ef565b600001519050919050565b60195481565b601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b4f61313b565b73ffffffffffffffffffffffffffffffffffffffff16611b6d611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90615374565b60405180910390fd5b611bcd600061397e565b565b611bd761313b565b73ffffffffffffffffffffffffffffffffffffffff16611bf5611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290615374565b60405180910390fd5b80600e8190555050565b611c5d61313b565b73ffffffffffffffffffffffffffffffffffffffff16611c7b611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890615374565b60405180910390fd5b611cdb8282613a44565b5050565b60135481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d1761313b565b73ffffffffffffffffffffffffffffffffffffffff16611d35611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290615374565b60405180910390fd5b80600d9080519060200190611da19291906145f0565b5050565b606060038054611db4906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611de0906157bb565b8015611e2d5780601f10611e0257610100808354040283529160200191611e2d565b820191906000526020600020905b815481529060010190602001808311611e1057829003601f168201915b5050505050905090565b6002600b541415611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906152f4565b60405180910390fd5b60016002811115611f2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff166002811115611f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90615354565b60405180910390fd5b600033604051602001611fc891906150f5565b60405160208183030381529060405280519060200120905061202b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050826112c7565b61206a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612061906153d4565b60405180910390fd5b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615334565b60405180910390fd5b6001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061215b336013546136d1565b506001600b819055505050565b6002600b5414156121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b906152f4565b60405180910390fd5b6001600281111561225e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff1660028111156122a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90615354565b60405180910390fd5b600081116122f357600080fd5b60115481111561230257600080fd5b600e5442111561231657601054600f819055505b600f5481612322611072565b61232c9190615585565b111561236d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236490615314565b60405180910390fd5b60115461237933613bda565b826123849190615585565b11156123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc906152d4565b60405180910390fd5b80600c546123d3919061560c565b341015612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906153b4565b60405180910390fd5b61241f33826136d1565b6001600b8190555050565b61243261313b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612497576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006124a461313b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661255161313b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161259691906151e6565b60405180910390a35050565b6125aa61313b565b73ffffffffffffffffffffffffffffffffffffffff166125c8611ce5565b73ffffffffffffffffffffffffffffffffffffffff161461261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590615374565b60405180910390fd5b6001601560016101000a81548160ff021916908315150217905550565b601a6020528060005260406000206000915054906101000a900460ff1681565b6002600b5414156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e906152f4565b60405180910390fd5b6000601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016127749190615156565b60206040518083038186803b15801561278c57600080fd5b505afa1580156127a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c49190614ccd565b11612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90615274565b60405180910390fd5b6001600281111561283e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff166002811115612886577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd90615354565b60405180910390fd5b601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294a90615334565b60405180910390fd5b6001601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506129b7336014546136d1565b6001600b81905550565b60145481565b6129d28484846131fa565b6129f18373ffffffffffffffffffffffffffffffffffffffff16613c44565b8015612a065750612a0484848484613c67565b155b15612a3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60178054612a56906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612a82906157bb565b8015612acf5780601f10612aa457610100808354040283529160200191612acf565b820191906000526020600020905b815481529060010190602001808311612ab257829003601f168201915b505050505081565b6060612ae2826130ed565b612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1890615394565b60405180910390fd5b60001515601560019054906101000a900460ff1615151415612bcf5760168054612b4a906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612b76906157bb565b8015612bc35780601f10612b9857610100808354040283529160200191612bc3565b820191906000526020600020905b815481529060010190602001808311612ba657829003601f168201915b50505050509050612c2b565b6000612bd9613dc7565b90506000815111612bf95760405180602001604052806000815250612c27565b80612c0384613e59565b6017604051602001612c1793929190615110565b6040516020818303038152906040525b9150505b919050565b60105481565b6000612c4182613bda565b9050919050565b601560009054906101000a900460ff1681565b600d8054612c68906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612c94906157bb565b8015612ce15780601f10612cb657610100808354040283529160200191612ce1565b820191906000526020600020905b815481529060010190602001808311612cc457829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d8561313b565b73ffffffffffffffffffffffffffffffffffffffff16612da3611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614612df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df090615374565b60405180910390fd5b612e0333826136d1565b50565b612e0e61313b565b73ffffffffffffffffffffffffffffffffffffffff16612e2c611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990615374565b60405180910390fd5b8060188190555050565b612e9461313b565b73ffffffffffffffffffffffffffffffffffffffff16612eb2611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90615374565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f90615294565b60405180910390fd5b612f818161397e565b50565b601c6020528060005260406000206000915054906101000a900460ff1681565b612fac61313b565b73ffffffffffffffffffffffffffffffffffffffff16612fca611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614613020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301790615374565b60405180910390fd5b80601560006101000a81548160ff0219169083600281111561306b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130e657506130e582614006565b5b9050919050565b6000816130f86131f5565b11158015613107575060005482105b8015613134575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000613205826136ef565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613270576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661329161313b565b73ffffffffffffffffffffffffffffffffffffffff1614806132c057506132bf856132ba61313b565b612ce9565b5b8061330557506132ce61313b565b73ffffffffffffffffffffffffffffffffffffffff166132ed84610dd7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061333e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133a5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133b285858560016140e8565b6133be60008487613143565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561363e57600054821461363d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a985858560016140ee565b5050505050565b6000826136bd85846140f4565b1490509392505050565b6000612710905090565b6136eb82826040518060200160405280600081525061418f565b5050565b6136f7614676565b6000829050806137056131f5565b11158015613714575060005481105b15613947576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161394557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613829578092505050613979565b5b60011561394457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461393f578092505050613979565b61382a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613a4c6136c7565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa1906153f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1190615434565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c8d61313b565b8786866040518563ffffffff1660e01b8152600401613caf9493929190615171565b602060405180830381600087803b158015613cc957600080fd5b505af1925050508015613cfa57506040513d601f19601f82011682018060405250810190613cf79190614c11565b60015b613d74573d8060008114613d2a576040519150601f19603f3d011682016040523d82523d6000602084013e613d2f565b606091505b50600081511415613d6c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601e8054613dd6906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054613e02906157bb565b8015613e4f5780601f10613e2457610100808354040283529160200191613e4f565b820191906000526020600020905b815481529060010190602001808311613e3257829003601f168201915b5050505050905090565b60606000821415613ea1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614001565b600082905060005b60008214613ed3578080613ebc9061581e565b915050600a82613ecc91906155db565b9150613ea9565b60008167ffffffffffffffff811115613f15577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613f475781602001600182028036833780820191505090505b5090505b60008514613ffa57600182613f609190615666565b9150600a85613f6f919061588b565b6030613f7b9190615585565b60f81b818381518110613fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613ff391906155db565b9450613f4b565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806140d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806140e157506140e0826141a1565b5b9050919050565b50505050565b50505050565b60008082905060005b8451811015614184576000858281518110614141577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116141635761415c838261420b565b9250614170565b61416d818461420b565b92505b50808061417c9061581e565b9150506140fd565b508091505092915050565b61419c8383836001614222565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561428f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156142ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142d760008683876140e8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156144a157506144a08773ffffffffffffffffffffffffffffffffffffffff16613c44565b5b15614567575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46145166000888480600101955088613c67565b61454c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156144a757826000541461456257600080fd5b6145d3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614568575b8160008190555050506145e960008683876140ee565b5050505050565b8280546145fc906157bb565b90600052602060002090601f01602090048101928261461e5760008555614665565b82601f1061463757805160ff1916838001178555614665565b82800160010185558215614665579182015b82811115614664578251825591602001919060010190614649565b5b50905061467291906146b9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156146d25760008160009055506001016146ba565b5090565b60006146e96146e484615494565b61546f565b9050808382526020820190508285602086028201111561470857600080fd5b60005b85811015614738578161471e888261485c565b84526020840193506020830192505060018101905061470b565b5050509392505050565b6000614755614750846154c0565b61546f565b90508281526020810184848401111561476d57600080fd5b614778848285615779565b509392505050565b600061479361478e846154f1565b61546f565b9050828152602081018484840111156147ab57600080fd5b6147b6848285615779565b509392505050565b6000813590506147cd81615cb5565b92915050565b60008083601f8401126147e557600080fd5b8235905067ffffffffffffffff8111156147fe57600080fd5b60208301915083602082028301111561481657600080fd5b9250929050565b600082601f83011261482e57600080fd5b813561483e8482602086016146d6565b91505092915050565b60008135905061485681615ccc565b92915050565b60008135905061486b81615ce3565b92915050565b60008135905061488081615cfa565b92915050565b60008151905061489581615cfa565b92915050565b600082601f8301126148ac57600080fd5b81356148bc848260208601614742565b91505092915050565b6000813590506148d481615d11565b92915050565b600082601f8301126148eb57600080fd5b81356148fb848260208601614780565b91505092915050565b60008135905061491381615d21565b92915050565b60008151905061492881615d21565b92915050565b60008135905061493d81615d38565b92915050565b60006020828403121561495557600080fd5b6000614963848285016147be565b91505092915050565b6000806040838503121561497f57600080fd5b600061498d858286016147be565b925050602061499e858286016147be565b9150509250929050565b6000806000606084860312156149bd57600080fd5b60006149cb868287016147be565b93505060206149dc868287016147be565b92505060406149ed86828701614904565b9150509250925092565b60008060008060808587031215614a0d57600080fd5b6000614a1b878288016147be565b9450506020614a2c878288016147be565b9350506040614a3d87828801614904565b925050606085013567ffffffffffffffff811115614a5a57600080fd5b614a668782880161489b565b91505092959194509250565b60008060408385031215614a8557600080fd5b6000614a93858286016147be565b9250506020614aa485828601614847565b9150509250929050565b60008060408385031215614ac157600080fd5b6000614acf858286016147be565b9250506020614ae085828601614904565b9150509250929050565b60008060408385031215614afd57600080fd5b6000614b0b858286016147be565b9250506020614b1c8582860161492e565b9150509250929050565b60008060208385031215614b3957600080fd5b600083013567ffffffffffffffff811115614b5357600080fd5b614b5f858286016147d3565b92509250509250929050565b60008060408385031215614b7e57600080fd5b600083013567ffffffffffffffff811115614b9857600080fd5b614ba48582860161481d565b9250506020614bb58582860161485c565b9150509250929050565b600060208284031215614bd157600080fd5b6000614bdf8482850161485c565b91505092915050565b600060208284031215614bfa57600080fd5b6000614c0884828501614871565b91505092915050565b600060208284031215614c2357600080fd5b6000614c3184828501614886565b91505092915050565b600060208284031215614c4c57600080fd5b6000614c5a848285016148c5565b91505092915050565b600060208284031215614c7557600080fd5b600082013567ffffffffffffffff811115614c8f57600080fd5b614c9b848285016148da565b91505092915050565b600060208284031215614cb657600080fd5b6000614cc484828501614904565b91505092915050565b600060208284031215614cdf57600080fd5b6000614ced84828501614919565b91505092915050565b60008060408385031215614d0957600080fd5b6000614d1785828601614904565b9250506020614d2885828601614904565b9150509250929050565b614d3b8161569a565b82525050565b614d52614d4d8261569a565b615867565b82525050565b614d61816156ac565b82525050565b614d70816156b8565b82525050565b6000614d8182615537565b614d8b818561554d565b9350614d9b818560208601615788565b614da4816159a7565b840191505092915050565b614db881615743565b82525050565b614dc781615767565b82525050565b6000614dd882615542565b614de28185615569565b9350614df2818560208601615788565b614dfb816159a7565b840191505092915050565b6000614e1182615542565b614e1b818561557a565b9350614e2b818560208601615788565b80840191505092915050565b60008154614e44816157bb565b614e4e818661557a565b94506001821660008114614e695760018114614e7a57614ead565b60ff19831686528186019350614ead565b614e8385615522565b60005b83811015614ea557815481890152600182019150602081019050614e86565b838801955050505b50505092915050565b6000614ec3601583615569565b9150614ece826159c5565b602082019050919050565b6000614ee6602683615569565b9150614ef1826159ee565b604082019050919050565b6000614f09601383615569565b9150614f1482615a3d565b602082019050919050565b6000614f2c601283615569565b9150614f3782615a66565b602082019050919050565b6000614f4f601283615569565b9150614f5a82615a8f565b602082019050919050565b6000614f72601683615569565b9150614f7d82615ab8565b602082019050919050565b6000614f95601d83615569565b9150614fa082615ae1565b602082019050919050565b6000614fb8600f83615569565b9150614fc382615b0a565b602082019050919050565b6000614fdb602083615569565b9150614fe682615b33565b602082019050919050565b6000614ffe602f83615569565b915061500982615b5c565b604082019050919050565b600061502160008361555e565b915061502c82615bab565b600082019050919050565b6000615044601583615569565b915061504f82615bae565b602082019050919050565b6000615067600d83615569565b915061507282615bd7565b602082019050919050565b600061508a602a83615569565b915061509582615c00565b604082019050919050565b60006150ad601f83615569565b91506150b882615c4f565b602082019050919050565b60006150d0601983615569565b91506150db82615c78565b602082019050919050565b6150ef81615721565b82525050565b60006151018284614d41565b60148201915081905092915050565b600061511c8286614e06565b91506151288285614e06565b91506151348284614e37565b9150819050949350505050565b600061514c82615014565b9150819050919050565b600060208201905061516b6000830184614d32565b92915050565b60006080820190506151866000830187614d32565b6151936020830186614d32565b6151a060408301856150e6565b81810360608301526151b28184614d76565b905095945050505050565b60006040820190506151d26000830185614d32565b6151df60208301846150e6565b9392505050565b60006020820190506151fb6000830184614d58565b92915050565b60006020820190506152166000830184614d67565b92915050565b60006020820190506152316000830184614daf565b92915050565b600060208201905061524c6000830184614dbe565b92915050565b6000602082019050818103600083015261526c8184614dcd565b905092915050565b6000602082019050818103600083015261528d81614eb6565b9050919050565b600060208201905081810360008301526152ad81614ed9565b9050919050565b600060208201905081810360008301526152cd81614efc565b9050919050565b600060208201905081810360008301526152ed81614f1f565b9050919050565b6000602082019050818103600083015261530d81614f42565b9050919050565b6000602082019050818103600083015261532d81614f65565b9050919050565b6000602082019050818103600083015261534d81614f88565b9050919050565b6000602082019050818103600083015261536d81614fab565b9050919050565b6000602082019050818103600083015261538d81614fce565b9050919050565b600060208201905081810360008301526153ad81614ff1565b9050919050565b600060208201905081810360008301526153cd81615037565b9050919050565b600060208201905081810360008301526153ed8161505a565b9050919050565b6000602082019050818103600083015261540d8161507d565b9050919050565b6000602082019050818103600083015261542d816150a0565b9050919050565b6000602082019050818103600083015261544d816150c3565b9050919050565b600060208201905061546960008301846150e6565b92915050565b600061547961548a565b905061548582826157ed565b919050565b6000604051905090565b600067ffffffffffffffff8211156154af576154ae615978565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156154db576154da615978565b5b6154e4826159a7565b9050602081019050919050565b600067ffffffffffffffff82111561550c5761550b615978565b5b615515826159a7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061559082615721565b915061559b83615721565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155d0576155cf6158bc565b5b828201905092915050565b60006155e682615721565b91506155f183615721565b925082615601576156006158eb565b5b828204905092915050565b600061561782615721565b915061562283615721565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561565b5761565a6158bc565b5b828202905092915050565b600061567182615721565b915061567c83615721565b92508282101561568f5761568e6158bc565b5b828203905092915050565b60006156a582615701565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506156fc82615ca1565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b600061574e82615755565b9050919050565b600061576082615701565b9050919050565b6000615772826156ee565b9050919050565b82818337600083830152505050565b60005b838110156157a657808201518184015260208101905061578b565b838111156157b5576000848401525b50505050565b600060028204905060018216806157d357607f821691505b602082108114156157e7576157e6615949565b5b50919050565b6157f6826159a7565b810181811067ffffffffffffffff8211171561581557615814615978565b5b80604052505050565b600061582982615721565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585c5761585b6158bc565b5b600182019050919050565b600061587282615879565b9050919050565b6000615884826159b8565b9050919050565b600061589682615721565b91506158a183615721565b9250826158b1576158b06158eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75206e6565642052796f6b6f20746f6b656e730000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f7520616c726561647920636c61696d656400000000000000000000000000600082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f63616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f596f7520616c7265616479206d696e74656420796f757220746f6b656e000000600082015250565b7f5075626c69632073616c65206f66660000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60038110615cb257615cb161591a565b5b50565b615cbe8161569a565b8114615cc957600080fd5b50565b615cd5816156ac565b8114615ce057600080fd5b50565b615cec816156b8565b8114615cf757600080fd5b50565b615d03816156c2565b8114615d0e57600080fd5b50565b60038110615d1e57600080fd5b50565b615d2a81615721565b8114615d3557600080fd5b50565b615d418161572b565b8114615d4c57600080fd5b5056fea2646970667358221220f1d3c927c39a5369c39b4fd574109f84f667cd3c9201cafc396d0ed840bfbe6664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d653338706d7868336f5764375747536f6365394332724a4469377a6e6e53773853386a4a5853566a3743544e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000012697066733a2f2f636f6e74726163745572690000000000000000000000000000

Deployed Bytecode

0x60806040526004361061036b5760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063e8a3d48511610095578063f22140b71161006f578063f22140b714610c7b578063f2fde38b14610ca4578063f6841b3a14610ccd578063f8b89dfb14610d0a5761036b565b8063e8a3d48514610bea578063e985e9c514610c15578063f19e75d414610c525761036b565b8063c87b56dd116100d1578063c87b56dd14610b1a578063d5abeb0114610b57578063dc33e68114610b82578063e25fe17514610bbf5761036b565b8063b88d4fde14610a9b578063bdb4b84814610ac4578063c668286214610aef5761036b565b806397254e5511610164578063a475b5dd1161013e578063a475b5dd14610a05578063a960c65f14610a1c578063b66ebb1a14610a59578063b6f7082514610a705761036b565b806397254e5514610997578063a0712d68146109c0578063a22cb465146109dc5761036b565b806383a4db92116101a057806383a4db92146108ed5780638da5cb5b14610918578063938e3d7b1461094357806395d89b411461096c5761036b565b8063715018a614610884578063758b1ce31461089b57806377259f1d146108c45761036b565b80633ccfd60b116102a0578063518302271161023e5780636352211e116102185780636352211e146107b457806365f4fd12146107f15780636849fab01461081c57806370a08231146108475761036b565b8063518302271461073557806355f804b314610760578063602d561e146107895761036b565b806344b4fa731161027a57806344b4fa731461068d57806345149bb3146106b85780634565e9ff146106e157806348b151661461070a5761036b565b80633ccfd60b1461063157806342842e0e1461063b57806344a0d68a146106645761036b565b8063239c70ae1161030d5780632778768b116102e75780632778768b1461053c578063288743ac146105795780632a55205a146105b657806337e025b7146105f45761036b565b8063239c70ae146104bd57806323b872dd146104e857806326a74d8e146105115761036b565b8063081c8c4411610349578063081c8c4414610415578063088a4ed014610440578063095ea7b31461046957806318160ddd146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190614be8565b610d33565b6040516103a491906151e6565b60405180910390f35b3480156103b957600080fd5b506103c2610d45565b6040516103cf9190615252565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190614ca4565b610dd7565b60405161040c9190615156565b60405180910390f35b34801561042157600080fd5b5061042a610e53565b6040516104379190615252565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190614ca4565b610ee1565b005b34801561047557600080fd5b50610490600480360381019061048b9190614aae565b610f67565b005b34801561049e57600080fd5b506104a7611072565b6040516104b49190615454565b60405180910390f35b3480156104c957600080fd5b506104d2611089565b6040516104df9190615454565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906149a8565b61108f565b005b34801561051d57600080fd5b5061052661109f565b6040516105339190615454565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190614b6b565b6110a5565b60405161057091906151e6565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190614943565b6110bc565b6040516105ad91906151e6565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190614cf6565b6110dc565b6040516105eb9291906151bd565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190614b6b565b6112c7565b60405161062891906151e6565b60405180910390f35b6106396112de565b005b34801561064757600080fd5b50610662600480360381019061065d91906149a8565b611430565b005b34801561067057600080fd5b5061068b60048036038101906106869190614ca4565b611450565b005b34801561069957600080fd5b506106a26114d6565b6040516106af9190615454565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190614bbf565b6114dc565b005b3480156106ed57600080fd5b5061070860048036038101906107039190614b26565b611562565b005b34801561071657600080fd5b5061071f611980565b60405161072c9190615454565b60405180910390f35b34801561074157600080fd5b5061074a611986565b60405161075791906151e6565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190614c63565b611999565b005b34801561079557600080fd5b5061079e611a2f565b6040516107ab9190615201565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190614ca4565b611a35565b6040516107e89190615156565b60405180910390f35b3480156107fd57600080fd5b50610806611a4b565b6040516108139190615201565b60405180910390f35b34801561082857600080fd5b50610831611a51565b60405161083e919061521c565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190614943565b611a77565b60405161087b9190615454565b60405180910390f35b34801561089057600080fd5b50610899611b47565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614ca4565b611bcf565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190614aea565b611c55565b005b3480156108f957600080fd5b50610902611cdf565b60405161090f9190615454565b60405180910390f35b34801561092457600080fd5b5061092d611ce5565b60405161093a9190615156565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190614c63565b611d0f565b005b34801561097857600080fd5b50610981611da5565b60405161098e9190615252565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190614b26565b611e37565b005b6109da60048036038101906109d59190614ca4565b612168565b005b3480156109e857600080fd5b50610a0360048036038101906109fe9190614a72565b61242a565b005b348015610a1157600080fd5b50610a1a6125a2565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190614943565b61263b565b604051610a5091906151e6565b60405180910390f35b348015610a6557600080fd5b50610a6e61265b565b005b348015610a7c57600080fd5b50610a856129c1565b604051610a929190615454565b60405180910390f35b348015610aa757600080fd5b50610ac26004803603810190610abd91906149f7565b6129c7565b005b348015610ad057600080fd5b50610ad9612a43565b604051610ae69190615454565b60405180910390f35b348015610afb57600080fd5b50610b04612a49565b604051610b119190615252565b60405180910390f35b348015610b2657600080fd5b50610b416004803603810190610b3c9190614ca4565b612ad7565b604051610b4e9190615252565b60405180910390f35b348015610b6357600080fd5b50610b6c612c30565b604051610b799190615454565b60405180910390f35b348015610b8e57600080fd5b50610ba96004803603810190610ba49190614943565b612c36565b604051610bb69190615454565b60405180910390f35b348015610bcb57600080fd5b50610bd4612c48565b604051610be19190615237565b60405180910390f35b348015610bf657600080fd5b50610bff612c5b565b604051610c0c9190615252565b60405180910390f35b348015610c2157600080fd5b50610c3c6004803603810190610c37919061496c565b612ce9565b604051610c4991906151e6565b60405180910390f35b348015610c5e57600080fd5b50610c796004803603810190610c749190614ca4565b612d7d565b005b348015610c8757600080fd5b50610ca26004803603810190610c9d9190614bbf565b612e06565b005b348015610cb057600080fd5b50610ccb6004803603810190610cc69190614943565b612e8c565b005b348015610cd957600080fd5b50610cf46004803603810190610cef9190614943565b612f84565b604051610d0191906151e6565b60405180910390f35b348015610d1657600080fd5b50610d316004803603810190610d2c9190614c3a565b612fa4565b005b6000610d3e82613073565b9050919050565b606060028054610d54906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d80906157bb565b8015610dcd5780601f10610da257610100808354040283529160200191610dcd565b820191906000526020600020905b815481529060010190602001808311610db057829003601f168201915b5050505050905090565b6000610de2826130ed565b610e18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60168054610e60906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8c906157bb565b8015610ed95780601f10610eae57610100808354040283529160200191610ed9565b820191906000526020600020905b815481529060010190602001808311610ebc57829003601f168201915b505050505081565b610ee961313b565b73ffffffffffffffffffffffffffffffffffffffff16610f07611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490615374565b60405180910390fd5b8060118190555050565b6000610f7282611a35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fda576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff961313b565b73ffffffffffffffffffffffffffffffffffffffff161415801561102b57506110298161102461313b565b612ce9565b155b15611062576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61106d838383613143565b505050565b600061107c6131f5565b6001546000540303905090565b60115481565b61109a8383836131fa565b505050565b600f5481565b60006110b483601854846136b0565b905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156112725760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061127c6136c7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112a8919061560c565b6112b291906155db565b90508160000151819350935050509250929050565b60006112d683601954846136b0565b905092915050565b6002600b541415611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90615414565b60405180910390fd5b6002600b8190555061133461313b565b73ffffffffffffffffffffffffffffffffffffffff16611352611ce5565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90615374565b60405180910390fd5b60006113b2611ce5565b73ffffffffffffffffffffffffffffffffffffffff16476040516113d590615141565b60006040518083038185875af1925050503d8060008114611412576040519150601f19603f3d011682016040523d82523d6000602084013e611417565b606091505b505090508061142557600080fd5b506001600b81905550565b61144b838383604051806020016040528060008152506129c7565b505050565b61145861313b565b73ffffffffffffffffffffffffffffffffffffffff16611476611ce5565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390615374565b60405180910390fd5b80600c8190555050565b60125481565b6114e461313b565b73ffffffffffffffffffffffffffffffffffffffff16611502611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90615374565b60405180910390fd5b8060198190555050565b6002600b5414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906152f4565b60405180910390fd5b6000601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161167b9190615156565b60206040518083038186803b15801561169357600080fd5b505afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb9190614ccd565b1161170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290615274565b60405180910390fd5b60016002811115611745577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff16600281111561178d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490615354565b60405180910390fd5b6000336040516020016117e091906150f5565b604051602081830303815290604052805190602001209050611843838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050826110a5565b611882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611879906153d4565b60405180910390fd5b601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561190f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611906906152b4565b60405180910390fd5b6001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611973336012546136d1565b506001600b819055505050565b600e5481565b601560019054906101000a900460ff1681565b6119a161313b565b73ffffffffffffffffffffffffffffffffffffffff166119bf611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90615374565b60405180910390fd5b80601e9080519060200190611a2b9291906145f0565b5050565b60185481565b6000611a40826136ef565b600001519050919050565b60195481565b601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b4f61313b565b73ffffffffffffffffffffffffffffffffffffffff16611b6d611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90615374565b60405180910390fd5b611bcd600061397e565b565b611bd761313b565b73ffffffffffffffffffffffffffffffffffffffff16611bf5611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290615374565b60405180910390fd5b80600e8190555050565b611c5d61313b565b73ffffffffffffffffffffffffffffffffffffffff16611c7b611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890615374565b60405180910390fd5b611cdb8282613a44565b5050565b60135481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d1761313b565b73ffffffffffffffffffffffffffffffffffffffff16611d35611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290615374565b60405180910390fd5b80600d9080519060200190611da19291906145f0565b5050565b606060038054611db4906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611de0906157bb565b8015611e2d5780601f10611e0257610100808354040283529160200191611e2d565b820191906000526020600020905b815481529060010190602001808311611e1057829003601f168201915b5050505050905090565b6002600b541415611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906152f4565b60405180910390fd5b60016002811115611f2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff166002811115611f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90615354565b60405180910390fd5b600033604051602001611fc891906150f5565b60405160208183030381529060405280519060200120905061202b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050826112c7565b61206a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612061906153d4565b60405180910390fd5b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615334565b60405180910390fd5b6001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061215b336013546136d1565b506001600b819055505050565b6002600b5414156121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b906152f4565b60405180910390fd5b6001600281111561225e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff1660028111156122a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90615354565b60405180910390fd5b600081116122f357600080fd5b60115481111561230257600080fd5b600e5442111561231657601054600f819055505b600f5481612322611072565b61232c9190615585565b111561236d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236490615314565b60405180910390fd5b60115461237933613bda565b826123849190615585565b11156123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc906152d4565b60405180910390fd5b80600c546123d3919061560c565b341015612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906153b4565b60405180910390fd5b61241f33826136d1565b6001600b8190555050565b61243261313b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612497576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006124a461313b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661255161313b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161259691906151e6565b60405180910390a35050565b6125aa61313b565b73ffffffffffffffffffffffffffffffffffffffff166125c8611ce5565b73ffffffffffffffffffffffffffffffffffffffff161461261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590615374565b60405180910390fd5b6001601560016101000a81548160ff021916908315150217905550565b601a6020528060005260406000206000915054906101000a900460ff1681565b6002600b5414156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890615414565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e906152f4565b60405180910390fd5b6000601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016127749190615156565b60206040518083038186803b15801561278c57600080fd5b505afa1580156127a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c49190614ccd565b11612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90615274565b60405180910390fd5b6001600281111561283e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601560009054906101000a900460ff166002811115612886577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd90615354565b60405180910390fd5b601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294a90615334565b60405180910390fd5b6001601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506129b7336014546136d1565b6001600b81905550565b60145481565b6129d28484846131fa565b6129f18373ffffffffffffffffffffffffffffffffffffffff16613c44565b8015612a065750612a0484848484613c67565b155b15612a3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60178054612a56906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612a82906157bb565b8015612acf5780601f10612aa457610100808354040283529160200191612acf565b820191906000526020600020905b815481529060010190602001808311612ab257829003601f168201915b505050505081565b6060612ae2826130ed565b612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1890615394565b60405180910390fd5b60001515601560019054906101000a900460ff1615151415612bcf5760168054612b4a906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612b76906157bb565b8015612bc35780601f10612b9857610100808354040283529160200191612bc3565b820191906000526020600020905b815481529060010190602001808311612ba657829003601f168201915b50505050509050612c2b565b6000612bd9613dc7565b90506000815111612bf95760405180602001604052806000815250612c27565b80612c0384613e59565b6017604051602001612c1793929190615110565b6040516020818303038152906040525b9150505b919050565b60105481565b6000612c4182613bda565b9050919050565b601560009054906101000a900460ff1681565b600d8054612c68906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612c94906157bb565b8015612ce15780601f10612cb657610100808354040283529160200191612ce1565b820191906000526020600020905b815481529060010190602001808311612cc457829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d8561313b565b73ffffffffffffffffffffffffffffffffffffffff16612da3611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614612df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df090615374565b60405180910390fd5b612e0333826136d1565b50565b612e0e61313b565b73ffffffffffffffffffffffffffffffffffffffff16612e2c611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990615374565b60405180910390fd5b8060188190555050565b612e9461313b565b73ffffffffffffffffffffffffffffffffffffffff16612eb2611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90615374565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f90615294565b60405180910390fd5b612f818161397e565b50565b601c6020528060005260406000206000915054906101000a900460ff1681565b612fac61313b565b73ffffffffffffffffffffffffffffffffffffffff16612fca611ce5565b73ffffffffffffffffffffffffffffffffffffffff1614613020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301790615374565b60405180910390fd5b80601560006101000a81548160ff0219169083600281111561306b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130e657506130e582614006565b5b9050919050565b6000816130f86131f5565b11158015613107575060005482105b8015613134575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000613205826136ef565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613270576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661329161313b565b73ffffffffffffffffffffffffffffffffffffffff1614806132c057506132bf856132ba61313b565b612ce9565b5b8061330557506132ce61313b565b73ffffffffffffffffffffffffffffffffffffffff166132ed84610dd7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061333e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133a5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133b285858560016140e8565b6133be60008487613143565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561363e57600054821461363d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a985858560016140ee565b5050505050565b6000826136bd85846140f4565b1490509392505050565b6000612710905090565b6136eb82826040518060200160405280600081525061418f565b5050565b6136f7614676565b6000829050806137056131f5565b11158015613714575060005481105b15613947576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161394557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613829578092505050613979565b5b60011561394457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461393f578092505050613979565b61382a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613a4c6136c7565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa1906153f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1190615434565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c8d61313b565b8786866040518563ffffffff1660e01b8152600401613caf9493929190615171565b602060405180830381600087803b158015613cc957600080fd5b505af1925050508015613cfa57506040513d601f19601f82011682018060405250810190613cf79190614c11565b60015b613d74573d8060008114613d2a576040519150601f19603f3d011682016040523d82523d6000602084013e613d2f565b606091505b50600081511415613d6c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601e8054613dd6906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054613e02906157bb565b8015613e4f5780601f10613e2457610100808354040283529160200191613e4f565b820191906000526020600020905b815481529060010190602001808311613e3257829003601f168201915b5050505050905090565b60606000821415613ea1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614001565b600082905060005b60008214613ed3578080613ebc9061581e565b915050600a82613ecc91906155db565b9150613ea9565b60008167ffffffffffffffff811115613f15577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613f475781602001600182028036833780820191505090505b5090505b60008514613ffa57600182613f609190615666565b9150600a85613f6f919061588b565b6030613f7b9190615585565b60f81b818381518110613fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613ff391906155db565b9450613f4b565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806140d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806140e157506140e0826141a1565b5b9050919050565b50505050565b50505050565b60008082905060005b8451811015614184576000858281518110614141577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116141635761415c838261420b565b9250614170565b61416d818461420b565b92505b50808061417c9061581e565b9150506140fd565b508091505092915050565b61419c8383836001614222565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561428f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156142ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142d760008683876140e8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156144a157506144a08773ffffffffffffffffffffffffffffffffffffffff16613c44565b5b15614567575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46145166000888480600101955088613c67565b61454c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156144a757826000541461456257600080fd5b6145d3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614568575b8160008190555050506145e960008683876140ee565b5050505050565b8280546145fc906157bb565b90600052602060002090601f01602090048101928261461e5760008555614665565b82601f1061463757805160ff1916838001178555614665565b82800160010185558215614665579182015b82811115614664578251825591602001919060010190614649565b5b50905061467291906146b9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156146d25760008160009055506001016146ba565b5090565b60006146e96146e484615494565b61546f565b9050808382526020820190508285602086028201111561470857600080fd5b60005b85811015614738578161471e888261485c565b84526020840193506020830192505060018101905061470b565b5050509392505050565b6000614755614750846154c0565b61546f565b90508281526020810184848401111561476d57600080fd5b614778848285615779565b509392505050565b600061479361478e846154f1565b61546f565b9050828152602081018484840111156147ab57600080fd5b6147b6848285615779565b509392505050565b6000813590506147cd81615cb5565b92915050565b60008083601f8401126147e557600080fd5b8235905067ffffffffffffffff8111156147fe57600080fd5b60208301915083602082028301111561481657600080fd5b9250929050565b600082601f83011261482e57600080fd5b813561483e8482602086016146d6565b91505092915050565b60008135905061485681615ccc565b92915050565b60008135905061486b81615ce3565b92915050565b60008135905061488081615cfa565b92915050565b60008151905061489581615cfa565b92915050565b600082601f8301126148ac57600080fd5b81356148bc848260208601614742565b91505092915050565b6000813590506148d481615d11565b92915050565b600082601f8301126148eb57600080fd5b81356148fb848260208601614780565b91505092915050565b60008135905061491381615d21565b92915050565b60008151905061492881615d21565b92915050565b60008135905061493d81615d38565b92915050565b60006020828403121561495557600080fd5b6000614963848285016147be565b91505092915050565b6000806040838503121561497f57600080fd5b600061498d858286016147be565b925050602061499e858286016147be565b9150509250929050565b6000806000606084860312156149bd57600080fd5b60006149cb868287016147be565b93505060206149dc868287016147be565b92505060406149ed86828701614904565b9150509250925092565b60008060008060808587031215614a0d57600080fd5b6000614a1b878288016147be565b9450506020614a2c878288016147be565b9350506040614a3d87828801614904565b925050606085013567ffffffffffffffff811115614a5a57600080fd5b614a668782880161489b565b91505092959194509250565b60008060408385031215614a8557600080fd5b6000614a93858286016147be565b9250506020614aa485828601614847565b9150509250929050565b60008060408385031215614ac157600080fd5b6000614acf858286016147be565b9250506020614ae085828601614904565b9150509250929050565b60008060408385031215614afd57600080fd5b6000614b0b858286016147be565b9250506020614b1c8582860161492e565b9150509250929050565b60008060208385031215614b3957600080fd5b600083013567ffffffffffffffff811115614b5357600080fd5b614b5f858286016147d3565b92509250509250929050565b60008060408385031215614b7e57600080fd5b600083013567ffffffffffffffff811115614b9857600080fd5b614ba48582860161481d565b9250506020614bb58582860161485c565b9150509250929050565b600060208284031215614bd157600080fd5b6000614bdf8482850161485c565b91505092915050565b600060208284031215614bfa57600080fd5b6000614c0884828501614871565b91505092915050565b600060208284031215614c2357600080fd5b6000614c3184828501614886565b91505092915050565b600060208284031215614c4c57600080fd5b6000614c5a848285016148c5565b91505092915050565b600060208284031215614c7557600080fd5b600082013567ffffffffffffffff811115614c8f57600080fd5b614c9b848285016148da565b91505092915050565b600060208284031215614cb657600080fd5b6000614cc484828501614904565b91505092915050565b600060208284031215614cdf57600080fd5b6000614ced84828501614919565b91505092915050565b60008060408385031215614d0957600080fd5b6000614d1785828601614904565b9250506020614d2885828601614904565b9150509250929050565b614d3b8161569a565b82525050565b614d52614d4d8261569a565b615867565b82525050565b614d61816156ac565b82525050565b614d70816156b8565b82525050565b6000614d8182615537565b614d8b818561554d565b9350614d9b818560208601615788565b614da4816159a7565b840191505092915050565b614db881615743565b82525050565b614dc781615767565b82525050565b6000614dd882615542565b614de28185615569565b9350614df2818560208601615788565b614dfb816159a7565b840191505092915050565b6000614e1182615542565b614e1b818561557a565b9350614e2b818560208601615788565b80840191505092915050565b60008154614e44816157bb565b614e4e818661557a565b94506001821660008114614e695760018114614e7a57614ead565b60ff19831686528186019350614ead565b614e8385615522565b60005b83811015614ea557815481890152600182019150602081019050614e86565b838801955050505b50505092915050565b6000614ec3601583615569565b9150614ece826159c5565b602082019050919050565b6000614ee6602683615569565b9150614ef1826159ee565b604082019050919050565b6000614f09601383615569565b9150614f1482615a3d565b602082019050919050565b6000614f2c601283615569565b9150614f3782615a66565b602082019050919050565b6000614f4f601283615569565b9150614f5a82615a8f565b602082019050919050565b6000614f72601683615569565b9150614f7d82615ab8565b602082019050919050565b6000614f95601d83615569565b9150614fa082615ae1565b602082019050919050565b6000614fb8600f83615569565b9150614fc382615b0a565b602082019050919050565b6000614fdb602083615569565b9150614fe682615b33565b602082019050919050565b6000614ffe602f83615569565b915061500982615b5c565b604082019050919050565b600061502160008361555e565b915061502c82615bab565b600082019050919050565b6000615044601583615569565b915061504f82615bae565b602082019050919050565b6000615067600d83615569565b915061507282615bd7565b602082019050919050565b600061508a602a83615569565b915061509582615c00565b604082019050919050565b60006150ad601f83615569565b91506150b882615c4f565b602082019050919050565b60006150d0601983615569565b91506150db82615c78565b602082019050919050565b6150ef81615721565b82525050565b60006151018284614d41565b60148201915081905092915050565b600061511c8286614e06565b91506151288285614e06565b91506151348284614e37565b9150819050949350505050565b600061514c82615014565b9150819050919050565b600060208201905061516b6000830184614d32565b92915050565b60006080820190506151866000830187614d32565b6151936020830186614d32565b6151a060408301856150e6565b81810360608301526151b28184614d76565b905095945050505050565b60006040820190506151d26000830185614d32565b6151df60208301846150e6565b9392505050565b60006020820190506151fb6000830184614d58565b92915050565b60006020820190506152166000830184614d67565b92915050565b60006020820190506152316000830184614daf565b92915050565b600060208201905061524c6000830184614dbe565b92915050565b6000602082019050818103600083015261526c8184614dcd565b905092915050565b6000602082019050818103600083015261528d81614eb6565b9050919050565b600060208201905081810360008301526152ad81614ed9565b9050919050565b600060208201905081810360008301526152cd81614efc565b9050919050565b600060208201905081810360008301526152ed81614f1f565b9050919050565b6000602082019050818103600083015261530d81614f42565b9050919050565b6000602082019050818103600083015261532d81614f65565b9050919050565b6000602082019050818103600083015261534d81614f88565b9050919050565b6000602082019050818103600083015261536d81614fab565b9050919050565b6000602082019050818103600083015261538d81614fce565b9050919050565b600060208201905081810360008301526153ad81614ff1565b9050919050565b600060208201905081810360008301526153cd81615037565b9050919050565b600060208201905081810360008301526153ed8161505a565b9050919050565b6000602082019050818103600083015261540d8161507d565b9050919050565b6000602082019050818103600083015261542d816150a0565b9050919050565b6000602082019050818103600083015261544d816150c3565b9050919050565b600060208201905061546960008301846150e6565b92915050565b600061547961548a565b905061548582826157ed565b919050565b6000604051905090565b600067ffffffffffffffff8211156154af576154ae615978565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156154db576154da615978565b5b6154e4826159a7565b9050602081019050919050565b600067ffffffffffffffff82111561550c5761550b615978565b5b615515826159a7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061559082615721565b915061559b83615721565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155d0576155cf6158bc565b5b828201905092915050565b60006155e682615721565b91506155f183615721565b925082615601576156006158eb565b5b828204905092915050565b600061561782615721565b915061562283615721565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561565b5761565a6158bc565b5b828202905092915050565b600061567182615721565b915061567c83615721565b92508282101561568f5761568e6158bc565b5b828203905092915050565b60006156a582615701565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506156fc82615ca1565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b600061574e82615755565b9050919050565b600061576082615701565b9050919050565b6000615772826156ee565b9050919050565b82818337600083830152505050565b60005b838110156157a657808201518184015260208101905061578b565b838111156157b5576000848401525b50505050565b600060028204905060018216806157d357607f821691505b602082108114156157e7576157e6615949565b5b50919050565b6157f6826159a7565b810181811067ffffffffffffffff8211171561581557615814615978565b5b80604052505050565b600061582982615721565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585c5761585b6158bc565b5b600182019050919050565b600061587282615879565b9050919050565b6000615884826159b8565b9050919050565b600061589682615721565b91506158a183615721565b9250826158b1576158b06158eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75206e6565642052796f6b6f20746f6b656e730000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f7520616c726561647920636c61696d656400000000000000000000000000600082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f63616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f596f7520616c7265616479206d696e74656420796f757220746f6b656e000000600082015250565b7f5075626c69632073616c65206f66660000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60038110615cb257615cb161591a565b5b50565b615cbe8161569a565b8114615cc957600080fd5b50565b615cd5816156ac565b8114615ce057600080fd5b50565b615cec816156b8565b8114615cf757600080fd5b50565b615d03816156c2565b8114615d0e57600080fd5b50565b60038110615d1e57600080fd5b50565b615d2a81615721565b8114615d3557600080fd5b50565b615d418161572b565b8114615d4c57600080fd5b5056fea2646970667358221220f1d3c927c39a5369c39b4fd574109f84f667cd3c9201cafc396d0ed840bfbe6664736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d653338706d7868336f5764375747536f6365394332724a4469377a6e6e53773853386a4a5853566a3743544e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000012697066733a2f2f636f6e74726163745572690000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://Qme38pmxh3oWd7WGSoce9C2rJDi7znnSw8S8jJXSVj7CTN/
Arg [1] : _initContractURI (string): ipfs://contractUri
Arg [2] : _royaltyFees (uint96): 200
Arg [3] : _initCost (uint256): 200

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d653338706d7868336f5764375747536f6365394332724a
Arg [6] : 4469377a6e6e53773853386a4a5853566a3743544e2f00000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 697066733a2f2f636f6e74726163745572690000000000000000000000000000


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.