ETH Price: $3,488.89 (+0.24%)
Gas: 6 Gwei

Token

Fangmas Cards (FGCRDS)
 

Overview

Max Total Supply

192 FGCRDS

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
3122y342e.eth
Balance
1 FGCRDS
0x4b02025dc9f43fa0aa52b7e5dfb8f695f4705c25
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:
FGCRDS

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract FGCRDS is ERC721A, Ownable {
    using Strings for uint256;

    mapping(address => uint256) public Claimed;

    string public uriPrefix = "https://apifangmas.awoostudios.com/api/metadata/token/";
    string public uriSuffix = "";

    // public mint cost, max supply , max amount
    uint256 public Cost = 0.025 ether;
    uint256 public MaxMintAmount = 5;

    // max supply
    uint256 public maxSupply = 2412;

    bool public SaleEnabled = false;

    address public royaltyAddress = address(0);
    uint256 public royaltyPercent = 5;

    constructor() ERC721A("Fangmas Cards", "FGCRDS") {}

    // Makes sure the mint amount is valid and not greater than the max supply.
    modifier MintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount <= MaxMintAmount,
            "That amount is higher then publicMaxMintAmount"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Public Mint sold out already"
        );
        _;
    }

    modifier PriceCompliance(uint256 _mintAmount) {
        require(
            msg.value >= Cost * _mintAmount,
            "You didn't send enough ETH to mint"
        );
        _;
    }

    /*
              _       __ 
   ____ ___  (_)___  / /_
  / __ `__ \/ / __ \/ __/
 / / / / / / / / / / /_  
/_/ /_/ /_/_/_/ /_/\__/  
  */

    function mint(uint256 _mintAmount)
        public
        payable
        MintCompliance(_mintAmount)
        PriceCompliance(_mintAmount)
    {
        require(
            SaleEnabled,
            "Public sale is not enabled yet. Check back later!"
        );
        /* require(
            (Claimed[msg.sender] + _mintAmount) <= MaxMintAmount,
            "You have already claimed what you are allowed to!"
        ); */
        Claimed[msg.sender] += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    // Internal function to airdrop multiple tokens to multiple wallets.
    function mintForAddresses(uint256 _mintAmount, address[] memory _receivers)
        public
        onlyOwner
    {
        require(
            totalSupply() + _mintAmount * _receivers.length <= maxSupply,
            "Is over supply"
        );
        require(_mintAmount > 0, "Mint amount must be greater than 0");
        for (uint256 i = 0; i < _receivers.length; i++) {
            _safeMint(_receivers[i], _mintAmount);
        }
    }

    /*
                __  __                
   ________  / /_/ /____  __________
  / ___/ _ \/ __/ __/ _ \/ ___/ ___/
 (__  )  __/ /_/ /_/  __/ /  (__  ) 
/____/\___/\__/\__/\___/_/  /____/        
  */

    function setCost(uint256 _cost) public onlyOwner {
        Cost = _cost;
    }

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        MaxMintAmount = _maxMintAmount;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setSaleEnabled(bool _state) public onlyOwner {
        SaleEnabled = _state;
    }

    /*
           _ __  __        __                   
 _      __(_) /_/ /_  ____/ /________ __      __
| | /| / / / __/ __ \/ __  / ___/ __ `/ | /| / /
| |/ |/ / / /_/ / / / /_/ / /  / /_/ /| |/ |/ / 
|__/|__/_/\__/_/ /_/\__,_/_/   \__,_/ |__/|__/  
  */

    // Used in case the contract receives funds.
    function withdraw() public onlyOwner {
        // This will transfer the remaining contract balance to the owner.
        // =============================================================================
        bool os = payable(address(0x3c2c45276Dc3A8f0dd7Eef4856570aE5C23Fe9b1)).send(address(this).balance);
        require(os, "Transfer failed.");
        // =============================================================================
    }

    /*
                               _     __         
  ____ _   _____  __________(_)___/ /__  _____
 / __ \ | / / _ \/ ___/ ___/ / __  / _ \/ ___/
/ /_/ / |/ /  __/ /  / /  / / /_/ /  __(__  ) 
\____/|___/\___/_/  /_/  /_/\__,_/\___/____/  
  */

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

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

    // ERC721A baseURI override
    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

    // ======== Royalties =========

    function setRoyaltyReceiver(address royaltyReceiver) public onlyOwner {
        royaltyAddress = royaltyReceiver;
    }

    function setRoyaltyPercentage(uint256 royaltyPercentage) public onlyOwner {
        royaltyPercent = royaltyPercentage;
    }
}

File 2 of 17 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import {DefaultOperatorFilterer} from "./OperatorFilter/DefaultOperatorFilterer.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable,  DefaultOperatorFilterer {
    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 variables (e.g. number preSale minted). 
        // Please pack into 64 bits.
        uint64 aux;
    }

    uint256 internal currentIndex = 0;

    uint256 internal totalBurned = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev Skips the zero index.
     * This method must be called before any mints (e.g. in the consturctor).
     */
    function _initOneIndexed() internal {
        require(!_exists(0), "ERC721A: 0 index already occupied.");
        currentIndex = 1;
        totalBurned = 1;
        _ownerships[0].burned = true;
    }

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

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

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

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

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

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

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

    function _getAux(address owner) internal view returns (uint64) {
        require(owner != address(0), 'ERC721A: aux query for the zero address');
        return _addressData[owner].aux;
    }

    function _setAux(address owner, uint64 aux) internal {
        require(owner != address(0), 'ERC721A: aux query for the zero address');
        _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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override onlyAllowedOperator(from) {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex && !_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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater than 0');

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

        _addressData[to].balance += uint64(quantity);
        _addressData[to].numberMinted += uint64(quantity);

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

        uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

        // Keep track of who burnt the token, and when is it burned.
        _ownerships[tokenId].addr = prevOwnership.addr;
        _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
        _ownerships[tokenId].burned = true; 

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        totalBurned++;
    }

    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _burn(tokenId);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 17 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 7 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 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 9 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 11 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 15 of 17 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

File 16 of 17 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 17 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"","type":"address"}],"name":"Claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"mintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercent","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyPercentage","type":"uint256"}],"name":"setRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyReceiver","type":"address"}],"name":"setRoyaltyReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260008055600060015560405180606001604052806036815260200162005e0a60369139600a90805190602001906200003e9291906200048f565b5060405180602001604052806000815250600b9080519060200190620000669291906200048f565b506658d15e17628000600c556005600d5561096c600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506005601055348015620000ec57600080fd5b506040518060400160405280600d81526020017f46616e676d6173204361726473000000000000000000000000000000000000008152506040518060400160405280600681526020017f4647435244530000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003655780156200022b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001f192919062000584565b600060405180830381600087803b1580156200020c57600080fd5b505af115801562000221573d6000803e3d6000fd5b5050505062000364565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002ab92919062000584565b600060405180830381600087803b158015620002c657600080fd5b505af1158015620002db573d6000803e3d6000fd5b5050505062000363565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200032e9190620005b1565b600060405180830381600087803b1580156200034957600080fd5b505af11580156200035e573d6000803e3d6000fd5b505050505b5b5b505081600290805190602001906200037f9291906200048f565b508060039080519060200190620003989291906200048f565b505050620003bb620003af620003c160201b60201c565b620003c960201b60201c565b62000632565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200049d90620005fd565b90600052602060002090601f016020900481019282620004c157600085556200050d565b82601f10620004dc57805160ff19168380011785556200050d565b828001600101855582156200050d579182015b828111156200050c578251825591602001919060010190620004ef565b5b5090506200051c919062000520565b5090565b5b808211156200053b57600081600090555060010162000521565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200056c826200053f565b9050919050565b6200057e816200055f565b82525050565b60006040820190506200059b600083018562000573565b620005aa602083018462000573565b9392505050565b6000602082019050620005c8600083018462000573565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061657607f821691505b6020821081036200062c576200062b620005ce565b5b50919050565b6157c880620006426000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd14610855578063caeeffdb14610892578063d5abeb01146108bd578063e985e9c5146108e8578063f2fde38b14610925578063f63c533c1461094e57610246565b8063a0712d681461077f578063a22cb4651461079b578063ad2f852a146107c4578063b449c24d146107ef578063b88d4fde1461082c57610246565b8063858b61bb116100fd578063858b61bb146106aa5780638da5cb5b146106d55780638dc251e31461070057806395d89b41146107295780639f67756d1461075457610246565b80636352211e146105c75780636f8b44b01461060457806370a082311461062d578063715018a61461066a5780637ec4a6591461068157610246565b80633b6714f8116101c757806344a0d68a1161018b57806344a0d68a146104e25780634f6ccce71461050b5780635503a0e81461054857806361ba27da1461057357806362b99ad41461059c57610246565b80633b6714f8146104255780633ccfd60b1461044e57806341f434341461046557806342842e0e1461049057806342966c68146104b957610246565b806316ba10e01161020e57806316ba10e01461034257806318160ddd1461036b57806323b872dd146103965780632f745c59146103bf5780633020a18e146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063088a4ed0146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613bbf565b610979565b60405161027f9190613c07565b60405180910390f35b34801561029457600080fd5b5061029d610ac3565b6040516102aa9190613cbb565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613d13565b610b55565b6040516102e79190613d81565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613d13565b610bda565b005b34801561032557600080fd5b50610340600480360381019061033b9190613dc8565b610bec565b005b34801561034e57600080fd5b5061036960048036038101906103649190613f3d565b610f4d565b005b34801561037757600080fd5b50610380610f6f565b60405161038d9190613f95565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613fb0565b610f86565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613dc8565b6110d6565b6040516103f39190613f95565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e919061402f565b6112f6565b005b34801561043157600080fd5b5061044c60048036038101906104479190614124565b61131b565b005b34801561045a57600080fd5b50610463611411565b005b34801561047157600080fd5b5061047a6114a9565b60405161048791906141df565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613fb0565b6114bb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613d13565b61162b565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613d13565b611725565b005b34801561051757600080fd5b50610532600480360381019061052d9190613d13565b611737565b60405161053f9190613f95565b60405180910390f35b34801561055457600080fd5b5061055d61189d565b60405161056a9190613cbb565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613d13565b61192b565b005b3480156105a857600080fd5b506105b161193d565b6040516105be9190613cbb565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613d13565b6119cb565b6040516105fb9190613d81565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613d13565b6119e1565b005b34801561063957600080fd5b50610654600480360381019061064f91906141fa565b6119f3565b6040516106619190613f95565b60405180910390f35b34801561067657600080fd5b5061067f611acb565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613f3d565b611adf565b005b3480156106b657600080fd5b506106bf611b01565b6040516106cc9190613c07565b60405180910390f35b3480156106e157600080fd5b506106ea611b14565b6040516106f79190613d81565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906141fa565b611b3e565b005b34801561073557600080fd5b5061073e611b8a565b60405161074b9190613cbb565b60405180910390f35b34801561076057600080fd5b50610769611c1c565b6040516107769190613f95565b60405180910390f35b61079960048036038101906107949190613d13565b611c22565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190614227565b611dc4565b005b3480156107d057600080fd5b506107d96121f5565b6040516107e69190613d81565b60405180910390f35b3480156107fb57600080fd5b50610816600480360381019061081191906141fa565b61221b565b6040516108239190613f95565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190614308565b612233565b005b34801561086157600080fd5b5061087c60048036038101906108779190613d13565b61241a565b6040516108899190613cbb565b60405180910390f35b34801561089e57600080fd5b506108a76124c4565b6040516108b49190613f95565b60405180910390f35b3480156108c957600080fd5b506108d26124ca565b6040516108df9190613f95565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a919061438b565b6124d0565b60405161091c9190613c07565b60405180910390f35b34801561093157600080fd5b5061094c600480360381019061094791906141fa565b612564565b005b34801561095a57600080fd5b506109636125e7565b6040516109709190613f95565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aac57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abc5750610abb826125ed565b5b9050919050565b606060028054610ad2906143fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe906143fa565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b6000610b6082612657565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061449d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610be2612691565b80600d8190555050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e33573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d67576000610c59836119cb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc09061452f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce861270f565b73ffffffffffffffffffffffffffffffffffffffff161480610d175750610d1681610d1161270f565b6124d0565b5b610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d906145c1565b60405180910390fd5b610d61848483612717565b50610f48565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610db09291906145e1565b602060405180830381865afa158015610dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df1919061461f565b610e3257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e299190613d81565b60405180910390fd5b5b6000610e3e836119cb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061452f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ecd61270f565b73ffffffffffffffffffffffffffffffffffffffff161480610efc5750610efb81610ef661270f565b6124d0565b5b610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f32906145c1565b60405180910390fd5b610f46848483612717565b505b505050565b610f55612691565b80600b9080519060200190610f6b929190613a6d565b5050565b6000600154600054610f81919061467b565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110c4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ff857610ff38484846127c9565b6110d0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110419291906145e1565b602060405180830381865afa15801561105e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611082919061461f565b6110c357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110ba9190613d81565b60405180910390fd5b5b6110cf8484846127c9565b5b50505050565b60006110e1836119f3565b8210611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990614721565b60405180910390fd5b60008054905060008060005b838110156112b4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461123b57806000015192505b80604001511561124a57600092505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112a0578684036112915781955050505050506112f0565b838061129c90614741565b9450505b5080806112ac90614741565b91505061112e565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906147fb565b60405180910390fd5b92915050565b6112fe612691565b80600f60006101000a81548160ff02191690831515021790555050565b611323612691565b600e54815183611333919061481b565b61133b610f6f565b6113459190614875565b1115611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90614917565b60405180910390fd5b600082116113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906149a9565b60405180910390fd5b60005b815181101561140c576113f98282815181106113eb576113ea6149c9565b5b602002602001015184612ce0565b808061140490614741565b9150506113cc565b505050565b611419612691565b6000733c2c45276dc3a8f0dd7eef4856570ae5c23fe9b173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90614a44565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611609573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d5761153884848460405180602001604052806000815250612233565b611625565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115869291906145e1565b602060405180830381865afa1580156115a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c7919061461f565b61160857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115ff9190613d81565b60405180910390fd5b5b61162484848460405180602001604052806000815250612233565b5b50505050565b600061163682612cfe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661165d61270f565b73ffffffffffffffffffffffffffffffffffffffff1614806116b9575061168261270f565b73ffffffffffffffffffffffffffffffffffffffff166116a184610b55565b73ffffffffffffffffffffffffffffffffffffffff16145b806116d557506116d482600001516116cf61270f565b6124d0565b5b905080611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90614ad6565b60405180910390fd5b61172083612e84565b505050565b61172d612691565b80600c8190555050565b60008060005490506000805b8281101561184f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161183b5785830361182c5781945050505050611898565b828061183790614741565b9350505b50808061184790614741565b915050611743565b506000611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890614b68565b60405180910390fd5b6000925050505b919050565b600b80546118aa906143fa565b80601f01602080910402602001604051908101604052809291908181526020018280546118d6906143fa565b80156119235780601f106118f857610100808354040283529160200191611923565b820191906000526020600020905b81548152906001019060200180831161190657829003601f168201915b505050505081565b611933612691565b8060108190555050565b600a805461194a906143fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611976906143fa565b80156119c35780601f10611998576101008083540402835291602001916119c3565b820191906000526020600020905b8154815290600101906020018083116119a657829003601f168201915b505050505081565b60006119d682612cfe565b600001519050919050565b6119e9612691565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90614bfa565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ad3612691565b611add600061323a565b565b611ae7612691565b80600a9080519060200190611afd929190613a6d565b5050565b600f60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b46612691565b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054611b99906143fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc5906143fa565b8015611c125780601f10611be757610100808354040283529160200191611c12565b820191906000526020600020905b815481529060010190602001808311611bf557829003601f168201915b5050505050905090565b60105481565b80600d54811115611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614c8c565b60405180910390fd5b600e5481611c74610f6f565b611c7e9190614875565b1115611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690614cf8565b60405180910390fd5b8180600c54611cce919061481b565b341015611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614d8a565b60405180910390fd5b600f60009054906101000a900460ff16611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690614e1c565b60405180910390fd5b82600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dae9190614875565b92505081905550611dbf3384612ce0565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612073573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fa757611e2e61270f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9290614e88565b60405180910390fd5b8160076000611ea861270f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff16611f5561270f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3184604051611f9a9190613c07565b60405180910390a36121f0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611ff09291906145e1565b602060405180830381865afa15801561200d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612031919061461f565b61207257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120699190613d81565b60405180910390fd5b5b61207b61270f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df90614e88565b60405180910390fd5b81600760006120f561270f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff166121a261270f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31846040516121e79190613c07565b60405180910390a35b505050565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915090505481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156123bc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122f0576122a08585856127c9565b6122ac85858585613300565b6122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e290614f1a565b60405180910390fd5b612413565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016123399291906145e1565b602060405180830381865afa158015612356573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237a919061461f565b6123bb57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123b29190613d81565b60405180910390fd5b5b6123c78585856127c9565b6123d385858585613300565b612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990614f1a565b60405180910390fd5b5b5050505050565b606061242582612657565b612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b90614fac565b60405180910390fd5b600061246e613487565b9050600081511161248e57604051806020016040528060008152506124bc565b8061249884613519565b600b6040516020016124ac9392919061509c565b6040516020818303038152906040525b915050919050565b600d5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61256c612691565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d29061513f565b60405180910390fd5b6125e48161323a565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561268a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b61269961270f565b73ffffffffffffffffffffffffffffffffffffffff166126b7611b14565b73ffffffffffffffffffffffffffffffffffffffff161461270d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612704906151ab565b60405180910390fd5b565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127d482612cfe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127fb61270f565b73ffffffffffffffffffffffffffffffffffffffff161480612857575061282061270f565b73ffffffffffffffffffffffffffffffffffffffff1661283f84610b55565b73ffffffffffffffffffffffffffffffffffffffff16145b806128735750612872826000015161286d61270f565b6124d0565b5b9050806128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac9061523d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e906152cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d90615361565b60405180910390fd5b6129a38585856001613679565b6129b36000848460000151612717565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184612b5a9190614875565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612c7057612bcf81612657565b15612c6f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cd8868686600161367f565b505050505050565b612cfa828260405180602001604052806000815250613685565b5050565b612d06613af3565b612d0f82612657565b612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d45906153f3565b60405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614158015612e5c57508060400151155b15612e6b578092505050612e7f565b508080612e7790615413565b915050612d54565b919050565b6000612e8f82612cfe565b9050612ea381600001516000846001613679565b612eb36000838360000151612717565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff02191690831515021790555060006001836130959190614875565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036131ab5761310a81612657565b156131aa5781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b82600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461321d8260000151600085600161367f565b6001600081548092919061323090614741565b9190505550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133218473ffffffffffffffffffffffffffffffffffffffff16613697565b1561347a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261334a61270f565b8786866040518563ffffffff1660e01b815260040161336c9493929190615491565b6020604051808303816000875af19250505080156133a857506040513d601f19601f820116820180604052508101906133a591906154f2565b60015b61342a573d80600081146133d8576040519150601f19603f3d011682016040523d82523d6000602084013e6133dd565b606091505b506000815103613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341990614f1a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061347f565b600190505b949350505050565b6060600a8054613496906143fa565b80601f01602080910402602001604051908101604052809291908181526020018280546134c2906143fa565b801561350f5780601f106134e45761010080835404028352916020019161350f565b820191906000526020600020905b8154815290600101906020018083116134f257829003601f168201915b5050505050905090565b606060008203613560576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613674565b600082905060005b6000821461359257808061357b90614741565b915050600a8261358b919061554e565b9150613568565b60008167ffffffffffffffff8111156135ae576135ad613e12565b5b6040519080825280601f01601f1916602001820160405280156135e05781602001600182028036833780820191505090505b5090505b6000851461366d576001826135f9919061467b565b9150600a85613608919061557f565b60306136149190614875565b60f81b81838151811061362a576136296149c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613666919061554e565b94506135e4565b8093505050505b919050565b50505050565b50505050565b61369283838360016136ba565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361372f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372690615622565b60405180910390fd5b61373881612657565b15613778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376f9061568e565b60405180910390fd5b600084116137bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b290615720565b60405180910390fd5b6137c86000868387613679565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff1661382d9190615754565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff166138b89190615754565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a5057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a2f576139ef6000888488613300565b613a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2590614f1a565b60405180910390fd5b5b8180613a3a90614741565b9250508080613a4890614741565b915050613978565b5080600081905550613a65600087848861367f565b505050505050565b828054613a79906143fa565b90600052602060002090601f016020900481019282613a9b5760008555613ae2565b82601f10613ab457805160ff1916838001178555613ae2565b82800160010185558215613ae2579182015b82811115613ae1578251825591602001919060010190613ac6565b5b509050613aef9190613b36565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b4f576000816000905550600101613b37565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b9c81613b67565b8114613ba757600080fd5b50565b600081359050613bb981613b93565b92915050565b600060208284031215613bd557613bd4613b5d565b5b6000613be384828501613baa565b91505092915050565b60008115159050919050565b613c0181613bec565b82525050565b6000602082019050613c1c6000830184613bf8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c5c578082015181840152602081019050613c41565b83811115613c6b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c8d82613c22565b613c978185613c2d565b9350613ca7818560208601613c3e565b613cb081613c71565b840191505092915050565b60006020820190508181036000830152613cd58184613c82565b905092915050565b6000819050919050565b613cf081613cdd565b8114613cfb57600080fd5b50565b600081359050613d0d81613ce7565b92915050565b600060208284031215613d2957613d28613b5d565b5b6000613d3784828501613cfe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d6b82613d40565b9050919050565b613d7b81613d60565b82525050565b6000602082019050613d966000830184613d72565b92915050565b613da581613d60565b8114613db057600080fd5b50565b600081359050613dc281613d9c565b92915050565b60008060408385031215613ddf57613dde613b5d565b5b6000613ded85828601613db3565b9250506020613dfe85828601613cfe565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e4a82613c71565b810181811067ffffffffffffffff82111715613e6957613e68613e12565b5b80604052505050565b6000613e7c613b53565b9050613e888282613e41565b919050565b600067ffffffffffffffff821115613ea857613ea7613e12565b5b613eb182613c71565b9050602081019050919050565b82818337600083830152505050565b6000613ee0613edb84613e8d565b613e72565b905082815260208101848484011115613efc57613efb613e0d565b5b613f07848285613ebe565b509392505050565b600082601f830112613f2457613f23613e08565b5b8135613f34848260208601613ecd565b91505092915050565b600060208284031215613f5357613f52613b5d565b5b600082013567ffffffffffffffff811115613f7157613f70613b62565b5b613f7d84828501613f0f565b91505092915050565b613f8f81613cdd565b82525050565b6000602082019050613faa6000830184613f86565b92915050565b600080600060608486031215613fc957613fc8613b5d565b5b6000613fd786828701613db3565b9350506020613fe886828701613db3565b9250506040613ff986828701613cfe565b9150509250925092565b61400c81613bec565b811461401757600080fd5b50565b60008135905061402981614003565b92915050565b60006020828403121561404557614044613b5d565b5b60006140538482850161401a565b91505092915050565b600067ffffffffffffffff82111561407757614076613e12565b5b602082029050602081019050919050565b600080fd5b60006140a061409b8461405c565b613e72565b905080838252602082019050602084028301858111156140c3576140c2614088565b5b835b818110156140ec57806140d88882613db3565b8452602084019350506020810190506140c5565b5050509392505050565b600082601f83011261410b5761410a613e08565b5b813561411b84826020860161408d565b91505092915050565b6000806040838503121561413b5761413a613b5d565b5b600061414985828601613cfe565b925050602083013567ffffffffffffffff81111561416a57614169613b62565b5b614176858286016140f6565b9150509250929050565b6000819050919050565b60006141a56141a061419b84613d40565b614180565b613d40565b9050919050565b60006141b78261418a565b9050919050565b60006141c9826141ac565b9050919050565b6141d9816141be565b82525050565b60006020820190506141f460008301846141d0565b92915050565b6000602082840312156142105761420f613b5d565b5b600061421e84828501613db3565b91505092915050565b6000806040838503121561423e5761423d613b5d565b5b600061424c85828601613db3565b925050602061425d8582860161401a565b9150509250929050565b600067ffffffffffffffff82111561428257614281613e12565b5b61428b82613c71565b9050602081019050919050565b60006142ab6142a684614267565b613e72565b9050828152602081018484840111156142c7576142c6613e0d565b5b6142d2848285613ebe565b509392505050565b600082601f8301126142ef576142ee613e08565b5b81356142ff848260208601614298565b91505092915050565b6000806000806080858703121561432257614321613b5d565b5b600061433087828801613db3565b945050602061434187828801613db3565b935050604061435287828801613cfe565b925050606085013567ffffffffffffffff81111561437357614372613b62565b5b61437f878288016142da565b91505092959194509250565b600080604083850312156143a2576143a1613b5d565b5b60006143b085828601613db3565b92505060206143c185828601613db3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441257607f821691505b602082108103614425576144246143cb565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614487602d83613c2d565b91506144928261442b565b604082019050919050565b600060208201905081810360008301526144b68161447a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614519602283613c2d565b9150614524826144bd565b604082019050919050565b600060208201905081810360008301526145488161450c565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006145ab603983613c2d565b91506145b68261454f565b604082019050919050565b600060208201905081810360008301526145da8161459e565b9050919050565b60006040820190506145f66000830185613d72565b6146036020830184613d72565b9392505050565b60008151905061461981614003565b92915050565b60006020828403121561463557614634613b5d565b5b60006146438482850161460a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468682613cdd565b915061469183613cdd565b9250828210156146a4576146a361464c565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061470b602283613c2d565b9150614716826146af565b604082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b600061474c82613cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361477e5761477d61464c565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006147e5602e83613c2d565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b600061482682613cdd565b915061483183613cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561486a5761486961464c565b5b828202905092915050565b600061488082613cdd565b915061488b83613cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c0576148bf61464c565b5b828201905092915050565b7f4973206f76657220737570706c79000000000000000000000000000000000000600082015250565b6000614901600e83613c2d565b915061490c826148cb565b602082019050919050565b60006020820190508181036000830152614930816148f4565b9050919050565b7f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e60008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614993602283613c2d565b915061499e82614937565b604082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614a2e601083613c2d565b9150614a39826149f8565b602082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b7f455243373231413a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614ac0602983613c2d565b9150614acb82614a64565b604082019050919050565b60006020820190508181036000830152614aef81614ab3565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b52602383613c2d565b9150614b5d82614af6565b604082019050919050565b60006020820190508181036000830152614b8181614b45565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614be4602b83613c2d565b9150614bef82614b88565b604082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b7f5468617420616d6f756e7420697320686967686572207468656e207075626c6960008201527f634d61784d696e74416d6f756e74000000000000000000000000000000000000602082015250565b6000614c76602e83613c2d565b9150614c8182614c1a565b604082019050919050565b60006020820190508181036000830152614ca581614c69565b9050919050565b7f5075626c6963204d696e7420736f6c64206f757420616c726561647900000000600082015250565b6000614ce2601c83613c2d565b9150614ced82614cac565b602082019050919050565b60006020820190508181036000830152614d1181614cd5565b9050919050565b7f596f75206469646e27742073656e6420656e6f7567682045544820746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d74602283613c2d565b9150614d7f82614d18565b604082019050919050565b60006020820190508181036000830152614da381614d67565b9050919050565b7f5075626c69632073616c65206973206e6f7420656e61626c6564207965742e2060008201527f436865636b206261636b206c6174657221000000000000000000000000000000602082015250565b6000614e06603183613c2d565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614e72601a83613c2d565b9150614e7d82614e3c565b602082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614f04603383613c2d565b9150614f0f82614ea8565b604082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f96602f83613c2d565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b600081905092915050565b6000614fe282613c22565b614fec8185614fcc565b9350614ffc818560208601613c3e565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461502a816143fa565b6150348186614fcc565b9450600182166000811461504f576001811461506057615093565b60ff19831686528186019350615093565b61506985615008565b60005b8381101561508b5781548189015260018201915060208101905061506c565b838801955050505b50505092915050565b60006150a88286614fd7565b91506150b48285614fd7565b91506150c0828461501d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615129602683613c2d565b9150615134826150cd565b604082019050919050565b600060208201905081810360008301526151588161511c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615195602083613c2d565b91506151a08261515f565b602082019050919050565b600060208201905081810360008301526151c481615188565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615227603283613c2d565b9150615232826151cb565b604082019050919050565b600060208201905081810360008301526152568161521a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006152b9602683613c2d565b91506152c48261525d565b604082019050919050565b600060208201905081810360008301526152e8816152ac565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061534b602583613c2d565b9150615356826152ef565b604082019050919050565b6000602082019050818103600083015261537a8161533e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006153dd602a83613c2d565b91506153e882615381565b604082019050919050565b6000602082019050818103600083015261540c816153d0565b9050919050565b600061541e82613cdd565b9150600082036154315761543061464c565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006154638261543c565b61546d8185615447565b935061547d818560208601613c3e565b61548681613c71565b840191505092915050565b60006080820190506154a66000830187613d72565b6154b36020830186613d72565b6154c06040830185613f86565b81810360608301526154d28184615458565b905095945050505050565b6000815190506154ec81613b93565b92915050565b60006020828403121561550857615507613b5d565b5b6000615516848285016154dd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061555982613cdd565b915061556483613cdd565b9250826155745761557361551f565b5b828204905092915050565b600061558a82613cdd565b915061559583613cdd565b9250826155a5576155a461551f565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061560c602183613c2d565b9150615617826155b0565b604082019050919050565b6000602082019050818103600083015261563b816155ff565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615678601d83613c2d565b915061568382615642565b602082019050919050565b600060208201905081810360008301526156a78161566b565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600061570a602883613c2d565b9150615715826156ae565b604082019050919050565b60006020820190508181036000830152615739816156fd565b9050919050565b600067ffffffffffffffff82169050919050565b600061575f82615740565b915061576a83615740565b92508267ffffffffffffffff038211156157875761578661464c565b5b82820190509291505056fea26469706673582212207bb2c6a6d0c8e3ae8ef23cbb3a78d79ace61addb48cca78367d8dd18b668d08864736f6c634300080d003368747470733a2f2f61706966616e676d61732e61776f6f73747564696f732e636f6d2f6170692f6d657461646174612f746f6b656e2f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636352211e11610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd14610855578063caeeffdb14610892578063d5abeb01146108bd578063e985e9c5146108e8578063f2fde38b14610925578063f63c533c1461094e57610246565b8063a0712d681461077f578063a22cb4651461079b578063ad2f852a146107c4578063b449c24d146107ef578063b88d4fde1461082c57610246565b8063858b61bb116100fd578063858b61bb146106aa5780638da5cb5b146106d55780638dc251e31461070057806395d89b41146107295780639f67756d1461075457610246565b80636352211e146105c75780636f8b44b01461060457806370a082311461062d578063715018a61461066a5780637ec4a6591461068157610246565b80633b6714f8116101c757806344a0d68a1161018b57806344a0d68a146104e25780634f6ccce71461050b5780635503a0e81461054857806361ba27da1461057357806362b99ad41461059c57610246565b80633b6714f8146104255780633ccfd60b1461044e57806341f434341461046557806342842e0e1461049057806342966c68146104b957610246565b806316ba10e01161020e57806316ba10e01461034257806318160ddd1461036b57806323b872dd146103965780632f745c59146103bf5780633020a18e146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063088a4ed0146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613bbf565b610979565b60405161027f9190613c07565b60405180910390f35b34801561029457600080fd5b5061029d610ac3565b6040516102aa9190613cbb565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613d13565b610b55565b6040516102e79190613d81565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613d13565b610bda565b005b34801561032557600080fd5b50610340600480360381019061033b9190613dc8565b610bec565b005b34801561034e57600080fd5b5061036960048036038101906103649190613f3d565b610f4d565b005b34801561037757600080fd5b50610380610f6f565b60405161038d9190613f95565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613fb0565b610f86565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613dc8565b6110d6565b6040516103f39190613f95565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e919061402f565b6112f6565b005b34801561043157600080fd5b5061044c60048036038101906104479190614124565b61131b565b005b34801561045a57600080fd5b50610463611411565b005b34801561047157600080fd5b5061047a6114a9565b60405161048791906141df565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613fb0565b6114bb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613d13565b61162b565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613d13565b611725565b005b34801561051757600080fd5b50610532600480360381019061052d9190613d13565b611737565b60405161053f9190613f95565b60405180910390f35b34801561055457600080fd5b5061055d61189d565b60405161056a9190613cbb565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613d13565b61192b565b005b3480156105a857600080fd5b506105b161193d565b6040516105be9190613cbb565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613d13565b6119cb565b6040516105fb9190613d81565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613d13565b6119e1565b005b34801561063957600080fd5b50610654600480360381019061064f91906141fa565b6119f3565b6040516106619190613f95565b60405180910390f35b34801561067657600080fd5b5061067f611acb565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613f3d565b611adf565b005b3480156106b657600080fd5b506106bf611b01565b6040516106cc9190613c07565b60405180910390f35b3480156106e157600080fd5b506106ea611b14565b6040516106f79190613d81565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906141fa565b611b3e565b005b34801561073557600080fd5b5061073e611b8a565b60405161074b9190613cbb565b60405180910390f35b34801561076057600080fd5b50610769611c1c565b6040516107769190613f95565b60405180910390f35b61079960048036038101906107949190613d13565b611c22565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190614227565b611dc4565b005b3480156107d057600080fd5b506107d96121f5565b6040516107e69190613d81565b60405180910390f35b3480156107fb57600080fd5b50610816600480360381019061081191906141fa565b61221b565b6040516108239190613f95565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190614308565b612233565b005b34801561086157600080fd5b5061087c60048036038101906108779190613d13565b61241a565b6040516108899190613cbb565b60405180910390f35b34801561089e57600080fd5b506108a76124c4565b6040516108b49190613f95565b60405180910390f35b3480156108c957600080fd5b506108d26124ca565b6040516108df9190613f95565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a919061438b565b6124d0565b60405161091c9190613c07565b60405180910390f35b34801561093157600080fd5b5061094c600480360381019061094791906141fa565b612564565b005b34801561095a57600080fd5b506109636125e7565b6040516109709190613f95565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aac57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abc5750610abb826125ed565b5b9050919050565b606060028054610ad2906143fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe906143fa565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b6000610b6082612657565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061449d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610be2612691565b80600d8190555050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e33573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d67576000610c59836119cb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc09061452f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce861270f565b73ffffffffffffffffffffffffffffffffffffffff161480610d175750610d1681610d1161270f565b6124d0565b5b610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d906145c1565b60405180910390fd5b610d61848483612717565b50610f48565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610db09291906145e1565b602060405180830381865afa158015610dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df1919061461f565b610e3257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e299190613d81565b60405180910390fd5b5b6000610e3e836119cb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061452f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ecd61270f565b73ffffffffffffffffffffffffffffffffffffffff161480610efc5750610efb81610ef661270f565b6124d0565b5b610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f32906145c1565b60405180910390fd5b610f46848483612717565b505b505050565b610f55612691565b80600b9080519060200190610f6b929190613a6d565b5050565b6000600154600054610f81919061467b565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110c4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ff857610ff38484846127c9565b6110d0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110419291906145e1565b602060405180830381865afa15801561105e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611082919061461f565b6110c357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110ba9190613d81565b60405180910390fd5b5b6110cf8484846127c9565b5b50505050565b60006110e1836119f3565b8210611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990614721565b60405180910390fd5b60008054905060008060005b838110156112b4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461123b57806000015192505b80604001511561124a57600092505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112a0578684036112915781955050505050506112f0565b838061129c90614741565b9450505b5080806112ac90614741565b91505061112e565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906147fb565b60405180910390fd5b92915050565b6112fe612691565b80600f60006101000a81548160ff02191690831515021790555050565b611323612691565b600e54815183611333919061481b565b61133b610f6f565b6113459190614875565b1115611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90614917565b60405180910390fd5b600082116113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906149a9565b60405180910390fd5b60005b815181101561140c576113f98282815181106113eb576113ea6149c9565b5b602002602001015184612ce0565b808061140490614741565b9150506113cc565b505050565b611419612691565b6000733c2c45276dc3a8f0dd7eef4856570ae5c23fe9b173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90614a44565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611609573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d5761153884848460405180602001604052806000815250612233565b611625565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115869291906145e1565b602060405180830381865afa1580156115a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c7919061461f565b61160857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115ff9190613d81565b60405180910390fd5b5b61162484848460405180602001604052806000815250612233565b5b50505050565b600061163682612cfe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661165d61270f565b73ffffffffffffffffffffffffffffffffffffffff1614806116b9575061168261270f565b73ffffffffffffffffffffffffffffffffffffffff166116a184610b55565b73ffffffffffffffffffffffffffffffffffffffff16145b806116d557506116d482600001516116cf61270f565b6124d0565b5b905080611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90614ad6565b60405180910390fd5b61172083612e84565b505050565b61172d612691565b80600c8190555050565b60008060005490506000805b8281101561184f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161183b5785830361182c5781945050505050611898565b828061183790614741565b9350505b50808061184790614741565b915050611743565b506000611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890614b68565b60405180910390fd5b6000925050505b919050565b600b80546118aa906143fa565b80601f01602080910402602001604051908101604052809291908181526020018280546118d6906143fa565b80156119235780601f106118f857610100808354040283529160200191611923565b820191906000526020600020905b81548152906001019060200180831161190657829003601f168201915b505050505081565b611933612691565b8060108190555050565b600a805461194a906143fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611976906143fa565b80156119c35780601f10611998576101008083540402835291602001916119c3565b820191906000526020600020905b8154815290600101906020018083116119a657829003601f168201915b505050505081565b60006119d682612cfe565b600001519050919050565b6119e9612691565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90614bfa565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ad3612691565b611add600061323a565b565b611ae7612691565b80600a9080519060200190611afd929190613a6d565b5050565b600f60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b46612691565b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054611b99906143fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc5906143fa565b8015611c125780601f10611be757610100808354040283529160200191611c12565b820191906000526020600020905b815481529060010190602001808311611bf557829003601f168201915b5050505050905090565b60105481565b80600d54811115611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614c8c565b60405180910390fd5b600e5481611c74610f6f565b611c7e9190614875565b1115611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690614cf8565b60405180910390fd5b8180600c54611cce919061481b565b341015611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614d8a565b60405180910390fd5b600f60009054906101000a900460ff16611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690614e1c565b60405180910390fd5b82600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dae9190614875565b92505081905550611dbf3384612ce0565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612073573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fa757611e2e61270f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9290614e88565b60405180910390fd5b8160076000611ea861270f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff16611f5561270f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3184604051611f9a9190613c07565b60405180910390a36121f0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611ff09291906145e1565b602060405180830381865afa15801561200d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612031919061461f565b61207257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120699190613d81565b60405180910390fd5b5b61207b61270f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df90614e88565b60405180910390fd5b81600760006120f561270f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff166121a261270f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31846040516121e79190613c07565b60405180910390a35b505050565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915090505481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156123bc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122f0576122a08585856127c9565b6122ac85858585613300565b6122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e290614f1a565b60405180910390fd5b612413565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016123399291906145e1565b602060405180830381865afa158015612356573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237a919061461f565b6123bb57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123b29190613d81565b60405180910390fd5b5b6123c78585856127c9565b6123d385858585613300565b612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990614f1a565b60405180910390fd5b5b5050505050565b606061242582612657565b612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b90614fac565b60405180910390fd5b600061246e613487565b9050600081511161248e57604051806020016040528060008152506124bc565b8061249884613519565b600b6040516020016124ac9392919061509c565b6040516020818303038152906040525b915050919050565b600d5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61256c612691565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d29061513f565b60405180910390fd5b6125e48161323a565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561268a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b61269961270f565b73ffffffffffffffffffffffffffffffffffffffff166126b7611b14565b73ffffffffffffffffffffffffffffffffffffffff161461270d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612704906151ab565b60405180910390fd5b565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127d482612cfe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127fb61270f565b73ffffffffffffffffffffffffffffffffffffffff161480612857575061282061270f565b73ffffffffffffffffffffffffffffffffffffffff1661283f84610b55565b73ffffffffffffffffffffffffffffffffffffffff16145b806128735750612872826000015161286d61270f565b6124d0565b5b9050806128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac9061523d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e906152cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d90615361565b60405180910390fd5b6129a38585856001613679565b6129b36000848460000151612717565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184612b5a9190614875565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612c7057612bcf81612657565b15612c6f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cd8868686600161367f565b505050505050565b612cfa828260405180602001604052806000815250613685565b5050565b612d06613af3565b612d0f82612657565b612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d45906153f3565b60405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614158015612e5c57508060400151155b15612e6b578092505050612e7f565b508080612e7790615413565b915050612d54565b919050565b6000612e8f82612cfe565b9050612ea381600001516000846001613679565b612eb36000838360000151612717565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff02191690831515021790555060006001836130959190614875565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036131ab5761310a81612657565b156131aa5781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b82600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461321d8260000151600085600161367f565b6001600081548092919061323090614741565b9190505550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133218473ffffffffffffffffffffffffffffffffffffffff16613697565b1561347a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261334a61270f565b8786866040518563ffffffff1660e01b815260040161336c9493929190615491565b6020604051808303816000875af19250505080156133a857506040513d601f19601f820116820180604052508101906133a591906154f2565b60015b61342a573d80600081146133d8576040519150601f19603f3d011682016040523d82523d6000602084013e6133dd565b606091505b506000815103613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341990614f1a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061347f565b600190505b949350505050565b6060600a8054613496906143fa565b80601f01602080910402602001604051908101604052809291908181526020018280546134c2906143fa565b801561350f5780601f106134e45761010080835404028352916020019161350f565b820191906000526020600020905b8154815290600101906020018083116134f257829003601f168201915b5050505050905090565b606060008203613560576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613674565b600082905060005b6000821461359257808061357b90614741565b915050600a8261358b919061554e565b9150613568565b60008167ffffffffffffffff8111156135ae576135ad613e12565b5b6040519080825280601f01601f1916602001820160405280156135e05781602001600182028036833780820191505090505b5090505b6000851461366d576001826135f9919061467b565b9150600a85613608919061557f565b60306136149190614875565b60f81b81838151811061362a576136296149c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613666919061554e565b94506135e4565b8093505050505b919050565b50505050565b50505050565b61369283838360016136ba565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361372f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372690615622565b60405180910390fd5b61373881612657565b15613778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376f9061568e565b60405180910390fd5b600084116137bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b290615720565b60405180910390fd5b6137c86000868387613679565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff1661382d9190615754565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff166138b89190615754565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a5057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a2f576139ef6000888488613300565b613a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2590614f1a565b60405180910390fd5b5b8180613a3a90614741565b9250508080613a4890614741565b915050613978565b5080600081905550613a65600087848861367f565b505050505050565b828054613a79906143fa565b90600052602060002090601f016020900481019282613a9b5760008555613ae2565b82601f10613ab457805160ff1916838001178555613ae2565b82800160010185558215613ae2579182015b82811115613ae1578251825591602001919060010190613ac6565b5b509050613aef9190613b36565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b4f576000816000905550600101613b37565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b9c81613b67565b8114613ba757600080fd5b50565b600081359050613bb981613b93565b92915050565b600060208284031215613bd557613bd4613b5d565b5b6000613be384828501613baa565b91505092915050565b60008115159050919050565b613c0181613bec565b82525050565b6000602082019050613c1c6000830184613bf8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c5c578082015181840152602081019050613c41565b83811115613c6b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c8d82613c22565b613c978185613c2d565b9350613ca7818560208601613c3e565b613cb081613c71565b840191505092915050565b60006020820190508181036000830152613cd58184613c82565b905092915050565b6000819050919050565b613cf081613cdd565b8114613cfb57600080fd5b50565b600081359050613d0d81613ce7565b92915050565b600060208284031215613d2957613d28613b5d565b5b6000613d3784828501613cfe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d6b82613d40565b9050919050565b613d7b81613d60565b82525050565b6000602082019050613d966000830184613d72565b92915050565b613da581613d60565b8114613db057600080fd5b50565b600081359050613dc281613d9c565b92915050565b60008060408385031215613ddf57613dde613b5d565b5b6000613ded85828601613db3565b9250506020613dfe85828601613cfe565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e4a82613c71565b810181811067ffffffffffffffff82111715613e6957613e68613e12565b5b80604052505050565b6000613e7c613b53565b9050613e888282613e41565b919050565b600067ffffffffffffffff821115613ea857613ea7613e12565b5b613eb182613c71565b9050602081019050919050565b82818337600083830152505050565b6000613ee0613edb84613e8d565b613e72565b905082815260208101848484011115613efc57613efb613e0d565b5b613f07848285613ebe565b509392505050565b600082601f830112613f2457613f23613e08565b5b8135613f34848260208601613ecd565b91505092915050565b600060208284031215613f5357613f52613b5d565b5b600082013567ffffffffffffffff811115613f7157613f70613b62565b5b613f7d84828501613f0f565b91505092915050565b613f8f81613cdd565b82525050565b6000602082019050613faa6000830184613f86565b92915050565b600080600060608486031215613fc957613fc8613b5d565b5b6000613fd786828701613db3565b9350506020613fe886828701613db3565b9250506040613ff986828701613cfe565b9150509250925092565b61400c81613bec565b811461401757600080fd5b50565b60008135905061402981614003565b92915050565b60006020828403121561404557614044613b5d565b5b60006140538482850161401a565b91505092915050565b600067ffffffffffffffff82111561407757614076613e12565b5b602082029050602081019050919050565b600080fd5b60006140a061409b8461405c565b613e72565b905080838252602082019050602084028301858111156140c3576140c2614088565b5b835b818110156140ec57806140d88882613db3565b8452602084019350506020810190506140c5565b5050509392505050565b600082601f83011261410b5761410a613e08565b5b813561411b84826020860161408d565b91505092915050565b6000806040838503121561413b5761413a613b5d565b5b600061414985828601613cfe565b925050602083013567ffffffffffffffff81111561416a57614169613b62565b5b614176858286016140f6565b9150509250929050565b6000819050919050565b60006141a56141a061419b84613d40565b614180565b613d40565b9050919050565b60006141b78261418a565b9050919050565b60006141c9826141ac565b9050919050565b6141d9816141be565b82525050565b60006020820190506141f460008301846141d0565b92915050565b6000602082840312156142105761420f613b5d565b5b600061421e84828501613db3565b91505092915050565b6000806040838503121561423e5761423d613b5d565b5b600061424c85828601613db3565b925050602061425d8582860161401a565b9150509250929050565b600067ffffffffffffffff82111561428257614281613e12565b5b61428b82613c71565b9050602081019050919050565b60006142ab6142a684614267565b613e72565b9050828152602081018484840111156142c7576142c6613e0d565b5b6142d2848285613ebe565b509392505050565b600082601f8301126142ef576142ee613e08565b5b81356142ff848260208601614298565b91505092915050565b6000806000806080858703121561432257614321613b5d565b5b600061433087828801613db3565b945050602061434187828801613db3565b935050604061435287828801613cfe565b925050606085013567ffffffffffffffff81111561437357614372613b62565b5b61437f878288016142da565b91505092959194509250565b600080604083850312156143a2576143a1613b5d565b5b60006143b085828601613db3565b92505060206143c185828601613db3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441257607f821691505b602082108103614425576144246143cb565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614487602d83613c2d565b91506144928261442b565b604082019050919050565b600060208201905081810360008301526144b68161447a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614519602283613c2d565b9150614524826144bd565b604082019050919050565b600060208201905081810360008301526145488161450c565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006145ab603983613c2d565b91506145b68261454f565b604082019050919050565b600060208201905081810360008301526145da8161459e565b9050919050565b60006040820190506145f66000830185613d72565b6146036020830184613d72565b9392505050565b60008151905061461981614003565b92915050565b60006020828403121561463557614634613b5d565b5b60006146438482850161460a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468682613cdd565b915061469183613cdd565b9250828210156146a4576146a361464c565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061470b602283613c2d565b9150614716826146af565b604082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b600061474c82613cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361477e5761477d61464c565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006147e5602e83613c2d565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b600061482682613cdd565b915061483183613cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561486a5761486961464c565b5b828202905092915050565b600061488082613cdd565b915061488b83613cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c0576148bf61464c565b5b828201905092915050565b7f4973206f76657220737570706c79000000000000000000000000000000000000600082015250565b6000614901600e83613c2d565b915061490c826148cb565b602082019050919050565b60006020820190508181036000830152614930816148f4565b9050919050565b7f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e60008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614993602283613c2d565b915061499e82614937565b604082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614a2e601083613c2d565b9150614a39826149f8565b602082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b7f455243373231413a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614ac0602983613c2d565b9150614acb82614a64565b604082019050919050565b60006020820190508181036000830152614aef81614ab3565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b52602383613c2d565b9150614b5d82614af6565b604082019050919050565b60006020820190508181036000830152614b8181614b45565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614be4602b83613c2d565b9150614bef82614b88565b604082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b7f5468617420616d6f756e7420697320686967686572207468656e207075626c6960008201527f634d61784d696e74416d6f756e74000000000000000000000000000000000000602082015250565b6000614c76602e83613c2d565b9150614c8182614c1a565b604082019050919050565b60006020820190508181036000830152614ca581614c69565b9050919050565b7f5075626c6963204d696e7420736f6c64206f757420616c726561647900000000600082015250565b6000614ce2601c83613c2d565b9150614ced82614cac565b602082019050919050565b60006020820190508181036000830152614d1181614cd5565b9050919050565b7f596f75206469646e27742073656e6420656e6f7567682045544820746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d74602283613c2d565b9150614d7f82614d18565b604082019050919050565b60006020820190508181036000830152614da381614d67565b9050919050565b7f5075626c69632073616c65206973206e6f7420656e61626c6564207965742e2060008201527f436865636b206261636b206c6174657221000000000000000000000000000000602082015250565b6000614e06603183613c2d565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614e72601a83613c2d565b9150614e7d82614e3c565b602082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614f04603383613c2d565b9150614f0f82614ea8565b604082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f96602f83613c2d565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b600081905092915050565b6000614fe282613c22565b614fec8185614fcc565b9350614ffc818560208601613c3e565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461502a816143fa565b6150348186614fcc565b9450600182166000811461504f576001811461506057615093565b60ff19831686528186019350615093565b61506985615008565b60005b8381101561508b5781548189015260018201915060208101905061506c565b838801955050505b50505092915050565b60006150a88286614fd7565b91506150b48285614fd7565b91506150c0828461501d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615129602683613c2d565b9150615134826150cd565b604082019050919050565b600060208201905081810360008301526151588161511c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615195602083613c2d565b91506151a08261515f565b602082019050919050565b600060208201905081810360008301526151c481615188565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615227603283613c2d565b9150615232826151cb565b604082019050919050565b600060208201905081810360008301526152568161521a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006152b9602683613c2d565b91506152c48261525d565b604082019050919050565b600060208201905081810360008301526152e8816152ac565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061534b602583613c2d565b9150615356826152ef565b604082019050919050565b6000602082019050818103600083015261537a8161533e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006153dd602a83613c2d565b91506153e882615381565b604082019050919050565b6000602082019050818103600083015261540c816153d0565b9050919050565b600061541e82613cdd565b9150600082036154315761543061464c565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006154638261543c565b61546d8185615447565b935061547d818560208601613c3e565b61548681613c71565b840191505092915050565b60006080820190506154a66000830187613d72565b6154b36020830186613d72565b6154c06040830185613f86565b81810360608301526154d28184615458565b905095945050505050565b6000815190506154ec81613b93565b92915050565b60006020828403121561550857615507613b5d565b5b6000615516848285016154dd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061555982613cdd565b915061556483613cdd565b9250826155745761557361551f565b5b828204905092915050565b600061558a82613cdd565b915061559583613cdd565b9250826155a5576155a461551f565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061560c602183613c2d565b9150615617826155b0565b604082019050919050565b6000602082019050818103600083015261563b816155ff565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615678601d83613c2d565b915061568382615642565b602082019050919050565b600060208201905081810360008301526156a78161566b565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600061570a602883613c2d565b9150615715826156ae565b604082019050919050565b60006020820190508181036000830152615739816156fd565b9050919050565b600067ffffffffffffffff82169050919050565b600061575f82615740565b915061576a83615740565b92508267ffffffffffffffff038211156157875761578661464c565b5b82820190509291505056fea26469706673582212207bb2c6a6d0c8e3ae8ef23cbb3a78d79ace61addb48cca78367d8dd18b668d08864736f6c634300080d0033

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.