ETH Price: $2,975.37 (+3.85%)
Gas: 1 Gwei

Token

Grid Gang (GRIDGANG)
 

Overview

Max Total Supply

809 GRIDGANG

Holders

257

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gretagremplin.eth
Balance
2 GRIDGANG
0xc34ef2e1f74403c1366f7ee8e02465378734994a
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:
GridGang

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 17 : GridGang.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

/*
                                      .J5:                                      
                                     7GJ?B?                                     
                                   ^PP:  :5G!                                   
                                 .YG!      ~GP:                                 
                                ?B?          ?BJ.                               
                              ~G5:            .YB!                              
                            :5G~                ^GP^                            
                          .JB?                    7BY.                          
                         !GY.                      .YB7                         
                       ^PP^                          ^PG^                       
                     .YB!                              !BY.                     
                    7BJ.^~~~~~~~~~.          .~~~~~~~~~^.JB?                    
                  ~GP^ ^G!!!!!!!!P7          7P!!!!!!!!G^ :PG~                  
                :5B!   :J77777777J^          ^J77777777J:   !G5:                
               ?BJ      .!~~!!~~!:     ~7     :!~~!!~~!.      ?B?               
             ~G5:       .^~B?!B!^:     :P     :^!B!?B~^.       :5G~             
           :PG~         :~!GYJG7~:.     5~   .:~7GJYG!~:         ~G5:           
         .JB?         ^J?!^:::.^~7J!    !Y  !J7~^.:::^!?J^         ?BJ.         
       .7G5.          .            .     P. .            .          .5G!.       
       ~@J                               J7                           !@Y
        ~GP^                 ^7.         ^P     .7^                  7#G~       
          7BY.            :7J?^           5^     ^?J7:             ^G#7         
           .YB?        .!J?~.       ..... 7Y       .~?J!.        .5&J.          
             ^PG~      !!.    ^!7?????????J5???7!^.   .!!       ?#P:            
               ~GP^        :?J7~:.  .^7JJ7^   .:~7J?^         ~BB~              
                 ?BY.    .?J^   .^!?J7^  ^7J?!^.   :?J:     :5#7                
                  .YB7  :G577????7~.  .::.  .~7????7!YG:   ?#Y.                 
                    ^PG~ .:::..    .?J7777J?.    ..:::.  !BP^                   
                      !B5:          .      .           :PB!                     
                        ?BJ.                         .JB?                       
                         :5B7                       7BY.                        
                           ~GG~                   ~GP^                          
                             7#5:               :5B!                            
                              .Y#J.            JBJ                              
                                ^P#7         !B5:                               
                                  !BG^     ^PG~                                 
                                    J&5: .YB7                                   
                                     :P#5BJ.                                    
                                       ~Y:                           
  ________      .__    .___   ________                       
 /  _____/______|__| __| _/  /  _____/_____    ____    ____  
/   \  __\_  __ \  |/ __ |  /   \  ___\__  \  /    \  / ___\ 
\    \_\  \  | \/  / /_/ |  \    \_\  \/ __ \|   |  \/ /_/  >
 \______  /__|  |__\____ |   \______  (____  /___|  /\___  / 
        \/              \/          \/     \/     \//_____/  
*/

import "erc721a/contracts/ERC721A.sol";

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

import './SignedAllowance.sol';

interface InfiniteGrid {
    function balanceOf(address owner) external view returns (uint256 balance);
}

contract GridGang is ERC721A, Ownable, ERC2981, SignedAllowance {
    using Strings for uint256;

    string private baseURI = 'https://www.infinitegrid.art/api/gang';
    
    bool public isPublicSaleActive = false;
    bool public isSignedSaleActive = false;
    bool public isGridSaleActive = false;
    
    uint256 public MAX_SUPPLY = 3333; 
    uint256 public MAX_PER_WALLET = 10;
    uint256 public PUBLIC_SALE_PRICE = 0.05 ether;
    uint256 public PRESALE_SALE_PRICE = 0.04 ether;
    uint256 public GRID_SALE_PRICE = 0.03 ether;

    address public GRID_ADDRESS = 0x78898ffA059D170F887555d8Fd6443D2ABe4E548; // Infinite Grid

    uint96 public royaltyFraction = 750;

    // Modifiers

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }

    modifier signedSaleActive() {
        require(isSignedSaleActive, "Presale is not open");
        _;
    }

    modifier gridSaleActive() {
        require(isGridSaleActive, "Grid sale is not open");
        _;
    }

    modifier canMintGang(uint256 numberOfTokens) {
        require(
            _currentIndex + numberOfTokens <= MAX_SUPPLY, 
            "There's not enough gangs left"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier hasMinted() {
        require(
            balanceOf(msg.sender) < MAX_PER_WALLET,
            "This address has already minted too many gangs."
        );
        _;
    }

    modifier hasGrid() {
        require(
            InfiniteGrid(GRID_ADDRESS).balanceOf(msg.sender) > 0,
            "You must hold an Infinte Grid to purchase a Gang at this price."
        );
        _;
    }

    constructor() ERC721A("Grid Gang", "GRIDGANG") {
        setRoyaltyInfo(payable(msg.sender), royaltyFraction);
        mintOwner(33);
    }

    function mint(uint256 numberOfTokens)
        external
        payable
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        canMintGang(numberOfTokens)
        publicSaleActive
    {
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintPresale(uint256 numberOfTokens, uint256 nonce, bytes memory signature)
        external
        payable
        isCorrectPayment(PRESALE_SALE_PRICE, numberOfTokens)
        canMintGang(numberOfTokens)
        signedSaleActive
        hasMinted
    {
        _useAllowance(msg.sender, nonce, signature);
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintGrid(uint256 numberOfTokens)
        external
        payable
        isCorrectPayment(GRID_SALE_PRICE, numberOfTokens)
        canMintGang(numberOfTokens)
        gridSaleActive
        hasGrid
        hasMinted
    {
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintOwner(uint256 numberOfTokens) public onlyOwner {
        _safeMint(msg.sender, numberOfTokens);
    }

    function gift(address to, uint256 numberOfTokens) public onlyOwner {
        require(
            _currentIndex + numberOfTokens <= MAX_SUPPLY, 
            "There's not enough gangs left"
        );
        _safeMint(to, numberOfTokens);
    }

    // Public
    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    function getLastTokenId() external view returns (uint256) {
        return _currentIndex;
    }

    // Admin
    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        PUBLIC_SALE_PRICE = _price;
    }

    function setPresalePrice(uint256 _price) external onlyOwner {
        PRESALE_SALE_PRICE = _price;
    }

    function setGridPrice(uint256 _price) external onlyOwner {
        GRID_SALE_PRICE = _price;
    }

    function setMaxPerWallet(uint256 _max) external onlyOwner {
        MAX_PER_WALLET = _max;
    }

    function setGridAddress(address _address) external onlyOwner {
        GRID_ADDRESS = _address;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function setIsSignedSaleActive(bool _isSignedSaleActive) external onlyOwner {
        isSignedSaleActive = _isSignedSaleActive;
    }

    function setIsGridSaleActive(bool _isGridSaleActive) external onlyOwner {
        isGridSaleActive = _isGridSaleActive;
    }

    // signature stuff

    function setAllowancesSigner(address newSigner) external onlyOwner {
        _setAllowancesSigner(newSigner);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", tokenId.toString()));
    }

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

    //royalties
    // IERC2981
    function setRoyaltyInfo(address payable receiver, uint96 numerator) public onlyOwner {
        _setDefaultRoyalty(receiver, numerator);
    }

  // ERC165

  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC721A, ERC2981)
    returns (bool)
  {
    return
      ERC721A.supportsInterface(interfaceId) ||
      ERC2981.supportsInterface(interfaceId);
  }
}

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

pragma solidity ^0.8.4;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 17 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 7 of 17 : SignedAllowance.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';

/// @title SignedAllowance
/// @author Simon Fremaux (@dievardump)
contract SignedAllowance {
    using ECDSA for bytes32;

    // list of already used allowances
    mapping(bytes32 => bool) public usedAllowances;

    // address used to sign the allowances
    address private _allowancesSigner;

    /// @notice Helper to know allowancesSigner address
    /// @return the allowance signer address
    function allowancesSigner() public view virtual returns (address) {
        return _allowancesSigner;
    }

    /// @notice Helper that creates the message that signer needs to sign to allow a mint
    ///         this is usually also used when creating the allowances, to ensure "message"
    ///         is the same
    /// @param account the account to allow
    /// @param nonce the nonce
    /// @return the message to sign
    function createMessage(address account, uint256 nonce)
        public
        view
        returns (bytes32)
    {
        return keccak256(abi.encode(account, nonce, address(this)));
    }

    /// @notice Helper that creates a list of messages that signer needs to sign to allow mintings
    /// @param accounts the accounts to allow
    /// @param nonces the corresponding nonces
    /// @return messages the messages to sign
    function createMessages(address[] memory accounts, uint256[] memory nonces)
        external
        view
        returns (bytes32[] memory messages)
    {
        require(accounts.length == nonces.length, '!LENGTH_MISMATCH!');
        messages = new bytes32[](accounts.length);
        for (uint256 i; i < accounts.length; i++) {
            messages[i] = createMessage(accounts[i], nonces[i]);
        }
    }

    /// @notice This function verifies that the current request is valid
    /// @dev It ensures that _allowancesSigner signed a message containing (account, nonce, address(this))
    ///      and that this message was not already used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce associated to this allowance
    /// @param signature the signature by the allowance signer wallet
    /// @return the message to mark as used
    function validateSignature(
        address account,
        uint256 nonce,
        bytes memory signature
    ) public view returns (bytes32) {
        return
            _validateSignature(account, nonce, signature, allowancesSigner());
    }

    /// @dev It ensures that signer signed a message containing (account, nonce, address(this))
    ///      and that this message was not already used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce associated to this allowance
    /// @param signature the signature by the allowance signer wallet
    /// @param signer the signer
    /// @return the message to mark as used
    function _validateSignature(
        address account,
        uint256 nonce,
        bytes memory signature,
        address signer
    ) internal view returns (bytes32) {
        bytes32 message = createMessage(account, nonce)
            .toEthSignedMessageHash();

        // verifies that the sha3(account, nonce, address(this)) has been signed by signer
        require(message.recover(signature) == signer, '!INVALID_SIGNATURE!');

        // verifies that the allowances was not already used
        require(usedAllowances[message] == false, '!ALREADY_USED!');

        return message;
    }

    /// @notice internal function that verifies an allowance and marks it as used
    ///         this function throws if signature is wrong or this nonce for this user has already been used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce
    /// @param signature the signature by the allowance wallet
    function _useAllowance(
        address account,
        uint256 nonce,
        bytes memory signature
    ) internal {
        bytes32 message = validateSignature(account, nonce, signature);
        usedAllowances[message] = true;
    }

    /// @notice Allows to change the allowance signer. This can be used to revoke any signed allowance not already used
    /// @param newSigner the new signer address
    function _setAllowancesSigner(address newSigner) internal {
        _allowancesSigner = newSigner;
    }
}

File 8 of 17 : 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 9 of 17 : 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 10 of 17 : 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 11 of 17 : 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 12 of 17 : 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 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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);
}

File 16 of 17 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GRID_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GRID_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowancesSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"createMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"nonces","type":"uint256[]"}],"name":"createMessages","outputs":[{"internalType":"bytes32[]","name":"messages","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"isGridSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSignedSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintGrid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyFraction","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setAllowancesSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setGridAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setGridPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isGridSaleActive","type":"bool"}],"name":"setIsGridSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSignedSaleActive","type":"bool"}],"name":"setIsSignedSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint96","name":"numerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedAllowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateSignature","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052602560808181529062003dd360a03980516200002991600d916020909101906200063a565b50600e805462ffffff19169055610d05600f55600a60105566b1a2bc2ec50000601155668e1bc9bf040000601255666a94d74f4300006013557502ee78898ffa059d170f887555d8fd6443d2abe4e5486014553480156200008957600080fd5b506040805180820182526009815268477269642047616e6760b81b6020808301918252835180850190945260088452674752494447414e4760c01b908401528151919291620000db916002916200063a565b508051620000f19060039060208401906200063a565b5050600160005550620001043362000136565b60145462000124903390600160a01b90046001600160601b031662000188565b620001306021620001e7565b620007cb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001d75760405162461bcd60e51b8152602060048201819052602482015260008051602062003d9383398151915260448201526064015b60405180910390fd5b620001e3828262000241565b5050565b6008546001600160a01b03163314620002325760405162461bcd60e51b8152602060048201819052602482015260008051602062003d938339815191526044820152606401620001ce565b6200023e338262000342565b50565b6127106001600160601b0382161115620002b15760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620001ce565b6001600160a01b038216620003095760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001ce565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b620001e38282604051806020016040528060008152506200036460201b60201c565b6000546001600160a01b0384166200038e57604051622e076360e81b815260040160405180910390fd5b82620003ad5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217680100000000000000006001600160401b031990941690921783900481168b0181169092021790915585845260048352922080546001600160e01b0319168417600160a01b4290941693909302929092179091558291828601916200045691906200052a811b62001c6717901c565b15620004d5575b60405182906001600160a01b0388169060009060008051602062003db3833981519152908290a460018201916200049a9060009088908762000539565b620004b8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106200045d578260005414620004cf57600080fd5b6200050a565b5b6040516001830192906001600160a01b0388169060009060008051602062003db3833981519152908290a4808210620004d6575b50600090815562000524908583866001600160e01b038516565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000570903390899088908890600401620006e0565b602060405180830381600087803b1580156200058b57600080fd5b505af1925050508015620005be575060408051601f3d908101601f19168201909252620005bb918101906200075b565b60015b6200061d573d808015620005ef576040519150601f19603f3d011682016040523d82523d6000602084013e620005f4565b606091505b50805162000615576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b82805462000648906200078e565b90600052602060002090601f0160209004810192826200066c5760008555620006b7565b82601f106200068757805160ff1916838001178555620006b7565b82800160010185558215620006b7579182015b82811115620006b75782518255916020019190600101906200069a565b50620006c5929150620006c9565b5090565b5b80821115620006c55760008155600101620006ca565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200072f5785810182015185820160a00152810162000711565b828111156200074257600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200076e57600080fd5b81516001600160e01b0319811681146200078757600080fd5b9392505050565b600181811c90821680620007a357607f821691505b60208210811415620007c557634e487b7160e01b600052602260045260246000fd5b50919050565b6135b880620007db6000396000f3fe60806040526004361061033f5760003560e01c806370a08231116101b0578063b88d4fde116100ec578063e7dee99f11610095578063eb4f56b91161006f578063eb4f56b91461097d578063f19551f314610993578063f2fde38b146109b3578063feff1999146109d357600080fd5b8063e7dee99f146108cc578063e985e9c514610915578063eaf9ec861461095e57600080fd5b8063c87b56dd116100c6578063c87b56dd1461086c578063cbce4c971461088c578063e268e4d3146108ac57600080fd5b8063b88d4fde14610819578063bc6cb08014610839578063bf51fdac1461084c57600080fd5b8063890621da1161015957806395d89b411161013357806395d89b41146107b1578063a0712d68146107c6578063a202d4e2146107d9578063a22cb465146107f957600080fd5b8063890621da146107535780638da5cb5b1461077357806391b7f5ed1461079157600080fd5b80637e68658a1161018a5780637e68658a1461070057806383c4c00d146107205780638838b5c31461073557600080fd5b806370a08231146106b6578063714c5398146106d6578063715018a6146106eb57600080fd5b806328cad13d1161027f5780633ccfd60b1161022857806355f804b31161020257806355f804b3146106335780635fc99f60146106535780636352211e146106695780636c4a412c1461068957600080fd5b80633ccfd60b146105eb57806342842e0e146106005780634d6fa4951461062057600080fd5b806333f88d221161025957806333f88d221461058b5780633549345e146105ab578063395a35c5146105cb57600080fd5b806328cad13d146105165780632a55205a1461053657806332cb6b0c1461057557600080fd5b80630f2cdd6c116102ec578063195e8708116102c6578063195e87081461048c5780631e84c413146104bc5780632073447d146104d657806323b872dd146104f657600080fd5b80630f2cdd6c1461043957806310a6bdca1461044f57806318160ddd1461046f57600080fd5b806307e89ec01161031d57806307e89ec0146103bd578063081812fc146103e1578063095ea7b31461041957600080fd5b806301ffc9a71461034457806302fa7c471461037957806306fdde031461039b575b600080fd5b34801561035057600080fd5b5061036461035f366004612d04565b610a31565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b50610399610394366004612d3d565b610a51565b005b3480156103a757600080fd5b506103b0610aac565b6040516103709190612ddf565b3480156103c957600080fd5b506103d360115481565b604051908152602001610370565b3480156103ed57600080fd5b506104016103fc366004612df2565b610b3e565b6040516001600160a01b039091168152602001610370565b34801561042557600080fd5b50610399610434366004612e0b565b610b9b565b34801561044557600080fd5b506103d360105481565b34801561045b57600080fd5b5061039961046a366004612e4c565b610c54565b34801561047b57600080fd5b5060015460005403600019016103d3565b34801561049857600080fd5b506103646104a7366004612df2565b600b6020526000908152604090205460ff1681565b3480156104c857600080fd5b50600e546103649060ff1681565b3480156104e257600080fd5b506103996104f1366004612e67565b610cb6565b34801561050257600080fd5b50610399610511366004612e84565b610d2c565b34801561052257600080fd5b50610399610531366004612e4c565b610d37565b34801561054257600080fd5b50610556610551366004612ec5565b610d92565b604080516001600160a01b039093168352602083019190915201610370565b34801561058157600080fd5b506103d3600f5481565b34801561059757600080fd5b506103996105a6366004612df2565b610e4f565b3480156105b757600080fd5b506103996105c6366004612df2565b610ea1565b3480156105d757600080fd5b506103996105e6366004612df2565b610eee565b3480156105f757600080fd5b50610399610f3b565b34801561060c57600080fd5b5061039961061b366004612e84565b610fb2565b61039961062e366004612df2565b610fcd565b34801561063f57600080fd5b5061039961064e366004612f86565b611278565b34801561065f57600080fd5b506103d360135481565b34801561067557600080fd5b50610401610684366004612df2565b6112d3565b34801561069557600080fd5b506106a96106a436600461305e565b6112e5565b6040516103709190613120565b3480156106c257600080fd5b506103d36106d1366004612e67565b61143a565b3480156106e257600080fd5b506103b06114a2565b3480156106f757600080fd5b506103996114b1565b34801561070c57600080fd5b5061039961071b366004612e67565b611505565b34801561072c57600080fd5b506000546103d3565b34801561074157600080fd5b50600c546001600160a01b0316610401565b34801561075f57600080fd5b506103d361076e366004613184565b61157c565b34801561077f57600080fd5b506008546001600160a01b0316610401565b34801561079d57600080fd5b506103996107ac366004612df2565b6115a3565b3480156107bd57600080fd5b506103b06115f0565b6103996107d4366004612df2565b6115ff565b3480156107e557600080fd5b50600e546103649062010000900460ff1681565b34801561080557600080fd5b506103996108143660046131dd565b61170d565b34801561082557600080fd5b50610399610834366004613212565b6117bc565b61039961084736600461327e565b611800565b34801561085857600080fd5b50610399610867366004612e4c565b6119af565b34801561087857600080fd5b506103b0610887366004612df2565b611a13565b34801561089857600080fd5b506103996108a7366004612e0b565b611a9c565b3480156108b857600080fd5b506103996108c7366004612df2565b611b4d565b3480156108d857600080fd5b506014546108f890600160a01b90046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff9091168152602001610370565b34801561092157600080fd5b506103646109303660046132b8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096a57600080fd5b50600e5461036490610100900460ff1681565b34801561098957600080fd5b506103d360125481565b34801561099f57600080fd5b50601454610401906001600160a01b031681565b3480156109bf57600080fd5b506103996109ce366004612e67565b611b9a565b3480156109df57600080fd5b506103d36109ee366004612e0b565b604080516001600160a01b038416602082015290810182905230606082015260009060800160405160208183030381529060405280519060200120905092915050565b6000610a3c82611c76565b80610a4b5750610a4b82611d11565b92915050565b6008546001600160a01b03163314610a9e5760405162461bcd60e51b8152602060048201819052602482015260008051602061356383398151915260448201526064015b60405180910390fd5b610aa88282611d4f565b5050565b606060028054610abb906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae7906132e6565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982611e69565b610b7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ba6826112d3565b9050806001600160a01b0316836001600160a01b03161415610bf4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610c4457610c0e8133610930565b610c44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4f838383611ea2565b505050565b6008546001600160a01b03163314610c9c5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03831617905550565b50565b610c4f838383611f0b565b6008546001600160a01b03163314610d7f5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600e805460ff1916911515919091179055565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610e115750604080518082019091526009546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610e35906bffffffffffffffffffffffff1687613337565b610e3f919061336c565b91519350909150505b9250929050565b6008546001600160a01b03163314610e975760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b610d293382612146565b6008546001600160a01b03163314610ee95760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601255565b6008546001600160a01b03163314610f365760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601355565b6008546001600160a01b03163314610f835760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b6040514790339082156108fc029083906000818181858888f19350505050158015610aa8573d6000803e3d6000fd5b610c4f838383604051806020016040528060008152506117bc565b6013548134610fdc8284613337565b146110295760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610a95565b82600f548160005461103b9190613380565b11156110895760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b600e5462010000900460ff166110e15760405162461bcd60e51b815260206004820152601560248201527f477269642073616c65206973206e6f74206f70656e00000000000000000000006044820152606401610a95565b6014546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561113e57600080fd5b505afa158015611152573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111769190613398565b116111e95760405162461bcd60e51b815260206004820152603f60248201527f596f75206d75737420686f6c6420616e20496e66696e7465204772696420746f60448201527f20707572636861736520612047616e6720617420746869732070726963652e006064820152608401610a95565b6010546111f53361143a565b106112685760405162461bcd60e51b815260206004820152602f60248201527f5468697320616464726573732068617320616c7265616479206d696e7465642060448201527f746f6f206d616e792067616e67732e00000000000000000000000000000000006064820152608401610a95565b6112723385612146565b50505050565b6008546001600160a01b031633146112c05760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b8051610aa890600d906020840190612c55565b60006112de82612160565b5192915050565b606081518351146113385760405162461bcd60e51b815260206004820152601160248201527f214c454e4754485f4d49534d41544348210000000000000000000000000000006044820152606401610a95565b825167ffffffffffffffff81111561135257611352612ee7565b60405190808252806020026020018201604052801561137b578160200160208202803683370190505b50905060005b83518110156114335761140484828151811061139f5761139f6133b1565b60200260200101518483815181106113b9576113b96133b1565b6020026020010151604080516001600160a01b038416602082015290810182905230606082015260009060800160405160208183030381529060405280519060200120905092915050565b828281518110611416576114166133b1565b60209081029190910101528061142b816133c7565b915050611381565b5092915050565b60006001600160a01b03821661147c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600d8054610abb906132e6565b6008546001600160a01b031633146114f95760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b611503600061229d565b565b6008546001600160a01b0316331461154d5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b6014805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061159b848484611596600c546001600160a01b031690565b6122fc565b949350505050565b6008546001600160a01b031633146115eb5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601155565b606060038054610abb906132e6565b601154813461160e8284613337565b1461165b5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610a95565b82600f548160005461166d9190613380565b11156116bb5760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b600e5460ff166112685760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610a95565b6001600160a01b038216331415611750576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117c7848484611f0b565b6001600160a01b0383163b15611272576117e384848484612471565b611272576040516368d2bf6b60e11b815260040160405180910390fd5b601254833461180f8284613337565b1461185c5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610a95565b84600f548160005461186e9190613380565b11156118bc5760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b600e54610100900460ff166119135760405162461bcd60e51b815260206004820152601360248201527f50726573616c65206973206e6f74206f70656e000000000000000000000000006044820152606401610a95565b60105461191f3361143a565b106119925760405162461bcd60e51b815260206004820152602f60248201527f5468697320616464726573732068617320616c7265616479206d696e7465642060448201527f746f6f206d616e792067616e67732e00000000000000000000000000000000006064820152608401610a95565b61199d338686612565565b6119a73387612146565b505050505050565b6008546001600160a01b031633146119f75760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600e8054911515620100000262ff000019909216919091179055565b6060611a1e82611e69565b611a6a5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610a95565b600d611a7583612591565b604051602001611a869291906133fe565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314611ae45760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600f5481600054611af59190613380565b1115611b435760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b610aa88282612146565b6008546001600160a01b03163314611b955760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601055565b6008546001600160a01b03163314611be25760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b6001600160a01b038116611c5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a95565b610d298161229d565b6001600160a01b03163b151590565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611cd957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a4b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610a4b565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610a4b5750610a4b82611c76565b6127106bffffffffffffffffffffffff82161115611dd55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610a95565b6001600160a01b038216611e2b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a95565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600955565b600081600111158015611e7d575060005482105b8015610a4b575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f1682612160565b9050836001600160a01b031681600001516001600160a01b031614611f67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611f855750611f858533610930565b80611fa0575033611f9584610b3e565b6001600160a01b0316145b905080611fd9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416612019576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61202560008487611ea2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166120fb5760005482146120fb578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610aa88282604051806020016040528060008152506126c3565b6040805160608101825260008082526020820181905291810191909152818060011161226b5760005481101561226b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906122695780516001600160a01b0316156121ff579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612264579392505050565b6121ff565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008061239d61234a8787604080516001600160a01b038416602082015290810182905230606082015260009060800160405160208183030381529060405280519060200120905092915050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90506001600160a01b0383166123b382866128ca565b6001600160a01b0316146124095760405162461bcd60e51b815260206004820152601360248201527f21494e56414c49445f5349474e415455524521000000000000000000000000006044820152606401610a95565b6000818152600b602052604090205460ff16156124685760405162461bcd60e51b815260206004820152600e60248201527f21414c52454144595f55534544210000000000000000000000000000000000006044820152606401610a95565b95945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124a69033908990889088906004016134c8565b602060405180830381600087803b1580156124c057600080fd5b505af19250505080156124f0575060408051601f3d908101601f191682019092526124ed91810190613504565b60015b61254b573d80801561251e576040519150601f19603f3d011682016040523d82523d6000602084013e612523565b606091505b508051612543576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159b565b600061257284848461157c565b6000908152600b60205260409020805460ff1916600117905550505050565b6060816125d157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156125fb57806125e5816133c7565b91506125f49050600a8361336c565b91506125d5565b60008167ffffffffffffffff81111561261657612616612ee7565b6040519080825280601f01601f191660200182016040528015612640576020820181803683370190505b5090505b841561159b57612655600183613521565b9150612662600a86613538565b61266d906030613380565b60f81b818381518110612682576126826133b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126bc600a8661336c565b9450612644565b6000546001600160a01b038416612706576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261273d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612875575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461283e6000878480600101955087612471565b61285b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106127f357826000541461287057600080fd5b6128ba565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612876575b5060009081556112729085838684565b60008060006128d985856128ee565b915091506128e68161295b565b509392505050565b6000808251604114156129255760208301516040840151606085015160001a61291987828585612b16565b94509450505050610e48565b82516040141561294f5760208301516040840151612944868383612c03565b935093505050610e48565b50600090506002610e48565b600081600481111561296f5761296f61354c565b14156129785750565b600181600481111561298c5761298c61354c565b14156129da5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a95565b60028160048111156129ee576129ee61354c565b1415612a3c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a95565b6003816004811115612a5057612a5061354c565b1415612aa95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a95565b6004816004811115612abd57612abd61354c565b1415610d295760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a95565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612b4d5750600090506003612bfa565b8460ff16601b14158015612b6557508460ff16601c14155b15612b765750600090506004612bfa565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612bca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612bf357600060019250925050612bfa565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681612c3960ff86901c601b613380565b9050612c4787828885612b16565b935093505050935093915050565b828054612c61906132e6565b90600052602060002090601f016020900481019282612c835760008555612cc9565b82601f10612c9c57805160ff1916838001178555612cc9565b82800160010185558215612cc9579182015b82811115612cc9578251825591602001919060010190612cae565b50612cd5929150612cd9565b5090565b5b80821115612cd55760008155600101612cda565b6001600160e01b031981168114610d2957600080fd5b600060208284031215612d1657600080fd5b8135612d2181612cee565b9392505050565b6001600160a01b0381168114610d2957600080fd5b60008060408385031215612d5057600080fd5b8235612d5b81612d28565b915060208301356bffffffffffffffffffffffff81168114612d7c57600080fd5b809150509250929050565b60005b83811015612da2578181015183820152602001612d8a565b838111156112725750506000910152565b60008151808452612dcb816020860160208601612d87565b601f01601f19169290920160200192915050565b602081526000612d216020830184612db3565b600060208284031215612e0457600080fd5b5035919050565b60008060408385031215612e1e57600080fd5b8235612e2981612d28565b946020939093013593505050565b80358015158114612e4757600080fd5b919050565b600060208284031215612e5e57600080fd5b612d2182612e37565b600060208284031215612e7957600080fd5b8135612d2181612d28565b600080600060608486031215612e9957600080fd5b8335612ea481612d28565b92506020840135612eb481612d28565b929592945050506040919091013590565b60008060408385031215612ed857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612f2657612f26612ee7565b604052919050565b600067ffffffffffffffff831115612f4857612f48612ee7565b612f5b601f8401601f1916602001612efd565b9050828152838383011115612f6f57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612f9857600080fd5b813567ffffffffffffffff811115612faf57600080fd5b8201601f81018413612fc057600080fd5b61159b84823560208401612f2e565b600067ffffffffffffffff821115612fe957612fe9612ee7565b5060051b60200190565b600082601f83011261300457600080fd5b8135602061301961301483612fcf565b612efd565b82815260059290921b8401810191818101908684111561303857600080fd5b8286015b84811015613053578035835291830191830161303c565b509695505050505050565b6000806040838503121561307157600080fd5b823567ffffffffffffffff8082111561308957600080fd5b818501915085601f83011261309d57600080fd5b813560206130ad61301483612fcf565b82815260059290921b840181019181810190898411156130cc57600080fd5b948201945b838610156130f35785356130e481612d28565b825294820194908201906130d1565b9650508601359250508082111561310957600080fd5b5061311685828601612ff3565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156131585783518352928401929184019160010161313c565b50909695505050505050565b600082601f83011261317557600080fd5b612d2183833560208501612f2e565b60008060006060848603121561319957600080fd5b83356131a481612d28565b925060208401359150604084013567ffffffffffffffff8111156131c757600080fd5b6131d386828701613164565b9150509250925092565b600080604083850312156131f057600080fd5b82356131fb81612d28565b915061320960208401612e37565b90509250929050565b6000806000806080858703121561322857600080fd5b843561323381612d28565b9350602085013561324381612d28565b925060408501359150606085013567ffffffffffffffff81111561326657600080fd5b61327287828801613164565b91505092959194509250565b60008060006060848603121561329357600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156131c757600080fd5b600080604083850312156132cb57600080fd5b82356132d681612d28565b91506020830135612d7c81612d28565b600181811c908216806132fa57607f821691505b6020821081141561331b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561335157613351613321565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261337b5761337b613356565b500490565b6000821982111561339357613393613321565b500190565b6000602082840312156133aa57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156133db576133db613321565b5060010190565b600081516133f4818560208601612d87565b9290920192915050565b600080845481600182811c91508083168061341a57607f831692505b602080841082141561343a57634e487b7160e01b86526022600452602486fd5b81801561344e576001811461345f5761348c565b60ff1986168952848901965061348c565b60008b81526020902060005b868110156134845781548b82015290850190830161346b565b505084890196505b5050505050506124686134c2827f2f00000000000000000000000000000000000000000000000000000000000000815260010190565b856133e2565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134fa6080830184612db3565b9695505050505050565b60006020828403121561351657600080fd5b8151612d2181612cee565b60008282101561353357613533613321565b500390565b60008261354757613547613356565b500690565b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212205193e5c2301423e8e978afd0e8f3f06519532d970a0db66e7b37a742b9d82ef164736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef68747470733a2f2f7777772e696e66696e697465677269642e6172742f6170692f67616e67

Deployed Bytecode

0x60806040526004361061033f5760003560e01c806370a08231116101b0578063b88d4fde116100ec578063e7dee99f11610095578063eb4f56b91161006f578063eb4f56b91461097d578063f19551f314610993578063f2fde38b146109b3578063feff1999146109d357600080fd5b8063e7dee99f146108cc578063e985e9c514610915578063eaf9ec861461095e57600080fd5b8063c87b56dd116100c6578063c87b56dd1461086c578063cbce4c971461088c578063e268e4d3146108ac57600080fd5b8063b88d4fde14610819578063bc6cb08014610839578063bf51fdac1461084c57600080fd5b8063890621da1161015957806395d89b411161013357806395d89b41146107b1578063a0712d68146107c6578063a202d4e2146107d9578063a22cb465146107f957600080fd5b8063890621da146107535780638da5cb5b1461077357806391b7f5ed1461079157600080fd5b80637e68658a1161018a5780637e68658a1461070057806383c4c00d146107205780638838b5c31461073557600080fd5b806370a08231146106b6578063714c5398146106d6578063715018a6146106eb57600080fd5b806328cad13d1161027f5780633ccfd60b1161022857806355f804b31161020257806355f804b3146106335780635fc99f60146106535780636352211e146106695780636c4a412c1461068957600080fd5b80633ccfd60b146105eb57806342842e0e146106005780634d6fa4951461062057600080fd5b806333f88d221161025957806333f88d221461058b5780633549345e146105ab578063395a35c5146105cb57600080fd5b806328cad13d146105165780632a55205a1461053657806332cb6b0c1461057557600080fd5b80630f2cdd6c116102ec578063195e8708116102c6578063195e87081461048c5780631e84c413146104bc5780632073447d146104d657806323b872dd146104f657600080fd5b80630f2cdd6c1461043957806310a6bdca1461044f57806318160ddd1461046f57600080fd5b806307e89ec01161031d57806307e89ec0146103bd578063081812fc146103e1578063095ea7b31461041957600080fd5b806301ffc9a71461034457806302fa7c471461037957806306fdde031461039b575b600080fd5b34801561035057600080fd5b5061036461035f366004612d04565b610a31565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b50610399610394366004612d3d565b610a51565b005b3480156103a757600080fd5b506103b0610aac565b6040516103709190612ddf565b3480156103c957600080fd5b506103d360115481565b604051908152602001610370565b3480156103ed57600080fd5b506104016103fc366004612df2565b610b3e565b6040516001600160a01b039091168152602001610370565b34801561042557600080fd5b50610399610434366004612e0b565b610b9b565b34801561044557600080fd5b506103d360105481565b34801561045b57600080fd5b5061039961046a366004612e4c565b610c54565b34801561047b57600080fd5b5060015460005403600019016103d3565b34801561049857600080fd5b506103646104a7366004612df2565b600b6020526000908152604090205460ff1681565b3480156104c857600080fd5b50600e546103649060ff1681565b3480156104e257600080fd5b506103996104f1366004612e67565b610cb6565b34801561050257600080fd5b50610399610511366004612e84565b610d2c565b34801561052257600080fd5b50610399610531366004612e4c565b610d37565b34801561054257600080fd5b50610556610551366004612ec5565b610d92565b604080516001600160a01b039093168352602083019190915201610370565b34801561058157600080fd5b506103d3600f5481565b34801561059757600080fd5b506103996105a6366004612df2565b610e4f565b3480156105b757600080fd5b506103996105c6366004612df2565b610ea1565b3480156105d757600080fd5b506103996105e6366004612df2565b610eee565b3480156105f757600080fd5b50610399610f3b565b34801561060c57600080fd5b5061039961061b366004612e84565b610fb2565b61039961062e366004612df2565b610fcd565b34801561063f57600080fd5b5061039961064e366004612f86565b611278565b34801561065f57600080fd5b506103d360135481565b34801561067557600080fd5b50610401610684366004612df2565b6112d3565b34801561069557600080fd5b506106a96106a436600461305e565b6112e5565b6040516103709190613120565b3480156106c257600080fd5b506103d36106d1366004612e67565b61143a565b3480156106e257600080fd5b506103b06114a2565b3480156106f757600080fd5b506103996114b1565b34801561070c57600080fd5b5061039961071b366004612e67565b611505565b34801561072c57600080fd5b506000546103d3565b34801561074157600080fd5b50600c546001600160a01b0316610401565b34801561075f57600080fd5b506103d361076e366004613184565b61157c565b34801561077f57600080fd5b506008546001600160a01b0316610401565b34801561079d57600080fd5b506103996107ac366004612df2565b6115a3565b3480156107bd57600080fd5b506103b06115f0565b6103996107d4366004612df2565b6115ff565b3480156107e557600080fd5b50600e546103649062010000900460ff1681565b34801561080557600080fd5b506103996108143660046131dd565b61170d565b34801561082557600080fd5b50610399610834366004613212565b6117bc565b61039961084736600461327e565b611800565b34801561085857600080fd5b50610399610867366004612e4c565b6119af565b34801561087857600080fd5b506103b0610887366004612df2565b611a13565b34801561089857600080fd5b506103996108a7366004612e0b565b611a9c565b3480156108b857600080fd5b506103996108c7366004612df2565b611b4d565b3480156108d857600080fd5b506014546108f890600160a01b90046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff9091168152602001610370565b34801561092157600080fd5b506103646109303660046132b8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096a57600080fd5b50600e5461036490610100900460ff1681565b34801561098957600080fd5b506103d360125481565b34801561099f57600080fd5b50601454610401906001600160a01b031681565b3480156109bf57600080fd5b506103996109ce366004612e67565b611b9a565b3480156109df57600080fd5b506103d36109ee366004612e0b565b604080516001600160a01b038416602082015290810182905230606082015260009060800160405160208183030381529060405280519060200120905092915050565b6000610a3c82611c76565b80610a4b5750610a4b82611d11565b92915050565b6008546001600160a01b03163314610a9e5760405162461bcd60e51b8152602060048201819052602482015260008051602061356383398151915260448201526064015b60405180910390fd5b610aa88282611d4f565b5050565b606060028054610abb906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae7906132e6565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982611e69565b610b7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ba6826112d3565b9050806001600160a01b0316836001600160a01b03161415610bf4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610c4457610c0e8133610930565b610c44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4f838383611ea2565b505050565b6008546001600160a01b03163314610c9c5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03831617905550565b50565b610c4f838383611f0b565b6008546001600160a01b03163314610d7f5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600e805460ff1916911515919091179055565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610e115750604080518082019091526009546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610e35906bffffffffffffffffffffffff1687613337565b610e3f919061336c565b91519350909150505b9250929050565b6008546001600160a01b03163314610e975760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b610d293382612146565b6008546001600160a01b03163314610ee95760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601255565b6008546001600160a01b03163314610f365760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601355565b6008546001600160a01b03163314610f835760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b6040514790339082156108fc029083906000818181858888f19350505050158015610aa8573d6000803e3d6000fd5b610c4f838383604051806020016040528060008152506117bc565b6013548134610fdc8284613337565b146110295760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610a95565b82600f548160005461103b9190613380565b11156110895760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b600e5462010000900460ff166110e15760405162461bcd60e51b815260206004820152601560248201527f477269642073616c65206973206e6f74206f70656e00000000000000000000006044820152606401610a95565b6014546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561113e57600080fd5b505afa158015611152573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111769190613398565b116111e95760405162461bcd60e51b815260206004820152603f60248201527f596f75206d75737420686f6c6420616e20496e66696e7465204772696420746f60448201527f20707572636861736520612047616e6720617420746869732070726963652e006064820152608401610a95565b6010546111f53361143a565b106112685760405162461bcd60e51b815260206004820152602f60248201527f5468697320616464726573732068617320616c7265616479206d696e7465642060448201527f746f6f206d616e792067616e67732e00000000000000000000000000000000006064820152608401610a95565b6112723385612146565b50505050565b6008546001600160a01b031633146112c05760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b8051610aa890600d906020840190612c55565b60006112de82612160565b5192915050565b606081518351146113385760405162461bcd60e51b815260206004820152601160248201527f214c454e4754485f4d49534d41544348210000000000000000000000000000006044820152606401610a95565b825167ffffffffffffffff81111561135257611352612ee7565b60405190808252806020026020018201604052801561137b578160200160208202803683370190505b50905060005b83518110156114335761140484828151811061139f5761139f6133b1565b60200260200101518483815181106113b9576113b96133b1565b6020026020010151604080516001600160a01b038416602082015290810182905230606082015260009060800160405160208183030381529060405280519060200120905092915050565b828281518110611416576114166133b1565b60209081029190910101528061142b816133c7565b915050611381565b5092915050565b60006001600160a01b03821661147c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600d8054610abb906132e6565b6008546001600160a01b031633146114f95760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b611503600061229d565b565b6008546001600160a01b0316331461154d5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b6014805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061159b848484611596600c546001600160a01b031690565b6122fc565b949350505050565b6008546001600160a01b031633146115eb5760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601155565b606060038054610abb906132e6565b601154813461160e8284613337565b1461165b5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610a95565b82600f548160005461166d9190613380565b11156116bb5760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b600e5460ff166112685760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610a95565b6001600160a01b038216331415611750576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117c7848484611f0b565b6001600160a01b0383163b15611272576117e384848484612471565b611272576040516368d2bf6b60e11b815260040160405180910390fd5b601254833461180f8284613337565b1461185c5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610a95565b84600f548160005461186e9190613380565b11156118bc5760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b600e54610100900460ff166119135760405162461bcd60e51b815260206004820152601360248201527f50726573616c65206973206e6f74206f70656e000000000000000000000000006044820152606401610a95565b60105461191f3361143a565b106119925760405162461bcd60e51b815260206004820152602f60248201527f5468697320616464726573732068617320616c7265616479206d696e7465642060448201527f746f6f206d616e792067616e67732e00000000000000000000000000000000006064820152608401610a95565b61199d338686612565565b6119a73387612146565b505050505050565b6008546001600160a01b031633146119f75760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600e8054911515620100000262ff000019909216919091179055565b6060611a1e82611e69565b611a6a5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610a95565b600d611a7583612591565b604051602001611a869291906133fe565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314611ae45760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b600f5481600054611af59190613380565b1115611b435760405162461bcd60e51b815260206004820152601d60248201527f54686572652773206e6f7420656e6f7567682067616e6773206c6566740000006044820152606401610a95565b610aa88282612146565b6008546001600160a01b03163314611b955760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b601055565b6008546001600160a01b03163314611be25760405162461bcd60e51b815260206004820181905260248201526000805160206135638339815191526044820152606401610a95565b6001600160a01b038116611c5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a95565b610d298161229d565b6001600160a01b03163b151590565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611cd957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a4b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610a4b565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610a4b5750610a4b82611c76565b6127106bffffffffffffffffffffffff82161115611dd55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610a95565b6001600160a01b038216611e2b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a95565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600955565b600081600111158015611e7d575060005482105b8015610a4b575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f1682612160565b9050836001600160a01b031681600001516001600160a01b031614611f67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611f855750611f858533610930565b80611fa0575033611f9584610b3e565b6001600160a01b0316145b905080611fd9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416612019576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61202560008487611ea2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166120fb5760005482146120fb578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610aa88282604051806020016040528060008152506126c3565b6040805160608101825260008082526020820181905291810191909152818060011161226b5760005481101561226b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906122695780516001600160a01b0316156121ff579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612264579392505050565b6121ff565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008061239d61234a8787604080516001600160a01b038416602082015290810182905230606082015260009060800160405160208183030381529060405280519060200120905092915050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90506001600160a01b0383166123b382866128ca565b6001600160a01b0316146124095760405162461bcd60e51b815260206004820152601360248201527f21494e56414c49445f5349474e415455524521000000000000000000000000006044820152606401610a95565b6000818152600b602052604090205460ff16156124685760405162461bcd60e51b815260206004820152600e60248201527f21414c52454144595f55534544210000000000000000000000000000000000006044820152606401610a95565b95945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124a69033908990889088906004016134c8565b602060405180830381600087803b1580156124c057600080fd5b505af19250505080156124f0575060408051601f3d908101601f191682019092526124ed91810190613504565b60015b61254b573d80801561251e576040519150601f19603f3d011682016040523d82523d6000602084013e612523565b606091505b508051612543576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159b565b600061257284848461157c565b6000908152600b60205260409020805460ff1916600117905550505050565b6060816125d157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156125fb57806125e5816133c7565b91506125f49050600a8361336c565b91506125d5565b60008167ffffffffffffffff81111561261657612616612ee7565b6040519080825280601f01601f191660200182016040528015612640576020820181803683370190505b5090505b841561159b57612655600183613521565b9150612662600a86613538565b61266d906030613380565b60f81b818381518110612682576126826133b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126bc600a8661336c565b9450612644565b6000546001600160a01b038416612706576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261273d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612875575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461283e6000878480600101955087612471565b61285b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106127f357826000541461287057600080fd5b6128ba565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612876575b5060009081556112729085838684565b60008060006128d985856128ee565b915091506128e68161295b565b509392505050565b6000808251604114156129255760208301516040840151606085015160001a61291987828585612b16565b94509450505050610e48565b82516040141561294f5760208301516040840151612944868383612c03565b935093505050610e48565b50600090506002610e48565b600081600481111561296f5761296f61354c565b14156129785750565b600181600481111561298c5761298c61354c565b14156129da5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a95565b60028160048111156129ee576129ee61354c565b1415612a3c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a95565b6003816004811115612a5057612a5061354c565b1415612aa95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a95565b6004816004811115612abd57612abd61354c565b1415610d295760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a95565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612b4d5750600090506003612bfa565b8460ff16601b14158015612b6557508460ff16601c14155b15612b765750600090506004612bfa565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612bca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612bf357600060019250925050612bfa565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681612c3960ff86901c601b613380565b9050612c4787828885612b16565b935093505050935093915050565b828054612c61906132e6565b90600052602060002090601f016020900481019282612c835760008555612cc9565b82601f10612c9c57805160ff1916838001178555612cc9565b82800160010185558215612cc9579182015b82811115612cc9578251825591602001919060010190612cae565b50612cd5929150612cd9565b5090565b5b80821115612cd55760008155600101612cda565b6001600160e01b031981168114610d2957600080fd5b600060208284031215612d1657600080fd5b8135612d2181612cee565b9392505050565b6001600160a01b0381168114610d2957600080fd5b60008060408385031215612d5057600080fd5b8235612d5b81612d28565b915060208301356bffffffffffffffffffffffff81168114612d7c57600080fd5b809150509250929050565b60005b83811015612da2578181015183820152602001612d8a565b838111156112725750506000910152565b60008151808452612dcb816020860160208601612d87565b601f01601f19169290920160200192915050565b602081526000612d216020830184612db3565b600060208284031215612e0457600080fd5b5035919050565b60008060408385031215612e1e57600080fd5b8235612e2981612d28565b946020939093013593505050565b80358015158114612e4757600080fd5b919050565b600060208284031215612e5e57600080fd5b612d2182612e37565b600060208284031215612e7957600080fd5b8135612d2181612d28565b600080600060608486031215612e9957600080fd5b8335612ea481612d28565b92506020840135612eb481612d28565b929592945050506040919091013590565b60008060408385031215612ed857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612f2657612f26612ee7565b604052919050565b600067ffffffffffffffff831115612f4857612f48612ee7565b612f5b601f8401601f1916602001612efd565b9050828152838383011115612f6f57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612f9857600080fd5b813567ffffffffffffffff811115612faf57600080fd5b8201601f81018413612fc057600080fd5b61159b84823560208401612f2e565b600067ffffffffffffffff821115612fe957612fe9612ee7565b5060051b60200190565b600082601f83011261300457600080fd5b8135602061301961301483612fcf565b612efd565b82815260059290921b8401810191818101908684111561303857600080fd5b8286015b84811015613053578035835291830191830161303c565b509695505050505050565b6000806040838503121561307157600080fd5b823567ffffffffffffffff8082111561308957600080fd5b818501915085601f83011261309d57600080fd5b813560206130ad61301483612fcf565b82815260059290921b840181019181810190898411156130cc57600080fd5b948201945b838610156130f35785356130e481612d28565b825294820194908201906130d1565b9650508601359250508082111561310957600080fd5b5061311685828601612ff3565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156131585783518352928401929184019160010161313c565b50909695505050505050565b600082601f83011261317557600080fd5b612d2183833560208501612f2e565b60008060006060848603121561319957600080fd5b83356131a481612d28565b925060208401359150604084013567ffffffffffffffff8111156131c757600080fd5b6131d386828701613164565b9150509250925092565b600080604083850312156131f057600080fd5b82356131fb81612d28565b915061320960208401612e37565b90509250929050565b6000806000806080858703121561322857600080fd5b843561323381612d28565b9350602085013561324381612d28565b925060408501359150606085013567ffffffffffffffff81111561326657600080fd5b61327287828801613164565b91505092959194509250565b60008060006060848603121561329357600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156131c757600080fd5b600080604083850312156132cb57600080fd5b82356132d681612d28565b91506020830135612d7c81612d28565b600181811c908216806132fa57607f821691505b6020821081141561331b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561335157613351613321565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261337b5761337b613356565b500490565b6000821982111561339357613393613321565b500190565b6000602082840312156133aa57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156133db576133db613321565b5060010190565b600081516133f4818560208601612d87565b9290920192915050565b600080845481600182811c91508083168061341a57607f831692505b602080841082141561343a57634e487b7160e01b86526022600452602486fd5b81801561344e576001811461345f5761348c565b60ff1986168952848901965061348c565b60008b81526020902060005b868110156134845781548b82015290850190830161346b565b505084890196505b5050505050506124686134c2827f2f00000000000000000000000000000000000000000000000000000000000000815260010190565b856133e2565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134fa6080830184612db3565b9695505050505050565b60006020828403121561351657600080fd5b8151612d2181612cee565b60008282101561353357613533613321565b500390565b60008261354757613547613356565b500690565b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212205193e5c2301423e8e978afd0e8f3f06519532d970a0db66e7b37a742b9d82ef164736f6c63430008090033

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.