ETH Price: $3,164.87 (-7.91%)
Gas: 11 Gwei

Token

Gopnik Collection (GPNK)
 

Overview

Max Total Supply

868 GPNK

Holders

599

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GPNK
0x7ab9c77908d7527cb92f1ca2e260072d9eecbcf8
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:
Gopniks

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Gopniks.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

import "erc721a/contracts/ERC721A.sol";

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

/*
Snails_new.sol
Contract by @Gopnik
thanks to @NftDoyler
*/

contract Gopniks is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 5555;
    uint256 public TEAM_MINT_MAX = 269;

    uint256 public publicPrice = 0.029 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 10;
    uint256 constant public PUBLIC_MINT_LIMIT = 20;

    uint256 public TOTAL_SUPPLY_TEAM;

    string public BASE_URI;

    string public CONTRACT_URI = "https://nftstorage.link/ipfs/bafkreiach7274fnpier3fdb3q3u44bsyzzpr47j5hpoecqv66dgwzuzkke";

    bool public paused = true;

    address public teamWallet = 0xE8FCF5d986ccf850F435098ED487070a942B400C;

    mapping(address => bool) public userMintedFree;
    mapping(address => uint256) public numUserMints;

    constructor() ERC721A("Gopnik Collection", "GPNK") { }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
            value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

    //Public Functions

    function teamMint(uint256 quantity) public payable mintCompliance(quantity) {
        require(msg.sender == teamWallet, "Team minting only");
        require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left");

        TOTAL_SUPPLY_TEAM += quantity;

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");
        require(quantity >= 1, "Minimum to mint is 1");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
        uint256 countToPay = quantity;

        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");

        if(!userMintedFree[msg.sender]) {
            userMintedFree[msg.sender] = true;
            countToPay = countToPay - 1;
        }

        refundOverpay(price * countToPay);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

    //View Functions

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

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

        return string(abi.encodePacked(BASE_URI, Strings.toString(_tokenId), ".json"));
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

    function hasUserMintedFree(address _owner) public view returns (bool) {
        return userMintedFree[_owner];
    }

    // Owner Functions

    function setTeamMintMax(uint256 _teamMintMax) public onlyOwner {
        TEAM_MINT_MAX = _teamMintMax;
    }

    // Amount in wei
    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        BASE_URI = _baseUri;
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    function setContractURI(string memory _contractURI) public onlyOwner {
        CONTRACT_URI = _contractURI;
    }

    // Note: Another option is to inherit Pausable without implementing the logic yourself.
    // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setTeamWalletAddress(address _teamWallet) public onlyOwner {
        teamWallet = _teamWallet;
    }

    function withdraw() external onlyOwner {
        (bool succ, ) = payable(teamWallet).call{
        value: address(this).balance
        }("");
        require(succ, "Withdraw failed");
    }

    // Owner-only mint functionality to "Airdrop" mints to specific users
    // Note: These will likely end up hidden on OpenSea
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    // Modifiers

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    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();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 6 : 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 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * 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();

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

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

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 6 of 6 : 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;
    }
}

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":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}],"name":"hasUserMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261010d60095566670758aa7c8000600a5560405180608001604052806058815260200162004acd60589139600d90816200003f9190620004db565b506001600e60006101000a81548160ff02191690831515021790555073e8fcf5d986ccf850f435098ed487070a942b400c600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bd57600080fd5b506040518060400160405280601181526020017f476f706e696b20436f6c6c656374696f6e0000000000000000000000000000008152506040518060400160405280600481526020017f47504e4b000000000000000000000000000000000000000000000000000000008152506200014a6200013e6200018c60201b60201c565b6200019460201b60201c565b81600390816200015b9190620004db565b5080600490816200016d9190620004db565b506200017e6200025860201b60201c565b6001819055505050620005c2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e357607f821691505b602082108103620002f957620002f86200029b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000324565b6200036f868362000324565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003bc620003b6620003b08462000387565b62000391565b62000387565b9050919050565b6000819050919050565b620003d8836200039b565b620003f0620003e782620003c3565b84845462000331565b825550505050565b600090565b62000407620003f8565b62000414818484620003cd565b505050565b5b818110156200043c5762000430600082620003fd565b6001810190506200041a565b5050565b601f8211156200048b576200045581620002ff565b620004608462000314565b8101602085101562000470578190505b620004886200047f8562000314565b83018262000419565b50505b505050565b600082821c905092915050565b6000620004b06000198460080262000490565b1980831691505092915050565b6000620004cb83836200049d565b9150826002028217905092915050565b620004e68262000261565b67ffffffffffffffff8111156200050257620005016200026c565b5b6200050e8254620002ca565b6200051b82828562000440565b600060209050601f8311600181146200055357600084156200053e578287015190505b6200054a8582620004bd565b865550620005ba565b601f1984166200056386620002ff565b60005b828110156200058d5784890151825560018201915060208501945060208101905062000566565b86831015620005ad5784890151620005a9601f8916826200049d565b8355505b6001600288020188555050505b505050505050565b6144fb80620005d26000396000f3fe6080604052600436106102515760003560e01c806364f6407611610139578063a22cb465116100b6578063c62752551161007a578063c627525514610896578063c87b56dd146108bf578063dbddb26a146108fc578063e8a3d48514610927578063e985e9c514610952578063f2fde38b1461098f57610251565b8063a22cb465146107b1578063a945bf80146107da578063b88d4fde14610805578063bceae77b1461082e578063c25034051461085957610251565b80637aeb7242116100fd5780637aeb7242146106cc5780638da5cb5b146107095780639007bd7214610734578063938e3d7b1461075d57806395d89b411461078657610251565b806364f64076146105e55780636b39fca41461062257806370a082311461064d578063715018a61461068a578063763ea95f146106a157610251565b80632fbba115116101d2578063438b630011610196578063438b6300146104c157806355f804b3146104fe57806356b4f6731461052757806359927044146105525780635c975abb1461057d5780636352211e146105a857610251565b80632fbba1151461040f5780632fecf20b1461042b57806332cb6b0c146104565780633ccfd60b1461048157806342842e0e1461049857610251565b806316c38b3c1161021957806316c38b3c1461034d57806318160ddd1461037657806323b872dd146103a15780632c4b2334146103ca5780632db11544146103f357610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630f15ad8d14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612fa7565b6109b8565b60405161028a9190612fef565b60405180910390f35b34801561029f57600080fd5b506102a8610a4a565b6040516102b591906130a3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906130fb565b610adc565b6040516102f29190613169565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d91906131b0565b610b58565b005b34801561033057600080fd5b5061034b600480360381019061034691906130fb565b610cfe565b005b34801561035957600080fd5b50610374600480360381019061036f919061321c565b610d84565b005b34801561038257600080fd5b5061038b610e1d565b6040516103989190613258565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613273565b610e34565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906132c6565b610e44565b005b61040d600480360381019061040891906130fb565b610f04565b005b610429600480360381019061042491906130fb565b61126e565b005b34801561043757600080fd5b5061044061148d565b60405161044d9190613258565b60405180910390f35b34801561046257600080fd5b5061046b611492565b6040516104789190613258565b60405180910390f35b34801561048d57600080fd5b50610496611498565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190613273565b6115e5565b005b3480156104cd57600080fd5b506104e860048036038101906104e391906132c6565b611605565b6040516104f591906133b1565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613508565b61170f565b005b34801561053357600080fd5b5061053c61179e565b60405161054991906130a3565b60405180910390f35b34801561055e57600080fd5b5061056761182c565b6040516105749190613169565b60405180910390f35b34801561058957600080fd5b50610592611852565b60405161059f9190612fef565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906130fb565b611865565b6040516105dc9190613169565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906132c6565b611877565b6040516106199190612fef565b60405180910390f35b34801561062e57600080fd5b50610637611897565b6040516106449190613258565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906132c6565b61189d565b6040516106819190613258565b60405180910390f35b34801561069657600080fd5b5061069f611955565b005b3480156106ad57600080fd5b506106b66119dd565b6040516106c39190613258565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee91906132c6565b6119e3565b6040516107009190613258565b60405180910390f35b34801561071557600080fd5b5061071e6119fb565b60405161072b9190613169565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190613551565b611a24565b005b34801561076957600080fd5b50610784600480360381019061077f9190613508565b611bc5565b005b34801561079257600080fd5b5061079b611c54565b6040516107a891906130a3565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613591565b611ce6565b005b3480156107e657600080fd5b506107ef611e5d565b6040516107fc9190613258565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613672565b611e63565b005b34801561083a57600080fd5b50610843611ed6565b6040516108509190613258565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b91906132c6565b611edb565b60405161088d9190612fef565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b891906130fb565b611f31565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906130fb565b611fb7565b6040516108f391906130a3565b60405180910390f35b34801561090857600080fd5b50610911612033565b60405161091e91906130a3565b60405180910390f35b34801561093357600080fd5b5061093c6120c1565b60405161094991906130a3565b60405180910390f35b34801561095e57600080fd5b50610979600480360381019061097491906136f5565b612153565b6040516109869190612fef565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b191906132c6565b6121e7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a435750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a5990613764565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590613764565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae7826122de565b610b1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b638261233d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bca576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be9612409565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c57610c1581610c10612409565b612153565b610c4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d06612411565b73ffffffffffffffffffffffffffffffffffffffff16610d246119fb565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906137e1565b60405180910390fd5b8060098190555050565b610d8c612411565b73ffffffffffffffffffffffffffffffffffffffff16610daa6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906137e1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610e27612419565b6002546001540303905090565b610e3f838383612422565b505050565b610e4c612411565b73ffffffffffffffffffffffffffffffffffffffff16610e6a6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb7906137e1565b60405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff1615610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061384d565b60405180910390fd5b6115b381610f61610e1d565b610f6b919061389c565b1115610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061393e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611011906139aa565b60405180910390fd5b600a82111561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613a16565b60405180910390fd5b60018210156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613a82565b60405180910390fd5b6000600a5490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600084905060148583611100919061389c565b1115611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890613aee565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111fa576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001816111f79190613b0e565b90505b61120e81846112099190613b42565b6127c9565b848261121a919061389c565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061126733866128d5565b5050505050565b80600e60009054906101000a900460ff16156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061384d565b60405180910390fd5b6115b3816112cb610e1d565b6112d5919061389c565b1115611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9061393e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906139aa565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90613be8565b60405180910390fd5b60095482600b54611425919061389c565b1115611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613c54565b60405180910390fd5b81600b6000828254611478919061389c565b9250508190555061148933836128d5565b5050565b600a81565b6115b381565b6114a0612411565b73ffffffffffffffffffffffffffffffffffffffff166114be6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906137e1565b60405180910390fd5b6000600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161155c90613ca5565b60006040518083038185875af1925050503d8060008114611599576040519150601f19603f3d011682016040523d82523d6000602084013e61159e565b606091505b50509050806115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613d06565b60405180910390fd5b50565b61160083838360405180602001604052806000815250611e63565b505050565b606060006116128361189d565b905060008167ffffffffffffffff8111156116305761162f6133dd565b5b60405190808252806020026020018201604052801561165e5781602001602082028036833780820191505090505b50905060006001905060005b838110801561167b57506115b38211155b1561170357600061168b83611865565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ef57828483815181106116d4576116d3613d26565b5b60200260200101818152505081806116eb90613d55565b9250505b82806116fa90613d55565b9350505061166a565b82945050505050919050565b611717612411565b73ffffffffffffffffffffffffffffffffffffffff166117356119fb565b73ffffffffffffffffffffffffffffffffffffffff161461178b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611782906137e1565b60405180910390fd5b80600c908161179a9190613f49565b5050565b600d80546117ab90613764565b80601f01602080910402602001604051908101604052809291908181526020018280546117d790613764565b80156118245780601f106117f957610100808354040283529160200191611824565b820191906000526020600020905b81548152906001019060200180831161180757829003601f168201915b505050505081565b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900460ff1681565b60006118708261233d565b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611904576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61195d612411565b73ffffffffffffffffffffffffffffffffffffffff1661197b6119fb565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c8906137e1565b60405180910390fd5b6119db60006128f3565b565b600b5481565b60106020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a2c612411565b73ffffffffffffffffffffffffffffffffffffffff16611a4a6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a97906137e1565b60405180910390fd5b81600e60009054906101000a900460ff1615611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae89061384d565b60405180910390fd5b6115b381611afd610e1d565b611b07919061389c565b1115611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f9061393e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906139aa565b60405180910390fd5b611bc082846128d5565b505050565b611bcd612411565b73ffffffffffffffffffffffffffffffffffffffff16611beb6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c38906137e1565b60405180910390fd5b80600d9081611c509190613f49565b5050565b606060048054611c6390613764565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8f90613764565b8015611cdc5780601f10611cb157610100808354040283529160200191611cdc565b820191906000526020600020905b815481529060010190602001808311611cbf57829003601f168201915b5050505050905090565b611cee612409565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d52576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611d5f612409565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e0c612409565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e519190612fef565b60405180910390a35050565b600a5481565b611e6e848484612422565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ed057611e99848484846129b7565b611ecf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611f39612411565b73ffffffffffffffffffffffffffffffffffffffff16611f576119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa4906137e1565b60405180910390fd5b80600a8190555050565b6060611fc2826122de565b612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff89061408d565b60405180910390fd5b600c61200c83612b07565b60405160200161201d9291906141b8565b6040516020818303038152906040529050919050565b600c805461204090613764565b80601f016020809104026020016040519081016040528092919081815260200182805461206c90613764565b80156120b95780601f1061208e576101008083540402835291602001916120b9565b820191906000526020600020905b81548152906001019060200180831161209c57829003601f168201915b505050505081565b6060600d80546120d090613764565b80601f01602080910402602001604051908101604052809291908181526020018280546120fc90613764565b80156121495780601f1061211e57610100808354040283529160200191612149565b820191906000526020600020905b81548152906001019060200180831161212c57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ef612411565b73ffffffffffffffffffffffffffffffffffffffff1661220d6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a906137e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990614259565b60405180910390fd5b6122db816128f3565b50565b6000816122e9612419565b111580156122f8575060015482105b8015612336575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000808290508061234c612419565b116123d2576001548110156123d15760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036123cf575b600081036123c557600560008360019003935083815260200190815260200160002054905061239b565b8092505050612404565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061242d8261233d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612494576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124b5612409565b73ffffffffffffffffffffffffffffffffffffffff1614806124e457506124e3856124de612409565b612153565b5b8061252957506124f2612409565b73ffffffffffffffffffffffffffffffffffffffff1661251184610adc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612562576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d58585856001612c67565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126d286612c6d565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361275a5760006001840190506000600560008381526020019081526020016000205403612758576001548114612757578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c28585856001612c77565b5050505050565b8034111561288e5760003373ffffffffffffffffffffffffffffffffffffffff1682346127f69190613b0e565b60405161280290613ca5565b60006040518083038185875af1925050503d806000811461283f576040519150601f19603f3d011682016040523d82523d6000602084013e612844565b606091505b5050905080612888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f906142c5565b60405180910390fd5b506128d2565b803410156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614331565b60405180910390fd5b5b50565b6128ef828260405180602001604052806000815250612c7d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129dd612409565b8786866040518563ffffffff1660e01b81526004016129ff94939291906143a6565b6020604051808303816000875af1925050508015612a3b57506040513d601f19601f82011682018060405250810190612a389190614407565b60015b612ab4573d8060008114612a6b576040519150601f19603f3d011682016040523d82523d6000602084013e612a70565b606091505b506000815103612aac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612b4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c62565b600082905060005b60008214612b80578080612b6990613d55565b915050600a82612b799190614463565b9150612b56565b60008167ffffffffffffffff811115612b9c57612b9b6133dd565b5b6040519080825280601f01601f191660200182016040528015612bce5781602001600182028036833780820191505090505b5090505b60008514612c5b57600182612be79190613b0e565b9150600a85612bf69190614494565b6030612c02919061389c565b60f81b818381518110612c1857612c17613d26565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c549190614463565b9450612bd2565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612d24576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d316000858386612c67565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d9660018514612f31565b901b60a042901b612da686612c6d565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612eaa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e5a60008784806001019550876129b7565b612e90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612deb578260015414612ea557600080fd5b612f15565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612eab575b816001819055505050612f2b6000858386612c77565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f8481612f4f565b8114612f8f57600080fd5b50565b600081359050612fa181612f7b565b92915050565b600060208284031215612fbd57612fbc612f45565b5b6000612fcb84828501612f92565b91505092915050565b60008115159050919050565b612fe981612fd4565b82525050565b60006020820190506130046000830184612fe0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613044578082015181840152602081019050613029565b83811115613053576000848401525b50505050565b6000601f19601f8301169050919050565b60006130758261300a565b61307f8185613015565b935061308f818560208601613026565b61309881613059565b840191505092915050565b600060208201905081810360008301526130bd818461306a565b905092915050565b6000819050919050565b6130d8816130c5565b81146130e357600080fd5b50565b6000813590506130f5816130cf565b92915050565b60006020828403121561311157613110612f45565b5b600061311f848285016130e6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061315382613128565b9050919050565b61316381613148565b82525050565b600060208201905061317e600083018461315a565b92915050565b61318d81613148565b811461319857600080fd5b50565b6000813590506131aa81613184565b92915050565b600080604083850312156131c7576131c6612f45565b5b60006131d58582860161319b565b92505060206131e6858286016130e6565b9150509250929050565b6131f981612fd4565b811461320457600080fd5b50565b600081359050613216816131f0565b92915050565b60006020828403121561323257613231612f45565b5b600061324084828501613207565b91505092915050565b613252816130c5565b82525050565b600060208201905061326d6000830184613249565b92915050565b60008060006060848603121561328c5761328b612f45565b5b600061329a8682870161319b565b93505060206132ab8682870161319b565b92505060406132bc868287016130e6565b9150509250925092565b6000602082840312156132dc576132db612f45565b5b60006132ea8482850161319b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613328816130c5565b82525050565b600061333a838361331f565b60208301905092915050565b6000602082019050919050565b600061335e826132f3565b61336881856132fe565b93506133738361330f565b8060005b838110156133a457815161338b888261332e565b975061339683613346565b925050600181019050613377565b5085935050505092915050565b600060208201905081810360008301526133cb8184613353565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61341582613059565b810181811067ffffffffffffffff82111715613434576134336133dd565b5b80604052505050565b6000613447612f3b565b9050613453828261340c565b919050565b600067ffffffffffffffff821115613473576134726133dd565b5b61347c82613059565b9050602081019050919050565b82818337600083830152505050565b60006134ab6134a684613458565b61343d565b9050828152602081018484840111156134c7576134c66133d8565b5b6134d2848285613489565b509392505050565b600082601f8301126134ef576134ee6133d3565b5b81356134ff848260208601613498565b91505092915050565b60006020828403121561351e5761351d612f45565b5b600082013567ffffffffffffffff81111561353c5761353b612f4a565b5b613548848285016134da565b91505092915050565b6000806040838503121561356857613567612f45565b5b6000613576858286016130e6565b92505060206135878582860161319b565b9150509250929050565b600080604083850312156135a8576135a7612f45565b5b60006135b68582860161319b565b92505060206135c785828601613207565b9150509250929050565b600067ffffffffffffffff8211156135ec576135eb6133dd565b5b6135f582613059565b9050602081019050919050565b6000613615613610846135d1565b61343d565b905082815260208101848484011115613631576136306133d8565b5b61363c848285613489565b509392505050565b600082601f830112613659576136586133d3565b5b8135613669848260208601613602565b91505092915050565b6000806000806080858703121561368c5761368b612f45565b5b600061369a8782880161319b565b94505060206136ab8782880161319b565b93505060406136bc878288016130e6565b925050606085013567ffffffffffffffff8111156136dd576136dc612f4a565b5b6136e987828801613644565b91505092959194509250565b6000806040838503121561370c5761370b612f45565b5b600061371a8582860161319b565b925050602061372b8582860161319b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377c57607f821691505b60208210810361378f5761378e613735565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137cb602083613015565b91506137d682613795565b602082019050919050565b600060208201905081810360008301526137fa816137be565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000613837601283613015565b915061384282613801565b602082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138a7826130c5565b91506138b2836130c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138e7576138e661386d565b5b828201905092915050565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6000613928601583613015565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b6000613994601383613015565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b6000613a00601183613015565b9150613a0b826139ca565b602082019050919050565b60006020820190508181036000830152613a2f816139f3565b9050919050565b7f4d696e696d756d20746f206d696e742069732031000000000000000000000000600082015250565b6000613a6c601483613015565b9150613a7782613a36565b602082019050919050565b60006020820190508181036000830152613a9b81613a5f565b9050919050565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b6000613ad8601383613015565b9150613ae382613aa2565b602082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b6000613b19826130c5565b9150613b24836130c5565b925082821015613b3757613b3661386d565b5b828203905092915050565b6000613b4d826130c5565b9150613b58836130c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9157613b9061386d565b5b828202905092915050565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b6000613bd2601183613015565b9150613bdd82613b9c565b602082019050919050565b60006020820190508181036000830152613c0181613bc5565b9050919050565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b6000613c3e601283613015565b9150613c4982613c08565b602082019050919050565b60006020820190508181036000830152613c6d81613c31565b9050919050565b600081905092915050565b50565b6000613c8f600083613c74565b9150613c9a82613c7f565b600082019050919050565b6000613cb082613c82565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000613cf0600f83613015565b9150613cfb82613cba565b602082019050919050565b60006020820190508181036000830152613d1f81613ce3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d60826130c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d9257613d9161386d565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613dff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613dc2565b613e098683613dc2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e46613e41613e3c846130c5565b613e21565b6130c5565b9050919050565b6000819050919050565b613e6083613e2b565b613e74613e6c82613e4d565b848454613dcf565b825550505050565b600090565b613e89613e7c565b613e94818484613e57565b505050565b5b81811015613eb857613ead600082613e81565b600181019050613e9a565b5050565b601f821115613efd57613ece81613d9d565b613ed784613db2565b81016020851015613ee6578190505b613efa613ef285613db2565b830182613e99565b50505b505050565b600082821c905092915050565b6000613f2060001984600802613f02565b1980831691505092915050565b6000613f398383613f0f565b9150826002028217905092915050565b613f528261300a565b67ffffffffffffffff811115613f6b57613f6a6133dd565b5b613f758254613764565b613f80828285613ebc565b600060209050601f831160018114613fb35760008415613fa1578287015190505b613fab8582613f2d565b865550614013565b601f198416613fc186613d9d565b60005b82811015613fe957848901518255600182019150602085019450602081019050613fc4565b868310156140065784890151614002601f891682613f0f565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614077602f83613015565b91506140828261401b565b604082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b600081905092915050565b600081546140c581613764565b6140cf81866140ad565b945060018216600081146140ea57600181146140ff57614132565b60ff1983168652811515820286019350614132565b61410885613d9d565b60005b8381101561412a5781548189015260018201915060208101905061410b565b838801955050505b50505092915050565b60006141468261300a565b61415081856140ad565b9350614160818560208601613026565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006141a26005836140ad565b91506141ad8261416c565b600582019050919050565b60006141c482856140b8565b91506141d0828461413b565b91506141db82614195565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614243602683613015565b915061424e826141e7565b604082019050919050565b6000602082019050818103600083015261427281614236565b9050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006142af600f83613015565b91506142ba82614279565b602082019050919050565b600060208201905081810360008301526142de816142a2565b9050919050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b600061431b601383613015565b9150614326826142e5565b602082019050919050565b6000602082019050818103600083015261434a8161430e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061437882614351565b614382818561435c565b9350614392818560208601613026565b61439b81613059565b840191505092915050565b60006080820190506143bb600083018761315a565b6143c8602083018661315a565b6143d56040830185613249565b81810360608301526143e7818461436d565b905095945050505050565b60008151905061440181612f7b565b92915050565b60006020828403121561441d5761441c612f45565b5b600061442b848285016143f2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061446e826130c5565b9150614479836130c5565b92508261448957614488614434565b5b828204905092915050565b600061449f826130c5565b91506144aa836130c5565b9250826144ba576144b9614434565b5b82820690509291505056fea2646970667358221220c1c1b158765797f577ec9f9e5e8fd447e7338afa5b65143eea7dfda3791e5d4964736f6c634300080f003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261666b72656961636837323734666e70696572336664623371337534346273797a7a707234376a3568706f6563717636366467777a757a6b6b65

Deployed Bytecode

0x6080604052600436106102515760003560e01c806364f6407611610139578063a22cb465116100b6578063c62752551161007a578063c627525514610896578063c87b56dd146108bf578063dbddb26a146108fc578063e8a3d48514610927578063e985e9c514610952578063f2fde38b1461098f57610251565b8063a22cb465146107b1578063a945bf80146107da578063b88d4fde14610805578063bceae77b1461082e578063c25034051461085957610251565b80637aeb7242116100fd5780637aeb7242146106cc5780638da5cb5b146107095780639007bd7214610734578063938e3d7b1461075d57806395d89b411461078657610251565b806364f64076146105e55780636b39fca41461062257806370a082311461064d578063715018a61461068a578063763ea95f146106a157610251565b80632fbba115116101d2578063438b630011610196578063438b6300146104c157806355f804b3146104fe57806356b4f6731461052757806359927044146105525780635c975abb1461057d5780636352211e146105a857610251565b80632fbba1151461040f5780632fecf20b1461042b57806332cb6b0c146104565780633ccfd60b1461048157806342842e0e1461049857610251565b806316c38b3c1161021957806316c38b3c1461034d57806318160ddd1461037657806323b872dd146103a15780632c4b2334146103ca5780632db11544146103f357610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630f15ad8d14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612fa7565b6109b8565b60405161028a9190612fef565b60405180910390f35b34801561029f57600080fd5b506102a8610a4a565b6040516102b591906130a3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906130fb565b610adc565b6040516102f29190613169565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d91906131b0565b610b58565b005b34801561033057600080fd5b5061034b600480360381019061034691906130fb565b610cfe565b005b34801561035957600080fd5b50610374600480360381019061036f919061321c565b610d84565b005b34801561038257600080fd5b5061038b610e1d565b6040516103989190613258565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613273565b610e34565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906132c6565b610e44565b005b61040d600480360381019061040891906130fb565b610f04565b005b610429600480360381019061042491906130fb565b61126e565b005b34801561043757600080fd5b5061044061148d565b60405161044d9190613258565b60405180910390f35b34801561046257600080fd5b5061046b611492565b6040516104789190613258565b60405180910390f35b34801561048d57600080fd5b50610496611498565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190613273565b6115e5565b005b3480156104cd57600080fd5b506104e860048036038101906104e391906132c6565b611605565b6040516104f591906133b1565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613508565b61170f565b005b34801561053357600080fd5b5061053c61179e565b60405161054991906130a3565b60405180910390f35b34801561055e57600080fd5b5061056761182c565b6040516105749190613169565b60405180910390f35b34801561058957600080fd5b50610592611852565b60405161059f9190612fef565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906130fb565b611865565b6040516105dc9190613169565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906132c6565b611877565b6040516106199190612fef565b60405180910390f35b34801561062e57600080fd5b50610637611897565b6040516106449190613258565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906132c6565b61189d565b6040516106819190613258565b60405180910390f35b34801561069657600080fd5b5061069f611955565b005b3480156106ad57600080fd5b506106b66119dd565b6040516106c39190613258565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee91906132c6565b6119e3565b6040516107009190613258565b60405180910390f35b34801561071557600080fd5b5061071e6119fb565b60405161072b9190613169565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190613551565b611a24565b005b34801561076957600080fd5b50610784600480360381019061077f9190613508565b611bc5565b005b34801561079257600080fd5b5061079b611c54565b6040516107a891906130a3565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613591565b611ce6565b005b3480156107e657600080fd5b506107ef611e5d565b6040516107fc9190613258565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613672565b611e63565b005b34801561083a57600080fd5b50610843611ed6565b6040516108509190613258565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b91906132c6565b611edb565b60405161088d9190612fef565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b891906130fb565b611f31565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906130fb565b611fb7565b6040516108f391906130a3565b60405180910390f35b34801561090857600080fd5b50610911612033565b60405161091e91906130a3565b60405180910390f35b34801561093357600080fd5b5061093c6120c1565b60405161094991906130a3565b60405180910390f35b34801561095e57600080fd5b50610979600480360381019061097491906136f5565b612153565b6040516109869190612fef565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b191906132c6565b6121e7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a435750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a5990613764565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590613764565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae7826122de565b610b1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b638261233d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bca576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be9612409565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c57610c1581610c10612409565b612153565b610c4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d06612411565b73ffffffffffffffffffffffffffffffffffffffff16610d246119fb565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906137e1565b60405180910390fd5b8060098190555050565b610d8c612411565b73ffffffffffffffffffffffffffffffffffffffff16610daa6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906137e1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610e27612419565b6002546001540303905090565b610e3f838383612422565b505050565b610e4c612411565b73ffffffffffffffffffffffffffffffffffffffff16610e6a6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb7906137e1565b60405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff1615610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061384d565b60405180910390fd5b6115b381610f61610e1d565b610f6b919061389c565b1115610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061393e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611011906139aa565b60405180910390fd5b600a82111561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613a16565b60405180910390fd5b60018210156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613a82565b60405180910390fd5b6000600a5490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600084905060148583611100919061389c565b1115611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890613aee565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111fa576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001816111f79190613b0e565b90505b61120e81846112099190613b42565b6127c9565b848261121a919061389c565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061126733866128d5565b5050505050565b80600e60009054906101000a900460ff16156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061384d565b60405180910390fd5b6115b3816112cb610e1d565b6112d5919061389c565b1115611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9061393e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906139aa565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90613be8565b60405180910390fd5b60095482600b54611425919061389c565b1115611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613c54565b60405180910390fd5b81600b6000828254611478919061389c565b9250508190555061148933836128d5565b5050565b600a81565b6115b381565b6114a0612411565b73ffffffffffffffffffffffffffffffffffffffff166114be6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906137e1565b60405180910390fd5b6000600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161155c90613ca5565b60006040518083038185875af1925050503d8060008114611599576040519150601f19603f3d011682016040523d82523d6000602084013e61159e565b606091505b50509050806115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613d06565b60405180910390fd5b50565b61160083838360405180602001604052806000815250611e63565b505050565b606060006116128361189d565b905060008167ffffffffffffffff8111156116305761162f6133dd565b5b60405190808252806020026020018201604052801561165e5781602001602082028036833780820191505090505b50905060006001905060005b838110801561167b57506115b38211155b1561170357600061168b83611865565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ef57828483815181106116d4576116d3613d26565b5b60200260200101818152505081806116eb90613d55565b9250505b82806116fa90613d55565b9350505061166a565b82945050505050919050565b611717612411565b73ffffffffffffffffffffffffffffffffffffffff166117356119fb565b73ffffffffffffffffffffffffffffffffffffffff161461178b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611782906137e1565b60405180910390fd5b80600c908161179a9190613f49565b5050565b600d80546117ab90613764565b80601f01602080910402602001604051908101604052809291908181526020018280546117d790613764565b80156118245780601f106117f957610100808354040283529160200191611824565b820191906000526020600020905b81548152906001019060200180831161180757829003601f168201915b505050505081565b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900460ff1681565b60006118708261233d565b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611904576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61195d612411565b73ffffffffffffffffffffffffffffffffffffffff1661197b6119fb565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c8906137e1565b60405180910390fd5b6119db60006128f3565b565b600b5481565b60106020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a2c612411565b73ffffffffffffffffffffffffffffffffffffffff16611a4a6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a97906137e1565b60405180910390fd5b81600e60009054906101000a900460ff1615611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae89061384d565b60405180910390fd5b6115b381611afd610e1d565b611b07919061389c565b1115611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f9061393e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906139aa565b60405180910390fd5b611bc082846128d5565b505050565b611bcd612411565b73ffffffffffffffffffffffffffffffffffffffff16611beb6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c38906137e1565b60405180910390fd5b80600d9081611c509190613f49565b5050565b606060048054611c6390613764565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8f90613764565b8015611cdc5780601f10611cb157610100808354040283529160200191611cdc565b820191906000526020600020905b815481529060010190602001808311611cbf57829003601f168201915b5050505050905090565b611cee612409565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d52576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611d5f612409565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e0c612409565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e519190612fef565b60405180910390a35050565b600a5481565b611e6e848484612422565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ed057611e99848484846129b7565b611ecf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611f39612411565b73ffffffffffffffffffffffffffffffffffffffff16611f576119fb565b73ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa4906137e1565b60405180910390fd5b80600a8190555050565b6060611fc2826122de565b612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff89061408d565b60405180910390fd5b600c61200c83612b07565b60405160200161201d9291906141b8565b6040516020818303038152906040529050919050565b600c805461204090613764565b80601f016020809104026020016040519081016040528092919081815260200182805461206c90613764565b80156120b95780601f1061208e576101008083540402835291602001916120b9565b820191906000526020600020905b81548152906001019060200180831161209c57829003601f168201915b505050505081565b6060600d80546120d090613764565b80601f01602080910402602001604051908101604052809291908181526020018280546120fc90613764565b80156121495780601f1061211e57610100808354040283529160200191612149565b820191906000526020600020905b81548152906001019060200180831161212c57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ef612411565b73ffffffffffffffffffffffffffffffffffffffff1661220d6119fb565b73ffffffffffffffffffffffffffffffffffffffff1614612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a906137e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990614259565b60405180910390fd5b6122db816128f3565b50565b6000816122e9612419565b111580156122f8575060015482105b8015612336575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000808290508061234c612419565b116123d2576001548110156123d15760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036123cf575b600081036123c557600560008360019003935083815260200190815260200160002054905061239b565b8092505050612404565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061242d8261233d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612494576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124b5612409565b73ffffffffffffffffffffffffffffffffffffffff1614806124e457506124e3856124de612409565b612153565b5b8061252957506124f2612409565b73ffffffffffffffffffffffffffffffffffffffff1661251184610adc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612562576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d58585856001612c67565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126d286612c6d565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361275a5760006001840190506000600560008381526020019081526020016000205403612758576001548114612757578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c28585856001612c77565b5050505050565b8034111561288e5760003373ffffffffffffffffffffffffffffffffffffffff1682346127f69190613b0e565b60405161280290613ca5565b60006040518083038185875af1925050503d806000811461283f576040519150601f19603f3d011682016040523d82523d6000602084013e612844565b606091505b5050905080612888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f906142c5565b60405180910390fd5b506128d2565b803410156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614331565b60405180910390fd5b5b50565b6128ef828260405180602001604052806000815250612c7d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129dd612409565b8786866040518563ffffffff1660e01b81526004016129ff94939291906143a6565b6020604051808303816000875af1925050508015612a3b57506040513d601f19601f82011682018060405250810190612a389190614407565b60015b612ab4573d8060008114612a6b576040519150601f19603f3d011682016040523d82523d6000602084013e612a70565b606091505b506000815103612aac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612b4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c62565b600082905060005b60008214612b80578080612b6990613d55565b915050600a82612b799190614463565b9150612b56565b60008167ffffffffffffffff811115612b9c57612b9b6133dd565b5b6040519080825280601f01601f191660200182016040528015612bce5781602001600182028036833780820191505090505b5090505b60008514612c5b57600182612be79190613b0e565b9150600a85612bf69190614494565b6030612c02919061389c565b60f81b818381518110612c1857612c17613d26565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c549190614463565b9450612bd2565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612d24576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d316000858386612c67565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d9660018514612f31565b901b60a042901b612da686612c6d565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612eaa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e5a60008784806001019550876129b7565b612e90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612deb578260015414612ea557600080fd5b612f15565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612eab575b816001819055505050612f2b6000858386612c77565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f8481612f4f565b8114612f8f57600080fd5b50565b600081359050612fa181612f7b565b92915050565b600060208284031215612fbd57612fbc612f45565b5b6000612fcb84828501612f92565b91505092915050565b60008115159050919050565b612fe981612fd4565b82525050565b60006020820190506130046000830184612fe0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613044578082015181840152602081019050613029565b83811115613053576000848401525b50505050565b6000601f19601f8301169050919050565b60006130758261300a565b61307f8185613015565b935061308f818560208601613026565b61309881613059565b840191505092915050565b600060208201905081810360008301526130bd818461306a565b905092915050565b6000819050919050565b6130d8816130c5565b81146130e357600080fd5b50565b6000813590506130f5816130cf565b92915050565b60006020828403121561311157613110612f45565b5b600061311f848285016130e6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061315382613128565b9050919050565b61316381613148565b82525050565b600060208201905061317e600083018461315a565b92915050565b61318d81613148565b811461319857600080fd5b50565b6000813590506131aa81613184565b92915050565b600080604083850312156131c7576131c6612f45565b5b60006131d58582860161319b565b92505060206131e6858286016130e6565b9150509250929050565b6131f981612fd4565b811461320457600080fd5b50565b600081359050613216816131f0565b92915050565b60006020828403121561323257613231612f45565b5b600061324084828501613207565b91505092915050565b613252816130c5565b82525050565b600060208201905061326d6000830184613249565b92915050565b60008060006060848603121561328c5761328b612f45565b5b600061329a8682870161319b565b93505060206132ab8682870161319b565b92505060406132bc868287016130e6565b9150509250925092565b6000602082840312156132dc576132db612f45565b5b60006132ea8482850161319b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613328816130c5565b82525050565b600061333a838361331f565b60208301905092915050565b6000602082019050919050565b600061335e826132f3565b61336881856132fe565b93506133738361330f565b8060005b838110156133a457815161338b888261332e565b975061339683613346565b925050600181019050613377565b5085935050505092915050565b600060208201905081810360008301526133cb8184613353565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61341582613059565b810181811067ffffffffffffffff82111715613434576134336133dd565b5b80604052505050565b6000613447612f3b565b9050613453828261340c565b919050565b600067ffffffffffffffff821115613473576134726133dd565b5b61347c82613059565b9050602081019050919050565b82818337600083830152505050565b60006134ab6134a684613458565b61343d565b9050828152602081018484840111156134c7576134c66133d8565b5b6134d2848285613489565b509392505050565b600082601f8301126134ef576134ee6133d3565b5b81356134ff848260208601613498565b91505092915050565b60006020828403121561351e5761351d612f45565b5b600082013567ffffffffffffffff81111561353c5761353b612f4a565b5b613548848285016134da565b91505092915050565b6000806040838503121561356857613567612f45565b5b6000613576858286016130e6565b92505060206135878582860161319b565b9150509250929050565b600080604083850312156135a8576135a7612f45565b5b60006135b68582860161319b565b92505060206135c785828601613207565b9150509250929050565b600067ffffffffffffffff8211156135ec576135eb6133dd565b5b6135f582613059565b9050602081019050919050565b6000613615613610846135d1565b61343d565b905082815260208101848484011115613631576136306133d8565b5b61363c848285613489565b509392505050565b600082601f830112613659576136586133d3565b5b8135613669848260208601613602565b91505092915050565b6000806000806080858703121561368c5761368b612f45565b5b600061369a8782880161319b565b94505060206136ab8782880161319b565b93505060406136bc878288016130e6565b925050606085013567ffffffffffffffff8111156136dd576136dc612f4a565b5b6136e987828801613644565b91505092959194509250565b6000806040838503121561370c5761370b612f45565b5b600061371a8582860161319b565b925050602061372b8582860161319b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377c57607f821691505b60208210810361378f5761378e613735565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137cb602083613015565b91506137d682613795565b602082019050919050565b600060208201905081810360008301526137fa816137be565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000613837601283613015565b915061384282613801565b602082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138a7826130c5565b91506138b2836130c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138e7576138e661386d565b5b828201905092915050565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6000613928601583613015565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b6000613994601383613015565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b6000613a00601183613015565b9150613a0b826139ca565b602082019050919050565b60006020820190508181036000830152613a2f816139f3565b9050919050565b7f4d696e696d756d20746f206d696e742069732031000000000000000000000000600082015250565b6000613a6c601483613015565b9150613a7782613a36565b602082019050919050565b60006020820190508181036000830152613a9b81613a5f565b9050919050565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b6000613ad8601383613015565b9150613ae382613aa2565b602082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b6000613b19826130c5565b9150613b24836130c5565b925082821015613b3757613b3661386d565b5b828203905092915050565b6000613b4d826130c5565b9150613b58836130c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9157613b9061386d565b5b828202905092915050565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b6000613bd2601183613015565b9150613bdd82613b9c565b602082019050919050565b60006020820190508181036000830152613c0181613bc5565b9050919050565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b6000613c3e601283613015565b9150613c4982613c08565b602082019050919050565b60006020820190508181036000830152613c6d81613c31565b9050919050565b600081905092915050565b50565b6000613c8f600083613c74565b9150613c9a82613c7f565b600082019050919050565b6000613cb082613c82565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000613cf0600f83613015565b9150613cfb82613cba565b602082019050919050565b60006020820190508181036000830152613d1f81613ce3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d60826130c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d9257613d9161386d565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613dff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613dc2565b613e098683613dc2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e46613e41613e3c846130c5565b613e21565b6130c5565b9050919050565b6000819050919050565b613e6083613e2b565b613e74613e6c82613e4d565b848454613dcf565b825550505050565b600090565b613e89613e7c565b613e94818484613e57565b505050565b5b81811015613eb857613ead600082613e81565b600181019050613e9a565b5050565b601f821115613efd57613ece81613d9d565b613ed784613db2565b81016020851015613ee6578190505b613efa613ef285613db2565b830182613e99565b50505b505050565b600082821c905092915050565b6000613f2060001984600802613f02565b1980831691505092915050565b6000613f398383613f0f565b9150826002028217905092915050565b613f528261300a565b67ffffffffffffffff811115613f6b57613f6a6133dd565b5b613f758254613764565b613f80828285613ebc565b600060209050601f831160018114613fb35760008415613fa1578287015190505b613fab8582613f2d565b865550614013565b601f198416613fc186613d9d565b60005b82811015613fe957848901518255600182019150602085019450602081019050613fc4565b868310156140065784890151614002601f891682613f0f565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614077602f83613015565b91506140828261401b565b604082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b600081905092915050565b600081546140c581613764565b6140cf81866140ad565b945060018216600081146140ea57600181146140ff57614132565b60ff1983168652811515820286019350614132565b61410885613d9d565b60005b8381101561412a5781548189015260018201915060208101905061410b565b838801955050505b50505092915050565b60006141468261300a565b61415081856140ad565b9350614160818560208601613026565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006141a26005836140ad565b91506141ad8261416c565b600582019050919050565b60006141c482856140b8565b91506141d0828461413b565b91506141db82614195565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614243602683613015565b915061424e826141e7565b604082019050919050565b6000602082019050818103600083015261427281614236565b9050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006142af600f83613015565b91506142ba82614279565b602082019050919050565b600060208201905081810360008301526142de816142a2565b9050919050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b600061431b601383613015565b9150614326826142e5565b602082019050919050565b6000602082019050818103600083015261434a8161430e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061437882614351565b614382818561435c565b9350614392818560208601613026565b61439b81613059565b840191505092915050565b60006080820190506143bb600083018761315a565b6143c8602083018661315a565b6143d56040830185613249565b81810360608301526143e7818461436d565b905095945050505050565b60008151905061440181612f7b565b92915050565b60006020828403121561441d5761441c612f45565b5b600061442b848285016143f2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061446e826130c5565b9150614479836130c5565b92508261448957614488614434565b5b828204905092915050565b600061449f826130c5565b91506144aa836130c5565b9250826144ba576144b9614434565b5b82820690509291505056fea2646970667358221220c1c1b158765797f577ec9f9e5e8fd447e7338afa5b65143eea7dfda3791e5d4964736f6c634300080f0033

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.