ETH Price: $2,417.56 (-1.25%)

Token

GamblingGnomes (GG)
 

Overview

Max Total Supply

677 GG

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GG
0x3e843a474609CFd493D3337C996Ca1ECE432A707
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:
GamblingGnomes

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : GamblingGnomes.sol
pragma solidity ^0.8.10;
//SPDX-License-Identifier: MIT

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

contract GamblingGnomes is ERC721A, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 private _maxTokens = 8888;
    uint256 public _price = 150000000000000000; // .15 ETH
    uint256 public _presale_price = 100000000000000000; // .1 ETH
    uint256 public _withdraw_cuttoff = 125000000000000000000; // 125 ETH, will change before mint
    uint256 public _max_whitelist_mint = 10; // can be changed

    uint256 private _key = 42;
    bool private _saleActive = false;
    bool private _presaleActive = false;
    bool private _presale2Active = false;

    string public _prefixURI;

    mapping(address => bool) private _whitelist;

    constructor() ERC721A("GamblingGnomes", "GG") 
    {
    }


    //view functions
    function _baseURI() internal view override returns (string memory) {
        return _prefixURI;
    }

    function Sale() public view returns (bool) {
        return _saleActive;
    }

    function preSale() public view returns (bool) {
        return _presaleActive;
    }

    function preSale2() public view returns (bool) {
        return _presale2Active;
    }

    function numSold() public view returns (uint256) {
        return totalSupply();
    }

    function displayMax() public view returns (uint256) {
        return _maxTokens;
    }

    function isWhitelisted(address _addr) public view returns (bool) {
        return _whitelist[_addr];
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId));

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

    //variable changing functions

    function changeMax(uint256 _newMax) public onlyOwner {
        _maxTokens = _newMax;
    }

    function changeKey(uint256 _newKey) public onlyOwner {
        _key = _newKey;
    }


    function changeWhitelistMaxMint(uint256 _newMax) public onlyOwner {
        _max_whitelist_mint = _newMax;
    }

    function toggleSale() public onlyOwner {
        _saleActive = !_saleActive;
    }

    function togglePreSale() public onlyOwner {
        _presaleActive = !_presaleActive;
    }

    function togglePreSale2() public onlyOwner {
        _presale2Active = !_presale2Active;
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        _prefixURI = _uri;
    }

    function changePrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }


    function changeCutoffWithdrawal(uint256 _newWithdrawalLevel) public onlyOwner {
        _withdraw_cuttoff = _newWithdrawalLevel;
    }

    function changePresalePrice(uint256 _newPrice) public onlyOwner {
        _presale_price = _newPrice;
    }

    function whiteListMany(address[] memory accounts) external onlyOwner {
        for (uint256 i; i < accounts.length; i++) {
            _whitelist[accounts[i]] = true;
        }
    }

    //onlyOwner contract interactions

    function mintTo(uint256 quantity, address _addr) public onlyOwner {
        _safeMint(_addr, quantity);
    }

    function withdraw_costs() external onlyOwner {
        uint256 balance = address(this).balance;
        if (balance < _withdraw_cuttoff) {
            payable(0x1cDA7dc869DfA0558A3d305E04B1D31b08c211CD).transfer(balance);
        }
        else {
            payable(0x1cDA7dc869DfA0558A3d305E04B1D31b08c211CD).transfer(_withdraw_cuttoff);
        }

    }

    function withdraw_all() external onlyOwner {
        uint256 balance = address(this).balance;
        //divides the withdraw between everybody
        payable(0x1cDA7dc869DfA0558A3d305E04B1D31b08c211CD).transfer(balance * 37 * 100 / 10000);
        payable(0x1cDA7dc869DfA0558A3d305E04B1D31b08c211CD).transfer(balance * 5  * 10  / 10000);
        payable(0xffE54F84FA4a3B608da61772ffBf9e2fb2b34118).transfer(balance * 7  * 100 / 10000);
        payable(0x5f06ae58d89E2Ccd63dE09815905BF23183004aA).transfer(balance * 4  * 100 / 10000);
        payable(0x9aDFA29c4c8ffCC999bCE70022fD2494B21ab246).transfer(balance * 4  * 100 / 10000);
        payable(0xd2337113Bed666A3eB620b5B5f41f41A41Ba8C78).transfer(balance * 1  * 125 / 10000);
        payable(0x6EC619b6E5c7c1729427E67F3bAeA486F783B10B).transfer(balance * 2  * 100 / 10000);
        payable(0x112951cc13146B7e763b30C2ECb1D24D361760e3).transfer(balance * 3  * 100 / 10000);
        payable(0xD789Ed8E2D52452e081D038db5593151Cd354c29).transfer(balance * 1  * 100 / 10000);
        payable(0x2C1ED4dC9A3D0Daa1abb7313b75D0DB8542B440E).transfer(balance * 12 * 100 / 10000);
        payable(0x1B72813EE4e7782A159B85363C38332C144E029F).transfer(balance * 2  * 100 / 10000);
        payable(0x3731b157dEbE2036a91f7bb56bB4FE8969d5aAD1).transfer(balance * 5  * 100 / 10000);
        payable(0xD33a1db21052e5A54b277cABA21f8af9e6569649).transfer(balance * 5  * 100 / 10000);
        payable(0x3024B86C1694E4Ac29020aBE446e60B167a97f67).transfer(balance * 7  * 100 / 10000);
        payable(0x9D406b36E42624Dab427494815f3eEb1BEBc9534).transfer(balance * 1  * 25  / 10000);
        payable(0xA0BDF0C51B8d4B43b73248fdc57630c0Ba3CDCba).transfer(balance * 5  * 100 / 10000);
        payable(0x5d7021Fb68E2fe84c876A4b53A5A5B3e9808CD1D).transfer(balance * 1  * 100 / 10000);
        payable(0x3f3E2cd2c8aBc828Bce1b667cB6322AC9d8086c8).transfer(balance * 1  * 250 / 10000);
        payable(0x31a18677d2619350B53D1436a74DFDFf07513A6f).transfer(balance * 5  * 10  / 10000);
    }

    //minting functionality

    function mintItems(uint256 amount) public payable {
        require(_saleActive);
        uint256 totalMinted = totalSupply();
        require(totalMinted + amount <= _maxTokens);
        require(msg.value >= amount * _price);
        _safeMint(_msgSender(), amount);
    }

    function presaleMintItems(uint256 amount) public payable {
        require(_presaleActive);
        require(_whitelist[_msgSender()], "Mint: Unauthorized Access");
        require(amount <= _max_whitelist_mint, "Mint: You may only mint up to 10");

        uint256 totalMinted = totalSupply();
        require(totalMinted + amount <= _maxTokens);

        require(msg.value >= amount * _presale_price);

        _safeMint(_msgSender(), amount);
        _whitelist[_msgSender()] = false;
    }

    function presaleMintItemz(uint256 amount, uint256 key) public payable {
        require(key == _key);
        require(_presale2Active);
        require(amount <= 10, "Mint: You may only mint up to 10");
        _safeMint(_msgSender(), amount);
    }


}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 override 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) if (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) if(!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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 13 : 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 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 7 of 13 : 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 8 of 13 : 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 13 : 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 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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":"Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_whitelist_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_withdraw_cuttoff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWithdrawalLevel","type":"uint256"}],"name":"changeCutoffWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newKey","type":"uint256"}],"name":"changeKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"changeMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"changeWhitelistMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"displayMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"key","type":"uint256"}],"name":"presaleMintItemz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","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":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSale2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_all","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_costs","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600a55670214e8348c4f0000600b5567016345785d8a0000600c556806c6b935b8bbd40000600d55600a600e55602a600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200009757600080fd5b506040518060400160405280600e81526020017f47616d626c696e67476e6f6d65730000000000000000000000000000000000008152506040518060400160405280600281526020017f474700000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011c92919062000247565b5080600390805190602001906200013592919062000247565b50620001466200017460201b60201c565b60008190555050506200016e620001626200017960201b60201c565b6200018160201b60201c565b6200035c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002559062000326565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033f57607f821691505b60208210811415620003565762000355620002f7565b5b50919050565b6149b5806200036c6000396000f3fe6080604052600436106102715760003560e01c80636352211e1161014f578063b723b34e116100c1578063cc305f701161007a578063cc305f70146108c4578063dd473d2b146108ed578063e43ec5f014610904578063e985e9c51461092f578063f2fde38b1461096c578063f309455a1461099557610271565b8063b723b34e146107c8578063b78f9de7146107f1578063b88d4fde1461081c578063bc4d01ea14610845578063c87b56dd14610870578063ca3cb522146108ad57610271565b80638da5cb5b116101135780638da5cb5b146106de57806391860f781461070957806395d89b4114610734578063a22cb4651461075f578063a2b40d1914610788578063a8904abb146107b157610271565b80636352211e1461060d57806370a082311461064a578063715018a6146106875780637d8966e41461069e5780638606d938146106b557610271565b806323b872dd116101e85780635367de6a116101ac5780635367de6a1461053257806355f804b31461054e5780635a7adf7f146105775780635c909bf4146105a25780636197180b146105cd578063625b3ef7146105f657610271565b806323b872dd146104515780633af32abf1461047a57806342842e0e146104b757806343d67565146104e05780634ea9d9131461050957610271565b80630b4b98781161023a5780630b4b98781461036057806311a88e051461037c578063121dbc31146103a757806315e56952146103d057806318160ddd146103fb578063235b6ea11461042657610271565b8062bd7d981461027657806301ffc9a71461029257806306fdde03146102cf578063081812fc146102fa578063095ea7b314610337575b600080fd5b610290600480360381019061028b9190613b9e565b6109c0565b005b34801561029e57600080fd5b506102b960048036038101906102b49190613c36565b610a40565b6040516102c69190613c7e565b60405180910390f35b3480156102db57600080fd5b506102e4610b22565b6040516102f19190613d32565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613d54565b610bb4565b60405161032e9190613dc2565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190613e09565b610c30565b005b61037a60048036038101906103759190613d54565b610d35565b005b34801561038857600080fd5b50610391610eda565b60405161039e9190613c7e565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190613d54565b610ef1565b005b3480156103dc57600080fd5b506103e5610f77565b6040516103f29190613e58565b60405180910390f35b34801561040757600080fd5b50610410610f81565b60405161041d9190613e58565b60405180910390f35b34801561043257600080fd5b5061043b610f98565b6040516104489190613e58565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613e73565b610f9e565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613ec6565b610fae565b6040516104ae9190613c7e565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190613e73565b611004565b005b3480156104ec57600080fd5b506105076004803603810190610502919061403b565b611024565b005b34801561051557600080fd5b50610530600480360381019061052b9190613d54565b611135565b005b61054c60048036038101906105479190613d54565b6111bb565b005b34801561055a57600080fd5b5061057560048036038101906105709190614139565b611229565b005b34801561058357600080fd5b5061058c6112bf565b6040516105999190613c7e565b60405180910390f35b3480156105ae57600080fd5b506105b76112d6565b6040516105c49190613e58565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613d54565b6112dc565b005b34801561060257600080fd5b5061060b611362565b005b34801561061957600080fd5b50610634600480360381019061062f9190613d54565b6114ae565b6040516106419190613dc2565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613ec6565b6114c4565b60405161067e9190613e58565b60405180910390f35b34801561069357600080fd5b5061069c611594565b005b3480156106aa57600080fd5b506106b361161c565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613d54565b6116c4565b005b3480156106ea57600080fd5b506106f361174a565b6040516107009190613dc2565b60405180910390f35b34801561071557600080fd5b5061071e611774565b60405161072b9190613d32565b60405180910390f35b34801561074057600080fd5b50610749611802565b6040516107569190613d32565b60405180910390f35b34801561076b57600080fd5b50610786600480360381019061078191906141ae565b611894565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613d54565b611a0c565b005b3480156107bd57600080fd5b506107c6611a92565b005b3480156107d457600080fd5b506107ef60048036038101906107ea91906141ee565b611b3a565b005b3480156107fd57600080fd5b50610806611bc4565b6040516108139190613c7e565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906142cf565b611bdb565b005b34801561085157600080fd5b5061085a611c53565b6040516108679190613e58565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613d54565b611c59565b6040516108a49190613d32565b60405180910390f35b3480156108b957600080fd5b506108c2611cca565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613d54565b611d72565b005b3480156108f957600080fd5b50610902611df8565b005b34801561091057600080fd5b506109196127fc565b6040516109269190613e58565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190614352565b612802565b6040516109639190613c7e565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613ec6565b612896565b005b3480156109a157600080fd5b506109aa61298e565b6040516109b79190613e58565b60405180910390f35b600f5481146109ce57600080fd5b601060029054906101000a900460ff166109e757600080fd5b600a821115610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906143de565b60405180910390fd5b610a3c610a3661299d565b836129a5565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a826129c3565b5b9050919050565b606060028054610b319061442d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d9061442d565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf82612a2d565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3b826114ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc261299d565b73ffffffffffffffffffffffffffffffffffffffff1614610d2557610cee81610ce961299d565b612802565b610d24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d30838383612a7b565b505050565b601060019054906101000a900460ff16610d4e57600080fd5b60126000610d5a61299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd8906144ab565b60405180910390fd5b600e54811115610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d906143de565b60405180910390fd5b6000610e30610f81565b9050600a548282610e4191906144fa565b1115610e4c57600080fd5b600c5482610e5a9190614550565b341015610e6657600080fd5b610e77610e7161299d565b836129a5565b600060126000610e8561299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601060029054906101000a900460ff16905090565b610ef961299d565b73ffffffffffffffffffffffffffffffffffffffff16610f1761174a565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f64906145f6565b60405180910390fd5b80600a8190555050565b6000600a54905090565b6000610f8b612b2d565b6001546000540303905090565b600b5481565b610fa9838383612b32565b505050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61101f83838360405180602001604052806000815250611bdb565b505050565b61102c61299d565b73ffffffffffffffffffffffffffffffffffffffff1661104a61174a565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611097906145f6565b60405180910390fd5b60005b8151811015611131576001601260008484815181106110c5576110c4614616565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061112990614645565b9150506110a3565b5050565b61113d61299d565b73ffffffffffffffffffffffffffffffffffffffff1661115b61174a565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906145f6565b60405180910390fd5b80600d8190555050565b601060009054906101000a900460ff166111d457600080fd5b60006111de610f81565b9050600a5482826111ef91906144fa565b11156111fa57600080fd5b600b54826112089190614550565b34101561121457600080fd5b61122561121f61299d565b836129a5565b5050565b61123161299d565b73ffffffffffffffffffffffffffffffffffffffff1661124f61174a565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906145f6565b60405180910390fd5b80601190805190602001906112bb929190613a6e565b5050565b6000601060019054906101000a900460ff16905090565b600c5481565b6112e461299d565b73ffffffffffffffffffffffffffffffffffffffff1661130261174a565b73ffffffffffffffffffffffffffffffffffffffff1614611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f906145f6565b60405180910390fd5b80600e8190555050565b61136a61299d565b73ffffffffffffffffffffffffffffffffffffffff1661138861174a565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906145f6565b60405180910390fd5b6000479050600d5481101561144d57731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611447573d6000803e3d6000fd5b506114ab565b731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc600d549081150290604051600060405180830381858888f193505050501580156114a9573d6000803e3d6000fd5b505b50565b60006114b982612fe8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61159c61299d565b73ffffffffffffffffffffffffffffffffffffffff166115ba61174a565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906145f6565b60405180910390fd5b61161a6000613273565b565b61162461299d565b73ffffffffffffffffffffffffffffffffffffffff1661164261174a565b73ffffffffffffffffffffffffffffffffffffffff1614611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906145f6565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6116cc61299d565b73ffffffffffffffffffffffffffffffffffffffff166116ea61174a565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611737906145f6565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601180546117819061442d565b80601f01602080910402602001604051908101604052809291908181526020018280546117ad9061442d565b80156117fa5780601f106117cf576101008083540402835291602001916117fa565b820191906000526020600020905b8154815290600101906020018083116117dd57829003601f168201915b505050505081565b6060600380546118119061442d565b80601f016020809104026020016040519081016040528092919081815260200182805461183d9061442d565b801561188a5780601f1061185f5761010080835404028352916020019161188a565b820191906000526020600020905b81548152906001019060200180831161186d57829003601f168201915b5050505050905090565b61189c61299d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061190e61299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb61299d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a009190613c7e565b60405180910390a35050565b611a1461299d565b73ffffffffffffffffffffffffffffffffffffffff16611a3261174a565b73ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906145f6565b60405180910390fd5b80600b8190555050565b611a9a61299d565b73ffffffffffffffffffffffffffffffffffffffff16611ab861174a565b73ffffffffffffffffffffffffffffffffffffffff1614611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906145f6565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b611b4261299d565b73ffffffffffffffffffffffffffffffffffffffff16611b6061174a565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906145f6565b60405180910390fd5b611bc081836129a5565b5050565b6000601060009054906101000a900460ff16905090565b611be6848484612b32565b611c058373ffffffffffffffffffffffffffffffffffffffff16613339565b15611c4d57611c168484848461335c565b611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b6060611c6482612a2d565b611c6d57600080fd5b6000611c776134ad565b90506000815111611c975760405180602001604052806000815250611cc2565b80611ca18461353f565b604051602001611cb2929190614716565b6040516020818303038152906040525b915050919050565b611cd261299d565b73ffffffffffffffffffffffffffffffffffffffff16611cf061174a565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906145f6565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611d7a61299d565b73ffffffffffffffffffffffffffffffffffffffff16611d9861174a565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de5906145f6565b60405180910390fd5b80600f8190555050565b611e0061299d565b73ffffffffffffffffffffffffffffffffffffffff16611e1e61174a565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906145f6565b60405180910390fd5b6000479050731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc6127106064602585611eb99190614550565b611ec39190614550565b611ecd9190614774565b9081150290604051600060405180830381858888f19350505050158015611ef8573d6000803e3d6000fd5b50731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc612710600a600585611f399190614550565b611f439190614550565b611f4d9190614774565b9081150290604051600060405180830381858888f19350505050158015611f78573d6000803e3d6000fd5b5073ffe54f84fa4a3b608da61772ffbf9e2fb2b3411873ffffffffffffffffffffffffffffffffffffffff166108fc6127106064600785611fb99190614550565b611fc39190614550565b611fcd9190614774565b9081150290604051600060405180830381858888f19350505050158015611ff8573d6000803e3d6000fd5b50735f06ae58d89e2ccd63de09815905bf23183004aa73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646004856120399190614550565b6120439190614550565b61204d9190614774565b9081150290604051600060405180830381858888f19350505050158015612078573d6000803e3d6000fd5b50739adfa29c4c8ffcc999bce70022fd2494b21ab24673ffffffffffffffffffffffffffffffffffffffff166108fc61271060646004856120b99190614550565b6120c39190614550565b6120cd9190614774565b9081150290604051600060405180830381858888f193505050501580156120f8573d6000803e3d6000fd5b5073d2337113bed666a3eb620b5b5f41f41a41ba8c7873ffffffffffffffffffffffffffffffffffffffff166108fc612710607d6001856121399190614550565b6121439190614550565b61214d9190614774565b9081150290604051600060405180830381858888f19350505050158015612178573d6000803e3d6000fd5b50736ec619b6e5c7c1729427e67f3baea486f783b10b73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646002856121b99190614550565b6121c39190614550565b6121cd9190614774565b9081150290604051600060405180830381858888f193505050501580156121f8573d6000803e3d6000fd5b5073112951cc13146b7e763b30c2ecb1d24d361760e373ffffffffffffffffffffffffffffffffffffffff166108fc61271060646003856122399190614550565b6122439190614550565b61224d9190614774565b9081150290604051600060405180830381858888f19350505050158015612278573d6000803e3d6000fd5b5073d789ed8e2d52452e081d038db5593151cd354c2973ffffffffffffffffffffffffffffffffffffffff166108fc61271060646001856122b99190614550565b6122c39190614550565b6122cd9190614774565b9081150290604051600060405180830381858888f193505050501580156122f8573d6000803e3d6000fd5b50732c1ed4dc9a3d0daa1abb7313b75d0db8542b440e73ffffffffffffffffffffffffffffffffffffffff166108fc6127106064600c856123399190614550565b6123439190614550565b61234d9190614774565b9081150290604051600060405180830381858888f19350505050158015612378573d6000803e3d6000fd5b50731b72813ee4e7782a159b85363c38332c144e029f73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646002856123b99190614550565b6123c39190614550565b6123cd9190614774565b9081150290604051600060405180830381858888f193505050501580156123f8573d6000803e3d6000fd5b50733731b157debe2036a91f7bb56bb4fe8969d5aad173ffffffffffffffffffffffffffffffffffffffff166108fc61271060646005856124399190614550565b6124439190614550565b61244d9190614774565b9081150290604051600060405180830381858888f19350505050158015612478573d6000803e3d6000fd5b5073d33a1db21052e5a54b277caba21f8af9e656964973ffffffffffffffffffffffffffffffffffffffff166108fc61271060646005856124b99190614550565b6124c39190614550565b6124cd9190614774565b9081150290604051600060405180830381858888f193505050501580156124f8573d6000803e3d6000fd5b50733024b86c1694e4ac29020abe446e60b167a97f6773ffffffffffffffffffffffffffffffffffffffff166108fc61271060646007856125399190614550565b6125439190614550565b61254d9190614774565b9081150290604051600060405180830381858888f19350505050158015612578573d6000803e3d6000fd5b50739d406b36e42624dab427494815f3eeb1bebc953473ffffffffffffffffffffffffffffffffffffffff166108fc61271060196001856125b99190614550565b6125c39190614550565b6125cd9190614774565b9081150290604051600060405180830381858888f193505050501580156125f8573d6000803e3d6000fd5b5073a0bdf0c51b8d4b43b73248fdc57630c0ba3cdcba73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646005856126399190614550565b6126439190614550565b61264d9190614774565b9081150290604051600060405180830381858888f19350505050158015612678573d6000803e3d6000fd5b50735d7021fb68e2fe84c876a4b53a5a5b3e9808cd1d73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646001856126b99190614550565b6126c39190614550565b6126cd9190614774565b9081150290604051600060405180830381858888f193505050501580156126f8573d6000803e3d6000fd5b50733f3e2cd2c8abc828bce1b667cb6322ac9d8086c873ffffffffffffffffffffffffffffffffffffffff166108fc61271060fa6001856127399190614550565b6127439190614550565b61274d9190614774565b9081150290604051600060405180830381858888f19350505050158015612778573d6000803e3d6000fd5b507331a18677d2619350b53d1436a74dfdff07513a6f73ffffffffffffffffffffffffffffffffffffffff166108fc612710600a6005856127b99190614550565b6127c39190614550565b6127cd9190614774565b9081150290604051600060405180830381858888f193505050501580156127f8573d6000803e3d6000fd5b5050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61289e61299d565b73ffffffffffffffffffffffffffffffffffffffff166128bc61174a565b73ffffffffffffffffffffffffffffffffffffffff1614612912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612909906145f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614817565b60405180910390fd5b61298b81613273565b50565b6000612998610f81565b905090565b600033905090565b6129bf8282604051806020016040528060008152506136a0565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612a38612b2d565b11158015612a47575060005482105b8015612a74575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612b3d82612fe8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ba8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bc961299d565b73ffffffffffffffffffffffffffffffffffffffff161480612bf85750612bf785612bf261299d565b612802565b5b80612c3d5750612c0661299d565b73ffffffffffffffffffffffffffffffffffffffff16612c2584610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c76576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cdd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cea8585856001613a62565b612cf660008487612a7b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f76576000548214612f7557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe18585856001613a68565b5050505050565b612ff0613af4565b600082905080612ffe612b2d565b1161323c5760005481101561323b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161323957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461311d57809250505061326e565b5b60011561323857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461323357809250505061326e565b61311e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261338261299d565b8786866040518563ffffffff1660e01b81526004016133a4949392919061488c565b6020604051808303816000875af19250505080156133e057506040513d601f19601f820116820180604052508101906133dd91906148ed565b60015b61345a573d8060008114613410576040519150601f19603f3d011682016040523d82523d6000602084013e613415565b606091505b50600081511415613452576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601180546134bc9061442d565b80601f01602080910402602001604051908101604052809291908181526020018280546134e89061442d565b80156135355780601f1061350a57610100808354040283529160200191613535565b820191906000526020600020905b81548152906001019060200180831161351857829003601f168201915b5050505050905090565b60606000821415613587576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061369b565b600082905060005b600082146135b95780806135a290614645565b915050600a826135b29190614774565b915061358f565b60008167ffffffffffffffff8111156135d5576135d4613ef8565b5b6040519080825280601f01601f1916602001820160405280156136075781602001600182028036833780820191505090505b5090505b6000851461369457600182613620919061491a565b9150600a8561362f919061494e565b603061363b91906144fa565b60f81b81838151811061365157613650614616565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561368d9190614774565b945061360b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561370d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613748576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137556000858386613a62565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506139168673ffffffffffffffffffffffffffffffffffffffff16613339565b156139db575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461398b600087848060010195508761335c565b6139c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061391c5782600054146139d657600080fd5b613a46565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106139dc575b816000819055505050613a5c6000858386613a68565b50505050565b50505050565b50505050565b828054613a7a9061442d565b90600052602060002090601f016020900481019282613a9c5760008555613ae3565b82601f10613ab557805160ff1916838001178555613ae3565b82800160010185558215613ae3579182015b82811115613ae2578251825591602001919060010190613ac7565b5b509050613af09190613b37565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b50576000816000905550600101613b38565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613b7b81613b68565b8114613b8657600080fd5b50565b600081359050613b9881613b72565b92915050565b60008060408385031215613bb557613bb4613b5e565b5b6000613bc385828601613b89565b9250506020613bd485828601613b89565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c1381613bde565b8114613c1e57600080fd5b50565b600081359050613c3081613c0a565b92915050565b600060208284031215613c4c57613c4b613b5e565b5b6000613c5a84828501613c21565b91505092915050565b60008115159050919050565b613c7881613c63565b82525050565b6000602082019050613c936000830184613c6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd3578082015181840152602081019050613cb8565b83811115613ce2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0482613c99565b613d0e8185613ca4565b9350613d1e818560208601613cb5565b613d2781613ce8565b840191505092915050565b60006020820190508181036000830152613d4c8184613cf9565b905092915050565b600060208284031215613d6a57613d69613b5e565b5b6000613d7884828501613b89565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dac82613d81565b9050919050565b613dbc81613da1565b82525050565b6000602082019050613dd76000830184613db3565b92915050565b613de681613da1565b8114613df157600080fd5b50565b600081359050613e0381613ddd565b92915050565b60008060408385031215613e2057613e1f613b5e565b5b6000613e2e85828601613df4565b9250506020613e3f85828601613b89565b9150509250929050565b613e5281613b68565b82525050565b6000602082019050613e6d6000830184613e49565b92915050565b600080600060608486031215613e8c57613e8b613b5e565b5b6000613e9a86828701613df4565b9350506020613eab86828701613df4565b9250506040613ebc86828701613b89565b9150509250925092565b600060208284031215613edc57613edb613b5e565b5b6000613eea84828501613df4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3082613ce8565b810181811067ffffffffffffffff82111715613f4f57613f4e613ef8565b5b80604052505050565b6000613f62613b54565b9050613f6e8282613f27565b919050565b600067ffffffffffffffff821115613f8e57613f8d613ef8565b5b602082029050602081019050919050565b600080fd5b6000613fb7613fb284613f73565b613f58565b90508083825260208201905060208402830185811115613fda57613fd9613f9f565b5b835b818110156140035780613fef8882613df4565b845260208401935050602081019050613fdc565b5050509392505050565b600082601f83011261402257614021613ef3565b5b8135614032848260208601613fa4565b91505092915050565b60006020828403121561405157614050613b5e565b5b600082013567ffffffffffffffff81111561406f5761406e613b63565b5b61407b8482850161400d565b91505092915050565b600080fd5b600067ffffffffffffffff8211156140a4576140a3613ef8565b5b6140ad82613ce8565b9050602081019050919050565b82818337600083830152505050565b60006140dc6140d784614089565b613f58565b9050828152602081018484840111156140f8576140f7614084565b5b6141038482856140ba565b509392505050565b600082601f8301126141205761411f613ef3565b5b81356141308482602086016140c9565b91505092915050565b60006020828403121561414f5761414e613b5e565b5b600082013567ffffffffffffffff81111561416d5761416c613b63565b5b6141798482850161410b565b91505092915050565b61418b81613c63565b811461419657600080fd5b50565b6000813590506141a881614182565b92915050565b600080604083850312156141c5576141c4613b5e565b5b60006141d385828601613df4565b92505060206141e485828601614199565b9150509250929050565b6000806040838503121561420557614204613b5e565b5b600061421385828601613b89565b925050602061422485828601613df4565b9150509250929050565b600067ffffffffffffffff82111561424957614248613ef8565b5b61425282613ce8565b9050602081019050919050565b600061427261426d8461422e565b613f58565b90508281526020810184848401111561428e5761428d614084565b5b6142998482856140ba565b509392505050565b600082601f8301126142b6576142b5613ef3565b5b81356142c684826020860161425f565b91505092915050565b600080600080608085870312156142e9576142e8613b5e565b5b60006142f787828801613df4565b945050602061430887828801613df4565b935050604061431987828801613b89565b925050606085013567ffffffffffffffff81111561433a57614339613b63565b5b614346878288016142a1565b91505092959194509250565b6000806040838503121561436957614368613b5e565b5b600061437785828601613df4565b925050602061438885828601613df4565b9150509250929050565b7f4d696e743a20596f75206d6179206f6e6c79206d696e7420757020746f203130600082015250565b60006143c8602083613ca4565b91506143d382614392565b602082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061444557607f821691505b60208210811415614459576144586143fe565b5b50919050565b7f4d696e743a20556e617574686f72697a65642041636365737300000000000000600082015250565b6000614495601983613ca4565b91506144a08261445f565b602082019050919050565b600060208201905081810360008301526144c481614488565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061450582613b68565b915061451083613b68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614545576145446144cb565b5b828201905092915050565b600061455b82613b68565b915061456683613b68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561459f5761459e6144cb565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145e0602083613ca4565b91506145eb826145aa565b602082019050919050565b6000602082019050818103600083015261460f816145d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061465082613b68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614683576146826144cb565b5b600182019050919050565b600081905092915050565b60006146a482613c99565b6146ae818561468e565b93506146be818560208601613cb5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061470060058361468e565b915061470b826146ca565b600582019050919050565b60006147228285614699565b915061472e8284614699565b9150614739826146f3565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061477f82613b68565b915061478a83613b68565b92508261479a57614799614745565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614801602683613ca4565b915061480c826147a5565b604082019050919050565b60006020820190508181036000830152614830816147f4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061485e82614837565b6148688185614842565b9350614878818560208601613cb5565b61488181613ce8565b840191505092915050565b60006080820190506148a16000830187613db3565b6148ae6020830186613db3565b6148bb6040830185613e49565b81810360608301526148cd8184614853565b905095945050505050565b6000815190506148e781613c0a565b92915050565b60006020828403121561490357614902613b5e565b5b6000614911848285016148d8565b91505092915050565b600061492582613b68565b915061493083613b68565b925082821015614943576149426144cb565b5b828203905092915050565b600061495982613b68565b915061496483613b68565b92508261497457614973614745565b5b82820690509291505056fea264697066735822122083a5f3802075412253335bd199e5680b68e86529d98fdf45ae026c8324d4df3f64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102715760003560e01c80636352211e1161014f578063b723b34e116100c1578063cc305f701161007a578063cc305f70146108c4578063dd473d2b146108ed578063e43ec5f014610904578063e985e9c51461092f578063f2fde38b1461096c578063f309455a1461099557610271565b8063b723b34e146107c8578063b78f9de7146107f1578063b88d4fde1461081c578063bc4d01ea14610845578063c87b56dd14610870578063ca3cb522146108ad57610271565b80638da5cb5b116101135780638da5cb5b146106de57806391860f781461070957806395d89b4114610734578063a22cb4651461075f578063a2b40d1914610788578063a8904abb146107b157610271565b80636352211e1461060d57806370a082311461064a578063715018a6146106875780637d8966e41461069e5780638606d938146106b557610271565b806323b872dd116101e85780635367de6a116101ac5780635367de6a1461053257806355f804b31461054e5780635a7adf7f146105775780635c909bf4146105a25780636197180b146105cd578063625b3ef7146105f657610271565b806323b872dd146104515780633af32abf1461047a57806342842e0e146104b757806343d67565146104e05780634ea9d9131461050957610271565b80630b4b98781161023a5780630b4b98781461036057806311a88e051461037c578063121dbc31146103a757806315e56952146103d057806318160ddd146103fb578063235b6ea11461042657610271565b8062bd7d981461027657806301ffc9a71461029257806306fdde03146102cf578063081812fc146102fa578063095ea7b314610337575b600080fd5b610290600480360381019061028b9190613b9e565b6109c0565b005b34801561029e57600080fd5b506102b960048036038101906102b49190613c36565b610a40565b6040516102c69190613c7e565b60405180910390f35b3480156102db57600080fd5b506102e4610b22565b6040516102f19190613d32565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613d54565b610bb4565b60405161032e9190613dc2565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190613e09565b610c30565b005b61037a60048036038101906103759190613d54565b610d35565b005b34801561038857600080fd5b50610391610eda565b60405161039e9190613c7e565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190613d54565b610ef1565b005b3480156103dc57600080fd5b506103e5610f77565b6040516103f29190613e58565b60405180910390f35b34801561040757600080fd5b50610410610f81565b60405161041d9190613e58565b60405180910390f35b34801561043257600080fd5b5061043b610f98565b6040516104489190613e58565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613e73565b610f9e565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613ec6565b610fae565b6040516104ae9190613c7e565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190613e73565b611004565b005b3480156104ec57600080fd5b506105076004803603810190610502919061403b565b611024565b005b34801561051557600080fd5b50610530600480360381019061052b9190613d54565b611135565b005b61054c60048036038101906105479190613d54565b6111bb565b005b34801561055a57600080fd5b5061057560048036038101906105709190614139565b611229565b005b34801561058357600080fd5b5061058c6112bf565b6040516105999190613c7e565b60405180910390f35b3480156105ae57600080fd5b506105b76112d6565b6040516105c49190613e58565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613d54565b6112dc565b005b34801561060257600080fd5b5061060b611362565b005b34801561061957600080fd5b50610634600480360381019061062f9190613d54565b6114ae565b6040516106419190613dc2565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613ec6565b6114c4565b60405161067e9190613e58565b60405180910390f35b34801561069357600080fd5b5061069c611594565b005b3480156106aa57600080fd5b506106b361161c565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613d54565b6116c4565b005b3480156106ea57600080fd5b506106f361174a565b6040516107009190613dc2565b60405180910390f35b34801561071557600080fd5b5061071e611774565b60405161072b9190613d32565b60405180910390f35b34801561074057600080fd5b50610749611802565b6040516107569190613d32565b60405180910390f35b34801561076b57600080fd5b50610786600480360381019061078191906141ae565b611894565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613d54565b611a0c565b005b3480156107bd57600080fd5b506107c6611a92565b005b3480156107d457600080fd5b506107ef60048036038101906107ea91906141ee565b611b3a565b005b3480156107fd57600080fd5b50610806611bc4565b6040516108139190613c7e565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906142cf565b611bdb565b005b34801561085157600080fd5b5061085a611c53565b6040516108679190613e58565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613d54565b611c59565b6040516108a49190613d32565b60405180910390f35b3480156108b957600080fd5b506108c2611cca565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613d54565b611d72565b005b3480156108f957600080fd5b50610902611df8565b005b34801561091057600080fd5b506109196127fc565b6040516109269190613e58565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190614352565b612802565b6040516109639190613c7e565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613ec6565b612896565b005b3480156109a157600080fd5b506109aa61298e565b6040516109b79190613e58565b60405180910390f35b600f5481146109ce57600080fd5b601060029054906101000a900460ff166109e757600080fd5b600a821115610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906143de565b60405180910390fd5b610a3c610a3661299d565b836129a5565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a826129c3565b5b9050919050565b606060028054610b319061442d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d9061442d565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf82612a2d565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3b826114ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc261299d565b73ffffffffffffffffffffffffffffffffffffffff1614610d2557610cee81610ce961299d565b612802565b610d24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d30838383612a7b565b505050565b601060019054906101000a900460ff16610d4e57600080fd5b60126000610d5a61299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd8906144ab565b60405180910390fd5b600e54811115610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d906143de565b60405180910390fd5b6000610e30610f81565b9050600a548282610e4191906144fa565b1115610e4c57600080fd5b600c5482610e5a9190614550565b341015610e6657600080fd5b610e77610e7161299d565b836129a5565b600060126000610e8561299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601060029054906101000a900460ff16905090565b610ef961299d565b73ffffffffffffffffffffffffffffffffffffffff16610f1761174a565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f64906145f6565b60405180910390fd5b80600a8190555050565b6000600a54905090565b6000610f8b612b2d565b6001546000540303905090565b600b5481565b610fa9838383612b32565b505050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61101f83838360405180602001604052806000815250611bdb565b505050565b61102c61299d565b73ffffffffffffffffffffffffffffffffffffffff1661104a61174a565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611097906145f6565b60405180910390fd5b60005b8151811015611131576001601260008484815181106110c5576110c4614616565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061112990614645565b9150506110a3565b5050565b61113d61299d565b73ffffffffffffffffffffffffffffffffffffffff1661115b61174a565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906145f6565b60405180910390fd5b80600d8190555050565b601060009054906101000a900460ff166111d457600080fd5b60006111de610f81565b9050600a5482826111ef91906144fa565b11156111fa57600080fd5b600b54826112089190614550565b34101561121457600080fd5b61122561121f61299d565b836129a5565b5050565b61123161299d565b73ffffffffffffffffffffffffffffffffffffffff1661124f61174a565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906145f6565b60405180910390fd5b80601190805190602001906112bb929190613a6e565b5050565b6000601060019054906101000a900460ff16905090565b600c5481565b6112e461299d565b73ffffffffffffffffffffffffffffffffffffffff1661130261174a565b73ffffffffffffffffffffffffffffffffffffffff1614611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f906145f6565b60405180910390fd5b80600e8190555050565b61136a61299d565b73ffffffffffffffffffffffffffffffffffffffff1661138861174a565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906145f6565b60405180910390fd5b6000479050600d5481101561144d57731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611447573d6000803e3d6000fd5b506114ab565b731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc600d549081150290604051600060405180830381858888f193505050501580156114a9573d6000803e3d6000fd5b505b50565b60006114b982612fe8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61159c61299d565b73ffffffffffffffffffffffffffffffffffffffff166115ba61174a565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906145f6565b60405180910390fd5b61161a6000613273565b565b61162461299d565b73ffffffffffffffffffffffffffffffffffffffff1661164261174a565b73ffffffffffffffffffffffffffffffffffffffff1614611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906145f6565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6116cc61299d565b73ffffffffffffffffffffffffffffffffffffffff166116ea61174a565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611737906145f6565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601180546117819061442d565b80601f01602080910402602001604051908101604052809291908181526020018280546117ad9061442d565b80156117fa5780601f106117cf576101008083540402835291602001916117fa565b820191906000526020600020905b8154815290600101906020018083116117dd57829003601f168201915b505050505081565b6060600380546118119061442d565b80601f016020809104026020016040519081016040528092919081815260200182805461183d9061442d565b801561188a5780601f1061185f5761010080835404028352916020019161188a565b820191906000526020600020905b81548152906001019060200180831161186d57829003601f168201915b5050505050905090565b61189c61299d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061190e61299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb61299d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a009190613c7e565b60405180910390a35050565b611a1461299d565b73ffffffffffffffffffffffffffffffffffffffff16611a3261174a565b73ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906145f6565b60405180910390fd5b80600b8190555050565b611a9a61299d565b73ffffffffffffffffffffffffffffffffffffffff16611ab861174a565b73ffffffffffffffffffffffffffffffffffffffff1614611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906145f6565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b611b4261299d565b73ffffffffffffffffffffffffffffffffffffffff16611b6061174a565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906145f6565b60405180910390fd5b611bc081836129a5565b5050565b6000601060009054906101000a900460ff16905090565b611be6848484612b32565b611c058373ffffffffffffffffffffffffffffffffffffffff16613339565b15611c4d57611c168484848461335c565b611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b6060611c6482612a2d565b611c6d57600080fd5b6000611c776134ad565b90506000815111611c975760405180602001604052806000815250611cc2565b80611ca18461353f565b604051602001611cb2929190614716565b6040516020818303038152906040525b915050919050565b611cd261299d565b73ffffffffffffffffffffffffffffffffffffffff16611cf061174a565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906145f6565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611d7a61299d565b73ffffffffffffffffffffffffffffffffffffffff16611d9861174a565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de5906145f6565b60405180910390fd5b80600f8190555050565b611e0061299d565b73ffffffffffffffffffffffffffffffffffffffff16611e1e61174a565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906145f6565b60405180910390fd5b6000479050731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc6127106064602585611eb99190614550565b611ec39190614550565b611ecd9190614774565b9081150290604051600060405180830381858888f19350505050158015611ef8573d6000803e3d6000fd5b50731cda7dc869dfa0558a3d305e04b1d31b08c211cd73ffffffffffffffffffffffffffffffffffffffff166108fc612710600a600585611f399190614550565b611f439190614550565b611f4d9190614774565b9081150290604051600060405180830381858888f19350505050158015611f78573d6000803e3d6000fd5b5073ffe54f84fa4a3b608da61772ffbf9e2fb2b3411873ffffffffffffffffffffffffffffffffffffffff166108fc6127106064600785611fb99190614550565b611fc39190614550565b611fcd9190614774565b9081150290604051600060405180830381858888f19350505050158015611ff8573d6000803e3d6000fd5b50735f06ae58d89e2ccd63de09815905bf23183004aa73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646004856120399190614550565b6120439190614550565b61204d9190614774565b9081150290604051600060405180830381858888f19350505050158015612078573d6000803e3d6000fd5b50739adfa29c4c8ffcc999bce70022fd2494b21ab24673ffffffffffffffffffffffffffffffffffffffff166108fc61271060646004856120b99190614550565b6120c39190614550565b6120cd9190614774565b9081150290604051600060405180830381858888f193505050501580156120f8573d6000803e3d6000fd5b5073d2337113bed666a3eb620b5b5f41f41a41ba8c7873ffffffffffffffffffffffffffffffffffffffff166108fc612710607d6001856121399190614550565b6121439190614550565b61214d9190614774565b9081150290604051600060405180830381858888f19350505050158015612178573d6000803e3d6000fd5b50736ec619b6e5c7c1729427e67f3baea486f783b10b73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646002856121b99190614550565b6121c39190614550565b6121cd9190614774565b9081150290604051600060405180830381858888f193505050501580156121f8573d6000803e3d6000fd5b5073112951cc13146b7e763b30c2ecb1d24d361760e373ffffffffffffffffffffffffffffffffffffffff166108fc61271060646003856122399190614550565b6122439190614550565b61224d9190614774565b9081150290604051600060405180830381858888f19350505050158015612278573d6000803e3d6000fd5b5073d789ed8e2d52452e081d038db5593151cd354c2973ffffffffffffffffffffffffffffffffffffffff166108fc61271060646001856122b99190614550565b6122c39190614550565b6122cd9190614774565b9081150290604051600060405180830381858888f193505050501580156122f8573d6000803e3d6000fd5b50732c1ed4dc9a3d0daa1abb7313b75d0db8542b440e73ffffffffffffffffffffffffffffffffffffffff166108fc6127106064600c856123399190614550565b6123439190614550565b61234d9190614774565b9081150290604051600060405180830381858888f19350505050158015612378573d6000803e3d6000fd5b50731b72813ee4e7782a159b85363c38332c144e029f73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646002856123b99190614550565b6123c39190614550565b6123cd9190614774565b9081150290604051600060405180830381858888f193505050501580156123f8573d6000803e3d6000fd5b50733731b157debe2036a91f7bb56bb4fe8969d5aad173ffffffffffffffffffffffffffffffffffffffff166108fc61271060646005856124399190614550565b6124439190614550565b61244d9190614774565b9081150290604051600060405180830381858888f19350505050158015612478573d6000803e3d6000fd5b5073d33a1db21052e5a54b277caba21f8af9e656964973ffffffffffffffffffffffffffffffffffffffff166108fc61271060646005856124b99190614550565b6124c39190614550565b6124cd9190614774565b9081150290604051600060405180830381858888f193505050501580156124f8573d6000803e3d6000fd5b50733024b86c1694e4ac29020abe446e60b167a97f6773ffffffffffffffffffffffffffffffffffffffff166108fc61271060646007856125399190614550565b6125439190614550565b61254d9190614774565b9081150290604051600060405180830381858888f19350505050158015612578573d6000803e3d6000fd5b50739d406b36e42624dab427494815f3eeb1bebc953473ffffffffffffffffffffffffffffffffffffffff166108fc61271060196001856125b99190614550565b6125c39190614550565b6125cd9190614774565b9081150290604051600060405180830381858888f193505050501580156125f8573d6000803e3d6000fd5b5073a0bdf0c51b8d4b43b73248fdc57630c0ba3cdcba73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646005856126399190614550565b6126439190614550565b61264d9190614774565b9081150290604051600060405180830381858888f19350505050158015612678573d6000803e3d6000fd5b50735d7021fb68e2fe84c876a4b53a5a5b3e9808cd1d73ffffffffffffffffffffffffffffffffffffffff166108fc61271060646001856126b99190614550565b6126c39190614550565b6126cd9190614774565b9081150290604051600060405180830381858888f193505050501580156126f8573d6000803e3d6000fd5b50733f3e2cd2c8abc828bce1b667cb6322ac9d8086c873ffffffffffffffffffffffffffffffffffffffff166108fc61271060fa6001856127399190614550565b6127439190614550565b61274d9190614774565b9081150290604051600060405180830381858888f19350505050158015612778573d6000803e3d6000fd5b507331a18677d2619350b53d1436a74dfdff07513a6f73ffffffffffffffffffffffffffffffffffffffff166108fc612710600a6005856127b99190614550565b6127c39190614550565b6127cd9190614774565b9081150290604051600060405180830381858888f193505050501580156127f8573d6000803e3d6000fd5b5050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61289e61299d565b73ffffffffffffffffffffffffffffffffffffffff166128bc61174a565b73ffffffffffffffffffffffffffffffffffffffff1614612912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612909906145f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614817565b60405180910390fd5b61298b81613273565b50565b6000612998610f81565b905090565b600033905090565b6129bf8282604051806020016040528060008152506136a0565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612a38612b2d565b11158015612a47575060005482105b8015612a74575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612b3d82612fe8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ba8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bc961299d565b73ffffffffffffffffffffffffffffffffffffffff161480612bf85750612bf785612bf261299d565b612802565b5b80612c3d5750612c0661299d565b73ffffffffffffffffffffffffffffffffffffffff16612c2584610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c76576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cdd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cea8585856001613a62565b612cf660008487612a7b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f76576000548214612f7557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe18585856001613a68565b5050505050565b612ff0613af4565b600082905080612ffe612b2d565b1161323c5760005481101561323b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161323957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461311d57809250505061326e565b5b60011561323857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461323357809250505061326e565b61311e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261338261299d565b8786866040518563ffffffff1660e01b81526004016133a4949392919061488c565b6020604051808303816000875af19250505080156133e057506040513d601f19601f820116820180604052508101906133dd91906148ed565b60015b61345a573d8060008114613410576040519150601f19603f3d011682016040523d82523d6000602084013e613415565b606091505b50600081511415613452576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601180546134bc9061442d565b80601f01602080910402602001604051908101604052809291908181526020018280546134e89061442d565b80156135355780601f1061350a57610100808354040283529160200191613535565b820191906000526020600020905b81548152906001019060200180831161351857829003601f168201915b5050505050905090565b60606000821415613587576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061369b565b600082905060005b600082146135b95780806135a290614645565b915050600a826135b29190614774565b915061358f565b60008167ffffffffffffffff8111156135d5576135d4613ef8565b5b6040519080825280601f01601f1916602001820160405280156136075781602001600182028036833780820191505090505b5090505b6000851461369457600182613620919061491a565b9150600a8561362f919061494e565b603061363b91906144fa565b60f81b81838151811061365157613650614616565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561368d9190614774565b945061360b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561370d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613748576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137556000858386613a62565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506139168673ffffffffffffffffffffffffffffffffffffffff16613339565b156139db575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461398b600087848060010195508761335c565b6139c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061391c5782600054146139d657600080fd5b613a46565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106139dc575b816000819055505050613a5c6000858386613a68565b50505050565b50505050565b50505050565b828054613a7a9061442d565b90600052602060002090601f016020900481019282613a9c5760008555613ae3565b82601f10613ab557805160ff1916838001178555613ae3565b82800160010185558215613ae3579182015b82811115613ae2578251825591602001919060010190613ac7565b5b509050613af09190613b37565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b50576000816000905550600101613b38565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613b7b81613b68565b8114613b8657600080fd5b50565b600081359050613b9881613b72565b92915050565b60008060408385031215613bb557613bb4613b5e565b5b6000613bc385828601613b89565b9250506020613bd485828601613b89565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c1381613bde565b8114613c1e57600080fd5b50565b600081359050613c3081613c0a565b92915050565b600060208284031215613c4c57613c4b613b5e565b5b6000613c5a84828501613c21565b91505092915050565b60008115159050919050565b613c7881613c63565b82525050565b6000602082019050613c936000830184613c6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd3578082015181840152602081019050613cb8565b83811115613ce2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0482613c99565b613d0e8185613ca4565b9350613d1e818560208601613cb5565b613d2781613ce8565b840191505092915050565b60006020820190508181036000830152613d4c8184613cf9565b905092915050565b600060208284031215613d6a57613d69613b5e565b5b6000613d7884828501613b89565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dac82613d81565b9050919050565b613dbc81613da1565b82525050565b6000602082019050613dd76000830184613db3565b92915050565b613de681613da1565b8114613df157600080fd5b50565b600081359050613e0381613ddd565b92915050565b60008060408385031215613e2057613e1f613b5e565b5b6000613e2e85828601613df4565b9250506020613e3f85828601613b89565b9150509250929050565b613e5281613b68565b82525050565b6000602082019050613e6d6000830184613e49565b92915050565b600080600060608486031215613e8c57613e8b613b5e565b5b6000613e9a86828701613df4565b9350506020613eab86828701613df4565b9250506040613ebc86828701613b89565b9150509250925092565b600060208284031215613edc57613edb613b5e565b5b6000613eea84828501613df4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3082613ce8565b810181811067ffffffffffffffff82111715613f4f57613f4e613ef8565b5b80604052505050565b6000613f62613b54565b9050613f6e8282613f27565b919050565b600067ffffffffffffffff821115613f8e57613f8d613ef8565b5b602082029050602081019050919050565b600080fd5b6000613fb7613fb284613f73565b613f58565b90508083825260208201905060208402830185811115613fda57613fd9613f9f565b5b835b818110156140035780613fef8882613df4565b845260208401935050602081019050613fdc565b5050509392505050565b600082601f83011261402257614021613ef3565b5b8135614032848260208601613fa4565b91505092915050565b60006020828403121561405157614050613b5e565b5b600082013567ffffffffffffffff81111561406f5761406e613b63565b5b61407b8482850161400d565b91505092915050565b600080fd5b600067ffffffffffffffff8211156140a4576140a3613ef8565b5b6140ad82613ce8565b9050602081019050919050565b82818337600083830152505050565b60006140dc6140d784614089565b613f58565b9050828152602081018484840111156140f8576140f7614084565b5b6141038482856140ba565b509392505050565b600082601f8301126141205761411f613ef3565b5b81356141308482602086016140c9565b91505092915050565b60006020828403121561414f5761414e613b5e565b5b600082013567ffffffffffffffff81111561416d5761416c613b63565b5b6141798482850161410b565b91505092915050565b61418b81613c63565b811461419657600080fd5b50565b6000813590506141a881614182565b92915050565b600080604083850312156141c5576141c4613b5e565b5b60006141d385828601613df4565b92505060206141e485828601614199565b9150509250929050565b6000806040838503121561420557614204613b5e565b5b600061421385828601613b89565b925050602061422485828601613df4565b9150509250929050565b600067ffffffffffffffff82111561424957614248613ef8565b5b61425282613ce8565b9050602081019050919050565b600061427261426d8461422e565b613f58565b90508281526020810184848401111561428e5761428d614084565b5b6142998482856140ba565b509392505050565b600082601f8301126142b6576142b5613ef3565b5b81356142c684826020860161425f565b91505092915050565b600080600080608085870312156142e9576142e8613b5e565b5b60006142f787828801613df4565b945050602061430887828801613df4565b935050604061431987828801613b89565b925050606085013567ffffffffffffffff81111561433a57614339613b63565b5b614346878288016142a1565b91505092959194509250565b6000806040838503121561436957614368613b5e565b5b600061437785828601613df4565b925050602061438885828601613df4565b9150509250929050565b7f4d696e743a20596f75206d6179206f6e6c79206d696e7420757020746f203130600082015250565b60006143c8602083613ca4565b91506143d382614392565b602082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061444557607f821691505b60208210811415614459576144586143fe565b5b50919050565b7f4d696e743a20556e617574686f72697a65642041636365737300000000000000600082015250565b6000614495601983613ca4565b91506144a08261445f565b602082019050919050565b600060208201905081810360008301526144c481614488565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061450582613b68565b915061451083613b68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614545576145446144cb565b5b828201905092915050565b600061455b82613b68565b915061456683613b68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561459f5761459e6144cb565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145e0602083613ca4565b91506145eb826145aa565b602082019050919050565b6000602082019050818103600083015261460f816145d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061465082613b68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614683576146826144cb565b5b600182019050919050565b600081905092915050565b60006146a482613c99565b6146ae818561468e565b93506146be818560208601613cb5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061470060058361468e565b915061470b826146ca565b600582019050919050565b60006147228285614699565b915061472e8284614699565b9150614739826146f3565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061477f82613b68565b915061478a83613b68565b92508261479a57614799614745565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614801602683613ca4565b915061480c826147a5565b604082019050919050565b60006020820190508181036000830152614830816147f4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061485e82614837565b6148688185614842565b9350614878818560208601613cb5565b61488181613ce8565b840191505092915050565b60006080820190506148a16000830187613db3565b6148ae6020830186613db3565b6148bb6040830185613e49565b81810360608301526148cd8184614853565b905095945050505050565b6000815190506148e781613c0a565b92915050565b60006020828403121561490357614902613b5e565b5b6000614911848285016148d8565b91505092915050565b600061492582613b68565b915061493083613b68565b925082821015614943576149426144cb565b5b828203905092915050565b600061495982613b68565b915061496483613b68565b92508261497457614973614745565b5b82820690509291505056fea264697066735822122083a5f3802075412253335bd199e5680b68e86529d98fdf45ae026c8324d4df3f64736f6c634300080a0033

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.