ETH Price: $3,089.29 (+0.61%)
Gas: 6 Gwei

Token

Touch Grass (TOUCHGRASS)
 

Overview

Max Total Supply

2,162 TOUCHGRASS

Holders

415

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TOUCHGRASS
0x2307fe35ffef51203a215d258eedf09e792d0583
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:
TouchGrass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

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

pragma solidity >=0.7.0 <0.9.0;

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

pragma solidity >=0.7.0 <0.9.0;

contract TouchGrass is ERC721A, Ownable {

  /** ERRORS */
  error ExceedsMaxSupply();
  error InvalidAmount();
  error FreeMintOver();
  error ExceedsWalletLimit();
  error InsufficientValue();
  error TokenNotFound();
  error ContractMint();
  error SaleInactive();

  using Strings for uint256;

  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public freeMaxMintPerWallet = 5;

  uint256 public FREE_MINT_MAX = 2000;
  
  bool public saleActive = true;
  
  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor(string memory baseTokenURI) ERC721A("Touch Grass", "TOUCHGRASS") payable {
    _baseTokenURI = baseTokenURI;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    if (!saleActive) revert SaleInactive();
    if (msg.sender != tx.origin) revert ContractMint();
    if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply();
    if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount();
    _;
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    if (!isFreeMint()) revert FreeMintOver();
    if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit();
    unchecked { freeWallets[msg.sender] += _mintAmount; }

    _safeMint(msg.sender, _mintAmount);
  }

  function paidMint(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
  {
    if (msg.value < (cost * _mintAmount)) revert InsufficientValue();
    _safeMint(msg.sender, _mintAmount);
  }

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

  function isFreeMint() public view returns (bool) {
    return totalSupply() < FREE_MINT_MAX;
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  
  function toggleSaleState() public onlyOwner {
    saleActive = !saleActive;
  }

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    FREE_MINT_MAX = _max;
  }

  function withdraw() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  /** METADATA */
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (!_exists(_tokenId)) revert TokenNotFound();

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

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"payable","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":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"FreeMintOver","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","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":"FREE_MINT_MAX","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604081905266071afd498d0000600955611388600a556014600b556005600c556107d0600d55600e805460ff19166001179055620023dd388190039081908339810160408190526200005391620001e6565b604080518082018252600b81526a546f75636820477261737360a81b60208083019182528351808501909452600a845269544f554348475241535360b01b908401528151919291620000a89160029162000140565b508051620000be90600390602084019062000140565b5050600160005550620000d133620000ee565b8051620000e690601090602084019062000140565b505062000315565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e90620002c2565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b60006020808385031215620001fa57600080fd5b82516001600160401b03808211156200021257600080fd5b818501915085601f8301126200022757600080fd5b8151818111156200023c576200023c620002ff565b604051601f8201601f19908116603f01168101908382118183101715620002675762000267620002ff565b8160405282815288868487010111156200028057600080fd5b600093505b82841015620002a4578484018601518185018701529285019262000285565b82841115620002b65760008684830101525b98975050505050505050565b600181811c90821680620002d757607f821691505b60208210811415620002f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6120b880620003256000396000f3fe6080604052600436106102345760003560e01c80636f8b44b011610138578063b071401b116100b0578063d5abeb011161007f578063e985e9c511610064578063e985e9c514610604578063efbd73f41461064d578063f2fde38b1461066d57600080fd5b8063d5abeb01146105d9578063daaeec86146105ef57600080fd5b8063b071401b14610564578063b88d4fde14610584578063c2d05a6e146105a4578063c87b56dd146105b957600080fd5b80637c928fe91161010757806394354fd0116100ec57806394354fd01461051957806395d89b411461052f578063a22cb4651461054457600080fd5b80637c928fe9146104db5780638da5cb5b146104fb57600080fd5b80636f8b44b01461046657806370a0823114610486578063715018a6146104a6578063742a4c9b146104bb57600080fd5b80633bc4b025116101cb57806355f804b31161019a57806365cde7331161017f57806365cde7331461042357806366112b6b1461043657806368428a1b1461044c57600080fd5b806355f804b3146103e35780636352211e1461040357600080fd5b80633bc4b025146103785780633ccfd60b1461038e57806342842e0e146103a357806344a0d68a146103c357600080fd5b8063095ea7b311610207578063095ea7b31461030357806313faede61461032557806318160ddd1461033b57806323b872dd1461035857600080fd5b806301ffc9a71461023957806306bb99e21461026e57806306fdde03146102a9578063081812fc146102cb575b600080fd5b34801561024557600080fd5b50610259610254366004611d62565b61068d565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061029b610289366004611b8f565b600f6020526000908152604090205481565b604051908152602001610265565b3480156102b557600080fd5b506102be61072a565b6040516102659190611f09565b3480156102d757600080fd5b506102eb6102e6366004611e0e565b6107bc565b6040516001600160a01b039091168152602001610265565b34801561030f57600080fd5b5061032361031e366004611d38565b610819565b005b34801561033157600080fd5b5061029b60095481565b34801561034757600080fd5b50600154600054036000190161029b565b34801561036457600080fd5b50610323610373366004611be4565b6108d2565b34801561038457600080fd5b5061029b600d5481565b34801561039a57600080fd5b506103236108dd565b3480156103af57600080fd5b506103236103be366004611be4565b610978565b3480156103cf57600080fd5b506103236103de366004611e0e565b610993565b3480156103ef57600080fd5b506103236103fe366004611d9c565b6109f2565b34801561040f57600080fd5b506102eb61041e366004611e0e565b610a58565b610323610431366004611e0e565b610a6a565b34801561044257600080fd5b5061029b600c5481565b34801561045857600080fd5b50600e546102599060ff1681565b34801561047257600080fd5b50610323610481366004611e0e565b610b6c565b34801561049257600080fd5b5061029b6104a1366004611b8f565b610bcb565b3480156104b257600080fd5b50610323610c33565b3480156104c757600080fd5b506103236104d6366004611e0e565b610c99565b3480156104e757600080fd5b506103236104f6366004611e0e565b610cf8565b34801561050757600080fd5b506008546001600160a01b03166102eb565b34801561052557600080fd5b5061029b600b5481565b34801561053b57600080fd5b506102be610e58565b34801561055057600080fd5b5061032361055f366004611cfc565b610e67565b34801561057057600080fd5b5061032361057f366004611e0e565b610f16565b34801561059057600080fd5b5061032361059f366004611c20565b610f75565b3480156105b057600080fd5b50610259610fbf565b3480156105c557600080fd5b506102be6105d4366004611e0e565b610fdd565b3480156105e557600080fd5b5061029b600a5481565b3480156105fb57600080fd5b50610323611056565b34801561061057600080fd5b5061025961061f366004611bb1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065957600080fd5b50610323610668366004611e27565b6110c4565b34801561067957600080fd5b50610323610688366004611b8f565b611128565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106f057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461073990611faa565b80601f016020809104026020016040519081016040528092919081815260200182805461076590611faa565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b60006107c782611207565b6107fd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061082482610a58565b9050806001600160a01b0316836001600160a01b03161415610872576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108c25761088c813361061f565b6108c2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108cd838383611240565b505050565b6108cd8383836112a9565b6008546001600160a01b0316331461093c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610975573d6000803e3d6000fd5b50565b6108cd83838360405180602001604052806000815250610f75565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600955565b6008546001600160a01b03163314610a4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b6108cd60108383611ada565b6000610a63826114e4565b5192915050565b600e54819060ff16610a8f57604051630fe219dd60e21b815260040160405180910390fd5b333214610aaf576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610aca9190611f1c565b1115610ae95760405163c30436e960e01b815260040160405180910390fd5b6001811080610af95750600b5481115b15610b175760405163162908e360e11b815260040160405180910390fd5b81600954610b259190611f48565b341015610b5e576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b683383611621565b5050565b6008546001600160a01b03163314610bc65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600a55565b60006001600160a01b038216610c0d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b610c97600061163b565b565b6008546001600160a01b03163314610cf35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600d55565b600e54819060ff16610d1d57604051630fe219dd60e21b815260040160405180910390fd5b333214610d3d576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610d589190611f1c565b1115610d775760405163c30436e960e01b815260040160405180910390fd5b6001811080610d875750600b5481115b15610da55760405163162908e360e11b815260040160405180910390fd5b610dad610fbf565b610de3576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054610e01908490611f1c565b1115610e39576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610b689083611621565b60606003805461073990611faa565b6001600160a01b038216331415610eaa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600b55565b610f808484846112a9565b6001600160a01b0383163b15610fb957610f9c8484848461169a565b610fb9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610fd76001546000546000199190030190565b10905090565b6060610fe882611207565b61101e576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611026611792565b61102f836117a1565b604051602001611040929190611e76565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600e805460ff19811660ff90911615179055565b6008546001600160a01b0316331461111e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b610b688183611621565b6008546001600160a01b031633146111825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b6001600160a01b0381166111fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610933565b6109758161163b565b60008160011115801561121b575060005482105b8015610724575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112b4826114e4565b9050836001600160a01b031681600001516001600160a01b031614611305576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806113235750611323853361061f565b8061133e575033611333846107bc565b6001600160a01b0316145b905080611377576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166113b7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113c360008487611240565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611499576000548214611499578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116115ef576000548110156115ef57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115ed5780516001600160a01b031615611583579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115e8579392505050565b611583565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b688282604051806020016040528060008152506118d3565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116cf903390899088908890600401611ecd565b602060405180830381600087803b1580156116e957600080fd5b505af1925050508015611719575060408051601f3d908101601f1916820190925261171691810190611d7f565b60015b611774573d808015611747576040519150601f19603f3d011682016040523d82523d6000602084013e61174c565b606091505b50805161176c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606010805461073990611faa565b6060816117e157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561180b57806117f581611fe5565b91506118049050600a83611f34565b91506117e5565b60008167ffffffffffffffff81111561182657611826612056565b6040519080825280601f01601f191660200182016040528015611850576020820181803683370190505b5090505b841561178a57611865600183611f67565b9150611872600a86612000565b61187d906030611f1c565b60f81b81838151811061189257611892612040565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118cc600a86611f34565b9450611854565b6000546001600160a01b038416611916576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261194d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611a85575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a4e600087848060010195508761169a565b611a6b576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a03578260005414611a8057600080fd5b611aca565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a86575b506000908155610fb99085838684565b828054611ae690611faa565b90600052602060002090601f016020900481019282611b085760008555611b4e565b82601f10611b215782800160ff19823516178555611b4e565b82800160010185558215611b4e579182015b82811115611b4e578235825591602001919060010190611b33565b50611b5a929150611b5e565b5090565b5b80821115611b5a5760008155600101611b5f565b80356001600160a01b0381168114611b8a57600080fd5b919050565b600060208284031215611ba157600080fd5b611baa82611b73565b9392505050565b60008060408385031215611bc457600080fd5b611bcd83611b73565b9150611bdb60208401611b73565b90509250929050565b600080600060608486031215611bf957600080fd5b611c0284611b73565b9250611c1060208501611b73565b9150604084013590509250925092565b60008060008060808587031215611c3657600080fd5b611c3f85611b73565b9350611c4d60208601611b73565b925060408501359150606085013567ffffffffffffffff80821115611c7157600080fd5b818701915087601f830112611c8557600080fd5b813581811115611c9757611c97612056565b604051601f8201601f19908116603f01168101908382118183101715611cbf57611cbf612056565b816040528281528a6020848701011115611cd857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d0f57600080fd5b611d1883611b73565b915060208301358015158114611d2d57600080fd5b809150509250929050565b60008060408385031215611d4b57600080fd5b611d5483611b73565b946020939093013593505050565b600060208284031215611d7457600080fd5b8135611baa8161206c565b600060208284031215611d9157600080fd5b8151611baa8161206c565b60008060208385031215611daf57600080fd5b823567ffffffffffffffff80821115611dc757600080fd5b818501915085601f830112611ddb57600080fd5b813581811115611dea57600080fd5b866020828501011115611dfc57600080fd5b60209290920196919550909350505050565b600060208284031215611e2057600080fd5b5035919050565b60008060408385031215611e3a57600080fd5b82359150611bdb60208401611b73565b60008151808452611e62816020860160208601611f7e565b601f01601f19169290920160200192915050565b60008351611e88818460208801611f7e565b835190830190611e9c818360208801611f7e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611eff6080830184611e4a565b9695505050505050565b602081526000611baa6020830184611e4a565b60008219821115611f2f57611f2f612014565b500190565b600082611f4357611f4361202a565b500490565b6000816000190483118215151615611f6257611f62612014565b500290565b600082821015611f7957611f79612014565b500390565b60005b83811015611f99578181015183820152602001611f81565b83811115610fb95750506000910152565b600181811c90821680611fbe57607f821691505b60208210811415611fdf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ff957611ff9612014565b5060010190565b60008261200f5761200f61202a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097557600080fdfea264697066735822122072aa8e3ded8cc4fabf15b76fc1a5f082659d4f54a7a5fb83453376207107b13264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d595957316e753945483269363352795252536f4d32626a72713271656d5a57487a646255666f436b78584e422f00000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636f8b44b011610138578063b071401b116100b0578063d5abeb011161007f578063e985e9c511610064578063e985e9c514610604578063efbd73f41461064d578063f2fde38b1461066d57600080fd5b8063d5abeb01146105d9578063daaeec86146105ef57600080fd5b8063b071401b14610564578063b88d4fde14610584578063c2d05a6e146105a4578063c87b56dd146105b957600080fd5b80637c928fe91161010757806394354fd0116100ec57806394354fd01461051957806395d89b411461052f578063a22cb4651461054457600080fd5b80637c928fe9146104db5780638da5cb5b146104fb57600080fd5b80636f8b44b01461046657806370a0823114610486578063715018a6146104a6578063742a4c9b146104bb57600080fd5b80633bc4b025116101cb57806355f804b31161019a57806365cde7331161017f57806365cde7331461042357806366112b6b1461043657806368428a1b1461044c57600080fd5b806355f804b3146103e35780636352211e1461040357600080fd5b80633bc4b025146103785780633ccfd60b1461038e57806342842e0e146103a357806344a0d68a146103c357600080fd5b8063095ea7b311610207578063095ea7b31461030357806313faede61461032557806318160ddd1461033b57806323b872dd1461035857600080fd5b806301ffc9a71461023957806306bb99e21461026e57806306fdde03146102a9578063081812fc146102cb575b600080fd5b34801561024557600080fd5b50610259610254366004611d62565b61068d565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061029b610289366004611b8f565b600f6020526000908152604090205481565b604051908152602001610265565b3480156102b557600080fd5b506102be61072a565b6040516102659190611f09565b3480156102d757600080fd5b506102eb6102e6366004611e0e565b6107bc565b6040516001600160a01b039091168152602001610265565b34801561030f57600080fd5b5061032361031e366004611d38565b610819565b005b34801561033157600080fd5b5061029b60095481565b34801561034757600080fd5b50600154600054036000190161029b565b34801561036457600080fd5b50610323610373366004611be4565b6108d2565b34801561038457600080fd5b5061029b600d5481565b34801561039a57600080fd5b506103236108dd565b3480156103af57600080fd5b506103236103be366004611be4565b610978565b3480156103cf57600080fd5b506103236103de366004611e0e565b610993565b3480156103ef57600080fd5b506103236103fe366004611d9c565b6109f2565b34801561040f57600080fd5b506102eb61041e366004611e0e565b610a58565b610323610431366004611e0e565b610a6a565b34801561044257600080fd5b5061029b600c5481565b34801561045857600080fd5b50600e546102599060ff1681565b34801561047257600080fd5b50610323610481366004611e0e565b610b6c565b34801561049257600080fd5b5061029b6104a1366004611b8f565b610bcb565b3480156104b257600080fd5b50610323610c33565b3480156104c757600080fd5b506103236104d6366004611e0e565b610c99565b3480156104e757600080fd5b506103236104f6366004611e0e565b610cf8565b34801561050757600080fd5b506008546001600160a01b03166102eb565b34801561052557600080fd5b5061029b600b5481565b34801561053b57600080fd5b506102be610e58565b34801561055057600080fd5b5061032361055f366004611cfc565b610e67565b34801561057057600080fd5b5061032361057f366004611e0e565b610f16565b34801561059057600080fd5b5061032361059f366004611c20565b610f75565b3480156105b057600080fd5b50610259610fbf565b3480156105c557600080fd5b506102be6105d4366004611e0e565b610fdd565b3480156105e557600080fd5b5061029b600a5481565b3480156105fb57600080fd5b50610323611056565b34801561061057600080fd5b5061025961061f366004611bb1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065957600080fd5b50610323610668366004611e27565b6110c4565b34801561067957600080fd5b50610323610688366004611b8f565b611128565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106f057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461073990611faa565b80601f016020809104026020016040519081016040528092919081815260200182805461076590611faa565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b60006107c782611207565b6107fd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061082482610a58565b9050806001600160a01b0316836001600160a01b03161415610872576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108c25761088c813361061f565b6108c2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108cd838383611240565b505050565b6108cd8383836112a9565b6008546001600160a01b0316331461093c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610975573d6000803e3d6000fd5b50565b6108cd83838360405180602001604052806000815250610f75565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600955565b6008546001600160a01b03163314610a4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b6108cd60108383611ada565b6000610a63826114e4565b5192915050565b600e54819060ff16610a8f57604051630fe219dd60e21b815260040160405180910390fd5b333214610aaf576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610aca9190611f1c565b1115610ae95760405163c30436e960e01b815260040160405180910390fd5b6001811080610af95750600b5481115b15610b175760405163162908e360e11b815260040160405180910390fd5b81600954610b259190611f48565b341015610b5e576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b683383611621565b5050565b6008546001600160a01b03163314610bc65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600a55565b60006001600160a01b038216610c0d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b610c97600061163b565b565b6008546001600160a01b03163314610cf35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600d55565b600e54819060ff16610d1d57604051630fe219dd60e21b815260040160405180910390fd5b333214610d3d576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610d589190611f1c565b1115610d775760405163c30436e960e01b815260040160405180910390fd5b6001811080610d875750600b5481115b15610da55760405163162908e360e11b815260040160405180910390fd5b610dad610fbf565b610de3576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054610e01908490611f1c565b1115610e39576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610b689083611621565b60606003805461073990611faa565b6001600160a01b038216331415610eaa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600b55565b610f808484846112a9565b6001600160a01b0383163b15610fb957610f9c8484848461169a565b610fb9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610fd76001546000546000199190030190565b10905090565b6060610fe882611207565b61101e576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611026611792565b61102f836117a1565b604051602001611040929190611e76565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b600e805460ff19811660ff90911615179055565b6008546001600160a01b0316331461111e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b610b688183611621565b6008546001600160a01b031633146111825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610933565b6001600160a01b0381166111fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610933565b6109758161163b565b60008160011115801561121b575060005482105b8015610724575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112b4826114e4565b9050836001600160a01b031681600001516001600160a01b031614611305576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806113235750611323853361061f565b8061133e575033611333846107bc565b6001600160a01b0316145b905080611377576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166113b7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113c360008487611240565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611499576000548214611499578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116115ef576000548110156115ef57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115ed5780516001600160a01b031615611583579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115e8579392505050565b611583565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b688282604051806020016040528060008152506118d3565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116cf903390899088908890600401611ecd565b602060405180830381600087803b1580156116e957600080fd5b505af1925050508015611719575060408051601f3d908101601f1916820190925261171691810190611d7f565b60015b611774573d808015611747576040519150601f19603f3d011682016040523d82523d6000602084013e61174c565b606091505b50805161176c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606010805461073990611faa565b6060816117e157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561180b57806117f581611fe5565b91506118049050600a83611f34565b91506117e5565b60008167ffffffffffffffff81111561182657611826612056565b6040519080825280601f01601f191660200182016040528015611850576020820181803683370190505b5090505b841561178a57611865600183611f67565b9150611872600a86612000565b61187d906030611f1c565b60f81b81838151811061189257611892612040565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118cc600a86611f34565b9450611854565b6000546001600160a01b038416611916576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261194d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611a85575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a4e600087848060010195508761169a565b611a6b576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a03578260005414611a8057600080fd5b611aca565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a86575b506000908155610fb99085838684565b828054611ae690611faa565b90600052602060002090601f016020900481019282611b085760008555611b4e565b82601f10611b215782800160ff19823516178555611b4e565b82800160010185558215611b4e579182015b82811115611b4e578235825591602001919060010190611b33565b50611b5a929150611b5e565b5090565b5b80821115611b5a5760008155600101611b5f565b80356001600160a01b0381168114611b8a57600080fd5b919050565b600060208284031215611ba157600080fd5b611baa82611b73565b9392505050565b60008060408385031215611bc457600080fd5b611bcd83611b73565b9150611bdb60208401611b73565b90509250929050565b600080600060608486031215611bf957600080fd5b611c0284611b73565b9250611c1060208501611b73565b9150604084013590509250925092565b60008060008060808587031215611c3657600080fd5b611c3f85611b73565b9350611c4d60208601611b73565b925060408501359150606085013567ffffffffffffffff80821115611c7157600080fd5b818701915087601f830112611c8557600080fd5b813581811115611c9757611c97612056565b604051601f8201601f19908116603f01168101908382118183101715611cbf57611cbf612056565b816040528281528a6020848701011115611cd857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d0f57600080fd5b611d1883611b73565b915060208301358015158114611d2d57600080fd5b809150509250929050565b60008060408385031215611d4b57600080fd5b611d5483611b73565b946020939093013593505050565b600060208284031215611d7457600080fd5b8135611baa8161206c565b600060208284031215611d9157600080fd5b8151611baa8161206c565b60008060208385031215611daf57600080fd5b823567ffffffffffffffff80821115611dc757600080fd5b818501915085601f830112611ddb57600080fd5b813581811115611dea57600080fd5b866020828501011115611dfc57600080fd5b60209290920196919550909350505050565b600060208284031215611e2057600080fd5b5035919050565b60008060408385031215611e3a57600080fd5b82359150611bdb60208401611b73565b60008151808452611e62816020860160208601611f7e565b601f01601f19169290920160200192915050565b60008351611e88818460208801611f7e565b835190830190611e9c818360208801611f7e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611eff6080830184611e4a565b9695505050505050565b602081526000611baa6020830184611e4a565b60008219821115611f2f57611f2f612014565b500190565b600082611f4357611f4361202a565b500490565b6000816000190483118215151615611f6257611f62612014565b500290565b600082821015611f7957611f79612014565b500390565b60005b83811015611f99578181015183820152602001611f81565b83811115610fb95750506000910152565b600181811c90821680611fbe57607f821691505b60208210811415611fdf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ff957611ff9612014565b5060010190565b60008261200f5761200f61202a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097557600080fdfea264697066735822122072aa8e3ded8cc4fabf15b76fc1a5f082659d4f54a7a5fb83453376207107b13264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d595957316e753945483269363352795252536f4d32626a72713271656d5a57487a646255666f436b78584e422f00000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): ipfs://QmYYW1nu9EH2i63RyRRSoM2bjrq2qemZWHzdbUfoCkxXNB/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d595957316e753945483269363352795252536f4d32626a
Arg [3] : 72713271656d5a57487a646255666f436b78584e422f00000000000000000000


Deployed Bytecode Sourcemap

254:3143:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:10;;;;;;;;;;-1:-1:-1;3057:300:10;;;;;:::i;:::-;;:::i;:::-;;;6119:14:12;;6112:22;6094:41;;6082:2;6067:18;3057:300:10;;;;;;;;814:46:9;;;;;;;;;;-1:-1:-1;814:46:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7284:25:12;;;7272:2;7257:18;814:46:9;7138:177:12;6087:98:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7544:200::-;;;;;;;;;;-1:-1:-1;7544:200:10;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5371:55:12;;;5353:74;;5341:2;5326:18;7544:200:10;5207:226:12;7120:363:10;;;;;;;;;;-1:-1:-1;7120:363:10;;;;;:::i;:::-;;:::i;:::-;;569:33:9;;;;;;;;;;;;;;;;2319:306:10;;;;;;;;;;-1:-1:-1;2039:1:9;2578:12:10;2372:7;2562:13;:28;-1:-1:-1;;2562:46:10;2319:306;;8383:164;;;;;;;;;;-1:-1:-1;8383:164:10;;;;;:::i;:::-;;:::i;732:35:9:-;;;;;;;;;;;;;;;;2791:98;;;;;;;;;;;;;:::i;8613:179:10:-;;;;;;;;;;-1:-1:-1;8613:179:10;;;;;:::i;:::-;;:::i;2289:74:9:-;;;;;;;;;;-1:-1:-1;2289:74:9;;;;;:::i;:::-;;:::i;3028:100::-;;;;;;;;;;-1:-1:-1;3028:100:9;;;;;:::i;:::-;;:::i;5902:123:10:-;;;;;;;;;;-1:-1:-1;5902:123:10;;;;;:::i;:::-;;:::i;1691:220:9:-;;;;;;:::i;:::-;;:::i;686:39::-;;;;;;;;;;;;;;;;776:29;;;;;;;;;;-1:-1:-1;776:29:9;;;;;;;;2370:96;;;;;;;;;;-1:-1:-1;2370:96:9;;;;;:::i;:::-;;:::i;3416:203:10:-;;;;;;;;;;-1:-1:-1;3416:203:10;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;2697:88:9:-;;;;;;;;;;-1:-1:-1;2697:88:9;;;;;:::i;:::-;;:::i;1356:329::-;;;;;;;;;;-1:-1:-1;1356:329:9;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;643:38:9;;;;;;;;;;;;;;;;6249:102:10;;;;;;;;;;;;;:::i;7811:282::-;;;;;;;;;;-1:-1:-1;7811:282:10;;;;;:::i;:::-;;:::i;2472:130:9:-;;;;;;;;;;-1:-1:-1;2472:130:9;;;;;:::i;:::-;;:::i;8858:360:10:-;;;;;;;;;;-1:-1:-1;8858:360:10;;;;;:::i;:::-;;:::i;2052:98:9:-;;;;;;;;;;;;;:::i;3134:258::-;;;;;;;;;;-1:-1:-1;3134:258:9;;;;;:::i;:::-;;:::i;607:31::-;;;;;;;;;;;;;;;;2610:81;;;;;;;;;;;;;:::i;8159:162:10:-;;;;;;;;;;-1:-1:-1;8159:162:10;;;;;:::i;:::-;-1:-1:-1;;;;;8279:25:10;;;8256:4;8279:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8159:162;2156:127:9;;;;;;;;;;-1:-1:-1;2156:127:9;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;3057:300:10:-;3159:4;-1:-1:-1;;;;;;3194:40:10;;3209:25;3194:40;;:104;;-1:-1:-1;;;;;;;3250:48:10;;3265:33;3250:48;3194:104;:156;;;-1:-1:-1;952:25:7;-1:-1:-1;;;;;;937:40:7;;;3314:36:10;3175:175;3057:300;-1:-1:-1;;3057:300:10:o;6087:98::-;6141:13;6173:5;6166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6087:98;:::o;7544:200::-;7612:7;7636:16;7644:7;7636;:16::i;:::-;7631:64;;7661:34;;;;;;;;;;;;;;7631:64;-1:-1:-1;7713:24:10;;;;:15;:24;;;;;;-1:-1:-1;;;;;7713:24:10;;7544:200::o;7120:363::-;7192:13;7208:24;7224:7;7208:15;:24::i;:::-;7192:40;;7252:5;-1:-1:-1;;;;;7246:11:10;:2;-1:-1:-1;;;;;7246:11:10;;7242:48;;;7266:24;;;;;;;;;;;;;;7242:48;719:10:5;-1:-1:-1;;;;;7305:21:10;;;7301:137;;7332:37;7349:5;719:10:5;8159:162:10;:::i;7332:37::-;7328:110;;7392:35;;;;;;;;;;;;;;7328:110;7448:28;7457:2;7461:7;7470:5;7448:8;:28::i;:::-;7182:301;7120:363;;:::o;8383:164::-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;2791:98:9:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;;;;;;;;;1108:6;;2835:48:9::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;2861:21:9::1;2835:48:::0;::::1;;;::::0;::::1;::::0;;;2861:21;1108:6:0;2835:48:9;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2791:98::o:0;8613:179:10:-;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;2289:74:9:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;2345:4:9::1;:12:::0;2289:74::o;3028:100::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;3099:23:9::1;:13;3115:7:::0;;3099:23:::1;:::i;5902:123:10:-:0;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;5902:123;-1:-1:-1;;5902:123:10:o;1691:220:9:-;1083:10;;1777:11;;1083:10;;1078:38;;1102:14;;-1:-1:-1;;;1102:14:9;;;;;;;;;;;1078:38;1127:10;1141:9;1127:23;1123:50;;1159:14;;-1:-1:-1;;;1159:14:9;;;;;;;;;;;1123:50;1214:9;;2039:1;2578:12:10;2372:7;2562:13;1200:11:9;;2562:28:10;;-1:-1:-1;;2562:46:10;1184:27:9;;;;:::i;:::-;:39;1180:70;;;1232:18;;-1:-1:-1;;;1232:18:9;;;;;;;;;;;1180:70;1275:1;1261:11;:15;:51;;;;1294:18;;1280:11;:32;1261:51;1257:79;;;1321:15;;-1:-1:-1;;;1321:15:9;;;;;;;;;;;1257:79;1824:11:::1;1817:4;;:18;;;;:::i;:::-;1804:9;:32;1800:64;;;1845:19;;;;;;;;;;;;;;1800:64;1871:34;1881:10;1893:11;1871:9;:34::i;:::-;1691:220:::0;;:::o;2370:96::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;2438:9:9::1;:22:::0;2370:96::o;3416:203:10:-;3480:7;-1:-1:-1;;;;;3503:19:10;;3499:60;;3531:28;;;;;;;;;;;;;;3499:60;-1:-1:-1;;;;;;3584:19:10;;;;;:12;:19;;;;;:27;;;;3416:203::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;2697:88:9:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;2759:13:9::1;:20:::0;2697:88::o;1356:329::-;1083:10;;1417:11;;1083:10;;1078:38;;1102:14;;-1:-1:-1;;;1102:14:9;;;;;;;;;;;1078:38;1127:10;1141:9;1127:23;1123:50;;1159:14;;-1:-1:-1;;;1159:14:9;;;;;;;;;;;1123:50;1214:9;;2039:1;2578:12:10;2372:7;2562:13;1200:11:9;;2562:28:10;;-1:-1:-1;;2562:46:10;1184:27:9;;;;:::i;:::-;:39;1180:70;;;1232:18;;-1:-1:-1;;;1232:18:9;;;;;;;;;;;1180:70;1275:1;1261:11;:15;:51;;;;1294:18;;1280:11;:32;1261:51;1257:79;;;1321:15;;-1:-1:-1;;;1321:15:9;;;;;;;;;;;1257:79;1442:12:::1;:10;:12::i;:::-;1437:40;;1463:14;;;;;;;;;;;;;;1437:40;1528:20;::::0;1500:10:::1;1488:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;1514:11;;1488:37:::1;:::i;:::-;:60;1484:93;;;1557:20;;;;;;;;;;;;;;1484:93;1608:10;1596:23;::::0;;;:11:::1;:23;::::0;;;;:38;;;::::1;::::0;;1645:34:::1;::::0;1623:11;1645:9:::1;:34::i;6249:102:10:-:0;6305:13;6337:7;6330:14;;;;;:::i;7811:282::-;-1:-1:-1;;;;;7909:24:10;;719:10:5;7909:24:10;7905:54;;;7942:17;;;;;;;;;;;;;;7905:54;719:10:5;7970:32:10;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7970:42:10;;;;;;;;;;;;:53;;-1:-1:-1;;7970:53:10;;;;;;;;;;8038:48;;6094:41:12;;;7970:42:10;;719:10:5;8038:48:10;;6067:18:12;8038:48:10;;;;;;;7811:282;;:::o;2472:130:9:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;2556:18:9::1;:40:::0;2472:130::o;8858:360:10:-;9019:28;9029:4;9035:2;9039:7;9019:9;:28::i;:::-;-1:-1:-1;;;;;9061:13:10;;1465:19:4;:23;9057:155:10;;9082:56;9113:4;9119:2;9123:7;9132:5;9082:30;:56::i;:::-;9078:134;;9161:40;;-1:-1:-1;;;9161:40:10;;;;;;;;;;;9078:134;8858:360;;;;:::o;2052:98:9:-;2095:4;2131:13;;2115;2039:1;2578:12:10;2372:7;2562:13;-1:-1:-1;;2562:28:10;;;:46;;2319:306;2115:13:9;:29;2108:36;;2052:98;:::o;3134:258::-;3233:13;3263:17;3271:8;3263:7;:17::i;:::-;3258:46;;3289:15;;;;;;;;;;;;;;3258:46;3344:10;:8;:10::i;:::-;3356:19;:8;:17;:19::i;:::-;3327:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3313:73;;3134:258;;;:::o;2610:81::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;2675:10:9::1;::::0;;-1:-1:-1;;2661:24:9;::::1;2675:10;::::0;;::::1;2674:11;2661:24;::::0;;2610:81::o;2156:127::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;2244:33:9::1;2254:9;2265:11;2244:9;:33::i;1918:198:0:-:0;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6979:2:12;1240:68:0;;;6961:21:12;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;1240:68:0;6777:356:12;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;6572:2:12;1998:73:0::1;::::0;::::1;6554:21:12::0;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;6721:8;6701:18;;;6694:36;6747:19;;1998:73:0::1;6370:402:12::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;9464:172:10:-:0;9521:4;9563:7;2039:1:9;9544:26:10;;:53;;;;;9584:13;;9574:7;:23;9544:53;:85;;;;-1:-1:-1;;9602:20:10;;;;:11;:20;;;;;:27;-1:-1:-1;;;9602:27:10;;;;9601:28;;9464:172::o;18445:189::-;18555:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;18555:29:10;-1:-1:-1;;;;;18555:29:10;;;;;;;;;18599:28;;18555:24;;18599:28;;;;;;;18445:189;;;:::o;13520:2082::-;13630:35;13668:21;13681:7;13668:12;:21::i;:::-;13630:59;;13726:4;-1:-1:-1;;;;;13704:26:10;:13;:18;;;-1:-1:-1;;;;;13704:26:10;;13700:67;;13739:28;;;;;;;;;;;;;;13700:67;13778:22;719:10:5;-1:-1:-1;;;;;13804:20:10;;;;:72;;-1:-1:-1;13840:36:10;13857:4;719:10:5;8159:162:10;:::i;13840:36::-;13804:124;;;-1:-1:-1;719:10:5;13892:20:10;13904:7;13892:11;:20::i;:::-;-1:-1:-1;;;;;13892:36:10;;13804:124;13778:151;;13945:17;13940:66;;13971:35;;;;;;;;;;;;;;13940:66;-1:-1:-1;;;;;14020:16:10;;14016:52;;14045:23;;;;;;;;;;;;;;14016:52;14184:35;14201:1;14205:7;14214:4;14184:8;:35::i;:::-;-1:-1:-1;;;;;14509:18:10;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14509:31:10;;;;;;;-1:-1:-1;;14509:31:10;;;;;;;14554:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14554:29:10;;;;;;;;;;;14632:20;;;:11;:20;;;;;;14666:18;;-1:-1:-1;;;;;;14698:49:10;;;;-1:-1:-1;;;14731:15:10;14698:49;;;;;;;;;;15017:11;;15076:24;;;;;15118:13;;14632:20;;15076:24;;15118:13;15114:377;;15325:13;;15310:11;:28;15306:171;;15362:20;;15430:28;;;;15404:54;;-1:-1:-1;;;15404:54:10;-1:-1:-1;;;;;;15404:54:10;;;-1:-1:-1;;;;;15362:20:10;;15404:54;;;;15306:171;14485:1016;;;15535:7;15531:2;-1:-1:-1;;;;;15516:27:10;15525:4;-1:-1:-1;;;;;15516:27:10;;;;;;;;;;;13620:1982;;13520:2082;;;:::o;4759:1086::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4869:7:10;;2039:1:9;4915:23:10;4911:870;;4951:13;;4944:4;:20;4940:841;;;4984:31;5018:17;;;:11;:17;;;;;;;;;4984:51;;;;;;;;;-1:-1:-1;;;;;4984:51:10;;;;-1:-1:-1;;;4984:51:10;;;;;;;;;;;-1:-1:-1;;;4984:51:10;;;;;;;;;;;;;;5053:714;;5102:14;;-1:-1:-1;;;;;5102:28:10;;5098:99;;5165:9;4759:1086;-1:-1:-1;;;4759:1086:10:o;5098:99::-;-1:-1:-1;;;5533:6:10;5577:17;;;;:11;:17;;;;;;;;;5565:29;;;;;;;;;-1:-1:-1;;;;;5565:29:10;;;;;-1:-1:-1;;;5565:29:10;;;;;;;;;;;-1:-1:-1;;;5565:29:10;;;;;;;;;;;;;5624:28;5620:107;;5691:9;4759:1086;-1:-1:-1;;;4759:1086:10:o;5620:107::-;5494:255;;;4966:815;4940:841;5807:31;;;;;;;;;;;;;;9715:102;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;19115:650:10:-;19293:72;;-1:-1:-1;;;19293:72:10;;19273:4;;-1:-1:-1;;;;;19293:36:10;;;;;:72;;719:10:5;;19344:4:10;;19350:7;;19359:5;;19293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19293:72:10;;;;;;;;-1:-1:-1;;19293:72:10;;;;;;;;;;;;:::i;:::-;;;19289:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19524:13:10;;19520:229;;19569:40;;-1:-1:-1;;;19569:40:10;;;;;;;;;;;19520:229;19709:6;19703:13;19694:6;19690:2;19686:15;19679:38;19289:470;-1:-1:-1;;;;;;19411:55:10;-1:-1:-1;;;19411:55:10;;-1:-1:-1;19289:470:10;19115:650;;;;;;:::o;2914:108:9:-;2974:13;3003;2996:20;;;;;:::i;328:703:6:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:6;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:6;;-1:-1:-1;773:2:6;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:6;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:6;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:6;981:2;972:11;;:::i;:::-;;;844:150;;10177:1708:10;10295:20;10318:13;-1:-1:-1;;;;;10345:16:10;;10341:48;;10370:19;;;;;;;;;;;;;;10341:48;10403:13;10399:44;;10425:18;;;;;;;;;;;;;;10399:44;-1:-1:-1;;;;;10786:16:10;;;;;;:12;:16;;;;;;;;:44;;10844:49;;;10786:44;;;;;;;;10844:49;;;;-1:-1:-1;;10786:44:10;;;;;;10844:49;;;;;;;;;;;;;;;;10908:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;10957:66:10;;;-1:-1:-1;;;11007:15:10;10957:66;;;;;;;;;;;;;10908:25;;11101:23;;;;1465:19:4;:23;11139:618:10;;11178:308;11208:38;;11233:12;;-1:-1:-1;;;;;11208:38:10;;;11225:1;;11208:38;;11225:1;;11208:38;11273:69;11312:1;11316:2;11320:14;;;;;;11336:5;11273:30;:69::i;:::-;11268:172;;11377:40;;-1:-1:-1;;;11377:40:10;;;;;;;;;;;11268:172;11481:3;11466:12;:18;11178:308;;11565:12;11548:13;;:29;11544:43;;11579:8;;;11544:43;11139:618;;;11626:117;11656:40;;11681:14;;;;;-1:-1:-1;;;;;11656:40:10;;;11673:1;;11656:40;;11673:1;;11656:40;11738:3;11723:12;:18;11626:117;;11139:618;-1:-1:-1;11770:13:10;:28;;;11818:60;;11851:2;11855:12;11869:8;11818:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:12;82:20;;-1:-1:-1;;;;;131:54:12;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:12:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:12;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:12:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:592::-;3333:6;3341;3394:2;3382:9;3373:7;3369:23;3365:32;3362:52;;;3410:1;3407;3400:12;3362:52;3450:9;3437:23;3479:18;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3574:6;3563:9;3559:22;3549:32;;3619:7;3612:4;3608:2;3604:13;3600:27;3590:55;;3641:1;3638;3631:12;3590:55;3681:2;3668:16;3707:2;3699:6;3696:14;3693:34;;;3723:1;3720;3713:12;3693:34;3768:7;3763:2;3754:6;3750:2;3746:15;3742:24;3739:37;3736:57;;;3789:1;3786;3779:12;3736:57;3820:2;3812:11;;;;;3842:6;;-1:-1:-1;3262:592:12;;-1:-1:-1;;;;3262:592:12:o;3859:180::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;-1:-1:-1;4010:23:12;;3859:180;-1:-1:-1;3859:180:12:o;4044:254::-;4112:6;4120;4173:2;4161:9;4152:7;4148:23;4144:32;4141:52;;;4189:1;4186;4179:12;4141:52;4225:9;4212:23;4202:33;;4254:38;4288:2;4277:9;4273:18;4254:38;:::i;4303:257::-;4344:3;4382:5;4376:12;4409:6;4404:3;4397:19;4425:63;4481:6;4474:4;4469:3;4465:14;4458:4;4451:5;4447:16;4425:63;:::i;:::-;4542:2;4521:15;-1:-1:-1;;4517:29:12;4508:39;;;;4549:4;4504:50;;4303:257;-1:-1:-1;;4303:257:12:o;4565:637::-;4845:3;4883:6;4877:13;4899:53;4945:6;4940:3;4933:4;4925:6;4921:17;4899:53;:::i;:::-;5015:13;;4974:16;;;;5037:57;5015:13;4974:16;5071:4;5059:17;;5037:57;:::i;:::-;5159:7;5116:20;;5145:22;;;5194:1;5183:13;;4565:637;-1:-1:-1;;;;4565:637:12:o;5438:511::-;5632:4;-1:-1:-1;;;;;5742:2:12;5734:6;5730:15;5719:9;5712:34;5794:2;5786:6;5782:15;5777:2;5766:9;5762:18;5755:43;;5834:6;5829:2;5818:9;5814:18;5807:34;5877:3;5872:2;5861:9;5857:18;5850:31;5898:45;5938:3;5927:9;5923:19;5915:6;5898:45;:::i;:::-;5890:53;5438:511;-1:-1:-1;;;;;;5438:511:12:o;6146:219::-;6295:2;6284:9;6277:21;6258:4;6315:44;6355:2;6344:9;6340:18;6332:6;6315:44;:::i;7320:128::-;7360:3;7391:1;7387:6;7384:1;7381:13;7378:39;;;7397:18;;:::i;:::-;-1:-1:-1;7433:9:12;;7320:128::o;7453:120::-;7493:1;7519;7509:35;;7524:18;;:::i;:::-;-1:-1:-1;7558:9:12;;7453:120::o;7578:168::-;7618:7;7684:1;7680;7676:6;7672:14;7669:1;7666:21;7661:1;7654:9;7647:17;7643:45;7640:71;;;7691:18;;:::i;:::-;-1:-1:-1;7731:9:12;;7578:168::o;7751:125::-;7791:4;7819:1;7816;7813:8;7810:34;;;7824:18;;:::i;:::-;-1:-1:-1;7861:9:12;;7751:125::o;7881:258::-;7953:1;7963:113;7977:6;7974:1;7971:13;7963:113;;;8053:11;;;8047:18;8034:11;;;8027:39;7999:2;7992:10;7963:113;;;8094:6;8091:1;8088:13;8085:48;;;-1:-1:-1;;8129:1:12;8111:16;;8104:27;7881:258::o;8144:437::-;8223:1;8219:12;;;;8266;;;8287:61;;8341:4;8333:6;8329:17;8319:27;;8287:61;8394:2;8386:6;8383:14;8363:18;8360:38;8357:218;;;-1:-1:-1;;;8428:1:12;8421:88;8532:4;8529:1;8522:15;8560:4;8557:1;8550:15;8357:218;;8144:437;;;:::o;8586:135::-;8625:3;-1:-1:-1;;8646:17:12;;8643:43;;;8666:18;;:::i;:::-;-1:-1:-1;8713:1:12;8702:13;;8586:135::o;8726:112::-;8758:1;8784;8774:35;;8789:18;;:::i;:::-;-1:-1:-1;8823:9:12;;8726:112::o;8843:184::-;-1:-1:-1;;;8892:1:12;8885:88;8992:4;8989:1;8982:15;9016:4;9013:1;9006:15;9032:184;-1:-1:-1;;;9081:1:12;9074:88;9181:4;9178:1;9171:15;9205:4;9202:1;9195:15;9221:184;-1:-1:-1;;;9270:1:12;9263:88;9370:4;9367:1;9360:15;9394:4;9391:1;9384:15;9410:184;-1:-1:-1;;;9459:1:12;9452:88;9559:4;9556:1;9549:15;9583:4;9580:1;9573:15;9599:177;-1:-1:-1;;;;;;9677:5:12;9673:78;9666:5;9663:89;9653:117;;9766:1;9763;9756:12

Swarm Source

ipfs://72aa8e3ded8cc4fabf15b76fc1a5f082659d4f54a7a5fb83453376207107b132
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.