ETH Price: $2,681.00 (-2.06%)

Token

Monster Suit Px (MSPX)
 

Overview

Max Total Supply

565 MSPX

Holders

224

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bwca.eth
Balance
1 MSPX
0xef0f4ef0ecaa661e60caf9d7e9864928fc105c4d
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:
MonsterSuitPx

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

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

    uint16 public LIMIT = 4;
    uint16 public MAX_SUPPLY = 2500;
    uint256 public WHITELIST_PRICE = 75000000000000000;
    uint256 public PRICE = 75000000000000000;
    
    bool public revealed = false;
    bool public freeMintIsActive = false;
    bool public whitelistSaleIsActive = false;
    bool public saleIsActive = false;

    string private _baseTokenURI;
    string public notRevealedUri;
    bytes32 aroot;
    bytes32 broot;
    bytes32 croot;
    bytes32 droot;
    bytes32 wroot;
    mapping(address => uint16) public addressMintedBalance;

    constructor() ERC721A("Monster Suit Px", "MSPX") {}

    function freeAMint(uint16 amount, bytes32[] memory proof) external
    {
        require(freeMintIsActive, "Free mint is not active");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, aroot, leaf), "Address not whitelisted");
        require(addressMintedBalance[msg.sender] + amount <= 4, "Max NFT per address exceeded");
        require(totalSupply() + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function freeBMint(uint16 amount, bytes32[] memory proof) external
    {
        require(freeMintIsActive, "Free mint is not active");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, broot, leaf), "Address not whitelisted");
        require(addressMintedBalance[msg.sender] + amount <= 3, "Max NFT per address exceeded");
        require(totalSupply() + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }
    
    function freeCMint(uint16 amount, bytes32[] memory proof) external
    {
        require(freeMintIsActive, "Free mint is not active");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, croot, leaf), "Address not whitelisted");
        require(addressMintedBalance[msg.sender] + amount <= 2, "Max NFT per address exceeded");
        require(totalSupply() + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function freeDMint(uint16 amount, bytes32[] memory proof) external
    {
        require(freeMintIsActive, "Free mint is not active");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, droot, leaf), "Address not whitelisted");
        require(addressMintedBalance[msg.sender] + amount <= 1, "Max NFT per address exceeded");
        require(totalSupply() + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function whitelistMint(uint16 amount, bytes32[] memory proof) external payable
    {
        require(whitelistSaleIsActive, "Sale is not active");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, wroot, leaf), "Address not whitelisted");
        require(addressMintedBalance[msg.sender] + amount <= LIMIT, "Max NFT per address exceeded");
        require(totalSupply() + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(msg.value >= WHITELIST_PRICE * amount, "Not enough ETH for this transaction");
        require(msg.sender == tx.origin, "Transaction from smart contract not allowed");
        
        addressMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function mint(uint16 amount) external payable
    {
        require(saleIsActive, "Sale is not active");
        require(addressMintedBalance[msg.sender] + amount <= LIMIT, "Max NFT per address exceeded");
        require(totalSupply() + amount <= MAX_SUPPLY, "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");
        
        addressMintedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function adminMint(address to, uint16 amount) external onlyOwner 
    {
        _safeMint(to, amount); 
    }

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

    function setWhitelistPrice(uint256 newPrice) external onlyOwner 
    {
        WHITELIST_PRICE = newPrice;
    }

    function setLimit(uint16 newLimit) external onlyOwner 
    {
        LIMIT = newLimit;
    }

    function setSupply(uint16 newSupply) external onlyOwner 
    {
        MAX_SUPPLY = newSupply;
    }

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

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

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

    function flipWhitelistSaleState() external onlyOwner
    {
        whitelistSaleIsActive = !whitelistSaleIsActive;
    }

    function flipSaleState() external onlyOwner
    {
        saleIsActive = !saleIsActive;
    }

    function setARoot(bytes32 _root) external onlyOwner
    {
        aroot = _root;
    }

    function setBRoot(bytes32 _root) external onlyOwner
    {
        broot = _root;
    }

    function setCRoot(bytes32 _root) external onlyOwner
    {
        croot = _root;
    }

    function setDRoot(bytes32 _root) external onlyOwner
    {
        droot = _root;
    }
    
    function setWRoot(bytes32 _root) external onlyOwner
    {
        wroot = _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":"LIMIT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":"flipRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeAMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeBMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeCMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeDMint","outputs":[],"stateMutability":"nonpayable","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":[{"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":"uint16","name":"amount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setARoot","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":"bytes32","name":"_root","type":"bytes32"}],"name":"setBRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setCRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setDRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newLimit","type":"uint16"}],"name":"setLimit","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":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSupply","type":"uint16"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWhitelistPrice","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":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526004600860146101000a81548161ffff021916908361ffff1602179055506109c4600860166101000a81548161ffff021916908361ffff16021790555067010a741a4627800060095567010a741a46278000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff021916908315150217905550348015620000d257600080fd5b506040518060400160405280600f81526020017f4d6f6e73746572205375697420507800000000000000000000000000000000008152506040518060400160405280600481526020017f4d5350580000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015792919062000282565b5080600390805190602001906200017092919062000282565b5062000181620001af60201b60201c565b6000819055505050620001a96200019d620001b460201b60201c565b620001bc60201b60201c565b62000397565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002909062000332565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b600060028204905060018216806200034b57607f821691505b6020821081141562000362576200036162000368565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61596d80620003a76000396000f3fe6080604052600436106102c95760003560e01c8063715018a611610175578063a22cb465116100dc578063d1beca6411610095578063e985e9c51161006f578063e985e9c514610a36578063eb8d244414610a73578063f2c4ce1e14610a9e578063f2fde38b14610ac7576102c9565b8063d1beca64146109df578063d872abd0146109f6578063db94b1ff14610a1f576102c9565b8063a22cb465146108e0578063af8214ef14610909578063b182e81814610934578063b88d4fde14610950578063c627525514610979578063c87b56dd146109a2576102c9565b806386b4606f1161012e57806386b4606f146107e45780638d859f3e1461080d5780638da5cb5b1461083857806395d89b411461086357806398bd82441461088e5780639ac79c0b146108b7576102c9565b8063715018a614610700578063717d57d31461071757806377566f8e1461074057806377cb4b9d146107695780637ab1c62314610792578063844d5983146107bb576102c9565b806323cf0a22116102345780633ccfd60b116101ed57806351830227116101c7578063518302271461063257806355f804b31461065d5780636352211e1461068657806370a08231146106c3576102c9565b80633ccfd60b146105c957806342842e0e146105e05780634f4c10f814610609576102c9565b806323cf0a22146105005780632714ce921461051c5780632c388bdd1461053357806332cb6b0c1461055c57806334918dfd1461058757806335ee0fd21461059e576102c9565b806310b5454d1161028657806310b5454d146103f057806317e7f2951461041b57806318160ddd1461044657806318cae269146104715780631f7e7ab7146104ae57806323b872dd146104d7576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063081c8c4414610373578063095ea7b31461039e5780630f2ee0b1146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190614a44565b610af0565b6040516103029190614f5c565b60405180910390f35b34801561031757600080fd5b50610320610bd2565b60405161032d9190614f77565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190614b99565b610c64565b60405161036a9190614ef5565b60405180910390f35b34801561037f57600080fd5b50610388610ce0565b6040516103959190614f77565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c091906149df565b610d6e565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190614b1c565b610e79565b005b3480156103fc57600080fd5b50610405610f15565b6040516104129190614f5c565b60405180910390f35b34801561042757600080fd5b50610430610f28565b60405161043d9190615114565b60405180910390f35b34801561045257600080fd5b5061045b610f2e565b6040516104689190615114565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190614838565b610f45565b6040516104a591906150f9565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190614b45565b610f66565b005b3480156104e357600080fd5b506104fe60048036038101906104f9919061489d565b611230565b005b61051a60048036038101906105159190614b1c565b611240565b005b34801561052857600080fd5b506105316114f8565b005b34801561053f57600080fd5b5061055a60048036038101906105559190614b45565b6115a0565b005b34801561056857600080fd5b5061057161186a565b60405161057e91906150f9565b60405180910390f35b34801561059357600080fd5b5061059c61187e565b005b3480156105aa57600080fd5b506105b3611926565b6040516105c09190614f5c565b60405180910390f35b3480156105d557600080fd5b506105de611939565b005b3480156105ec57600080fd5b506106076004803603810190610602919061489d565b611a6b565b005b34801561061557600080fd5b50610630600480360381019061062b9190614a1b565b611a8b565b005b34801561063e57600080fd5b50610647611b11565b6040516106549190614f5c565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190614a96565b611b24565b005b34801561069257600080fd5b506106ad60048036038101906106a89190614b99565b611bb6565b6040516106ba9190614ef5565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190614838565b611bcc565b6040516106f79190615114565b60405180910390f35b34801561070c57600080fd5b50610715611c9c565b005b34801561072357600080fd5b5061073e60048036038101906107399190614b99565b611d24565b005b34801561074c57600080fd5b5061076760048036038101906107629190614a1b565b611daa565b005b34801561077557600080fd5b50610790600480360381019061078b9190614a1b565b611e30565b005b34801561079e57600080fd5b506107b960048036038101906107b491906149a3565b611eb6565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190614b45565b611f44565b005b3480156107f057600080fd5b5061080b60048036038101906108069190614b1c565b61220e565b005b34801561081957600080fd5b506108226122aa565b60405161082f9190615114565b60405180910390f35b34801561084457600080fd5b5061084d6122b0565b60405161085a9190614ef5565b60405180910390f35b34801561086f57600080fd5b506108786122da565b6040516108859190614f77565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190614b45565b61236c565b005b3480156108c357600080fd5b506108de60048036038101906108d99190614a1b565b612636565b005b3480156108ec57600080fd5b5061090760048036038101906109029190614967565b6126bc565b005b34801561091557600080fd5b5061091e612834565b60405161092b91906150f9565b60405180910390f35b61094e60048036038101906109499190614b45565b612848565b005b34801561095c57600080fd5b50610977600480360381019061097291906148ec565b612b79565b005b34801561098557600080fd5b506109a0600480360381019061099b9190614b99565b612bf5565b005b3480156109ae57600080fd5b506109c960048036038101906109c49190614b99565b612c7b565b6040516109d69190614f77565b60405180910390f35b3480156109eb57600080fd5b506109f4612dc8565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614a1b565b612e70565b005b348015610a2b57600080fd5b50610a34612ef6565b005b348015610a4257600080fd5b50610a5d6004803603810190610a589190614861565b612f9e565b604051610a6a9190614f5c565b60405180910390f35b348015610a7f57600080fd5b50610a88613032565b604051610a959190614f5c565b60405180910390f35b348015610aaa57600080fd5b50610ac56004803603810190610ac09190614adb565b613045565b005b348015610ad357600080fd5b50610aee6004803603810190610ae99190614838565b6130db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bbb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bcb5750610bca826131d3565b5b9050919050565b606060028054610be19061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d9061544b565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b5050505050905090565b6000610c6f8261323d565b610ca5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ced9061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d199061544b565b8015610d665780601f10610d3b57610100808354040283529160200191610d66565b820191906000526020600020905b815481529060010190602001808311610d4957829003601f168201915b505050505081565b6000610d7982611bb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0061328b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e325750610e3081610e2b61328b565b612f9e565b155b15610e69576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e74838383613293565b505050565b610e8161328b565b73ffffffffffffffffffffffffffffffffffffffff16610e9f6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90615059565b60405180910390fd5b80600860166101000a81548161ffff021916908361ffff16021790555050565b600b60029054906101000a900460ff1681565b60095481565b6000610f38613345565b6001546000540303905090565b60136020528060005260406000206000915054906101000a900461ffff1681565b600b60019054906101000a900460ff16610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614ff9565b60405180910390fd5b600033604051602001610fc89190614e7f565b604051602081830303815290604052805190602001209050610fed82600e548361334a565b61102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390615099565b60405180910390fd5b600483601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166110879190615230565b61ffff1611156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166110ee610f2e565b6110f89190615268565b1115611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166112039190615230565b92506101000a81548161ffff021916908361ffff16021790555061122b338461ffff16613361565b505050565b61123b83838361337f565b505050565b600b60039054906101000a900460ff1661128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690615019565b60405180910390fd5b600860149054906101000a900461ffff1661ffff1681601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166112fd9190615230565b61ffff161115611342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611339906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168161ffff16611364610f2e565b61136e9190615268565b11156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690615039565b60405180910390fd5b8061ffff16600a546113c191906152ef565b341015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614fd9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906150d9565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166114cd9190615230565b92506101000a81548161ffff021916908361ffff1602179055506114f5338261ffff16613361565b50565b61150061328b565b73ffffffffffffffffffffffffffffffffffffffff1661151e6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90615059565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff166115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690614ff9565b60405180910390fd5b6000336040516020016116029190614e7f565b604051602081830303815290604052805190602001209050611627826011548361334a565b611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90615099565b60405180910390fd5b600183601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166116c19190615230565b61ffff161115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff16611728610f2e565b6117329190615268565b1115611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d8906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661183d9190615230565b92506101000a81548161ffff021916908361ffff160217905550611865338461ffff16613361565b505050565b600860169054906101000a900461ffff1681565b61188661328b565b73ffffffffffffffffffffffffffffffffffffffff166118a46122b0565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190615059565b60405180910390fd5b600b60039054906101000a900460ff1615600b60036101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b61194161328b565b73ffffffffffffffffffffffffffffffffffffffff1661195f6122b0565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90615059565b60405180910390fd5b60006119bf6122b0565b73ffffffffffffffffffffffffffffffffffffffff16476040516119e290614ee0565b60006040518083038185875af1925050503d8060008114611a1f576040519150601f19603f3d011682016040523d82523d6000602084013e611a24565b606091505b5050905080611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90614fb9565b60405180910390fd5b50565b611a8683838360405180602001604052806000815250612b79565b505050565b611a9361328b565b73ffffffffffffffffffffffffffffffffffffffff16611ab16122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90615059565b60405180910390fd5b8060108190555050565b600b60009054906101000a900460ff1681565b611b2c61328b565b73ffffffffffffffffffffffffffffffffffffffff16611b4a6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790615059565b60405180910390fd5b8181600c9190611bb1929190614489565b505050565b6000611bc182613835565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c34576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ca461328b565b73ffffffffffffffffffffffffffffffffffffffff16611cc26122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90615059565b60405180910390fd5b611d226000613ac4565b565b611d2c61328b565b73ffffffffffffffffffffffffffffffffffffffff16611d4a6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790615059565b60405180910390fd5b8060098190555050565b611db261328b565b73ffffffffffffffffffffffffffffffffffffffff16611dd06122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90615059565b60405180910390fd5b80600f8190555050565b611e3861328b565b73ffffffffffffffffffffffffffffffffffffffff16611e566122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390615059565b60405180910390fd5b8060118190555050565b611ebe61328b565b73ffffffffffffffffffffffffffffffffffffffff16611edc6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990615059565b60405180910390fd5b611f40828261ffff16613361565b5050565b600b60019054906101000a900460ff16611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614ff9565b60405180910390fd5b600033604051602001611fa69190614e7f565b604051602081830303815290604052805190602001209050611fcb82600f548361334a565b61200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190615099565b60405180910390fd5b600383601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166120659190615230565b61ffff1611156120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a1906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166120cc610f2e565b6120d69190615268565b1115612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166121e19190615230565b92506101000a81548161ffff021916908361ffff160217905550612209338461ffff16613361565b505050565b61221661328b565b73ffffffffffffffffffffffffffffffffffffffff166122346122b0565b73ffffffffffffffffffffffffffffffffffffffff161461228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228190615059565b60405180910390fd5b80600860146101000a81548161ffff021916908361ffff16021790555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546122e99061544b565b80601f01602080910402602001604051908101604052809291908181526020018280546123159061544b565b80156123625780601f1061233757610100808354040283529160200191612362565b820191906000526020600020905b81548152906001019060200180831161234557829003601f168201915b5050505050905090565b600b60019054906101000a900460ff166123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290614ff9565b60405180910390fd5b6000336040516020016123ce9190614e7f565b6040516020818303038152906040528051906020012090506123f3826010548361334a565b612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990615099565b60405180910390fd5b600283601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661248d9190615230565b61ffff1611156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c9906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166124f4610f2e565b6124fe9190615268565b111561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a4906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166126099190615230565b92506101000a81548161ffff021916908361ffff160217905550612631338461ffff16613361565b505050565b61263e61328b565b73ffffffffffffffffffffffffffffffffffffffff1661265c6122b0565b73ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990615059565b60405180910390fd5b8060128190555050565b6126c461328b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612729576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061273661328b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127e361328b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128289190614f5c565b60405180910390a35050565b600860149054906101000a900461ffff1681565b600b60029054906101000a900460ff16612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e90615019565b60405180910390fd5b6000336040516020016128aa9190614e7f565b6040516020818303038152906040528051906020012090506128cf826012548361334a565b61290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590615099565b60405180910390fd5b600860149054906101000a900461ffff1661ffff1683601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661297c9190615230565b61ffff1611156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b8906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166129e3610f2e565b6129ed9190615268565b1115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590615039565b60405180910390fd5b8261ffff16600954612a4091906152ef565b341015612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990614fd9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae7906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16612b4c9190615230565b92506101000a81548161ffff021916908361ffff160217905550612b74338461ffff16613361565b505050565b612b8484848461337f565b612ba38373ffffffffffffffffffffffffffffffffffffffff16613b8a565b8015612bb85750612bb684848484613bad565b155b15612bef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b612bfd61328b565b73ffffffffffffffffffffffffffffffffffffffff16612c1b6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6890615059565b60405180910390fd5b80600a8190555050565b6060612c868261323d565b612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc90615079565b60405180910390fd5b60001515600b60009054906101000a900460ff1615151415612d7357600d8054612cee9061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1a9061544b565b8015612d675780601f10612d3c57610100808354040283529160200191612d67565b820191906000526020600020905b815481529060010190602001808311612d4a57829003601f168201915b50505050509050612dc3565b6000612d7e83613d0d565b90506000815111612d9e5760405180602001604052806000815250612dbf565b80604051602001612daf9190614ebe565b6040516020818303038152906040525b9150505b919050565b612dd061328b565b73ffffffffffffffffffffffffffffffffffffffff16612dee6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3b90615059565b60405180910390fd5b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b612e7861328b565b73ffffffffffffffffffffffffffffffffffffffff16612e966122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee390615059565b60405180910390fd5b80600e8190555050565b612efe61328b565b73ffffffffffffffffffffffffffffffffffffffff16612f1c6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6990615059565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60039054906101000a900460ff1681565b61304d61328b565b73ffffffffffffffffffffffffffffffffffffffff1661306b6122b0565b73ffffffffffffffffffffffffffffffffffffffff16146130c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b890615059565b60405180910390fd5b80600d90805190602001906130d792919061450f565b5050565b6130e361328b565b73ffffffffffffffffffffffffffffffffffffffff166131016122b0565b73ffffffffffffffffffffffffffffffffffffffff1614613157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314e90615059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131be90614f99565b60405180910390fd5b6131d081613ac4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081613248613345565b11158015613257575060005482105b8015613284575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000826133578584613dac565b1490509392505050565b61337b828260405180602001604052806000815250613e47565b5050565b600061338a82613835565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133f5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661341661328b565b73ffffffffffffffffffffffffffffffffffffffff16148061344557506134448561343f61328b565b612f9e565b5b8061348a575061345361328b565b73ffffffffffffffffffffffffffffffffffffffff1661347284610c64565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806134c3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561352a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135378585856001613e59565b61354360008487613293565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156137c35760005482146137c257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461382e8585856001613e5f565b5050505050565b61383d614595565b60008290508061384b613345565b1115801561385a575060005481105b15613a8d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613a8b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461396f578092505050613abf565b5b600115613a8a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613a85578092505050613abf565b613970565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613bd361328b565b8786866040518563ffffffff1660e01b8152600401613bf59493929190614f10565b602060405180830381600087803b158015613c0f57600080fd5b505af1925050508015613c4057506040513d601f19601f82011682018060405250810190613c3d9190614a6d565b60015b613cba573d8060008114613c70576040519150601f19603f3d011682016040523d82523d6000602084013e613c75565b606091505b50600081511415613cb2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060613d188261323d565b613d4e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613d58613e65565b9050600081511415613d795760405180602001604052806000815250613da4565b80613d8384613ef7565b604051602001613d94929190614e9a565b6040516020818303038152906040525b915050919050565b60008082905060005b8451811015613e3c576000858281518110613df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613e1b57613e1483826140a4565b9250613e28565b613e2581846140a4565b92505b508080613e34906154ae565b915050613db5565b508091505092915050565b613e5483838360016140bb565b505050565b50505050565b50505050565b6060600c8054613e749061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054613ea09061544b565b8015613eed5780601f10613ec257610100808354040283529160200191613eed565b820191906000526020600020905b815481529060010190602001808311613ed057829003601f168201915b5050505050905090565b60606000821415613f3f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061409f565b600082905060005b60008214613f71578080613f5a906154ae565b915050600a82613f6a91906152be565b9150613f47565b60008167ffffffffffffffff811115613fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613fe55781602001600182028036833780820191505090505b5090505b6000851461409857600182613ffe9190615349565b9150600a8561400d919061551b565b60306140199190615268565b60f81b818381518110614055577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561409191906152be565b9450613fe9565b8093505050505b919050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614128576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415614163576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141706000868387613e59565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561433a57506143398773ffffffffffffffffffffffffffffffffffffffff16613b8a565b5b15614400575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143af6000888480600101955088613bad565b6143e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156143405782600054146143fb57600080fd5b61446c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614401575b8160008190555050506144826000868387613e5f565b5050505050565b8280546144959061544b565b90600052602060002090601f0160209004810192826144b757600085556144fe565b82601f106144d057803560ff19168380011785556144fe565b828001600101855582156144fe579182015b828111156144fd5782358255916020019190600101906144e2565b5b50905061450b91906145d8565b5090565b82805461451b9061544b565b90600052602060002090601f01602090048101928261453d5760008555614584565b82601f1061455657805160ff1916838001178555614584565b82800160010185558215614584579182015b82811115614583578251825591602001919060010190614568565b5b50905061459191906145d8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156145f15760008160009055506001016145d9565b5090565b600061460861460384615154565b61512f565b9050808382526020820190508285602086028201111561462757600080fd5b60005b85811015614657578161463d8882614731565b84526020840193506020830192505060018101905061462a565b5050509392505050565b600061467461466f84615180565b61512f565b90508281526020810184848401111561468c57600080fd5b614697848285615409565b509392505050565b60006146b26146ad846151b1565b61512f565b9050828152602081018484840111156146ca57600080fd5b6146d5848285615409565b509392505050565b6000813590506146ec816158ad565b92915050565b600082601f83011261470357600080fd5b81356147138482602086016145f5565b91505092915050565b60008135905061472b816158c4565b92915050565b600081359050614740816158db565b92915050565b600081359050614755816158f2565b92915050565b60008151905061476a816158f2565b92915050565b600082601f83011261478157600080fd5b8135614791848260208601614661565b91505092915050565b60008083601f8401126147ac57600080fd5b8235905067ffffffffffffffff8111156147c557600080fd5b6020830191508360018202830111156147dd57600080fd5b9250929050565b600082601f8301126147f557600080fd5b813561480584826020860161469f565b91505092915050565b60008135905061481d81615909565b92915050565b60008135905061483281615920565b92915050565b60006020828403121561484a57600080fd5b6000614858848285016146dd565b91505092915050565b6000806040838503121561487457600080fd5b6000614882858286016146dd565b9250506020614893858286016146dd565b9150509250929050565b6000806000606084860312156148b257600080fd5b60006148c0868287016146dd565b93505060206148d1868287016146dd565b92505060406148e286828701614823565b9150509250925092565b6000806000806080858703121561490257600080fd5b6000614910878288016146dd565b9450506020614921878288016146dd565b935050604061493287828801614823565b925050606085013567ffffffffffffffff81111561494f57600080fd5b61495b87828801614770565b91505092959194509250565b6000806040838503121561497a57600080fd5b6000614988858286016146dd565b92505060206149998582860161471c565b9150509250929050565b600080604083850312156149b657600080fd5b60006149c4858286016146dd565b92505060206149d58582860161480e565b9150509250929050565b600080604083850312156149f257600080fd5b6000614a00858286016146dd565b9250506020614a1185828601614823565b9150509250929050565b600060208284031215614a2d57600080fd5b6000614a3b84828501614731565b91505092915050565b600060208284031215614a5657600080fd5b6000614a6484828501614746565b91505092915050565b600060208284031215614a7f57600080fd5b6000614a8d8482850161475b565b91505092915050565b60008060208385031215614aa957600080fd5b600083013567ffffffffffffffff811115614ac357600080fd5b614acf8582860161479a565b92509250509250929050565b600060208284031215614aed57600080fd5b600082013567ffffffffffffffff811115614b0757600080fd5b614b13848285016147e4565b91505092915050565b600060208284031215614b2e57600080fd5b6000614b3c8482850161480e565b91505092915050565b60008060408385031215614b5857600080fd5b6000614b668582860161480e565b925050602083013567ffffffffffffffff811115614b8357600080fd5b614b8f858286016146f2565b9150509250929050565b600060208284031215614bab57600080fd5b6000614bb984828501614823565b91505092915050565b614bcb8161537d565b82525050565b614be2614bdd8261537d565b6154f7565b82525050565b614bf18161538f565b82525050565b6000614c02826151e2565b614c0c81856151f8565b9350614c1c818560208601615418565b614c2581615608565b840191505092915050565b6000614c3b826151ed565b614c458185615214565b9350614c55818560208601615418565b614c5e81615608565b840191505092915050565b6000614c74826151ed565b614c7e8185615225565b9350614c8e818560208601615418565b80840191505092915050565b6000614ca7602683615214565b9150614cb282615626565b604082019050919050565b6000614cca600f83615214565b9150614cd582615675565b602082019050919050565b6000614ced602383615214565b9150614cf88261569e565b604082019050919050565b6000614d10601783615214565b9150614d1b826156ed565b602082019050919050565b6000614d33601283615214565b9150614d3e82615716565b602082019050919050565b6000614d56602083615214565b9150614d618261573f565b602082019050919050565b6000614d79600583615225565b9150614d8482615768565b600582019050919050565b6000614d9c602083615214565b9150614da782615791565b602082019050919050565b6000614dbf602f83615214565b9150614dca826157ba565b604082019050919050565b6000614de2601783615214565b9150614ded82615809565b602082019050919050565b6000614e05601c83615214565b9150614e1082615832565b602082019050919050565b6000614e28600083615209565b9150614e338261585b565b600082019050919050565b6000614e4b602b83615214565b9150614e568261585e565b604082019050919050565b614e6a816153d1565b82525050565b614e79816153ff565b82525050565b6000614e8b8284614bd1565b60148201915081905092915050565b6000614ea68285614c69565b9150614eb28284614c69565b91508190509392505050565b6000614eca8284614c69565b9150614ed582614d6c565b915081905092915050565b6000614eeb82614e1b565b9150819050919050565b6000602082019050614f0a6000830184614bc2565b92915050565b6000608082019050614f256000830187614bc2565b614f326020830186614bc2565b614f3f6040830185614e70565b8181036060830152614f518184614bf7565b905095945050505050565b6000602082019050614f716000830184614be8565b92915050565b60006020820190508181036000830152614f918184614c30565b905092915050565b60006020820190508181036000830152614fb281614c9a565b9050919050565b60006020820190508181036000830152614fd281614cbd565b9050919050565b60006020820190508181036000830152614ff281614ce0565b9050919050565b6000602082019050818103600083015261501281614d03565b9050919050565b6000602082019050818103600083015261503281614d26565b9050919050565b6000602082019050818103600083015261505281614d49565b9050919050565b6000602082019050818103600083015261507281614d8f565b9050919050565b6000602082019050818103600083015261509281614db2565b9050919050565b600060208201905081810360008301526150b281614dd5565b9050919050565b600060208201905081810360008301526150d281614df8565b9050919050565b600060208201905081810360008301526150f281614e3e565b9050919050565b600060208201905061510e6000830184614e61565b92915050565b60006020820190506151296000830184614e70565b92915050565b600061513961514a565b9050615145828261547d565b919050565b6000604051905090565b600067ffffffffffffffff82111561516f5761516e6155d9565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561519b5761519a6155d9565b5b6151a482615608565b9050602081019050919050565b600067ffffffffffffffff8211156151cc576151cb6155d9565b5b6151d582615608565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061523b826153d1565b9150615246836153d1565b92508261ffff0382111561525d5761525c61554c565b5b828201905092915050565b6000615273826153ff565b915061527e836153ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152b3576152b261554c565b5b828201905092915050565b60006152c9826153ff565b91506152d4836153ff565b9250826152e4576152e361557b565b5b828204905092915050565b60006152fa826153ff565b9150615305836153ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561533e5761533d61554c565b5b828202905092915050565b6000615354826153ff565b915061535f836153ff565b9250828210156153725761537161554c565b5b828203905092915050565b6000615388826153df565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561543657808201518184015260208101905061541b565b83811115615445576000848401525b50505050565b6000600282049050600182168061546357607f821691505b60208210811415615477576154766155aa565b5b50919050565b61548682615608565b810181811067ffffffffffffffff821117156154a5576154a46155d9565b5b80604052505050565b60006154b9826153ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154ec576154eb61554c565b5b600182019050919050565b600061550282615509565b9050919050565b600061551482615619565b9050919050565b6000615526826153ff565b9150615531836153ff565b9250826155415761554061557b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820666f722074686973207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b50565b7f5472616e73616374696f6e2066726f6d20736d61727420636f6e74726163742060008201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b6158b68161537d565b81146158c157600080fd5b50565b6158cd8161538f565b81146158d857600080fd5b50565b6158e48161539b565b81146158ef57600080fd5b50565b6158fb816153a5565b811461590657600080fd5b50565b615912816153d1565b811461591d57600080fd5b50565b615929816153ff565b811461593457600080fd5b5056fea26469706673582212200d77917992991363d32c661b789283e39c8cc56751f152daa78930e18209801864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063715018a611610175578063a22cb465116100dc578063d1beca6411610095578063e985e9c51161006f578063e985e9c514610a36578063eb8d244414610a73578063f2c4ce1e14610a9e578063f2fde38b14610ac7576102c9565b8063d1beca64146109df578063d872abd0146109f6578063db94b1ff14610a1f576102c9565b8063a22cb465146108e0578063af8214ef14610909578063b182e81814610934578063b88d4fde14610950578063c627525514610979578063c87b56dd146109a2576102c9565b806386b4606f1161012e57806386b4606f146107e45780638d859f3e1461080d5780638da5cb5b1461083857806395d89b411461086357806398bd82441461088e5780639ac79c0b146108b7576102c9565b8063715018a614610700578063717d57d31461071757806377566f8e1461074057806377cb4b9d146107695780637ab1c62314610792578063844d5983146107bb576102c9565b806323cf0a22116102345780633ccfd60b116101ed57806351830227116101c7578063518302271461063257806355f804b31461065d5780636352211e1461068657806370a08231146106c3576102c9565b80633ccfd60b146105c957806342842e0e146105e05780634f4c10f814610609576102c9565b806323cf0a22146105005780632714ce921461051c5780632c388bdd1461053357806332cb6b0c1461055c57806334918dfd1461058757806335ee0fd21461059e576102c9565b806310b5454d1161028657806310b5454d146103f057806317e7f2951461041b57806318160ddd1461044657806318cae269146104715780631f7e7ab7146104ae57806323b872dd146104d7576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063081c8c4414610373578063095ea7b31461039e5780630f2ee0b1146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190614a44565b610af0565b6040516103029190614f5c565b60405180910390f35b34801561031757600080fd5b50610320610bd2565b60405161032d9190614f77565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190614b99565b610c64565b60405161036a9190614ef5565b60405180910390f35b34801561037f57600080fd5b50610388610ce0565b6040516103959190614f77565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c091906149df565b610d6e565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190614b1c565b610e79565b005b3480156103fc57600080fd5b50610405610f15565b6040516104129190614f5c565b60405180910390f35b34801561042757600080fd5b50610430610f28565b60405161043d9190615114565b60405180910390f35b34801561045257600080fd5b5061045b610f2e565b6040516104689190615114565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190614838565b610f45565b6040516104a591906150f9565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190614b45565b610f66565b005b3480156104e357600080fd5b506104fe60048036038101906104f9919061489d565b611230565b005b61051a60048036038101906105159190614b1c565b611240565b005b34801561052857600080fd5b506105316114f8565b005b34801561053f57600080fd5b5061055a60048036038101906105559190614b45565b6115a0565b005b34801561056857600080fd5b5061057161186a565b60405161057e91906150f9565b60405180910390f35b34801561059357600080fd5b5061059c61187e565b005b3480156105aa57600080fd5b506105b3611926565b6040516105c09190614f5c565b60405180910390f35b3480156105d557600080fd5b506105de611939565b005b3480156105ec57600080fd5b506106076004803603810190610602919061489d565b611a6b565b005b34801561061557600080fd5b50610630600480360381019061062b9190614a1b565b611a8b565b005b34801561063e57600080fd5b50610647611b11565b6040516106549190614f5c565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190614a96565b611b24565b005b34801561069257600080fd5b506106ad60048036038101906106a89190614b99565b611bb6565b6040516106ba9190614ef5565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190614838565b611bcc565b6040516106f79190615114565b60405180910390f35b34801561070c57600080fd5b50610715611c9c565b005b34801561072357600080fd5b5061073e60048036038101906107399190614b99565b611d24565b005b34801561074c57600080fd5b5061076760048036038101906107629190614a1b565b611daa565b005b34801561077557600080fd5b50610790600480360381019061078b9190614a1b565b611e30565b005b34801561079e57600080fd5b506107b960048036038101906107b491906149a3565b611eb6565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190614b45565b611f44565b005b3480156107f057600080fd5b5061080b60048036038101906108069190614b1c565b61220e565b005b34801561081957600080fd5b506108226122aa565b60405161082f9190615114565b60405180910390f35b34801561084457600080fd5b5061084d6122b0565b60405161085a9190614ef5565b60405180910390f35b34801561086f57600080fd5b506108786122da565b6040516108859190614f77565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190614b45565b61236c565b005b3480156108c357600080fd5b506108de60048036038101906108d99190614a1b565b612636565b005b3480156108ec57600080fd5b5061090760048036038101906109029190614967565b6126bc565b005b34801561091557600080fd5b5061091e612834565b60405161092b91906150f9565b60405180910390f35b61094e60048036038101906109499190614b45565b612848565b005b34801561095c57600080fd5b50610977600480360381019061097291906148ec565b612b79565b005b34801561098557600080fd5b506109a0600480360381019061099b9190614b99565b612bf5565b005b3480156109ae57600080fd5b506109c960048036038101906109c49190614b99565b612c7b565b6040516109d69190614f77565b60405180910390f35b3480156109eb57600080fd5b506109f4612dc8565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614a1b565b612e70565b005b348015610a2b57600080fd5b50610a34612ef6565b005b348015610a4257600080fd5b50610a5d6004803603810190610a589190614861565b612f9e565b604051610a6a9190614f5c565b60405180910390f35b348015610a7f57600080fd5b50610a88613032565b604051610a959190614f5c565b60405180910390f35b348015610aaa57600080fd5b50610ac56004803603810190610ac09190614adb565b613045565b005b348015610ad357600080fd5b50610aee6004803603810190610ae99190614838565b6130db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bbb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bcb5750610bca826131d3565b5b9050919050565b606060028054610be19061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d9061544b565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b5050505050905090565b6000610c6f8261323d565b610ca5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ced9061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d199061544b565b8015610d665780601f10610d3b57610100808354040283529160200191610d66565b820191906000526020600020905b815481529060010190602001808311610d4957829003601f168201915b505050505081565b6000610d7982611bb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0061328b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e325750610e3081610e2b61328b565b612f9e565b155b15610e69576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e74838383613293565b505050565b610e8161328b565b73ffffffffffffffffffffffffffffffffffffffff16610e9f6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90615059565b60405180910390fd5b80600860166101000a81548161ffff021916908361ffff16021790555050565b600b60029054906101000a900460ff1681565b60095481565b6000610f38613345565b6001546000540303905090565b60136020528060005260406000206000915054906101000a900461ffff1681565b600b60019054906101000a900460ff16610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614ff9565b60405180910390fd5b600033604051602001610fc89190614e7f565b604051602081830303815290604052805190602001209050610fed82600e548361334a565b61102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390615099565b60405180910390fd5b600483601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166110879190615230565b61ffff1611156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166110ee610f2e565b6110f89190615268565b1115611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166112039190615230565b92506101000a81548161ffff021916908361ffff16021790555061122b338461ffff16613361565b505050565b61123b83838361337f565b505050565b600b60039054906101000a900460ff1661128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690615019565b60405180910390fd5b600860149054906101000a900461ffff1661ffff1681601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166112fd9190615230565b61ffff161115611342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611339906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168161ffff16611364610f2e565b61136e9190615268565b11156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690615039565b60405180910390fd5b8061ffff16600a546113c191906152ef565b341015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614fd9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906150d9565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166114cd9190615230565b92506101000a81548161ffff021916908361ffff1602179055506114f5338261ffff16613361565b50565b61150061328b565b73ffffffffffffffffffffffffffffffffffffffff1661151e6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90615059565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff166115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690614ff9565b60405180910390fd5b6000336040516020016116029190614e7f565b604051602081830303815290604052805190602001209050611627826011548361334a565b611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90615099565b60405180910390fd5b600183601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166116c19190615230565b61ffff161115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff16611728610f2e565b6117329190615268565b1115611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d8906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661183d9190615230565b92506101000a81548161ffff021916908361ffff160217905550611865338461ffff16613361565b505050565b600860169054906101000a900461ffff1681565b61188661328b565b73ffffffffffffffffffffffffffffffffffffffff166118a46122b0565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190615059565b60405180910390fd5b600b60039054906101000a900460ff1615600b60036101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b61194161328b565b73ffffffffffffffffffffffffffffffffffffffff1661195f6122b0565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90615059565b60405180910390fd5b60006119bf6122b0565b73ffffffffffffffffffffffffffffffffffffffff16476040516119e290614ee0565b60006040518083038185875af1925050503d8060008114611a1f576040519150601f19603f3d011682016040523d82523d6000602084013e611a24565b606091505b5050905080611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90614fb9565b60405180910390fd5b50565b611a8683838360405180602001604052806000815250612b79565b505050565b611a9361328b565b73ffffffffffffffffffffffffffffffffffffffff16611ab16122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90615059565b60405180910390fd5b8060108190555050565b600b60009054906101000a900460ff1681565b611b2c61328b565b73ffffffffffffffffffffffffffffffffffffffff16611b4a6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790615059565b60405180910390fd5b8181600c9190611bb1929190614489565b505050565b6000611bc182613835565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c34576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ca461328b565b73ffffffffffffffffffffffffffffffffffffffff16611cc26122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90615059565b60405180910390fd5b611d226000613ac4565b565b611d2c61328b565b73ffffffffffffffffffffffffffffffffffffffff16611d4a6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790615059565b60405180910390fd5b8060098190555050565b611db261328b565b73ffffffffffffffffffffffffffffffffffffffff16611dd06122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90615059565b60405180910390fd5b80600f8190555050565b611e3861328b565b73ffffffffffffffffffffffffffffffffffffffff16611e566122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390615059565b60405180910390fd5b8060118190555050565b611ebe61328b565b73ffffffffffffffffffffffffffffffffffffffff16611edc6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990615059565b60405180910390fd5b611f40828261ffff16613361565b5050565b600b60019054906101000a900460ff16611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614ff9565b60405180910390fd5b600033604051602001611fa69190614e7f565b604051602081830303815290604052805190602001209050611fcb82600f548361334a565b61200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190615099565b60405180910390fd5b600383601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166120659190615230565b61ffff1611156120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a1906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166120cc610f2e565b6120d69190615268565b1115612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166121e19190615230565b92506101000a81548161ffff021916908361ffff160217905550612209338461ffff16613361565b505050565b61221661328b565b73ffffffffffffffffffffffffffffffffffffffff166122346122b0565b73ffffffffffffffffffffffffffffffffffffffff161461228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228190615059565b60405180910390fd5b80600860146101000a81548161ffff021916908361ffff16021790555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546122e99061544b565b80601f01602080910402602001604051908101604052809291908181526020018280546123159061544b565b80156123625780601f1061233757610100808354040283529160200191612362565b820191906000526020600020905b81548152906001019060200180831161234557829003601f168201915b5050505050905090565b600b60019054906101000a900460ff166123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290614ff9565b60405180910390fd5b6000336040516020016123ce9190614e7f565b6040516020818303038152906040528051906020012090506123f3826010548361334a565b612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990615099565b60405180910390fd5b600283601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661248d9190615230565b61ffff1611156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c9906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166124f4610f2e565b6124fe9190615268565b111561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690615039565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a4906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166126099190615230565b92506101000a81548161ffff021916908361ffff160217905550612631338461ffff16613361565b505050565b61263e61328b565b73ffffffffffffffffffffffffffffffffffffffff1661265c6122b0565b73ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990615059565b60405180910390fd5b8060128190555050565b6126c461328b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612729576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061273661328b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127e361328b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128289190614f5c565b60405180910390a35050565b600860149054906101000a900461ffff1681565b600b60029054906101000a900460ff16612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e90615019565b60405180910390fd5b6000336040516020016128aa9190614e7f565b6040516020818303038152906040528051906020012090506128cf826012548361334a565b61290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590615099565b60405180910390fd5b600860149054906101000a900461ffff1661ffff1683601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661297c9190615230565b61ffff1611156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b8906150b9565b60405180910390fd5b600860169054906101000a900461ffff1661ffff168361ffff166129e3610f2e565b6129ed9190615268565b1115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590615039565b60405180910390fd5b8261ffff16600954612a4091906152ef565b341015612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990614fd9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae7906150d9565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16612b4c9190615230565b92506101000a81548161ffff021916908361ffff160217905550612b74338461ffff16613361565b505050565b612b8484848461337f565b612ba38373ffffffffffffffffffffffffffffffffffffffff16613b8a565b8015612bb85750612bb684848484613bad565b155b15612bef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b612bfd61328b565b73ffffffffffffffffffffffffffffffffffffffff16612c1b6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6890615059565b60405180910390fd5b80600a8190555050565b6060612c868261323d565b612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc90615079565b60405180910390fd5b60001515600b60009054906101000a900460ff1615151415612d7357600d8054612cee9061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1a9061544b565b8015612d675780601f10612d3c57610100808354040283529160200191612d67565b820191906000526020600020905b815481529060010190602001808311612d4a57829003601f168201915b50505050509050612dc3565b6000612d7e83613d0d565b90506000815111612d9e5760405180602001604052806000815250612dbf565b80604051602001612daf9190614ebe565b6040516020818303038152906040525b9150505b919050565b612dd061328b565b73ffffffffffffffffffffffffffffffffffffffff16612dee6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3b90615059565b60405180910390fd5b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b612e7861328b565b73ffffffffffffffffffffffffffffffffffffffff16612e966122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee390615059565b60405180910390fd5b80600e8190555050565b612efe61328b565b73ffffffffffffffffffffffffffffffffffffffff16612f1c6122b0565b73ffffffffffffffffffffffffffffffffffffffff1614612f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6990615059565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60039054906101000a900460ff1681565b61304d61328b565b73ffffffffffffffffffffffffffffffffffffffff1661306b6122b0565b73ffffffffffffffffffffffffffffffffffffffff16146130c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b890615059565b60405180910390fd5b80600d90805190602001906130d792919061450f565b5050565b6130e361328b565b73ffffffffffffffffffffffffffffffffffffffff166131016122b0565b73ffffffffffffffffffffffffffffffffffffffff1614613157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314e90615059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131be90614f99565b60405180910390fd5b6131d081613ac4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081613248613345565b11158015613257575060005482105b8015613284575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000826133578584613dac565b1490509392505050565b61337b828260405180602001604052806000815250613e47565b5050565b600061338a82613835565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133f5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661341661328b565b73ffffffffffffffffffffffffffffffffffffffff16148061344557506134448561343f61328b565b612f9e565b5b8061348a575061345361328b565b73ffffffffffffffffffffffffffffffffffffffff1661347284610c64565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806134c3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561352a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135378585856001613e59565b61354360008487613293565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156137c35760005482146137c257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461382e8585856001613e5f565b5050505050565b61383d614595565b60008290508061384b613345565b1115801561385a575060005481105b15613a8d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613a8b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461396f578092505050613abf565b5b600115613a8a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613a85578092505050613abf565b613970565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613bd361328b565b8786866040518563ffffffff1660e01b8152600401613bf59493929190614f10565b602060405180830381600087803b158015613c0f57600080fd5b505af1925050508015613c4057506040513d601f19601f82011682018060405250810190613c3d9190614a6d565b60015b613cba573d8060008114613c70576040519150601f19603f3d011682016040523d82523d6000602084013e613c75565b606091505b50600081511415613cb2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060613d188261323d565b613d4e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613d58613e65565b9050600081511415613d795760405180602001604052806000815250613da4565b80613d8384613ef7565b604051602001613d94929190614e9a565b6040516020818303038152906040525b915050919050565b60008082905060005b8451811015613e3c576000858281518110613df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613e1b57613e1483826140a4565b9250613e28565b613e2581846140a4565b92505b508080613e34906154ae565b915050613db5565b508091505092915050565b613e5483838360016140bb565b505050565b50505050565b50505050565b6060600c8054613e749061544b565b80601f0160208091040260200160405190810160405280929190818152602001828054613ea09061544b565b8015613eed5780601f10613ec257610100808354040283529160200191613eed565b820191906000526020600020905b815481529060010190602001808311613ed057829003601f168201915b5050505050905090565b60606000821415613f3f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061409f565b600082905060005b60008214613f71578080613f5a906154ae565b915050600a82613f6a91906152be565b9150613f47565b60008167ffffffffffffffff811115613fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613fe55781602001600182028036833780820191505090505b5090505b6000851461409857600182613ffe9190615349565b9150600a8561400d919061551b565b60306140199190615268565b60f81b818381518110614055577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561409191906152be565b9450613fe9565b8093505050505b919050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614128576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415614163576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141706000868387613e59565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561433a57506143398773ffffffffffffffffffffffffffffffffffffffff16613b8a565b5b15614400575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143af6000888480600101955088613bad565b6143e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156143405782600054146143fb57600080fd5b61446c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614401575b8160008190555050506144826000868387613e5f565b5050505050565b8280546144959061544b565b90600052602060002090601f0160209004810192826144b757600085556144fe565b82601f106144d057803560ff19168380011785556144fe565b828001600101855582156144fe579182015b828111156144fd5782358255916020019190600101906144e2565b5b50905061450b91906145d8565b5090565b82805461451b9061544b565b90600052602060002090601f01602090048101928261453d5760008555614584565b82601f1061455657805160ff1916838001178555614584565b82800160010185558215614584579182015b82811115614583578251825591602001919060010190614568565b5b50905061459191906145d8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156145f15760008160009055506001016145d9565b5090565b600061460861460384615154565b61512f565b9050808382526020820190508285602086028201111561462757600080fd5b60005b85811015614657578161463d8882614731565b84526020840193506020830192505060018101905061462a565b5050509392505050565b600061467461466f84615180565b61512f565b90508281526020810184848401111561468c57600080fd5b614697848285615409565b509392505050565b60006146b26146ad846151b1565b61512f565b9050828152602081018484840111156146ca57600080fd5b6146d5848285615409565b509392505050565b6000813590506146ec816158ad565b92915050565b600082601f83011261470357600080fd5b81356147138482602086016145f5565b91505092915050565b60008135905061472b816158c4565b92915050565b600081359050614740816158db565b92915050565b600081359050614755816158f2565b92915050565b60008151905061476a816158f2565b92915050565b600082601f83011261478157600080fd5b8135614791848260208601614661565b91505092915050565b60008083601f8401126147ac57600080fd5b8235905067ffffffffffffffff8111156147c557600080fd5b6020830191508360018202830111156147dd57600080fd5b9250929050565b600082601f8301126147f557600080fd5b813561480584826020860161469f565b91505092915050565b60008135905061481d81615909565b92915050565b60008135905061483281615920565b92915050565b60006020828403121561484a57600080fd5b6000614858848285016146dd565b91505092915050565b6000806040838503121561487457600080fd5b6000614882858286016146dd565b9250506020614893858286016146dd565b9150509250929050565b6000806000606084860312156148b257600080fd5b60006148c0868287016146dd565b93505060206148d1868287016146dd565b92505060406148e286828701614823565b9150509250925092565b6000806000806080858703121561490257600080fd5b6000614910878288016146dd565b9450506020614921878288016146dd565b935050604061493287828801614823565b925050606085013567ffffffffffffffff81111561494f57600080fd5b61495b87828801614770565b91505092959194509250565b6000806040838503121561497a57600080fd5b6000614988858286016146dd565b92505060206149998582860161471c565b9150509250929050565b600080604083850312156149b657600080fd5b60006149c4858286016146dd565b92505060206149d58582860161480e565b9150509250929050565b600080604083850312156149f257600080fd5b6000614a00858286016146dd565b9250506020614a1185828601614823565b9150509250929050565b600060208284031215614a2d57600080fd5b6000614a3b84828501614731565b91505092915050565b600060208284031215614a5657600080fd5b6000614a6484828501614746565b91505092915050565b600060208284031215614a7f57600080fd5b6000614a8d8482850161475b565b91505092915050565b60008060208385031215614aa957600080fd5b600083013567ffffffffffffffff811115614ac357600080fd5b614acf8582860161479a565b92509250509250929050565b600060208284031215614aed57600080fd5b600082013567ffffffffffffffff811115614b0757600080fd5b614b13848285016147e4565b91505092915050565b600060208284031215614b2e57600080fd5b6000614b3c8482850161480e565b91505092915050565b60008060408385031215614b5857600080fd5b6000614b668582860161480e565b925050602083013567ffffffffffffffff811115614b8357600080fd5b614b8f858286016146f2565b9150509250929050565b600060208284031215614bab57600080fd5b6000614bb984828501614823565b91505092915050565b614bcb8161537d565b82525050565b614be2614bdd8261537d565b6154f7565b82525050565b614bf18161538f565b82525050565b6000614c02826151e2565b614c0c81856151f8565b9350614c1c818560208601615418565b614c2581615608565b840191505092915050565b6000614c3b826151ed565b614c458185615214565b9350614c55818560208601615418565b614c5e81615608565b840191505092915050565b6000614c74826151ed565b614c7e8185615225565b9350614c8e818560208601615418565b80840191505092915050565b6000614ca7602683615214565b9150614cb282615626565b604082019050919050565b6000614cca600f83615214565b9150614cd582615675565b602082019050919050565b6000614ced602383615214565b9150614cf88261569e565b604082019050919050565b6000614d10601783615214565b9150614d1b826156ed565b602082019050919050565b6000614d33601283615214565b9150614d3e82615716565b602082019050919050565b6000614d56602083615214565b9150614d618261573f565b602082019050919050565b6000614d79600583615225565b9150614d8482615768565b600582019050919050565b6000614d9c602083615214565b9150614da782615791565b602082019050919050565b6000614dbf602f83615214565b9150614dca826157ba565b604082019050919050565b6000614de2601783615214565b9150614ded82615809565b602082019050919050565b6000614e05601c83615214565b9150614e1082615832565b602082019050919050565b6000614e28600083615209565b9150614e338261585b565b600082019050919050565b6000614e4b602b83615214565b9150614e568261585e565b604082019050919050565b614e6a816153d1565b82525050565b614e79816153ff565b82525050565b6000614e8b8284614bd1565b60148201915081905092915050565b6000614ea68285614c69565b9150614eb28284614c69565b91508190509392505050565b6000614eca8284614c69565b9150614ed582614d6c565b915081905092915050565b6000614eeb82614e1b565b9150819050919050565b6000602082019050614f0a6000830184614bc2565b92915050565b6000608082019050614f256000830187614bc2565b614f326020830186614bc2565b614f3f6040830185614e70565b8181036060830152614f518184614bf7565b905095945050505050565b6000602082019050614f716000830184614be8565b92915050565b60006020820190508181036000830152614f918184614c30565b905092915050565b60006020820190508181036000830152614fb281614c9a565b9050919050565b60006020820190508181036000830152614fd281614cbd565b9050919050565b60006020820190508181036000830152614ff281614ce0565b9050919050565b6000602082019050818103600083015261501281614d03565b9050919050565b6000602082019050818103600083015261503281614d26565b9050919050565b6000602082019050818103600083015261505281614d49565b9050919050565b6000602082019050818103600083015261507281614d8f565b9050919050565b6000602082019050818103600083015261509281614db2565b9050919050565b600060208201905081810360008301526150b281614dd5565b9050919050565b600060208201905081810360008301526150d281614df8565b9050919050565b600060208201905081810360008301526150f281614e3e565b9050919050565b600060208201905061510e6000830184614e61565b92915050565b60006020820190506151296000830184614e70565b92915050565b600061513961514a565b9050615145828261547d565b919050565b6000604051905090565b600067ffffffffffffffff82111561516f5761516e6155d9565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561519b5761519a6155d9565b5b6151a482615608565b9050602081019050919050565b600067ffffffffffffffff8211156151cc576151cb6155d9565b5b6151d582615608565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061523b826153d1565b9150615246836153d1565b92508261ffff0382111561525d5761525c61554c565b5b828201905092915050565b6000615273826153ff565b915061527e836153ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152b3576152b261554c565b5b828201905092915050565b60006152c9826153ff565b91506152d4836153ff565b9250826152e4576152e361557b565b5b828204905092915050565b60006152fa826153ff565b9150615305836153ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561533e5761533d61554c565b5b828202905092915050565b6000615354826153ff565b915061535f836153ff565b9250828210156153725761537161554c565b5b828203905092915050565b6000615388826153df565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561543657808201518184015260208101905061541b565b83811115615445576000848401525b50505050565b6000600282049050600182168061546357607f821691505b60208210811415615477576154766155aa565b5b50919050565b61548682615608565b810181811067ffffffffffffffff821117156154a5576154a46155d9565b5b80604052505050565b60006154b9826153ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154ec576154eb61554c565b5b600182019050919050565b600061550282615509565b9050919050565b600061551482615619565b9050919050565b6000615526826153ff565b9150615531836153ff565b9250826155415761554061557b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820666f722074686973207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b50565b7f5472616e73616374696f6e2066726f6d20736d61727420636f6e74726163742060008201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b6158b68161537d565b81146158c157600080fd5b50565b6158cd8161538f565b81146158d857600080fd5b50565b6158e48161539b565b81146158ef57600080fd5b50565b6158fb816153a5565b811461590657600080fd5b50565b615912816153d1565b811461591d57600080fd5b50565b615929816153ff565b811461593457600080fd5b5056fea26469706673582212200d77917992991363d32c661b789283e39c8cc56751f152daa78930e18209801864736f6c63430008040033

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.