ETH Price: $2,711.71 (-1.98%)

Token

The SteamVerse (TSV)
 

Overview

Max Total Supply

144 TSV

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TSV
0x478644ebb5b2d4542164152ec269b1e6ad122834
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:
TheSteamVerse

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : TheSteamVerse.sol
// SPDX-License-Identifier: MIT
// Developed by MatrixGlitch

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
                                                                                                                      
contract TheSteamVerse is ERC721A, Ownable
{
    using Strings for string;

    uint16 public freeMintLimitPerWallet = 1;
    uint16 public reservedTokensMinted = 0;
    uint16 public NUMBER_RESERVED_TOKENS = 200;
    uint16 public MAX_SUPPLY = 5888;
    uint256 public PRICE = 70000000000000000;
    uint256 public GOLDLISTPRICE = 50000000000000000;
    
    bool public revealed = false;
    bool public publicSaleIsActive = false;
    bool public goldlistIsActive = false;
    bool public whitelistIsActive = false;
    bool public freemintIsActive = false;

    string private _baseTokenURI;
    string public notRevealedUri;
    bytes32 rootGoldlist;
    bytes32 rootWhitelist;
    bytes32 rootFreemint;
    mapping(address => uint16) public addressGoldlistMintedBalance;
    mapping(address => uint16) public addressWhitelistBalance;
    mapping(address => uint16) public addressPublicSaleBalance;
    mapping(address => uint16) public addressFreemintBalance;

    constructor() ERC721A("The SteamVerse", "TSV") {}

    function goldlistMint(uint16 amount, bytes32[] memory proof) external payable
    {
        require(goldlistIsActive, "Goldlist sale is not active");
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, rootGoldlist, leaf), "Address not allowed at this time");
        require(addressGoldlistMintedBalance[msg.sender] + amount <= 3, "Quantity exceeds goldlist allowance");
        require(msg.value >= GOLDLISTPRICE * amount, "Not enough ETH for this transaction");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressGoldlistMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function whitelistMint(uint16 amount, bytes32[] memory proof) external payable
    {
        require(whitelistIsActive, "Whitelist sale is not active");
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, rootWhitelist, leaf), "Address not allowed at this time");
        require(addressWhitelistBalance[msg.sender] + amount <= 10, "Quantity exceeds whitelist allowance");
        require(totalSupply() + amount <= MAX_SUPPLY - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply");
        require(msg.value >= PRICE * amount, "Not enough ETH for this transaction");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressWhitelistBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function publicSaleMint(uint16 amount) external payable
    {
        require(publicSaleIsActive, "Public sale is not active");
        require(totalSupply() + amount <= MAX_SUPPLY - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply");
        require(msg.value >= PRICE * amount, "Not enough ETH for this transaction");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressPublicSaleBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function freeMint(uint16 amount, bytes32[] memory proof) external
    {
        require(freemintIsActive, "Free mint is not active");
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, rootFreemint, leaf), "Address not allowed");
        require(addressFreemintBalance[msg.sender] + amount <= freeMintLimitPerWallet, "You have already claimed your free NFT");
        require(totalSupply() + amount <= MAX_SUPPLY - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressFreemintBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function mintReservedTokens(address to, uint16 amount) external onlyOwner 
    {
        require(reservedTokensMinted + amount <= NUMBER_RESERVED_TOKENS, "This amount is more than max allowed");

        reservedTokensMinted += amount;

        _safeMint(to, amount); 
    }

    function setPrice(uint256 newPrice) external onlyOwner 
    {
        PRICE = newPrice;
    }

    function setGoldlistPrice(uint256 newPrice) external onlyOwner 
    {
        GOLDLISTPRICE = newPrice;
    }

    function setQtyReservedTokens(uint16 newQty) external onlyOwner 
    {
        NUMBER_RESERVED_TOKENS = newQty;
    }

    function setMaxSupply(uint16 newSupplyQty) external onlyOwner 
    {
        MAX_SUPPLY = newSupplyQty;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function flipReveal() public onlyOwner {
        revealed = !revealed;
    }

    function flipGoldlistState() external onlyOwner
    {
        goldlistIsActive = !goldlistIsActive;
    }

    function flipWhitelistMintState() external onlyOwner
    {
        whitelistIsActive = !whitelistIsActive;
    }

    function flipPublicSaleState() external onlyOwner
    {
        publicSaleIsActive = !publicSaleIsActive;
    }

    function flipFreeMintState() external onlyOwner
    {
        freemintIsActive = !freemintIsActive;
    }

    function setRootGoldlist(bytes32 _root) external onlyOwner
    {
        rootGoldlist = _root;
    }

    function setRootWhitelist(bytes32 _root) external onlyOwner
    {
        rootWhitelist = _root;
    }
    
    function setRootFreeMint(bytes32 _root) external onlyOwner
    {
        rootFreemint = _root;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
  
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if(revealed == false) 
        {
            return notRevealedUri;
        }

        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }

    function withdraw() external onlyOwner
    {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Transfer failed");
    }
}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"GOLDLISTPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreemintBalance","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressGoldlistMintedBalance","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicSaleBalance","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWhitelistBalance","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"flipFreeMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipGoldlistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintLimitPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldlistIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"goldlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setGoldlistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSupplyQty","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newQty","type":"uint16"}],"name":"setQtyReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRootFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRootGoldlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRootWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"whitelistIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600860146101000a81548161ffff021916908361ffff1602179055506000600860166101000a81548161ffff021916908361ffff16021790555060c8600860186101000a81548161ffff021916908361ffff1602179055506117006008601a6101000a81548161ffff021916908361ffff16021790555066f8b0a10e47000060095566b1a2bc2ec50000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055506000600b60046101000a81548160ff0219169083151502179055503480156200012757600080fd5b506040518060400160405280600e81526020017f54686520537465616d56657273650000000000000000000000000000000000008152506040518060400160405280600381526020017f54535600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001ac929190620002d7565b508060039080519060200190620001c5929190620002d7565b50620001d66200020460201b60201c565b6000819055505050620001fe620001f26200020960201b60201c565b6200021160201b60201c565b620003ec565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e59062000387565b90600052602060002090601f01602090048101928262000309576000855562000355565b82601f106200032457805160ff191683800117855562000355565b8280016001018555821562000355579182015b828111156200035457825182559160200191906001019062000337565b5b50905062000364919062000368565b5090565b5b808211156200038357600081600090555060010162000369565b5090565b60006002820490506001821680620003a057607f821691505b60208210811415620003b757620003b6620003bd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6158db80620003fc6000396000f3fe60806040526004361061031a5760003560e01c806378047418116101ab578063b22edfbc116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b25578063f3e3882114610b4e578063f600eb9314610b79578063ff0b0c1c14610bb65761031a565b8063e985e9c514610a82578063ecefdb8714610abf578063f2c4ce1e14610afc5761031a565b8063c87b56dd116100d1578063c87b56dd146109b4578063ce843efa146109f1578063db94b1ff14610a2e578063df318e2814610a455761031a565b8063b22edfbc14610937578063b88d4fde14610962578063bc2c89c51461098b5761031a565b806395d89b4111610164578063a0f611c31161013e578063a0f611c3146108bf578063a10866ef146108db578063a22cb465146108f2578063b182e8181461091b5761031a565b806395d89b41146108405780639c1a945c1461086b5780639fdbfd8f146108945761031a565b806378047418146107425780637aab2ef91461076b57806380faa277146107965780638d859f3e146107c15780638da5cb5b146107ec57806391b7f5ed146108175761031a565b80633b84d9c61161026a57806355f804b3116102235780636f5aab91116101fd5780636f5aab91146106ae57806370a08231146106d7578063715018a61461071457806374b0ea691461072b5761031a565b806355f804b31461061d5780635647835e146106465780636352211e146106715761031a565b80633b84d9c6146105565780633ccfd60b1461056d578063405138961461058457806342842e0e146105a05780634b951cef146105c957806351830227146105f25761031a565b8063095ea7b3116102d757806318160ddd116102b157806318160ddd146104ac5780631fe70d6f146104d757806323b872dd1461050257806332cb6b0c1461052b5761031a565b8063095ea7b31461042f5780630a7dbec3146104585780630fcf2e75146104815761031a565b806301ffc9a71461031f57806306421c2f1461035c57806306fdde0314610385578063081812fc146103b0578063081c8c44146103ed578063082e2a7214610418575b600080fd5b34801561032b57600080fd5b506103466004803603810190610341919061465e565b610bdf565b6040516103539190614c48565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614736565b610cc1565b005b34801561039157600080fd5b5061039a610d5d565b6040516103a79190614c63565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d291906147b3565b610def565b6040516103e49190614be1565b60405180910390f35b3480156103f957600080fd5b50610402610e6b565b60405161040f9190614c63565b60405180910390f35b34801561042457600080fd5b5061042d610ef9565b005b34801561043b57600080fd5b50610456600480360381019061045191906145f9565b610fa1565b005b34801561046457600080fd5b5061047f600480360381019061047a9190614736565b6110ac565b005b34801561048d57600080fd5b50610496611148565b6040516104a39190614c48565b60405180910390f35b3480156104b857600080fd5b506104c161115b565b6040516104ce9190614ec0565b60405180910390f35b3480156104e357600080fd5b506104ec611172565b6040516104f99190614c48565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906144b7565b611185565b005b34801561053757600080fd5b50610540611195565b60405161054d9190614ea5565b60405180910390f35b34801561056257600080fd5b5061056b6111a9565b005b34801561057957600080fd5b50610582611251565b005b61059e60048036038101906105999190614736565b611383565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906144b7565b6115be565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190614635565b6115de565b005b3480156105fe57600080fd5b50610607611664565b6040516106149190614c48565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f91906146b0565b611677565b005b34801561065257600080fd5b5061065b611709565b6040516106689190614ec0565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906147b3565b61170f565b6040516106a59190614be1565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d091906147b3565b611725565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190614452565b6117ab565b60405161070b9190614ec0565b60405180910390f35b34801561072057600080fd5b5061072961187b565b005b34801561073757600080fd5b50610740611903565b005b34801561074e57600080fd5b50610769600480360381019061076491906145bd565b6119ab565b005b34801561077757600080fd5b50610780611ae8565b60405161078d9190614c48565b60405180910390f35b3480156107a257600080fd5b506107ab611afb565b6040516107b89190614c48565b60405180910390f35b3480156107cd57600080fd5b506107d6611b0e565b6040516107e39190614ec0565b60405180910390f35b3480156107f857600080fd5b50610801611b14565b60405161080e9190614be1565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906147b3565b611b3e565b005b34801561084c57600080fd5b50610855611bc4565b6040516108629190614c63565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190614635565b611c56565b005b3480156108a057600080fd5b506108a9611cdc565b6040516108b69190614ea5565b60405180910390f35b6108d960048036038101906108d4919061475f565b611cf0565b005b3480156108e757600080fd5b506108f0611fa1565b005b3480156108fe57600080fd5b5061091960048036038101906109149190614581565b612049565b005b6109356004803603810190610930919061475f565b6121c1565b005b34801561094357600080fd5b5061094c612515565b6040516109599190614ea5565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614506565b612529565b005b34801561099757600080fd5b506109b260048036038101906109ad919061475f565b6125a5565b005b3480156109c057600080fd5b506109db60048036038101906109d691906147b3565b6128b8565b6040516109e89190614c63565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a139190614452565b612a05565b604051610a259190614ea5565b60405180910390f35b348015610a3a57600080fd5b50610a43612a26565b005b348015610a5157600080fd5b50610a6c6004803603810190610a679190614452565b612ace565b604051610a799190614ea5565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061447b565b612aef565b604051610ab69190614c48565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190614452565b612b83565b604051610af39190614ea5565b60405180910390f35b348015610b0857600080fd5b50610b236004803603810190610b1e91906146f5565b612ba4565b005b348015610b3157600080fd5b50610b4c6004803603810190610b479190614452565b612c3a565b005b348015610b5a57600080fd5b50610b63612d32565b604051610b709190614ea5565b60405180910390f35b348015610b8557600080fd5b50610ba06004803603810190610b9b9190614452565b612d46565b604051610bad9190614ea5565b60405180910390f35b348015610bc257600080fd5b50610bdd6004803603810190610bd89190614635565b612d67565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610caa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cba5750610cb982612ded565b5b9050919050565b610cc9612e57565b73ffffffffffffffffffffffffffffffffffffffff16610ce7611b14565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490614e05565b60405180910390fd5b806008601a6101000a81548161ffff021916908361ffff16021790555050565b606060028054610d6c9061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d989061522b565b8015610de55780601f10610dba57610100808354040283529160200191610de5565b820191906000526020600020905b815481529060010190602001808311610dc857829003601f168201915b5050505050905090565b6000610dfa82612e5f565b610e30576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e789061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea49061522b565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b505050505081565b610f01612e57565b73ffffffffffffffffffffffffffffffffffffffff16610f1f611b14565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90614e05565b60405180910390fd5b600b60039054906101000a900460ff1615600b60036101000a81548160ff021916908315150217905550565b6000610fac8261170f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611033612e57565b73ffffffffffffffffffffffffffffffffffffffff161415801561106557506110638161105e612e57565b612aef565b155b1561109c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110a7838383612ead565b505050565b6110b4612e57565b73ffffffffffffffffffffffffffffffffffffffff166110d2611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90614e05565b60405180910390fd5b80600860186101000a81548161ffff021916908361ffff16021790555050565b600b60019054906101000a900460ff1681565b6000611165612f5f565b6001546000540303905090565b600b60039054906101000a900460ff1681565b611190838383612f64565b505050565b6008601a9054906101000a900461ffff1681565b6111b1612e57565b73ffffffffffffffffffffffffffffffffffffffff166111cf611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90614e05565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611259612e57565b73ffffffffffffffffffffffffffffffffffffffff16611277611b14565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614e05565b60405180910390fd5b60006112d7611b14565b73ffffffffffffffffffffffffffffffffffffffff16476040516112fa90614bcc565b60006040518083038185875af1925050503d8060008114611337576040519150601f19603f3d011682016040523d82523d6000602084013e61133c565b606091505b5050905080611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790614d05565b60405180910390fd5b50565b600b60019054906101000a900460ff166113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990614dc5565b60405180910390fd5b600860169054906101000a900461ffff16600860189054906101000a900461ffff166113fe91906150f5565b6008601a9054906101000a900461ffff1661141991906150f5565b61ffff168161ffff1661142a61115b565b6114349190615014565b1115611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90614de5565b60405180910390fd5b8061ffff16600954611487919061509b565b3410156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614d25565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90614e45565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166115939190614fdc565b92506101000a81548161ffff021916908361ffff1602179055506115bb338261ffff1661341a565b50565b6115d983838360405180602001604052806000815250612529565b505050565b6115e6612e57565b73ffffffffffffffffffffffffffffffffffffffff16611604611b14565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614e05565b60405180910390fd5b80600f8190555050565b600b60009054906101000a900460ff1681565b61167f612e57565b73ffffffffffffffffffffffffffffffffffffffff1661169d611b14565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90614e05565b60405180910390fd5b8181600c91906117049291906140a3565b505050565b600a5481565b600061171a82613438565b600001519050919050565b61172d612e57565b73ffffffffffffffffffffffffffffffffffffffff1661174b611b14565b73ffffffffffffffffffffffffffffffffffffffff16146117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890614e05565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611813576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611883612e57565b73ffffffffffffffffffffffffffffffffffffffff166118a1611b14565b73ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614e05565b60405180910390fd5b61190160006136c7565b565b61190b612e57565b73ffffffffffffffffffffffffffffffffffffffff16611929611b14565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614e05565b60405180910390fd5b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b6119b3612e57565b73ffffffffffffffffffffffffffffffffffffffff166119d1611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90614e05565b60405180910390fd5b600860189054906101000a900461ffff1661ffff1681600860169054906101000a900461ffff16611a589190614fdc565b61ffff161115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614cc5565b60405180910390fd5b80600860168282829054906101000a900461ffff16611abc9190614fdc565b92506101000a81548161ffff021916908361ffff160217905550611ae4828261ffff1661341a565b5050565b600b60029054906101000a900460ff1681565b600b60049054906101000a900460ff1681565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b46612e57565b73ffffffffffffffffffffffffffffffffffffffff16611b64611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614e05565b60405180910390fd5b8060098190555050565b606060038054611bd39061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff9061522b565b8015611c4c5780601f10611c2157610100808354040283529160200191611c4c565b820191906000526020600020905b815481529060010190602001808311611c2f57829003601f168201915b5050505050905090565b611c5e612e57565b73ffffffffffffffffffffffffffffffffffffffff16611c7c611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614e05565b60405180910390fd5b80600e8190555050565b600860149054906101000a900461ffff1681565b600b60029054906101000a900460ff16611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690614c85565b60405180910390fd5b600033604051602001611d529190614b6b565b604051602081830303815290604052805190602001209050611d7782600e548361378d565b611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614da5565b60405180910390fd5b600383601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611e119190614fdc565b61ffff161115611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90614e65565b60405180910390fd5b8261ffff16600a54611e68919061509b565b341015611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614d25565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90614e45565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16611f749190614fdc565b92506101000a81548161ffff021916908361ffff160217905550611f9c338461ffff1661341a565b505050565b611fa9612e57565b73ffffffffffffffffffffffffffffffffffffffff16611fc7611b14565b73ffffffffffffffffffffffffffffffffffffffff161461201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614e05565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b612051612e57565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120c3612e57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612170612e57565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b59190614c48565b60405180910390a35050565b600b60039054906101000a900460ff16612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614e85565b60405180910390fd5b6000336040516020016122239190614b6b565b60405160208183030381529060405280519060200120905061224882600f548361378d565b612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90614da5565b60405180910390fd5b600a83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166122e29190614fdc565b61ffff161115612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614ca5565b60405180910390fd5b600860169054906101000a900461ffff16600860189054906101000a900461ffff1661235391906150f5565b6008601a9054906101000a900461ffff1661236e91906150f5565b61ffff168361ffff1661237f61115b565b6123899190615014565b11156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614de5565b60405180910390fd5b8261ffff166009546123dc919061509b565b34101561241e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241590614d25565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614e45565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166124e89190614fdc565b92506101000a81548161ffff021916908361ffff160217905550612510338461ffff1661341a565b505050565b600860189054906101000a900461ffff1681565b612534848484612f64565b6125538373ffffffffffffffffffffffffffffffffffffffff166137a4565b80156125685750612566848484846137c7565b155b1561259f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b60049054906101000a900460ff166125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90614d45565b60405180910390fd5b6000336040516020016126079190614b6b565b60405160208183030381529060405280519060200120905061262c826010548361378d565b61266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614d85565b60405180910390fd5b600860149054906101000a900461ffff1661ffff1683601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166126d99190614fdc565b61ffff16111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614d65565b60405180910390fd5b600860169054906101000a900461ffff16600860189054906101000a900461ffff1661274a91906150f5565b6008601a9054906101000a900461ffff1661276591906150f5565b61ffff168361ffff1661277661115b565b6127809190615014565b11156127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614de5565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690614e45565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661288b9190614fdc565b92506101000a81548161ffff021916908361ffff1602179055506128b3338461ffff1661341a565b505050565b60606128c382612e5f565b612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990614e25565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514156129b057600d805461292b9061522b565b80601f01602080910402602001604051908101604052809291908181526020018280546129579061522b565b80156129a45780601f10612979576101008083540402835291602001916129a4565b820191906000526020600020905b81548152906001019060200180831161298757829003601f168201915b50505050509050612a00565b60006129bb83613927565b905060008151116129db57604051806020016040528060008152506129fc565b806040516020016129ec9190614baa565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915054906101000a900461ffff1681565b612a2e612e57565b73ffffffffffffffffffffffffffffffffffffffff16612a4c611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990614e05565b60405180910390fd5b600b60049054906101000a900460ff1615600b60046101000a81548160ff021916908315150217905550565b60146020528060005260406000206000915054906101000a900461ffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915054906101000a900461ffff1681565b612bac612e57565b73ffffffffffffffffffffffffffffffffffffffff16612bca611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614e05565b60405180910390fd5b80600d9080519060200190612c36929190614129565b5050565b612c42612e57565b73ffffffffffffffffffffffffffffffffffffffff16612c60611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90614e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614ce5565b60405180910390fd5b612d2f816136c7565b50565b600860169054906101000a900461ffff1681565b60136020528060005260406000206000915054906101000a900461ffff1681565b612d6f612e57565b73ffffffffffffffffffffffffffffffffffffffff16612d8d611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda90614e05565b60405180910390fd5b8060108190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612e6a612f5f565b11158015612e79575060005482105b8015612ea6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612f6f82613438565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fda576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ffb612e57565b73ffffffffffffffffffffffffffffffffffffffff16148061302a575061302985613024612e57565b612aef565b5b8061306f5750613038612e57565b73ffffffffffffffffffffffffffffffffffffffff1661305784610def565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806130a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561310f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61311c85858560016139c6565b61312860008487612ead565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156133a85760005482146133a757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461341385858560016139cc565b5050505050565b6134348282604051806020016040528060008152506139d2565b5050565b6134406141af565b60008290508061344e612f5f565b1115801561345d575060005481105b15613690576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161368e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135725780925050506136c2565b5b60011561368d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136885780925050506136c2565b613573565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261379a85846139e4565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137ed612e57565b8786866040518563ffffffff1660e01b815260040161380f9493929190614bfc565b602060405180830381600087803b15801561382957600080fd5b505af192505050801561385a57506040513d601f19601f820116820180604052508101906138579190614687565b60015b6138d4573d806000811461388a576040519150601f19603f3d011682016040523d82523d6000602084013e61388f565b606091505b506000815114156138cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061393282612e5f565b613968576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613972613a7f565b905060008151141561399357604051806020016040528060008152506139be565b8061399d84613b11565b6040516020016139ae929190614b86565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b6139df8383836001613cbe565b505050565b60008082905060005b8451811015613a74576000858281518110613a31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613a5357613a4c838261408c565b9250613a60565b613a5d818461408c565b92505b508080613a6c9061528e565b9150506139ed565b508091505092915050565b6060600c8054613a8e9061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054613aba9061522b565b8015613b075780601f10613adc57610100808354040283529160200191613b07565b820191906000526020600020905b815481529060010190602001808311613aea57829003601f168201915b5050505050905090565b60606000821415613b59576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613cb9565b600082905060005b60008214613b8b578080613b749061528e565b915050600a82613b84919061506a565b9150613b61565b60008167ffffffffffffffff811115613bcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613bff5781602001600182028036833780820191505090505b5090505b60008514613cb257600182613c189190615129565b9150600a85613c2791906152fb565b6030613c339190615014565b60f81b818381518110613c6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613cab919061506a565b9450613c03565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613d2b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613d66576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613d7360008683876139c6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613f3d5750613f3c8773ffffffffffffffffffffffffffffffffffffffff166137a4565b5b15614003575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613fb260008884806001019550886137c7565b613fe8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613f43578260005414613ffe57600080fd5b61406f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614004575b81600081905550505061408560008683876139cc565b5050505050565b600082600052816020526040600020905092915050565b8280546140af9061522b565b90600052602060002090601f0160209004810192826140d15760008555614118565b82601f106140ea57803560ff1916838001178555614118565b82800160010185558215614118579182015b828111156141175782358255916020019190600101906140fc565b5b50905061412591906141f2565b5090565b8280546141359061522b565b90600052602060002090601f016020900481019282614157576000855561419e565b82601f1061417057805160ff191683800117855561419e565b8280016001018555821561419e579182015b8281111561419d578251825591602001919060010190614182565b5b5090506141ab91906141f2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561420b5760008160009055506001016141f3565b5090565b600061422261421d84614f00565b614edb565b9050808382526020820190508285602086028201111561424157600080fd5b60005b858110156142715781614257888261434b565b845260208401935060208301925050600181019050614244565b5050509392505050565b600061428e61428984614f2c565b614edb565b9050828152602081018484840111156142a657600080fd5b6142b18482856151e9565b509392505050565b60006142cc6142c784614f5d565b614edb565b9050828152602081018484840111156142e457600080fd5b6142ef8482856151e9565b509392505050565b6000813590506143068161581b565b92915050565b600082601f83011261431d57600080fd5b813561432d84826020860161420f565b91505092915050565b60008135905061434581615832565b92915050565b60008135905061435a81615849565b92915050565b60008135905061436f81615860565b92915050565b60008151905061438481615860565b92915050565b600082601f83011261439b57600080fd5b81356143ab84826020860161427b565b91505092915050565b60008083601f8401126143c657600080fd5b8235905067ffffffffffffffff8111156143df57600080fd5b6020830191508360018202830111156143f757600080fd5b9250929050565b600082601f83011261440f57600080fd5b813561441f8482602086016142b9565b91505092915050565b60008135905061443781615877565b92915050565b60008135905061444c8161588e565b92915050565b60006020828403121561446457600080fd5b6000614472848285016142f7565b91505092915050565b6000806040838503121561448e57600080fd5b600061449c858286016142f7565b92505060206144ad858286016142f7565b9150509250929050565b6000806000606084860312156144cc57600080fd5b60006144da868287016142f7565b93505060206144eb868287016142f7565b92505060406144fc8682870161443d565b9150509250925092565b6000806000806080858703121561451c57600080fd5b600061452a878288016142f7565b945050602061453b878288016142f7565b935050604061454c8782880161443d565b925050606085013567ffffffffffffffff81111561456957600080fd5b6145758782880161438a565b91505092959194509250565b6000806040838503121561459457600080fd5b60006145a2858286016142f7565b92505060206145b385828601614336565b9150509250929050565b600080604083850312156145d057600080fd5b60006145de858286016142f7565b92505060206145ef85828601614428565b9150509250929050565b6000806040838503121561460c57600080fd5b600061461a858286016142f7565b925050602061462b8582860161443d565b9150509250929050565b60006020828403121561464757600080fd5b60006146558482850161434b565b91505092915050565b60006020828403121561467057600080fd5b600061467e84828501614360565b91505092915050565b60006020828403121561469957600080fd5b60006146a784828501614375565b91505092915050565b600080602083850312156146c357600080fd5b600083013567ffffffffffffffff8111156146dd57600080fd5b6146e9858286016143b4565b92509250509250929050565b60006020828403121561470757600080fd5b600082013567ffffffffffffffff81111561472157600080fd5b61472d848285016143fe565b91505092915050565b60006020828403121561474857600080fd5b600061475684828501614428565b91505092915050565b6000806040838503121561477257600080fd5b600061478085828601614428565b925050602083013567ffffffffffffffff81111561479d57600080fd5b6147a98582860161430c565b9150509250929050565b6000602082840312156147c557600080fd5b60006147d38482850161443d565b91505092915050565b6147e58161515d565b82525050565b6147fc6147f78261515d565b6152d7565b82525050565b61480b8161516f565b82525050565b600061481c82614f8e565b6148268185614fa4565b93506148368185602086016151f8565b61483f816153e8565b840191505092915050565b600061485582614f99565b61485f8185614fc0565b935061486f8185602086016151f8565b614878816153e8565b840191505092915050565b600061488e82614f99565b6148988185614fd1565b93506148a88185602086016151f8565b80840191505092915050565b60006148c1601b83614fc0565b91506148cc82615406565b602082019050919050565b60006148e4602483614fc0565b91506148ef8261542f565b604082019050919050565b6000614907602483614fc0565b91506149128261547e565b604082019050919050565b600061492a602683614fc0565b9150614935826154cd565b604082019050919050565b600061494d600f83614fc0565b91506149588261551c565b602082019050919050565b6000614970602383614fc0565b915061497b82615545565b604082019050919050565b6000614993601783614fc0565b915061499e82615594565b602082019050919050565b60006149b6602683614fc0565b91506149c1826155bd565b604082019050919050565b60006149d9601383614fc0565b91506149e48261560c565b602082019050919050565b60006149fc602083614fc0565b9150614a0782615635565b602082019050919050565b6000614a1f601983614fc0565b9150614a2a8261565e565b602082019050919050565b6000614a42602083614fc0565b9150614a4d82615687565b602082019050919050565b6000614a65600583614fd1565b9150614a70826156b0565b600582019050919050565b6000614a88602083614fc0565b9150614a93826156d9565b602082019050919050565b6000614aab602f83614fc0565b9150614ab682615702565b604082019050919050565b6000614ace600083614fb5565b9150614ad982615751565b600082019050919050565b6000614af1602b83614fc0565b9150614afc82615754565b604082019050919050565b6000614b14602383614fc0565b9150614b1f826157a3565b604082019050919050565b6000614b37601c83614fc0565b9150614b42826157f2565b602082019050919050565b614b56816151b1565b82525050565b614b65816151df565b82525050565b6000614b7782846147eb565b60148201915081905092915050565b6000614b928285614883565b9150614b9e8284614883565b91508190509392505050565b6000614bb68284614883565b9150614bc182614a58565b915081905092915050565b6000614bd782614ac1565b9150819050919050565b6000602082019050614bf660008301846147dc565b92915050565b6000608082019050614c1160008301876147dc565b614c1e60208301866147dc565b614c2b6040830185614b5c565b8181036060830152614c3d8184614811565b905095945050505050565b6000602082019050614c5d6000830184614802565b92915050565b60006020820190508181036000830152614c7d818461484a565b905092915050565b60006020820190508181036000830152614c9e816148b4565b9050919050565b60006020820190508181036000830152614cbe816148d7565b9050919050565b60006020820190508181036000830152614cde816148fa565b9050919050565b60006020820190508181036000830152614cfe8161491d565b9050919050565b60006020820190508181036000830152614d1e81614940565b9050919050565b60006020820190508181036000830152614d3e81614963565b9050919050565b60006020820190508181036000830152614d5e81614986565b9050919050565b60006020820190508181036000830152614d7e816149a9565b9050919050565b60006020820190508181036000830152614d9e816149cc565b9050919050565b60006020820190508181036000830152614dbe816149ef565b9050919050565b60006020820190508181036000830152614dde81614a12565b9050919050565b60006020820190508181036000830152614dfe81614a35565b9050919050565b60006020820190508181036000830152614e1e81614a7b565b9050919050565b60006020820190508181036000830152614e3e81614a9e565b9050919050565b60006020820190508181036000830152614e5e81614ae4565b9050919050565b60006020820190508181036000830152614e7e81614b07565b9050919050565b60006020820190508181036000830152614e9e81614b2a565b9050919050565b6000602082019050614eba6000830184614b4d565b92915050565b6000602082019050614ed56000830184614b5c565b92915050565b6000614ee5614ef6565b9050614ef1828261525d565b919050565b6000604051905090565b600067ffffffffffffffff821115614f1b57614f1a6153b9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f4757614f466153b9565b5b614f50826153e8565b9050602081019050919050565b600067ffffffffffffffff821115614f7857614f776153b9565b5b614f81826153e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fe7826151b1565b9150614ff2836151b1565b92508261ffff038211156150095761500861532c565b5b828201905092915050565b600061501f826151df565b915061502a836151df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561505f5761505e61532c565b5b828201905092915050565b6000615075826151df565b9150615080836151df565b9250826150905761508f61535b565b5b828204905092915050565b60006150a6826151df565b91506150b1836151df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150ea576150e961532c565b5b828202905092915050565b6000615100826151b1565b915061510b836151b1565b92508282101561511e5761511d61532c565b5b828203905092915050565b6000615134826151df565b915061513f836151df565b9250828210156151525761515161532c565b5b828203905092915050565b6000615168826151bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156152165780820151818401526020810190506151fb565b83811115615225576000848401525b50505050565b6000600282049050600182168061524357607f821691505b602082108114156152575761525661538a565b5b50919050565b615266826153e8565b810181811067ffffffffffffffff82111715615285576152846153b9565b5b80604052505050565b6000615299826151df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152cc576152cb61532c565b5b600182019050919050565b60006152e2826152e9565b9050919050565b60006152f4826153f9565b9050919050565b6000615306826151df565b9150615311836151df565b9250826153215761532061535b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f476f6c646c6973742073616c65206973206e6f74206163746976650000000000600082015250565b7f5175616e7469747920657863656564732077686974656c69737420616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820666f722074686973207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f596f75206861766520616c726561647920636c61696d656420796f757220667260008201527f6565204e46540000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420616c6c6f77656400000000000000000000000000600082015250565b7f41646472657373206e6f7420616c6c6f77656420617420746869732074696d65600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73616374696f6e2066726f6d20736d61727420636f6e74726163742060008201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206578636565647320676f6c646c69737420616c6c6f776160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206973206e6f742061637469766500000000600082015250565b6158248161515d565b811461582f57600080fd5b50565b61583b8161516f565b811461584657600080fd5b50565b6158528161517b565b811461585d57600080fd5b50565b61586981615185565b811461587457600080fd5b50565b615880816151b1565b811461588b57600080fd5b50565b615897816151df565b81146158a257600080fd5b5056fea26469706673582212204d19e282ff594d9ed64773979a2d711f5a426f9f5654e374f802dd2962fac7e264736f6c63430008040033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806378047418116101ab578063b22edfbc116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b25578063f3e3882114610b4e578063f600eb9314610b79578063ff0b0c1c14610bb65761031a565b8063e985e9c514610a82578063ecefdb8714610abf578063f2c4ce1e14610afc5761031a565b8063c87b56dd116100d1578063c87b56dd146109b4578063ce843efa146109f1578063db94b1ff14610a2e578063df318e2814610a455761031a565b8063b22edfbc14610937578063b88d4fde14610962578063bc2c89c51461098b5761031a565b806395d89b4111610164578063a0f611c31161013e578063a0f611c3146108bf578063a10866ef146108db578063a22cb465146108f2578063b182e8181461091b5761031a565b806395d89b41146108405780639c1a945c1461086b5780639fdbfd8f146108945761031a565b806378047418146107425780637aab2ef91461076b57806380faa277146107965780638d859f3e146107c15780638da5cb5b146107ec57806391b7f5ed146108175761031a565b80633b84d9c61161026a57806355f804b3116102235780636f5aab91116101fd5780636f5aab91146106ae57806370a08231146106d7578063715018a61461071457806374b0ea691461072b5761031a565b806355f804b31461061d5780635647835e146106465780636352211e146106715761031a565b80633b84d9c6146105565780633ccfd60b1461056d578063405138961461058457806342842e0e146105a05780634b951cef146105c957806351830227146105f25761031a565b8063095ea7b3116102d757806318160ddd116102b157806318160ddd146104ac5780631fe70d6f146104d757806323b872dd1461050257806332cb6b0c1461052b5761031a565b8063095ea7b31461042f5780630a7dbec3146104585780630fcf2e75146104815761031a565b806301ffc9a71461031f57806306421c2f1461035c57806306fdde0314610385578063081812fc146103b0578063081c8c44146103ed578063082e2a7214610418575b600080fd5b34801561032b57600080fd5b506103466004803603810190610341919061465e565b610bdf565b6040516103539190614c48565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614736565b610cc1565b005b34801561039157600080fd5b5061039a610d5d565b6040516103a79190614c63565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d291906147b3565b610def565b6040516103e49190614be1565b60405180910390f35b3480156103f957600080fd5b50610402610e6b565b60405161040f9190614c63565b60405180910390f35b34801561042457600080fd5b5061042d610ef9565b005b34801561043b57600080fd5b50610456600480360381019061045191906145f9565b610fa1565b005b34801561046457600080fd5b5061047f600480360381019061047a9190614736565b6110ac565b005b34801561048d57600080fd5b50610496611148565b6040516104a39190614c48565b60405180910390f35b3480156104b857600080fd5b506104c161115b565b6040516104ce9190614ec0565b60405180910390f35b3480156104e357600080fd5b506104ec611172565b6040516104f99190614c48565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906144b7565b611185565b005b34801561053757600080fd5b50610540611195565b60405161054d9190614ea5565b60405180910390f35b34801561056257600080fd5b5061056b6111a9565b005b34801561057957600080fd5b50610582611251565b005b61059e60048036038101906105999190614736565b611383565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906144b7565b6115be565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190614635565b6115de565b005b3480156105fe57600080fd5b50610607611664565b6040516106149190614c48565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f91906146b0565b611677565b005b34801561065257600080fd5b5061065b611709565b6040516106689190614ec0565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906147b3565b61170f565b6040516106a59190614be1565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d091906147b3565b611725565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190614452565b6117ab565b60405161070b9190614ec0565b60405180910390f35b34801561072057600080fd5b5061072961187b565b005b34801561073757600080fd5b50610740611903565b005b34801561074e57600080fd5b50610769600480360381019061076491906145bd565b6119ab565b005b34801561077757600080fd5b50610780611ae8565b60405161078d9190614c48565b60405180910390f35b3480156107a257600080fd5b506107ab611afb565b6040516107b89190614c48565b60405180910390f35b3480156107cd57600080fd5b506107d6611b0e565b6040516107e39190614ec0565b60405180910390f35b3480156107f857600080fd5b50610801611b14565b60405161080e9190614be1565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906147b3565b611b3e565b005b34801561084c57600080fd5b50610855611bc4565b6040516108629190614c63565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190614635565b611c56565b005b3480156108a057600080fd5b506108a9611cdc565b6040516108b69190614ea5565b60405180910390f35b6108d960048036038101906108d4919061475f565b611cf0565b005b3480156108e757600080fd5b506108f0611fa1565b005b3480156108fe57600080fd5b5061091960048036038101906109149190614581565b612049565b005b6109356004803603810190610930919061475f565b6121c1565b005b34801561094357600080fd5b5061094c612515565b6040516109599190614ea5565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614506565b612529565b005b34801561099757600080fd5b506109b260048036038101906109ad919061475f565b6125a5565b005b3480156109c057600080fd5b506109db60048036038101906109d691906147b3565b6128b8565b6040516109e89190614c63565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a139190614452565b612a05565b604051610a259190614ea5565b60405180910390f35b348015610a3a57600080fd5b50610a43612a26565b005b348015610a5157600080fd5b50610a6c6004803603810190610a679190614452565b612ace565b604051610a799190614ea5565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061447b565b612aef565b604051610ab69190614c48565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190614452565b612b83565b604051610af39190614ea5565b60405180910390f35b348015610b0857600080fd5b50610b236004803603810190610b1e91906146f5565b612ba4565b005b348015610b3157600080fd5b50610b4c6004803603810190610b479190614452565b612c3a565b005b348015610b5a57600080fd5b50610b63612d32565b604051610b709190614ea5565b60405180910390f35b348015610b8557600080fd5b50610ba06004803603810190610b9b9190614452565b612d46565b604051610bad9190614ea5565b60405180910390f35b348015610bc257600080fd5b50610bdd6004803603810190610bd89190614635565b612d67565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610caa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cba5750610cb982612ded565b5b9050919050565b610cc9612e57565b73ffffffffffffffffffffffffffffffffffffffff16610ce7611b14565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490614e05565b60405180910390fd5b806008601a6101000a81548161ffff021916908361ffff16021790555050565b606060028054610d6c9061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d989061522b565b8015610de55780601f10610dba57610100808354040283529160200191610de5565b820191906000526020600020905b815481529060010190602001808311610dc857829003601f168201915b5050505050905090565b6000610dfa82612e5f565b610e30576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e789061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea49061522b565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b505050505081565b610f01612e57565b73ffffffffffffffffffffffffffffffffffffffff16610f1f611b14565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90614e05565b60405180910390fd5b600b60039054906101000a900460ff1615600b60036101000a81548160ff021916908315150217905550565b6000610fac8261170f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611033612e57565b73ffffffffffffffffffffffffffffffffffffffff161415801561106557506110638161105e612e57565b612aef565b155b1561109c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110a7838383612ead565b505050565b6110b4612e57565b73ffffffffffffffffffffffffffffffffffffffff166110d2611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90614e05565b60405180910390fd5b80600860186101000a81548161ffff021916908361ffff16021790555050565b600b60019054906101000a900460ff1681565b6000611165612f5f565b6001546000540303905090565b600b60039054906101000a900460ff1681565b611190838383612f64565b505050565b6008601a9054906101000a900461ffff1681565b6111b1612e57565b73ffffffffffffffffffffffffffffffffffffffff166111cf611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90614e05565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611259612e57565b73ffffffffffffffffffffffffffffffffffffffff16611277611b14565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614e05565b60405180910390fd5b60006112d7611b14565b73ffffffffffffffffffffffffffffffffffffffff16476040516112fa90614bcc565b60006040518083038185875af1925050503d8060008114611337576040519150601f19603f3d011682016040523d82523d6000602084013e61133c565b606091505b5050905080611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790614d05565b60405180910390fd5b50565b600b60019054906101000a900460ff166113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990614dc5565b60405180910390fd5b600860169054906101000a900461ffff16600860189054906101000a900461ffff166113fe91906150f5565b6008601a9054906101000a900461ffff1661141991906150f5565b61ffff168161ffff1661142a61115b565b6114349190615014565b1115611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90614de5565b60405180910390fd5b8061ffff16600954611487919061509b565b3410156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614d25565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90614e45565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166115939190614fdc565b92506101000a81548161ffff021916908361ffff1602179055506115bb338261ffff1661341a565b50565b6115d983838360405180602001604052806000815250612529565b505050565b6115e6612e57565b73ffffffffffffffffffffffffffffffffffffffff16611604611b14565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614e05565b60405180910390fd5b80600f8190555050565b600b60009054906101000a900460ff1681565b61167f612e57565b73ffffffffffffffffffffffffffffffffffffffff1661169d611b14565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90614e05565b60405180910390fd5b8181600c91906117049291906140a3565b505050565b600a5481565b600061171a82613438565b600001519050919050565b61172d612e57565b73ffffffffffffffffffffffffffffffffffffffff1661174b611b14565b73ffffffffffffffffffffffffffffffffffffffff16146117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890614e05565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611813576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611883612e57565b73ffffffffffffffffffffffffffffffffffffffff166118a1611b14565b73ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614e05565b60405180910390fd5b61190160006136c7565b565b61190b612e57565b73ffffffffffffffffffffffffffffffffffffffff16611929611b14565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614e05565b60405180910390fd5b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b6119b3612e57565b73ffffffffffffffffffffffffffffffffffffffff166119d1611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90614e05565b60405180910390fd5b600860189054906101000a900461ffff1661ffff1681600860169054906101000a900461ffff16611a589190614fdc565b61ffff161115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614cc5565b60405180910390fd5b80600860168282829054906101000a900461ffff16611abc9190614fdc565b92506101000a81548161ffff021916908361ffff160217905550611ae4828261ffff1661341a565b5050565b600b60029054906101000a900460ff1681565b600b60049054906101000a900460ff1681565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b46612e57565b73ffffffffffffffffffffffffffffffffffffffff16611b64611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614e05565b60405180910390fd5b8060098190555050565b606060038054611bd39061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff9061522b565b8015611c4c5780601f10611c2157610100808354040283529160200191611c4c565b820191906000526020600020905b815481529060010190602001808311611c2f57829003601f168201915b5050505050905090565b611c5e612e57565b73ffffffffffffffffffffffffffffffffffffffff16611c7c611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614e05565b60405180910390fd5b80600e8190555050565b600860149054906101000a900461ffff1681565b600b60029054906101000a900460ff16611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690614c85565b60405180910390fd5b600033604051602001611d529190614b6b565b604051602081830303815290604052805190602001209050611d7782600e548361378d565b611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614da5565b60405180910390fd5b600383601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611e119190614fdc565b61ffff161115611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90614e65565b60405180910390fd5b8261ffff16600a54611e68919061509b565b341015611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614d25565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90614e45565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16611f749190614fdc565b92506101000a81548161ffff021916908361ffff160217905550611f9c338461ffff1661341a565b505050565b611fa9612e57565b73ffffffffffffffffffffffffffffffffffffffff16611fc7611b14565b73ffffffffffffffffffffffffffffffffffffffff161461201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614e05565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b612051612e57565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120c3612e57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612170612e57565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b59190614c48565b60405180910390a35050565b600b60039054906101000a900460ff16612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614e85565b60405180910390fd5b6000336040516020016122239190614b6b565b60405160208183030381529060405280519060200120905061224882600f548361378d565b612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90614da5565b60405180910390fd5b600a83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166122e29190614fdc565b61ffff161115612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614ca5565b60405180910390fd5b600860169054906101000a900461ffff16600860189054906101000a900461ffff1661235391906150f5565b6008601a9054906101000a900461ffff1661236e91906150f5565b61ffff168361ffff1661237f61115b565b6123899190615014565b11156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614de5565b60405180910390fd5b8261ffff166009546123dc919061509b565b34101561241e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241590614d25565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614e45565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166124e89190614fdc565b92506101000a81548161ffff021916908361ffff160217905550612510338461ffff1661341a565b505050565b600860189054906101000a900461ffff1681565b612534848484612f64565b6125538373ffffffffffffffffffffffffffffffffffffffff166137a4565b80156125685750612566848484846137c7565b155b1561259f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b60049054906101000a900460ff166125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90614d45565b60405180910390fd5b6000336040516020016126079190614b6b565b60405160208183030381529060405280519060200120905061262c826010548361378d565b61266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614d85565b60405180910390fd5b600860149054906101000a900461ffff1661ffff1683601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166126d99190614fdc565b61ffff16111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614d65565b60405180910390fd5b600860169054906101000a900461ffff16600860189054906101000a900461ffff1661274a91906150f5565b6008601a9054906101000a900461ffff1661276591906150f5565b61ffff168361ffff1661277661115b565b6127809190615014565b11156127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614de5565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690614e45565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661288b9190614fdc565b92506101000a81548161ffff021916908361ffff1602179055506128b3338461ffff1661341a565b505050565b60606128c382612e5f565b612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990614e25565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514156129b057600d805461292b9061522b565b80601f01602080910402602001604051908101604052809291908181526020018280546129579061522b565b80156129a45780601f10612979576101008083540402835291602001916129a4565b820191906000526020600020905b81548152906001019060200180831161298757829003601f168201915b50505050509050612a00565b60006129bb83613927565b905060008151116129db57604051806020016040528060008152506129fc565b806040516020016129ec9190614baa565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915054906101000a900461ffff1681565b612a2e612e57565b73ffffffffffffffffffffffffffffffffffffffff16612a4c611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990614e05565b60405180910390fd5b600b60049054906101000a900460ff1615600b60046101000a81548160ff021916908315150217905550565b60146020528060005260406000206000915054906101000a900461ffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915054906101000a900461ffff1681565b612bac612e57565b73ffffffffffffffffffffffffffffffffffffffff16612bca611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614e05565b60405180910390fd5b80600d9080519060200190612c36929190614129565b5050565b612c42612e57565b73ffffffffffffffffffffffffffffffffffffffff16612c60611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90614e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614ce5565b60405180910390fd5b612d2f816136c7565b50565b600860169054906101000a900461ffff1681565b60136020528060005260406000206000915054906101000a900461ffff1681565b612d6f612e57565b73ffffffffffffffffffffffffffffffffffffffff16612d8d611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda90614e05565b60405180910390fd5b8060108190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612e6a612f5f565b11158015612e79575060005482105b8015612ea6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612f6f82613438565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fda576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ffb612e57565b73ffffffffffffffffffffffffffffffffffffffff16148061302a575061302985613024612e57565b612aef565b5b8061306f5750613038612e57565b73ffffffffffffffffffffffffffffffffffffffff1661305784610def565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806130a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561310f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61311c85858560016139c6565b61312860008487612ead565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156133a85760005482146133a757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461341385858560016139cc565b5050505050565b6134348282604051806020016040528060008152506139d2565b5050565b6134406141af565b60008290508061344e612f5f565b1115801561345d575060005481105b15613690576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161368e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135725780925050506136c2565b5b60011561368d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136885780925050506136c2565b613573565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261379a85846139e4565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137ed612e57565b8786866040518563ffffffff1660e01b815260040161380f9493929190614bfc565b602060405180830381600087803b15801561382957600080fd5b505af192505050801561385a57506040513d601f19601f820116820180604052508101906138579190614687565b60015b6138d4573d806000811461388a576040519150601f19603f3d011682016040523d82523d6000602084013e61388f565b606091505b506000815114156138cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061393282612e5f565b613968576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613972613a7f565b905060008151141561399357604051806020016040528060008152506139be565b8061399d84613b11565b6040516020016139ae929190614b86565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b6139df8383836001613cbe565b505050565b60008082905060005b8451811015613a74576000858281518110613a31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613a5357613a4c838261408c565b9250613a60565b613a5d818461408c565b92505b508080613a6c9061528e565b9150506139ed565b508091505092915050565b6060600c8054613a8e9061522b565b80601f0160208091040260200160405190810160405280929190818152602001828054613aba9061522b565b8015613b075780601f10613adc57610100808354040283529160200191613b07565b820191906000526020600020905b815481529060010190602001808311613aea57829003601f168201915b5050505050905090565b60606000821415613b59576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613cb9565b600082905060005b60008214613b8b578080613b749061528e565b915050600a82613b84919061506a565b9150613b61565b60008167ffffffffffffffff811115613bcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613bff5781602001600182028036833780820191505090505b5090505b60008514613cb257600182613c189190615129565b9150600a85613c2791906152fb565b6030613c339190615014565b60f81b818381518110613c6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613cab919061506a565b9450613c03565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613d2b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613d66576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613d7360008683876139c6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613f3d5750613f3c8773ffffffffffffffffffffffffffffffffffffffff166137a4565b5b15614003575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613fb260008884806001019550886137c7565b613fe8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613f43578260005414613ffe57600080fd5b61406f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614004575b81600081905550505061408560008683876139cc565b5050505050565b600082600052816020526040600020905092915050565b8280546140af9061522b565b90600052602060002090601f0160209004810192826140d15760008555614118565b82601f106140ea57803560ff1916838001178555614118565b82800160010185558215614118579182015b828111156141175782358255916020019190600101906140fc565b5b50905061412591906141f2565b5090565b8280546141359061522b565b90600052602060002090601f016020900481019282614157576000855561419e565b82601f1061417057805160ff191683800117855561419e565b8280016001018555821561419e579182015b8281111561419d578251825591602001919060010190614182565b5b5090506141ab91906141f2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561420b5760008160009055506001016141f3565b5090565b600061422261421d84614f00565b614edb565b9050808382526020820190508285602086028201111561424157600080fd5b60005b858110156142715781614257888261434b565b845260208401935060208301925050600181019050614244565b5050509392505050565b600061428e61428984614f2c565b614edb565b9050828152602081018484840111156142a657600080fd5b6142b18482856151e9565b509392505050565b60006142cc6142c784614f5d565b614edb565b9050828152602081018484840111156142e457600080fd5b6142ef8482856151e9565b509392505050565b6000813590506143068161581b565b92915050565b600082601f83011261431d57600080fd5b813561432d84826020860161420f565b91505092915050565b60008135905061434581615832565b92915050565b60008135905061435a81615849565b92915050565b60008135905061436f81615860565b92915050565b60008151905061438481615860565b92915050565b600082601f83011261439b57600080fd5b81356143ab84826020860161427b565b91505092915050565b60008083601f8401126143c657600080fd5b8235905067ffffffffffffffff8111156143df57600080fd5b6020830191508360018202830111156143f757600080fd5b9250929050565b600082601f83011261440f57600080fd5b813561441f8482602086016142b9565b91505092915050565b60008135905061443781615877565b92915050565b60008135905061444c8161588e565b92915050565b60006020828403121561446457600080fd5b6000614472848285016142f7565b91505092915050565b6000806040838503121561448e57600080fd5b600061449c858286016142f7565b92505060206144ad858286016142f7565b9150509250929050565b6000806000606084860312156144cc57600080fd5b60006144da868287016142f7565b93505060206144eb868287016142f7565b92505060406144fc8682870161443d565b9150509250925092565b6000806000806080858703121561451c57600080fd5b600061452a878288016142f7565b945050602061453b878288016142f7565b935050604061454c8782880161443d565b925050606085013567ffffffffffffffff81111561456957600080fd5b6145758782880161438a565b91505092959194509250565b6000806040838503121561459457600080fd5b60006145a2858286016142f7565b92505060206145b385828601614336565b9150509250929050565b600080604083850312156145d057600080fd5b60006145de858286016142f7565b92505060206145ef85828601614428565b9150509250929050565b6000806040838503121561460c57600080fd5b600061461a858286016142f7565b925050602061462b8582860161443d565b9150509250929050565b60006020828403121561464757600080fd5b60006146558482850161434b565b91505092915050565b60006020828403121561467057600080fd5b600061467e84828501614360565b91505092915050565b60006020828403121561469957600080fd5b60006146a784828501614375565b91505092915050565b600080602083850312156146c357600080fd5b600083013567ffffffffffffffff8111156146dd57600080fd5b6146e9858286016143b4565b92509250509250929050565b60006020828403121561470757600080fd5b600082013567ffffffffffffffff81111561472157600080fd5b61472d848285016143fe565b91505092915050565b60006020828403121561474857600080fd5b600061475684828501614428565b91505092915050565b6000806040838503121561477257600080fd5b600061478085828601614428565b925050602083013567ffffffffffffffff81111561479d57600080fd5b6147a98582860161430c565b9150509250929050565b6000602082840312156147c557600080fd5b60006147d38482850161443d565b91505092915050565b6147e58161515d565b82525050565b6147fc6147f78261515d565b6152d7565b82525050565b61480b8161516f565b82525050565b600061481c82614f8e565b6148268185614fa4565b93506148368185602086016151f8565b61483f816153e8565b840191505092915050565b600061485582614f99565b61485f8185614fc0565b935061486f8185602086016151f8565b614878816153e8565b840191505092915050565b600061488e82614f99565b6148988185614fd1565b93506148a88185602086016151f8565b80840191505092915050565b60006148c1601b83614fc0565b91506148cc82615406565b602082019050919050565b60006148e4602483614fc0565b91506148ef8261542f565b604082019050919050565b6000614907602483614fc0565b91506149128261547e565b604082019050919050565b600061492a602683614fc0565b9150614935826154cd565b604082019050919050565b600061494d600f83614fc0565b91506149588261551c565b602082019050919050565b6000614970602383614fc0565b915061497b82615545565b604082019050919050565b6000614993601783614fc0565b915061499e82615594565b602082019050919050565b60006149b6602683614fc0565b91506149c1826155bd565b604082019050919050565b60006149d9601383614fc0565b91506149e48261560c565b602082019050919050565b60006149fc602083614fc0565b9150614a0782615635565b602082019050919050565b6000614a1f601983614fc0565b9150614a2a8261565e565b602082019050919050565b6000614a42602083614fc0565b9150614a4d82615687565b602082019050919050565b6000614a65600583614fd1565b9150614a70826156b0565b600582019050919050565b6000614a88602083614fc0565b9150614a93826156d9565b602082019050919050565b6000614aab602f83614fc0565b9150614ab682615702565b604082019050919050565b6000614ace600083614fb5565b9150614ad982615751565b600082019050919050565b6000614af1602b83614fc0565b9150614afc82615754565b604082019050919050565b6000614b14602383614fc0565b9150614b1f826157a3565b604082019050919050565b6000614b37601c83614fc0565b9150614b42826157f2565b602082019050919050565b614b56816151b1565b82525050565b614b65816151df565b82525050565b6000614b7782846147eb565b60148201915081905092915050565b6000614b928285614883565b9150614b9e8284614883565b91508190509392505050565b6000614bb68284614883565b9150614bc182614a58565b915081905092915050565b6000614bd782614ac1565b9150819050919050565b6000602082019050614bf660008301846147dc565b92915050565b6000608082019050614c1160008301876147dc565b614c1e60208301866147dc565b614c2b6040830185614b5c565b8181036060830152614c3d8184614811565b905095945050505050565b6000602082019050614c5d6000830184614802565b92915050565b60006020820190508181036000830152614c7d818461484a565b905092915050565b60006020820190508181036000830152614c9e816148b4565b9050919050565b60006020820190508181036000830152614cbe816148d7565b9050919050565b60006020820190508181036000830152614cde816148fa565b9050919050565b60006020820190508181036000830152614cfe8161491d565b9050919050565b60006020820190508181036000830152614d1e81614940565b9050919050565b60006020820190508181036000830152614d3e81614963565b9050919050565b60006020820190508181036000830152614d5e81614986565b9050919050565b60006020820190508181036000830152614d7e816149a9565b9050919050565b60006020820190508181036000830152614d9e816149cc565b9050919050565b60006020820190508181036000830152614dbe816149ef565b9050919050565b60006020820190508181036000830152614dde81614a12565b9050919050565b60006020820190508181036000830152614dfe81614a35565b9050919050565b60006020820190508181036000830152614e1e81614a7b565b9050919050565b60006020820190508181036000830152614e3e81614a9e565b9050919050565b60006020820190508181036000830152614e5e81614ae4565b9050919050565b60006020820190508181036000830152614e7e81614b07565b9050919050565b60006020820190508181036000830152614e9e81614b2a565b9050919050565b6000602082019050614eba6000830184614b4d565b92915050565b6000602082019050614ed56000830184614b5c565b92915050565b6000614ee5614ef6565b9050614ef1828261525d565b919050565b6000604051905090565b600067ffffffffffffffff821115614f1b57614f1a6153b9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f4757614f466153b9565b5b614f50826153e8565b9050602081019050919050565b600067ffffffffffffffff821115614f7857614f776153b9565b5b614f81826153e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fe7826151b1565b9150614ff2836151b1565b92508261ffff038211156150095761500861532c565b5b828201905092915050565b600061501f826151df565b915061502a836151df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561505f5761505e61532c565b5b828201905092915050565b6000615075826151df565b9150615080836151df565b9250826150905761508f61535b565b5b828204905092915050565b60006150a6826151df565b91506150b1836151df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150ea576150e961532c565b5b828202905092915050565b6000615100826151b1565b915061510b836151b1565b92508282101561511e5761511d61532c565b5b828203905092915050565b6000615134826151df565b915061513f836151df565b9250828210156151525761515161532c565b5b828203905092915050565b6000615168826151bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156152165780820151818401526020810190506151fb565b83811115615225576000848401525b50505050565b6000600282049050600182168061524357607f821691505b602082108114156152575761525661538a565b5b50919050565b615266826153e8565b810181811067ffffffffffffffff82111715615285576152846153b9565b5b80604052505050565b6000615299826151df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152cc576152cb61532c565b5b600182019050919050565b60006152e2826152e9565b9050919050565b60006152f4826153f9565b9050919050565b6000615306826151df565b9150615311836151df565b9250826153215761532061535b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f476f6c646c6973742073616c65206973206e6f74206163746976650000000000600082015250565b7f5175616e7469747920657863656564732077686974656c69737420616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820666f722074686973207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f596f75206861766520616c726561647920636c61696d656420796f757220667260008201527f6565204e46540000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420616c6c6f77656400000000000000000000000000600082015250565b7f41646472657373206e6f7420616c6c6f77656420617420746869732074696d65600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73616374696f6e2066726f6d20736d61727420636f6e74726163742060008201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206578636565647320676f6c646c69737420616c6c6f776160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206973206e6f742061637469766500000000600082015250565b6158248161515d565b811461582f57600080fd5b50565b61583b8161516f565b811461584657600080fd5b50565b6158528161517b565b811461585d57600080fd5b50565b61586981615185565b811461587457600080fd5b50565b615880816151b1565b811461588b57600080fd5b50565b615897816151df565b81146158a257600080fd5b5056fea26469706673582212204d19e282ff594d9ed64773979a2d711f5a426f9f5654e374f802dd2962fac7e264736f6c63430008040033

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.