ETH Price: $2,417.73 (+3.36%)

Token

CatRescue (CATRESCUE)
 

Overview

Max Total Supply

5,555 CATRESCUE

Holders

565

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 CATRESCUE
0x3f5918bc4cf4894ea0a8d1d544aeff4f59f8c1a6
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:
CatRescue

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import './Revealable.sol';
import './ERC721FDEnumerable.sol';

contract CatRescue is ERC721FDEnumerable, Revealable, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;

  event SaleMint(address receiver, uint256 mintedCount);

  // immutable inventory
  uint256 private immutable _saleMintInventory;
  // immutable claimable count per address
  uint256 private immutable _presaleClaimableCountPerAddress;

  uint256 private _saleMintMaxBatchSize;
  Counters.Counter private _saleMintedCount;

  struct SaleConfig {
    // uint256 packing {{{
    uint64 presalePrice;
    uint32 presaleStartTimestamp;
    uint32 presaleFinishTimestamp;
    uint64 publicSalePrice;
    uint32 publicSaleStartTimestamp;
    uint32 publicSaleFinishTimestamp;
    // }}}
  }
  SaleConfig private _saleConfig;

  bytes32 private _presaleAllowlistMerkleRoot;
  mapping(address => uint256) private _presaleClaimedCountPerAddress;

  constructor(
    uint256 devMintInventory_,
    uint256 saleMintInventory_,
    uint256 presaleMaxClaimableCountPerAddress_,
    uint256 saleMintMaxBatchSize_
  )
    ERC721FDEnumerable(
      'CatRescue',
      'CATRESCUE',
      devMintInventory_,
      saleMintInventory_
    )
  {
    _saleMintMaxBatchSize = saleMintMaxBatchSize_;
    _saleMintInventory = saleMintInventory_;
    _presaleClaimableCountPerAddress = presaleMaxClaimableCountPerAddress_;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      'ERC721Metadata: URI query for nonexistent token'
    );
    return Revealable._tokenURI(tokenId);
  }

  function baseURI() public view virtual returns (string memory) {
    return Revealable.r_baseURI();
  }

  function setBaseURI(string calldata _baseURI) external onlyOwner {
    Revealable._setBaseURI(_baseURI);
  }

  function withdrawETH() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}('');
    require(success, 'Transfer failed.');
  }

  function devMint(address to) external onlyOwner {
    _setDevMintAddress(to);
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, 'The caller is another contract');
    _;
  }

  function setPresaleAllowlistMerkleRoot(bytes32 presaleAllowlistMerkleRoot_)
    external
    onlyOwner
  {
    _presaleAllowlistMerkleRoot = presaleAllowlistMerkleRoot_;
  }

  function presaleStartTimestamp() public view virtual returns (uint32) {
    return _saleConfig.presaleStartTimestamp;
  }

  function setPresaleStartTimestamp(uint32 presaleStartTimestamp_)
    external
    onlyOwner
  {
    _saleConfig.presaleStartTimestamp = presaleStartTimestamp_;
  }

  function presaleFinishTimestamp() public view virtual returns (uint32) {
    return _saleConfig.presaleFinishTimestamp;
  }

  function setPresaleFinishTimestamp(uint32 presaleFinishTimestamp_)
    external
    onlyOwner
  {
    _saleConfig.presaleFinishTimestamp = presaleFinishTimestamp_;
  }

  function saleMintInventory() public view virtual returns (uint256) {
    return _saleMintInventory;
  }

  function saleMintedCount() public view virtual returns (uint256) {
    return _saleMintedCount.current();
  }

  function saleMintMaxBatchSize() public view virtual returns (uint256) {
    return _saleMintMaxBatchSize;
  }

  function presaleClaimableCountPerAddress()
    public
    view
    virtual
    returns (uint256)
  {
    return _presaleClaimableCountPerAddress;
  }

  function presaleClaimedCount(address addr)
    public
    view
    virtual
    returns (uint256)
  {
    return _presaleClaimedCountPerAddress[addr];
  }

  function setPresalePrice(uint64 presaleMintPrice_) external onlyOwner {
    _saleConfig.presalePrice = presaleMintPrice_;
  }

  function presalePrice() public view virtual returns (uint64) {
    return _saleConfig.presalePrice;
  }

  function presaleMint(bytes32[] memory merkleProof, uint256 quantity)
    external
    payable
    callerIsUser
  {
    require(_saleConfig.presalePrice != 0, 'Pressale price is not settled.');
    require(
      _saleConfig.presaleStartTimestamp != 0,
      'Pressale start date is not settled.'
    );
    require(
      block.timestamp >= _saleConfig.presaleStartTimestamp,
      'Pressale has not started.'
    );
    require(
      _saleConfig.presaleFinishTimestamp == 0 ||
        block.timestamp < _saleConfig.presaleFinishTimestamp,
      'Pressale has finished.'
    );

    // check allowlist
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(
      MerkleProof.verify(merkleProof, _presaleAllowlistMerkleRoot, leaf),
      'Not found in presale allowlist.'
    );

    // check claimable count
    require(
      quantity <=
        _presaleClaimableCountPerAddress -
          _presaleClaimedCountPerAddress[msg.sender],
      'Insufficient claimable count.'
    );
    _presaleClaimedCountPerAddress[msg.sender] += quantity;

    // check inventory
    require(
      _saleMintedCount.current() + quantity <= _saleMintInventory,
      'Insufficient inventory.'
    );

    // check msg.value
    require(
      msg.value >= _saleConfig.presalePrice * quantity,
      'Insufficient ETH.'
    );

    // mint
    for (uint256 i = 0; i < quantity; i++) {
      _saleMintedCount.increment();
      uint256 count = _saleMintedCount.current();
      _mint(msg.sender, devMintInventory() + count);
    }

    // refund if msg.value is too large
    if (msg.value > _saleConfig.presalePrice * quantity) {
      payable(msg.sender).transfer(
        msg.value - _saleConfig.presalePrice * quantity
      );
    }

    emit SaleMint(msg.sender, _saleMintedCount.current());
  }

  function publicSaleStartTimestamp() public view virtual returns (uint32) {
    return _saleConfig.publicSaleStartTimestamp;
  }

  function setPublicSaleStartTimestamp(uint32 publicSaleStartTimestamp_)
    external
    onlyOwner
  {
    _saleConfig.publicSaleStartTimestamp = publicSaleStartTimestamp_;
  }

  function publicSaleFinishTimestamp() public view virtual returns (uint32) {
    return _saleConfig.publicSaleFinishTimestamp;
  }

  function setPublicSaleFinishTimestamp(uint32 publicSaleFinishTimestamp_)
    external
    onlyOwner
  {
    _saleConfig.publicSaleFinishTimestamp = publicSaleFinishTimestamp_;
  }

  function publicSalePrice() public view virtual returns (uint64) {
    return _saleConfig.publicSalePrice;
  }

  function setPublicSalePrice(uint64 publicSaleMintPrice_) external onlyOwner {
    _saleConfig.publicSalePrice = publicSaleMintPrice_;
  }

  function publicSaleMint(uint256 quantity) external payable callerIsUser {
    require(
      _saleConfig.publicSalePrice != 0,
      'PublicSale price is not settled.'
    );
    require(
      _saleConfig.publicSaleStartTimestamp != 0,
      'PublicSale start date is not settled.'
    );
    require(
      block.timestamp >= _saleConfig.publicSaleStartTimestamp,
      'PublicSale has not started.'
    );
    require(
      _saleConfig.publicSaleFinishTimestamp == 0 ||
        block.timestamp < _saleConfig.publicSaleFinishTimestamp,
      'PublicSale has finished.'
    );

    // check quantity
    require(
      quantity <= _saleMintMaxBatchSize,
      'Quantity must be less than max batch size.'
    );
    _presaleClaimedCountPerAddress[msg.sender] += quantity;
    // check inventory
    require(
      _saleMintedCount.current() + quantity <= _saleMintInventory,
      'Insufficient inventory.'
    );
    // check msg.value
    require(
      msg.value >= _saleConfig.publicSalePrice * quantity,
      'Insufficient ETH.'
    );

    // mint
    for (uint256 i = 0; i < quantity; i++) {
      _saleMintedCount.increment();
      uint256 count = _saleMintedCount.current();
      uint256 id = devMintInventory() + count;
      _mint(msg.sender, id);
    }

    // refund if msg.value is too large
    if (msg.value > _saleConfig.publicSalePrice * quantity) {
      payable(msg.sender).transfer(
        msg.value - _saleConfig.publicSalePrice * quantity
      );
    }

    emit SaleMint(msg.sender, _saleMintedCount.current());
  }

  function devMintAfterSale(uint256 quantity) external onlyOwner {
    require(
      _saleConfig.presaleFinishTimestamp != 0 &&
        block.timestamp >= _saleConfig.presaleFinishTimestamp,
      'Presale has not finished.'
    );
    require(
      _saleConfig.publicSaleFinishTimestamp != 0 &&
        block.timestamp >= _saleConfig.publicSaleFinishTimestamp,
      'Public has not finished.'
    );

    // check claimable count
    require(quantity <= 50, 'afterSaleDevMint maxBatchSize is 50.');

    // check inventory
    require(
      _saleMintedCount.current() + quantity <= _saleMintInventory,
      'Insufficient inventory.'
    );

    address addr = devMintAddress_();
    require(addr != address(0), 'devMint address is not set');

    // mint
    for (uint256 i = 0; i < quantity; i++) {
      _saleMintedCount.increment();
      uint256 count = _saleMintedCount.current();
      _mint(addr, devMintInventory() + count);
    }

    emit SaleMint(addr, _saleMintedCount.current());
  }
}

File 2 of 19 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 19 : 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 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 19 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 19 : 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 7 of 19 : Revealable.sol
// SPDX-License-Identifier: MIT

// Revelable helps to reveal tokenURIs.

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';

abstract contract Revealable {
  string private __baseURI;

  function r_baseURI() internal view returns (string memory) {
    return __baseURI;
  }

  function _setBaseURI(string calldata baseURI_) internal {
    __baseURI = baseURI_;
  }

  function _tokenURI(uint256 tokenId)
    internal
    view
    virtual
    returns (string memory)
  {
    return
      string(abi.encodePacked(__baseURI, Strings.toString(tokenId), '.json'));
  }
}

File 8 of 19 : ERC721FDEnumerable.sol
// SPDX-License-Identifier: MIT

// ERC721FDEnumerable extends ERC721FD to implement ERC721Enumerable.

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import './ERC721FD.sol';

abstract contract ERC721FDEnumerable is ERC721FD, IERC721Enumerable {
  uint256 private immutable _nonDevMintInventory;
  mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
  mapping(uint256 => uint256) private _ownedTokensIndex;

  constructor(
    string memory name_,
    string memory symbol_,
    uint256 devMintInventory_,
    uint256 nonDevMintInventory_
  ) ERC721FD(name_, symbol_, devMintInventory_) {
    _nonDevMintInventory = nonDevMintInventory_;
  }

  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(IERC165, ERC721)
    returns (bool)
  {
    return
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    virtual
    override
    returns (uint256)
  {
    require(
      index < balanceOf(owner),
      'ERC721Enumerable: owner index out of bounds'
    );

    if (owner == devMintAddress_()) {
      uint256 devMintAddressHoldCount = devMintInventory() -
        devMintReleasedCount_();
      if (index < devMintAddressHoldCount) {
        uint256 currIndex = 0;
        for (uint256 tokenId = 1; tokenId <= devMintInventory(); tokenId++) {
          if (_underlyingOwnerOf(tokenId) == address(0)) {
            if (currIndex == index) {
              return tokenId;
            } else {
              currIndex++;
            }
          }
        }
        require(
          false,
          'ERC721FDEnumerable: failed to resolve devMinted tokenId'
        );
      }
    }
    return _ownedTokens[owner][index];
  }

  function totalSupply() public view virtual override returns (uint256) {
    return devMintInventory() + _nonDevMintInventory;
  }

  function tokenByIndex(uint256 index)
    public
    view
    virtual
    override
    returns (uint256)
  {
    require(
      index < totalSupply(),
      'ERC721Enumerable: global index out of bounds'
    );
    return index + 1;
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual override {
    // super._beforeTokenTransfer(from, to, tokenId);

    if (from != address(0) && from != to) {
      _removeTokenFromOwnerEnumeration(from, tokenId);
    }
    if (to == address(0)) {
      // nothing to do because we don't implement burn
      // _removeTokenFromAllTokensEnumeration(tokenId);
    } else if (to != from) {
      _addTokenToOwnerEnumeration(to, tokenId);
    }
  }

  function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
    uint256 length = balanceOf(to);
    if (to == devMintAddress_() && tokenId <= devMintInventory()) {
      // When devMinted token are transferred back,
      // last indexed token of devMintAddress should be move to next index to free stot for the token tranferred.
      if (length > devMintInventory() - devMintReleasedCount_()) {
        uint256 lastTokenId = _ownedTokens[to][length - 1];
        _ownedTokens[to][length] = lastTokenId;
        _ownedTokensIndex[lastTokenId] = length;
      }
    } else {
      _ownedTokens[to][length] = tokenId;
      _ownedTokensIndex[tokenId] = length;
    }
  }

  function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
    private
  {
    if (from != devMintAddress_() || tokenId > devMintInventory()) {
      // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
      // then delete the last slot (swap and pop).

      uint256 lastTokenIndex = balanceOf(from) - 1;
      uint256 tokenIndex = _ownedTokensIndex[tokenId];

      // When the token to delete is the last token, the swap operation is unnecessary
      if (tokenIndex != lastTokenIndex) {
        uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

        _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
      }

      // This also deletes the contents at the last position of the array
      delete _ownedTokensIndex[tokenId];
      delete _ownedTokens[from][lastTokenIndex];
    }
  }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 11 of 19 : 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 12 of 19 : 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 13 of 19 : 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 14 of 19 : 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 15 of 19 : 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 16 of 19 : 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 17 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 18 of 19 : ERC721FD.sol
// SPDX-License-Identifier: MIT

// ERC721FD extends ERC721 for devMint.

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';

abstract contract ERC721FD is ERC721 {
  using Counters for Counters.Counter;

  mapping(uint256 => address) private _owners;
  mapping(address => uint256) private _balances;
  mapping(uint256 => address) private _tokenApprovals;

  uint256 private immutable _devMintInventory;
  address private _devMintAddress;
  Counters.Counter private _devMintReleasedCount;

  constructor(
    string memory name_,
    string memory symbol_,
    uint256 devMintInventory_
  ) ERC721(name_, symbol_) {
    _devMintInventory = devMintInventory_;
  }

  function devMintAddress_() internal view returns (address) {
    return _devMintAddress;
  }

  function _setDevMintAddress(address to) internal {
    require(
      _underlyingOwnerbalanceOf(to) == 0,
      'ERC721FD: devMintAddress should be empty'
    );
    address prevAddress = _devMintAddress;
    _devMintAddress = to;

    uint256 max = devMintInventory();
    for (uint256 id = 1; id <= max; id++) {
      emit Transfer(prevAddress, to, id);
    }
  }

  function devMintReleasedCount_() internal view returns (uint256) {
    return _devMintReleasedCount.current();
  }

  function incrementDevMintReleasedCount_() internal {
    _devMintReleasedCount.increment();
  }

  function decrementDevMintReleasedCount_() internal {
    _devMintReleasedCount.decrement();
  }

  function devMintInventory() public view virtual returns (uint256) {
    return _devMintInventory;
  }

  function _underlyingOwnerbalanceOf(address owner)
    internal
    view
    virtual
    returns (uint256)
  {
    return _balances[owner];
  }

  function balanceOf(address owner)
    public
    view
    virtual
    override
    returns (uint256)
  {
    if (owner == _devMintAddress) {
      return
        _devMintInventory - _devMintReleasedCount.current() + _balances[owner];
    } else {
      return _balances[owner];
    }
  }

  function _underlyingOwnerOf(uint256 tokenId) internal view returns (address) {
    return _owners[tokenId];
  }

  function ownerOf(uint256 tokenId)
    public
    view
    virtual
    override
    returns (address)
  {
    address owner = _owners[tokenId];
    if (_owners[tokenId] == address(0) && tokenId <= _devMintInventory) {
      owner = _devMintAddress;
    }
    require(owner != address(0), 'ERC721: owner query for nonexistent token');
    return owner;
  }

  // [Use openzeppelin's methods directly]
  // name() public view virtual override returns (string memory
  // symbol() public view virtual override returns (string memory)
  // tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
  // _baseURI() internal view virtual returns (string memory) {

  function approve(address to, uint256 tokenId) public virtual override {
    address owner = ownerOf(tokenId);
    require(to != owner, 'ERC721: approval to current owner');

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      'ERC721: approve caller is not owner nor approved for all'
    );

    _approve(to, tokenId);
  }

  function getApproved(uint256 tokenId)
    public
    view
    virtual
    override
    returns (address)
  {
    require(
      ERC721FD._exists(tokenId),
      'ERC721: approved query for nonexistent token'
    );

    return _tokenApprovals[tokenId];
  }

  // [Use openzeppelin's methods directly]
  // setApprovalForAll(address operator, bool approved) public virtual override {
  // isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
  // transferFrom(address from, address to, uint256 tokenId) public virtual override {
  // safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
  // safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
  // _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {

  function _exists(uint256 tokenId)
    internal
    view
    virtual
    override
    returns (bool)
  {
    return
      _owners[tokenId] != address(0) ||
      (tokenId <= _devMintInventory && _devMintAddress != address(0));
  }

  function _isApprovedOrOwner(address spender, uint256 tokenId)
    internal
    view
    virtual
    override
    returns (bool)
  {
    require(_exists(tokenId), 'ERC721: operator query for nonexistent token');
    address owner = ownerOf(tokenId);
    return (spender == owner ||
      isApprovedForAll(owner, spender) ||
      getApproved(tokenId) == spender);
  }

  // [Use openzeppelin's methods directly]
  // _safeMint(address to, uint256 tokenId) internal virtual {
  // _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {

  function _mint(address to, uint256 tokenId) internal virtual override {
    require(to != address(0), 'ERC721: mint to the zero address');
    require(!_exists(tokenId), 'ERC721: token already minted');

    _beforeTokenTransfer(address(0), to, tokenId);

    _balances[to] += 1;
    _owners[tokenId] = to;

    emit Transfer(address(0), to, tokenId);

    _afterTokenTransfer(address(0), to, tokenId);
  }

  function _burn(uint256 tokenId) internal virtual override {
    address owner = ownerOf(tokenId);

    _beforeTokenTransfer(owner, address(0), tokenId);

    _approve(address(0), tokenId);

    if (tokenId <= _devMintInventory && _owners[tokenId] == address(0)) {
      _devMintReleasedCount.increment();
    } else {
      _balances[owner] -= 1;
      delete _owners[tokenId];
    }

    emit Transfer(owner, address(0), tokenId);

    _afterTokenTransfer(owner, address(0), tokenId);
  }

  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual override {
    require(ownerOf(tokenId) == from, 'ERC721: transfer from incorrect owner');
    require(to != address(0), 'ERC721: transfer to the zero address');

    _beforeTokenTransfer(from, to, tokenId);

    _approve(address(0), tokenId);

    if (from != to) {
      if (tokenId <= _devMintInventory) {
        if (from == _devMintAddress) {
          _devMintReleasedCount.increment();
        } else {
          _balances[from] -= 1;
        }

        if (to == _devMintAddress) {
          _devMintReleasedCount.decrement();
          delete _owners[tokenId];
        } else {
          _owners[tokenId] = to;
          _balances[to] += 1;
        }
      } else {
        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;
      }
    }

    emit Transfer(from, to, tokenId);

    _afterTokenTransfer(from, to, tokenId);
  }

  function _approve(address to, uint256 tokenId) internal virtual override {
    _tokenApprovals[tokenId] = to;
    emit Approval(ownerOf(tokenId), to, tokenId);
  }

  // [Use openzeppelin's methods directly]
  // _setApprovalForAll(address owner,address operator, bool approved) internal virtual
  // _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) {
}

File 19 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"devMintInventory_","type":"uint256"},{"internalType":"uint256","name":"saleMintInventory_","type":"uint256"},{"internalType":"uint256","name":"presaleMaxClaimableCountPerAddress_","type":"uint256"},{"internalType":"uint256","name":"saleMintMaxBatchSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintedCount","type":"uint256"}],"name":"SaleMint","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMintAfterSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMintInventory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"presaleClaimableCountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presaleClaimedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleFinishTimestamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTimestamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleFinishTimestamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleMintInventory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleMintMaxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"presaleAllowlistMerkleRoot_","type":"bytes32"}],"name":"setPresaleAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"presaleFinishTimestamp_","type":"uint32"}],"name":"setPresaleFinishTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"presaleMintPrice_","type":"uint64"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"presaleStartTimestamp_","type":"uint32"}],"name":"setPresaleStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"publicSaleFinishTimestamp_","type":"uint32"}],"name":"setPublicSaleFinishTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"publicSaleMintPrice_","type":"uint64"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"publicSaleStartTimestamp_","type":"uint32"}],"name":"setPublicSaleStartTimestamp","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523480156200001257600080fd5b5060405162003a7b38038062003a7b8339810160408190526200003591620001d9565b6040518060400160405280600981526020016843617452657363756560b81b8152506040518060400160405280600981526020016843415452455343554560b81b8152508585838383828281600090805190602001906200009892919062000133565b508051620000ae90600190602084019062000133565b505050608052505060a05250620000c99150339050620000e1565b6001600f5560105560c09190915260e052506200024c565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000141906200020f565b90600052602060002090601f016020900481019282620001655760008555620001b0565b82601f106200018057805160ff1916838001178555620001b0565b82800160010185558215620001b0579182015b82811115620001b057825182559160200191906001019062000193565b50620001be929150620001c2565b5090565b5b80821115620001be5760008155600101620001c3565b60008060008060808587031215620001ef578384fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200022457607f821691505b602082108114156200024657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051613777620003046000396000818161065c0152611e5601526000818161074401528181611159015281816116ab0152611eee01526000610af701526000818161077701528181610b1801528181610c1001528181610c4501528181610e7601528181610f59015281816112430152818161178d01528181611fc801528181612133015281816123d20152818161265401528181612d5501528181612e560152612e8c01526137776000f3fe6080604052600436106102715760003560e01c80638da5cb5b1161014f578063c87b56dd116100c1578063d90ca76d1161007a578063d90ca76d146107bd578063e086e5ec146107dd578063e985e9c5146107f2578063ed1cb1061461083b578063f2fde38b1461085d578063fde5f5481461087d57600080fd5b8063c87b56dd146106d3578063c89e324f146106f3578063cd67276d14610715578063d40e7d2214610735578063d4732f9014610768578063d7822c991461079b57600080fd5b8063a22cb46511610113578063a22cb4651461060d578063a3bf219c1461062d578063adeb25951461064d578063b3ab66b014610680578063b88d4fde14610693578063bb653d19146106b357600080fd5b80638da5cb5b1461057557806395d89b4114610593578063967cb395146105a85780639b6860c8146105c85780639fc770bc146105ed57600080fd5b806341ee05f7116101e85780636352211e116101ac5780636352211e146104cb5780636c0360eb146104eb57806370a0823114610500578063715018a6146105205780637ac4dfab1461053557806382ef300f1461055557600080fd5b806341ee05f71461041857806342842e0e146104385780634ea37fec146104585780634f6ccce71461048b57806355f804b3146104ab57600080fd5b8063095ea7b31161023a578063095ea7b31461035657806318160ddd146103785780631d0200941461038d57806323b872dd146103a25780632f745c59146103c25780633be9cbe8146103e257600080fd5b80620e7fa81461027657806301ffc9a7146102ad57806306097e77146102dd57806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561028257600080fd5b506012546001600160401b03165b6040516001600160401b0390911681526020015b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004613271565b610890565b60405190151581526020016102a4565b3480156102e957600080fd5b506010545b6040519081526020016102a4565b34801561030857600080fd5b506103116108bb565b6040516102a4919061349f565b34801561032a57600080fd5b5061033e610339366004613259565b61094d565b6040516001600160a01b0390911681526020016102a4565b34801561036257600080fd5b50610376610371366004613183565b6109da565b005b34801561038457600080fd5b506102ee610af0565b34801561039957600080fd5b506102ee610b41565b3480156103ae57600080fd5b506103766103bd366004613057565b610b4c565b3480156103ce57600080fd5b506102ee6103dd366004613183565b610b7d565b3480156103ee57600080fd5b506102ee6103fd366004613004565b6001600160a01b031660009081526014602052604090205490565b34801561042457600080fd5b50610376610433366004613004565b610d52565b34801561044457600080fd5b50610376610453366004613057565b610d88565b34801561046457600080fd5b50601254600160401b900463ffffffff165b60405163ffffffff90911681526020016102a4565b34801561049757600080fd5b506102ee6104a6366004613259565b610da3565b3480156104b757600080fd5b506103766104c63660046132a9565b610e1b565b3480156104d757600080fd5b5061033e6104e6366004613259565b610e53565b3480156104f757600080fd5b50610311610f14565b34801561050c57600080fd5b506102ee61051b366004613004565b610f1e565b34801561052c57600080fd5b50610376610fa8565b34801561054157600080fd5b50610376610550366004613259565b610fde565b34801561056157600080fd5b50610376610570366004613315565b6112d7565b34801561058157600080fd5b50600e546001600160a01b031661033e565b34801561059f57600080fd5b50610311611327565b3480156105b457600080fd5b506103766105c3366004613339565b611336565b3480156105d457600080fd5b50601254600160801b90046001600160401b0316610290565b3480156105f957600080fd5b50610376610608366004613315565b611383565b34801561061957600080fd5b50610376610628366004613149565b6113d2565b34801561063957600080fd5b50610376610648366004613339565b6113dd565b34801561065957600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006102ee565b61037661068e366004613259565b611434565b34801561069f57600080fd5b506103766106ae366004613092565b6118a0565b3480156106bf57600080fd5b506103766106ce366004613315565b6118d8565b3480156106df57600080fd5b506103116106ee366004613259565b611928565b3480156106ff57600080fd5b50601254600160601b900463ffffffff16610476565b34801561072157600080fd5b50610376610730366004613315565b6119a0565b34801561074157600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006102ee565b34801561077457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006102ee565b3480156107a757600080fd5b50601254600160c01b900463ffffffff16610476565b3480156107c957600080fd5b506103766107d8366004613259565b6119f5565b3480156107e957600080fd5b50610376611a24565b3480156107fe57600080fd5b506102cd61080d366004613025565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561084757600080fd5b50601254600160e01b900463ffffffff16610476565b34801561086957600080fd5b50610376610878366004613004565b611b39565b61037661088b3660046131ac565b611bd1565b60006001600160e01b0319821663780e9d6360e01b14806108b557506108b5826120c1565b92915050565b6060600080546108ca9061367f565b80601f01602080910402602001604051908101604052809291908181526020018280546108f69061367f565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095882612111565b6109be5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109e582610e53565b9050806001600160a01b0316836001600160a01b03161415610a535760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b5565b336001600160a01b0382161480610a6f5750610a6f813361080d565b610ae15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b5565b610aeb8383612170565b505050565b6000610b3c7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006135f1565b905090565b6000610b3c60115490565b610b5633826121de565b610b725760405162461bcd60e51b81526004016109b590613570565b610aeb8383836122c8565b6000610b8883610f1e565b8210610bea5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109b5565b6009546001600160a01b0384811691161415610d29576000610c0a6125ac565b610c34907f000000000000000000000000000000000000000000000000000000000000000061363c565b905080831015610d2757600060015b7f00000000000000000000000000000000000000000000000000000000000000008111610cb8576000818152600660205260409020546001600160a01b0316610ca65784821415610c985792506108b5915050565b81610ca2816136ba565b9250505b80610cb0816136ba565b915050610c43565b5060405162461bcd60e51b815260206004820152603760248201527f4552433732314644456e756d657261626c653a206661696c656420746f20726560448201527f736f6c7665206465764d696e74656420746f6b656e496400000000000000000060648201526084016109b5565b505b506001600160a01b03919091166000908152600b60209081526040808320938352929052205490565b600e546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016109b59061353b565b610d85816125b7565b50565b610aeb838383604051806020016040528060008152506118a0565b6000610dad610af0565b8210610e105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109b5565b6108b58260016135f1565b600e546001600160a01b03163314610e455760405162461bcd60e51b81526004016109b59061353b565b610e4f82826126d5565b5050565b6000818152600660205260408120546001600160a01b031680158015610e9957507f00000000000000000000000000000000000000000000000000000000000000008311155b15610eac57506009546001600160a01b03165b6001600160a01b0381166108b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b5565b6060610b3c6126e1565b6009546000906001600160a01b0383811691161415610f87576001600160a01b038216600090815260076020526040902054600a54610f7d907f000000000000000000000000000000000000000000000000000000000000000061363c565b6108b591906135f1565b506001600160a01b031660009081526007602052604090205490565b919050565b600e546001600160a01b03163314610fd25760405162461bcd60e51b81526004016109b59061353b565b610fdc60006126f0565b565b600e546001600160a01b031633146110085760405162461bcd60e51b81526004016109b59061353b565b601254600160601b900463ffffffff16158015906110355750601254600160601b900463ffffffff164210155b6110815760405162461bcd60e51b815260206004820152601960248201527f50726573616c6520686173206e6f742066696e69736865642e0000000000000060448201526064016109b5565b601254600160e01b900463ffffffff16158015906110ae5750601254600160e01b900463ffffffff164210155b6110fa5760405162461bcd60e51b815260206004820152601860248201527f5075626c696320686173206e6f742066696e69736865642e000000000000000060448201526064016109b5565b60328111156111575760405162461bcd60e51b8152602060048201526024808201527f616674657253616c654465764d696e74206d6178426174636853697a65206973604482015263101a981760e11b60648201526084016109b5565b7f00000000000000000000000000000000000000000000000000000000000000008161118260115490565b61118c91906135f1565b11156111aa5760405162461bcd60e51b81526004016109b590613504565b60006111be6009546001600160a01b031690565b90506001600160a01b0381166112165760405162461bcd60e51b815260206004820152601a60248201527f6465764d696e742061646472657373206973206e6f742073657400000000000060448201526064016109b5565b60005b828110156112855761122f601180546001019055565b600061123a60115490565b905061127283827f00000000000000000000000000000000000000000000000000000000000000005b61126d91906135f1565b612742565b508061127d816136ba565b915050611219565b507f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f816112b160115490565b604080516001600160a01b03909316835260208301919091520160405180910390a15050565b600e546001600160a01b031633146113015760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b6060600180546108ca9061367f565b600e546001600160a01b031633146113605760405162461bcd60e51b81526004016109b59061353b565b6012805467ffffffffffffffff19166001600160401b0392909216919091179055565b600e546001600160a01b031633146113ad5760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b610e4f338383612881565b600e546001600160a01b031633146114075760405162461bcd60e51b81526004016109b59061353b565b601280546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b3233146114835760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109b5565b601254600160801b90046001600160401b03166114e25760405162461bcd60e51b815260206004820181905260248201527f5075626c696353616c65207072696365206973206e6f7420736574746c65642e60448201526064016109b5565b601254600160c01b900463ffffffff1661154c5760405162461bcd60e51b815260206004820152602560248201527f5075626c696353616c652073746172742064617465206973206e6f74207365746044820152643a3632b21760d91b60648201526084016109b5565b601254600160c01b900463ffffffff164210156115ab5760405162461bcd60e51b815260206004820152601b60248201527f5075626c696353616c6520686173206e6f7420737461727465642e000000000060448201526064016109b5565b601254600160e01b900463ffffffff1615806115d55750601254600160e01b900463ffffffff1642105b6116215760405162461bcd60e51b815260206004820152601860248201527f5075626c696353616c65206861732066696e69736865642e000000000000000060448201526064016109b5565b6010548111156116865760405162461bcd60e51b815260206004820152602a60248201527f5175616e74697479206d757374206265206c657373207468616e206d6178206260448201526930ba31b41039b4bd329760b11b60648201526084016109b5565b33600090815260146020526040812080548392906116a59084906135f1565b909155507f00000000000000000000000000000000000000000000000000000000000000009050816116d660115490565b6116e091906135f1565b11156116fe5760405162461bcd60e51b81526004016109b590613504565b60125461171c908290600160801b90046001600160401b031661361d565b34101561175f5760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b60448201526064016109b5565b60005b818110156117d257611778601180546001019055565b600061178360115490565b905060006117b1827f00000000000000000000000000000000000000000000000000000000000000006135f1565b90506117bd3382612742565b505080806117ca906136ba565b915050611762565b506012546117f1908290600160801b90046001600160401b031661361d565b3411156118505760125433906108fc9061181c908490600160801b90046001600160401b031661361d565b611826903461363c565b6040518115909202916000818181858888f1935050505015801561184e573d6000803e3d6000fd5b505b7f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3361187b60115490565b604080516001600160a01b03909316835260208301919091520160405180910390a150565b6118aa33836121de565b6118c65760405162461bcd60e51b81526004016109b590613570565b6118d284848484612950565b50505050565b600e546001600160a01b031633146119025760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b606061193382612111565b6119975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109b5565b6108b582612983565b600e546001600160a01b031633146119ca5760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b600e546001600160a01b03163314611a1f5760405162461bcd60e51b81526004016109b59061353b565b601355565b600e546001600160a01b03163314611a4e5760405162461bcd60e51b81526004016109b59061353b565b6002600f541415611aa15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109b5565b6002600f55604051600090339047908381818185875af1925050503d8060008114611ae8576040519150601f19603f3d011682016040523d82523d6000602084013e611aed565b606091505b5050905080611b315760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109b5565b506001600f55565b600e546001600160a01b03163314611b635760405162461bcd60e51b81526004016109b59061353b565b6001600160a01b038116611bc85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b5565b610d85816126f0565b323314611c205760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109b5565b6012546001600160401b0316611c785760405162461bcd60e51b815260206004820152601e60248201527f5072657373616c65207072696365206973206e6f7420736574746c65642e000060448201526064016109b5565b601254600160401b900463ffffffff16611ce05760405162461bcd60e51b815260206004820152602360248201527f5072657373616c652073746172742064617465206973206e6f7420736574746c60448201526232b21760e91b60648201526084016109b5565b601254600160401b900463ffffffff16421015611d3f5760405162461bcd60e51b815260206004820152601960248201527f5072657373616c6520686173206e6f7420737461727465642e0000000000000060448201526064016109b5565b601254600160601b900463ffffffff161580611d695750601254600160601b900463ffffffff1642105b611dae5760405162461bcd60e51b8152602060048201526016602482015275283932b9b9b0b632903430b9903334b734b9b432b21760511b60448201526064016109b5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611df483601354836129b7565b611e405760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420666f756e6420696e2070726573616c6520616c6c6f776c6973742e0060448201526064016109b5565b33600090815260146020526040902054611e7a907f000000000000000000000000000000000000000000000000000000000000000061363c565b821115611ec95760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420636c61696d61626c6520636f756e742e00000060448201526064016109b5565b3360009081526014602052604081208054849290611ee89084906135f1565b909155507f0000000000000000000000000000000000000000000000000000000000000000905082611f1960115490565b611f2391906135f1565b1115611f415760405162461bcd60e51b81526004016109b590613504565b601254611f589083906001600160401b031661361d565b341015611f9b5760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b60448201526064016109b5565b60005b82811015611fff57611fb4601180546001019055565b6000611fbf60115490565b9050611fec33827f0000000000000000000000000000000000000000000000000000000000000000611263565b5080611ff7816136ba565b915050611f9e565b506012546120179083906001600160401b031661361d565b34111561206f5760125433906108fc9061203b9085906001600160401b031661361d565b612045903461363c565b6040518115909202916000818181858888f1935050505015801561206d573d6000803e3d6000fd5b505b7f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3361209a60115490565b604080516001600160a01b03909316835260208301919091520160405180910390a1505050565b60006001600160e01b031982166380ac58cd60e01b14806120f257506001600160e01b03198216635b5e139f60e01b145b806108b557506301ffc9a760e01b6001600160e01b03198316146108b5565b6000818152600660205260408120546001600160a01b03161515806108b557507f000000000000000000000000000000000000000000000000000000000000000082111580156108b557506009546001600160a01b0316151592915050565b600081815260086020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121a582610e53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121e982612111565b61224a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b5565b600061225583610e53565b9050806001600160a01b0316846001600160a01b0316148061229c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806122c05750836001600160a01b03166122b58461094d565b6001600160a01b0316145b949350505050565b826001600160a01b03166122db82610e53565b6001600160a01b03161461233f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109b5565b6001600160a01b0382166123a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b5565b6123ac8383836129cd565b6123b7600082612170565b816001600160a01b0316836001600160a01b031614612566577f000000000000000000000000000000000000000000000000000000000000000081116124e2576009546001600160a01b03848116911614156124205761241b600a80546001019055565b61244f565b6001600160a01b038316600090815260076020526040812080546001929061244990849061363c565b90915550505b6009546001600160a01b03838116911614156124905761246f600a612a3c565b600081815260066020526040902080546001600160a01b0319169055612566565b600081815260066020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600790915281208054600192906124d79084906135f1565b909155506125669050565b6001600160a01b038316600090815260076020526040812080546001929061250b90849061363c565b90915550506001600160a01b03821660009081526007602052604081208054600192906125399084906135f1565b9091555050600081815260066020526040902080546001600160a01b0319166001600160a01b0384161790555b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b3c600a5490565b6001600160a01b0381166000908152600760205260409020541561262e5760405162461bcd60e51b815260206004820152602860248201527f45524337323146443a206465764d696e74416464726573732073686f756c6420604482015267626520656d70747960c01b60648201526084016109b5565b600980546001600160a01b038381166001600160a01b03198316179092551660006126767f000000000000000000000000000000000000000000000000000000000000000090565b905060015b8181116118d25780846001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806126cd816136ba565b91505061267b565b610aeb600d8383612f54565b6060600d80546108ca9061367f565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166127985760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b5565b6127a181612111565b156127ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b5565b6127fa600083836129cd565b6001600160a01b03821660009081526007602052604081208054600192906128239084906135f1565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156128e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61295b8484846122c8565b61296784848484612a93565b6118d25760405162461bcd60e51b81526004016109b5906134b2565b6060600d61299083612ba0565b6040516020016129a19291906133a8565b6040516020818303038152906040529050919050565b6000826129c48584612cb9565b14949350505050565b6001600160a01b038316158015906129f75750816001600160a01b0316836001600160a01b031614155b15612a0657612a068382612d3b565b6001600160a01b038216612a1957505050565b826001600160a01b0316826001600160a01b031614610aeb57610aeb8282612e1a565b805480612a8b5760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f77000000000060448201526064016109b5565b600019019055565b60006001600160a01b0384163b15612b9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ad7903390899088908890600401613462565b602060405180830381600087803b158015612af157600080fd5b505af1925050508015612b21575060408051601f3d908101601f19168201909252612b1e9181019061328d565b60015b612b7b573d808015612b4f576040519150601f19603f3d011682016040523d82523d6000602084013e612b54565b606091505b508051612b735760405162461bcd60e51b81526004016109b5906134b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122c0565b506001949350505050565b606081612bc45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bee5780612bd8816136ba565b9150612be79050600a83613609565b9150612bc8565b6000816001600160401b03811115612c1657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c40576020820181803683370190505b5090505b84156122c057612c5560018361363c565b9150612c62600a866136d5565b612c6d9060306135f1565b60f81b818381518110612c9057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612cb2600a86613609565b9450612c44565b600081815b8451811015612d33576000858281518110612ce957634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612d0f5760008381526020829052604090209250612d20565b600081815260208490526040902092505b5080612d2b816136ba565b915050612cbe565b509392505050565b6009546001600160a01b038381169116141580612d7757507f000000000000000000000000000000000000000000000000000000000000000081115b15610e4f5760006001612d8984610f1e565b612d93919061363c565b6000838152600c6020526040902054909150808214612de6576001600160a01b0384166000908152600b602090815260408083208584528252808320548484528184208190558352600c90915290208190555b506000918252600c602090815260408084208490556001600160a01b03949094168352600b81528383209183525290812055565b6000612e2583610f1e565b9050612e396009546001600160a01b031690565b6001600160a01b0316836001600160a01b0316148015612e7957507f00000000000000000000000000000000000000000000000000000000000000008211155b15612f2157612e866125ac565b612eb0907f000000000000000000000000000000000000000000000000000000000000000061363c565b811115610aeb576001600160a01b0383166000908152600b6020526040812081612edb60018561363c565b815260208082019290925260409081016000908120546001600160a01b0388168252600b845282822086835284528282208190558152600c909252902082905550505050565b6001600160a01b03929092166000908152600b602090815260408083208584528252808320849055928252600c90522055565b828054612f609061367f565b90600052602060002090601f016020900481019282612f825760008555612fc8565b82601f10612f9b5782800160ff19823516178555612fc8565b82800160010185558215612fc8579182015b82811115612fc8578235825591602001919060010190612fad565b50612fd4929150612fd8565b5090565b5b80821115612fd45760008155600101612fd9565b80356001600160a01b0381168114610fa357600080fd5b600060208284031215613015578081fd5b61301e82612fed565b9392505050565b60008060408385031215613037578081fd5b61304083612fed565b915061304e60208401612fed565b90509250929050565b60008060006060848603121561306b578081fd5b61307484612fed565b925061308260208501612fed565b9150604084013590509250925092565b600080600080608085870312156130a7578081fd5b6130b085612fed565b935060206130bf818701612fed565b93506040860135925060608601356001600160401b03808211156130e1578384fd5b818801915088601f8301126130f4578384fd5b81358181111561310657613106613715565b613118601f8201601f191685016135c1565b9150808252898482850101111561312d578485fd5b8084840185840137810190920192909252939692955090935050565b6000806040838503121561315b578182fd5b61316483612fed565b915060208301358015158114613178578182fd5b809150509250929050565b60008060408385031215613195578182fd5b61319e83612fed565b946020939093013593505050565b600080604083850312156131be578182fd5b82356001600160401b03808211156131d4578384fd5b818501915085601f8301126131e7578384fd5b81356020828211156131fb576131fb613715565b8160051b925061320c8184016135c1565b8281528181019085830185870184018b1015613226578889fd5b8896505b8487101561324857803583526001969096019591830191830161322a565b509997909101359750505050505050565b60006020828403121561326a578081fd5b5035919050565b600060208284031215613282578081fd5b813561301e8161372b565b60006020828403121561329e578081fd5b815161301e8161372b565b600080602083850312156132bb578182fd5b82356001600160401b03808211156132d1578384fd5b818501915085601f8301126132e4578384fd5b8135818111156132f2578485fd5b866020828501011115613303578485fd5b60209290920196919550909350505050565b600060208284031215613326578081fd5b813563ffffffff8116811461301e578182fd5b60006020828403121561334a578081fd5b81356001600160401b038116811461301e578182fd5b60008151808452613378816020860160208601613653565b601f01601f19169290920160200192915050565b6000815161339e818560208601613653565b9290920192915050565b600080845482600182811c9150808316806133c457607f831692505b60208084108214156133e457634e487b7160e01b87526022600452602487fd5b8180156133f8576001811461340957613435565b60ff19861689528489019650613435565b60008b815260209020885b8681101561342d5781548b820152908501908301613414565b505084890196505b505050505050613459613448828661338c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061349590830184613360565b9695505050505050565b60208152600061301e6020830184613360565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526017908201527f496e73756666696369656e7420696e76656e746f72792e000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f191681016001600160401b03811182821017156135e9576135e9613715565b604052919050565b60008219821115613604576136046136e9565b500190565b600082613618576136186136ff565b500490565b6000816000190483118215151615613637576136376136e9565b500290565b60008282101561364e5761364e6136e9565b500390565b60005b8381101561366e578181015183820152602001613656565b838111156118d25750506000910152565b600181811c9082168061369357607f821691505b602082108114156136b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136ce576136ce6136e9565b5060010190565b6000826136e4576136e46136ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8557600080fdfea26469706673582212205eaf61c01d7f695619072840c1219b697a62620978d5a982a96ee5e8b294136664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000022b0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106102715760003560e01c80638da5cb5b1161014f578063c87b56dd116100c1578063d90ca76d1161007a578063d90ca76d146107bd578063e086e5ec146107dd578063e985e9c5146107f2578063ed1cb1061461083b578063f2fde38b1461085d578063fde5f5481461087d57600080fd5b8063c87b56dd146106d3578063c89e324f146106f3578063cd67276d14610715578063d40e7d2214610735578063d4732f9014610768578063d7822c991461079b57600080fd5b8063a22cb46511610113578063a22cb4651461060d578063a3bf219c1461062d578063adeb25951461064d578063b3ab66b014610680578063b88d4fde14610693578063bb653d19146106b357600080fd5b80638da5cb5b1461057557806395d89b4114610593578063967cb395146105a85780639b6860c8146105c85780639fc770bc146105ed57600080fd5b806341ee05f7116101e85780636352211e116101ac5780636352211e146104cb5780636c0360eb146104eb57806370a0823114610500578063715018a6146105205780637ac4dfab1461053557806382ef300f1461055557600080fd5b806341ee05f71461041857806342842e0e146104385780634ea37fec146104585780634f6ccce71461048b57806355f804b3146104ab57600080fd5b8063095ea7b31161023a578063095ea7b31461035657806318160ddd146103785780631d0200941461038d57806323b872dd146103a25780632f745c59146103c25780633be9cbe8146103e257600080fd5b80620e7fa81461027657806301ffc9a7146102ad57806306097e77146102dd57806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561028257600080fd5b506012546001600160401b03165b6040516001600160401b0390911681526020015b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004613271565b610890565b60405190151581526020016102a4565b3480156102e957600080fd5b506010545b6040519081526020016102a4565b34801561030857600080fd5b506103116108bb565b6040516102a4919061349f565b34801561032a57600080fd5b5061033e610339366004613259565b61094d565b6040516001600160a01b0390911681526020016102a4565b34801561036257600080fd5b50610376610371366004613183565b6109da565b005b34801561038457600080fd5b506102ee610af0565b34801561039957600080fd5b506102ee610b41565b3480156103ae57600080fd5b506103766103bd366004613057565b610b4c565b3480156103ce57600080fd5b506102ee6103dd366004613183565b610b7d565b3480156103ee57600080fd5b506102ee6103fd366004613004565b6001600160a01b031660009081526014602052604090205490565b34801561042457600080fd5b50610376610433366004613004565b610d52565b34801561044457600080fd5b50610376610453366004613057565b610d88565b34801561046457600080fd5b50601254600160401b900463ffffffff165b60405163ffffffff90911681526020016102a4565b34801561049757600080fd5b506102ee6104a6366004613259565b610da3565b3480156104b757600080fd5b506103766104c63660046132a9565b610e1b565b3480156104d757600080fd5b5061033e6104e6366004613259565b610e53565b3480156104f757600080fd5b50610311610f14565b34801561050c57600080fd5b506102ee61051b366004613004565b610f1e565b34801561052c57600080fd5b50610376610fa8565b34801561054157600080fd5b50610376610550366004613259565b610fde565b34801561056157600080fd5b50610376610570366004613315565b6112d7565b34801561058157600080fd5b50600e546001600160a01b031661033e565b34801561059f57600080fd5b50610311611327565b3480156105b457600080fd5b506103766105c3366004613339565b611336565b3480156105d457600080fd5b50601254600160801b90046001600160401b0316610290565b3480156105f957600080fd5b50610376610608366004613315565b611383565b34801561061957600080fd5b50610376610628366004613149565b6113d2565b34801561063957600080fd5b50610376610648366004613339565b6113dd565b34801561065957600080fd5b507f000000000000000000000000000000000000000000000000000000000000000a6102ee565b61037661068e366004613259565b611434565b34801561069f57600080fd5b506103766106ae366004613092565b6118a0565b3480156106bf57600080fd5b506103766106ce366004613315565b6118d8565b3480156106df57600080fd5b506103116106ee366004613259565b611928565b3480156106ff57600080fd5b50601254600160601b900463ffffffff16610476565b34801561072157600080fd5b50610376610730366004613315565b6119a0565b34801561074157600080fd5b507f00000000000000000000000000000000000000000000000000000000000013886102ee565b34801561077457600080fd5b507f000000000000000000000000000000000000000000000000000000000000022b6102ee565b3480156107a757600080fd5b50601254600160c01b900463ffffffff16610476565b3480156107c957600080fd5b506103766107d8366004613259565b6119f5565b3480156107e957600080fd5b50610376611a24565b3480156107fe57600080fd5b506102cd61080d366004613025565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561084757600080fd5b50601254600160e01b900463ffffffff16610476565b34801561086957600080fd5b50610376610878366004613004565b611b39565b61037661088b3660046131ac565b611bd1565b60006001600160e01b0319821663780e9d6360e01b14806108b557506108b5826120c1565b92915050565b6060600080546108ca9061367f565b80601f01602080910402602001604051908101604052809291908181526020018280546108f69061367f565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095882612111565b6109be5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109e582610e53565b9050806001600160a01b0316836001600160a01b03161415610a535760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b5565b336001600160a01b0382161480610a6f5750610a6f813361080d565b610ae15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b5565b610aeb8383612170565b505050565b6000610b3c7f00000000000000000000000000000000000000000000000000000000000013887f000000000000000000000000000000000000000000000000000000000000022b6135f1565b905090565b6000610b3c60115490565b610b5633826121de565b610b725760405162461bcd60e51b81526004016109b590613570565b610aeb8383836122c8565b6000610b8883610f1e565b8210610bea5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109b5565b6009546001600160a01b0384811691161415610d29576000610c0a6125ac565b610c34907f000000000000000000000000000000000000000000000000000000000000022b61363c565b905080831015610d2757600060015b7f000000000000000000000000000000000000000000000000000000000000022b8111610cb8576000818152600660205260409020546001600160a01b0316610ca65784821415610c985792506108b5915050565b81610ca2816136ba565b9250505b80610cb0816136ba565b915050610c43565b5060405162461bcd60e51b815260206004820152603760248201527f4552433732314644456e756d657261626c653a206661696c656420746f20726560448201527f736f6c7665206465764d696e74656420746f6b656e496400000000000000000060648201526084016109b5565b505b506001600160a01b03919091166000908152600b60209081526040808320938352929052205490565b600e546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016109b59061353b565b610d85816125b7565b50565b610aeb838383604051806020016040528060008152506118a0565b6000610dad610af0565b8210610e105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109b5565b6108b58260016135f1565b600e546001600160a01b03163314610e455760405162461bcd60e51b81526004016109b59061353b565b610e4f82826126d5565b5050565b6000818152600660205260408120546001600160a01b031680158015610e9957507f000000000000000000000000000000000000000000000000000000000000022b8311155b15610eac57506009546001600160a01b03165b6001600160a01b0381166108b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b5565b6060610b3c6126e1565b6009546000906001600160a01b0383811691161415610f87576001600160a01b038216600090815260076020526040902054600a54610f7d907f000000000000000000000000000000000000000000000000000000000000022b61363c565b6108b591906135f1565b506001600160a01b031660009081526007602052604090205490565b919050565b600e546001600160a01b03163314610fd25760405162461bcd60e51b81526004016109b59061353b565b610fdc60006126f0565b565b600e546001600160a01b031633146110085760405162461bcd60e51b81526004016109b59061353b565b601254600160601b900463ffffffff16158015906110355750601254600160601b900463ffffffff164210155b6110815760405162461bcd60e51b815260206004820152601960248201527f50726573616c6520686173206e6f742066696e69736865642e0000000000000060448201526064016109b5565b601254600160e01b900463ffffffff16158015906110ae5750601254600160e01b900463ffffffff164210155b6110fa5760405162461bcd60e51b815260206004820152601860248201527f5075626c696320686173206e6f742066696e69736865642e000000000000000060448201526064016109b5565b60328111156111575760405162461bcd60e51b8152602060048201526024808201527f616674657253616c654465764d696e74206d6178426174636853697a65206973604482015263101a981760e11b60648201526084016109b5565b7f00000000000000000000000000000000000000000000000000000000000013888161118260115490565b61118c91906135f1565b11156111aa5760405162461bcd60e51b81526004016109b590613504565b60006111be6009546001600160a01b031690565b90506001600160a01b0381166112165760405162461bcd60e51b815260206004820152601a60248201527f6465764d696e742061646472657373206973206e6f742073657400000000000060448201526064016109b5565b60005b828110156112855761122f601180546001019055565b600061123a60115490565b905061127283827f000000000000000000000000000000000000000000000000000000000000022b5b61126d91906135f1565b612742565b508061127d816136ba565b915050611219565b507f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f816112b160115490565b604080516001600160a01b03909316835260208301919091520160405180910390a15050565b600e546001600160a01b031633146113015760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b6060600180546108ca9061367f565b600e546001600160a01b031633146113605760405162461bcd60e51b81526004016109b59061353b565b6012805467ffffffffffffffff19166001600160401b0392909216919091179055565b600e546001600160a01b031633146113ad5760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b610e4f338383612881565b600e546001600160a01b031633146114075760405162461bcd60e51b81526004016109b59061353b565b601280546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b3233146114835760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109b5565b601254600160801b90046001600160401b03166114e25760405162461bcd60e51b815260206004820181905260248201527f5075626c696353616c65207072696365206973206e6f7420736574746c65642e60448201526064016109b5565b601254600160c01b900463ffffffff1661154c5760405162461bcd60e51b815260206004820152602560248201527f5075626c696353616c652073746172742064617465206973206e6f74207365746044820152643a3632b21760d91b60648201526084016109b5565b601254600160c01b900463ffffffff164210156115ab5760405162461bcd60e51b815260206004820152601b60248201527f5075626c696353616c6520686173206e6f7420737461727465642e000000000060448201526064016109b5565b601254600160e01b900463ffffffff1615806115d55750601254600160e01b900463ffffffff1642105b6116215760405162461bcd60e51b815260206004820152601860248201527f5075626c696353616c65206861732066696e69736865642e000000000000000060448201526064016109b5565b6010548111156116865760405162461bcd60e51b815260206004820152602a60248201527f5175616e74697479206d757374206265206c657373207468616e206d6178206260448201526930ba31b41039b4bd329760b11b60648201526084016109b5565b33600090815260146020526040812080548392906116a59084906135f1565b909155507f00000000000000000000000000000000000000000000000000000000000013889050816116d660115490565b6116e091906135f1565b11156116fe5760405162461bcd60e51b81526004016109b590613504565b60125461171c908290600160801b90046001600160401b031661361d565b34101561175f5760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b60448201526064016109b5565b60005b818110156117d257611778601180546001019055565b600061178360115490565b905060006117b1827f000000000000000000000000000000000000000000000000000000000000022b6135f1565b90506117bd3382612742565b505080806117ca906136ba565b915050611762565b506012546117f1908290600160801b90046001600160401b031661361d565b3411156118505760125433906108fc9061181c908490600160801b90046001600160401b031661361d565b611826903461363c565b6040518115909202916000818181858888f1935050505015801561184e573d6000803e3d6000fd5b505b7f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3361187b60115490565b604080516001600160a01b03909316835260208301919091520160405180910390a150565b6118aa33836121de565b6118c65760405162461bcd60e51b81526004016109b590613570565b6118d284848484612950565b50505050565b600e546001600160a01b031633146119025760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b606061193382612111565b6119975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109b5565b6108b582612983565b600e546001600160a01b031633146119ca5760405162461bcd60e51b81526004016109b59061353b565b6012805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b600e546001600160a01b03163314611a1f5760405162461bcd60e51b81526004016109b59061353b565b601355565b600e546001600160a01b03163314611a4e5760405162461bcd60e51b81526004016109b59061353b565b6002600f541415611aa15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109b5565b6002600f55604051600090339047908381818185875af1925050503d8060008114611ae8576040519150601f19603f3d011682016040523d82523d6000602084013e611aed565b606091505b5050905080611b315760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109b5565b506001600f55565b600e546001600160a01b03163314611b635760405162461bcd60e51b81526004016109b59061353b565b6001600160a01b038116611bc85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b5565b610d85816126f0565b323314611c205760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109b5565b6012546001600160401b0316611c785760405162461bcd60e51b815260206004820152601e60248201527f5072657373616c65207072696365206973206e6f7420736574746c65642e000060448201526064016109b5565b601254600160401b900463ffffffff16611ce05760405162461bcd60e51b815260206004820152602360248201527f5072657373616c652073746172742064617465206973206e6f7420736574746c60448201526232b21760e91b60648201526084016109b5565b601254600160401b900463ffffffff16421015611d3f5760405162461bcd60e51b815260206004820152601960248201527f5072657373616c6520686173206e6f7420737461727465642e0000000000000060448201526064016109b5565b601254600160601b900463ffffffff161580611d695750601254600160601b900463ffffffff1642105b611dae5760405162461bcd60e51b8152602060048201526016602482015275283932b9b9b0b632903430b9903334b734b9b432b21760511b60448201526064016109b5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611df483601354836129b7565b611e405760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420666f756e6420696e2070726573616c6520616c6c6f776c6973742e0060448201526064016109b5565b33600090815260146020526040902054611e7a907f000000000000000000000000000000000000000000000000000000000000000a61363c565b821115611ec95760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420636c61696d61626c6520636f756e742e00000060448201526064016109b5565b3360009081526014602052604081208054849290611ee89084906135f1565b909155507f0000000000000000000000000000000000000000000000000000000000001388905082611f1960115490565b611f2391906135f1565b1115611f415760405162461bcd60e51b81526004016109b590613504565b601254611f589083906001600160401b031661361d565b341015611f9b5760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b60448201526064016109b5565b60005b82811015611fff57611fb4601180546001019055565b6000611fbf60115490565b9050611fec33827f000000000000000000000000000000000000000000000000000000000000022b611263565b5080611ff7816136ba565b915050611f9e565b506012546120179083906001600160401b031661361d565b34111561206f5760125433906108fc9061203b9085906001600160401b031661361d565b612045903461363c565b6040518115909202916000818181858888f1935050505015801561206d573d6000803e3d6000fd5b505b7f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3361209a60115490565b604080516001600160a01b03909316835260208301919091520160405180910390a1505050565b60006001600160e01b031982166380ac58cd60e01b14806120f257506001600160e01b03198216635b5e139f60e01b145b806108b557506301ffc9a760e01b6001600160e01b03198316146108b5565b6000818152600660205260408120546001600160a01b03161515806108b557507f000000000000000000000000000000000000000000000000000000000000022b82111580156108b557506009546001600160a01b0316151592915050565b600081815260086020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121a582610e53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121e982612111565b61224a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b5565b600061225583610e53565b9050806001600160a01b0316846001600160a01b0316148061229c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806122c05750836001600160a01b03166122b58461094d565b6001600160a01b0316145b949350505050565b826001600160a01b03166122db82610e53565b6001600160a01b03161461233f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109b5565b6001600160a01b0382166123a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b5565b6123ac8383836129cd565b6123b7600082612170565b816001600160a01b0316836001600160a01b031614612566577f000000000000000000000000000000000000000000000000000000000000022b81116124e2576009546001600160a01b03848116911614156124205761241b600a80546001019055565b61244f565b6001600160a01b038316600090815260076020526040812080546001929061244990849061363c565b90915550505b6009546001600160a01b03838116911614156124905761246f600a612a3c565b600081815260066020526040902080546001600160a01b0319169055612566565b600081815260066020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600790915281208054600192906124d79084906135f1565b909155506125669050565b6001600160a01b038316600090815260076020526040812080546001929061250b90849061363c565b90915550506001600160a01b03821660009081526007602052604081208054600192906125399084906135f1565b9091555050600081815260066020526040902080546001600160a01b0319166001600160a01b0384161790555b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b3c600a5490565b6001600160a01b0381166000908152600760205260409020541561262e5760405162461bcd60e51b815260206004820152602860248201527f45524337323146443a206465764d696e74416464726573732073686f756c6420604482015267626520656d70747960c01b60648201526084016109b5565b600980546001600160a01b038381166001600160a01b03198316179092551660006126767f000000000000000000000000000000000000000000000000000000000000022b90565b905060015b8181116118d25780846001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806126cd816136ba565b91505061267b565b610aeb600d8383612f54565b6060600d80546108ca9061367f565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166127985760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b5565b6127a181612111565b156127ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b5565b6127fa600083836129cd565b6001600160a01b03821660009081526007602052604081208054600192906128239084906135f1565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156128e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61295b8484846122c8565b61296784848484612a93565b6118d25760405162461bcd60e51b81526004016109b5906134b2565b6060600d61299083612ba0565b6040516020016129a19291906133a8565b6040516020818303038152906040529050919050565b6000826129c48584612cb9565b14949350505050565b6001600160a01b038316158015906129f75750816001600160a01b0316836001600160a01b031614155b15612a0657612a068382612d3b565b6001600160a01b038216612a1957505050565b826001600160a01b0316826001600160a01b031614610aeb57610aeb8282612e1a565b805480612a8b5760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f77000000000060448201526064016109b5565b600019019055565b60006001600160a01b0384163b15612b9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ad7903390899088908890600401613462565b602060405180830381600087803b158015612af157600080fd5b505af1925050508015612b21575060408051601f3d908101601f19168201909252612b1e9181019061328d565b60015b612b7b573d808015612b4f576040519150601f19603f3d011682016040523d82523d6000602084013e612b54565b606091505b508051612b735760405162461bcd60e51b81526004016109b5906134b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122c0565b506001949350505050565b606081612bc45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bee5780612bd8816136ba565b9150612be79050600a83613609565b9150612bc8565b6000816001600160401b03811115612c1657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c40576020820181803683370190505b5090505b84156122c057612c5560018361363c565b9150612c62600a866136d5565b612c6d9060306135f1565b60f81b818381518110612c9057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612cb2600a86613609565b9450612c44565b600081815b8451811015612d33576000858281518110612ce957634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612d0f5760008381526020829052604090209250612d20565b600081815260208490526040902092505b5080612d2b816136ba565b915050612cbe565b509392505050565b6009546001600160a01b038381169116141580612d7757507f000000000000000000000000000000000000000000000000000000000000022b81115b15610e4f5760006001612d8984610f1e565b612d93919061363c565b6000838152600c6020526040902054909150808214612de6576001600160a01b0384166000908152600b602090815260408083208584528252808320548484528184208190558352600c90915290208190555b506000918252600c602090815260408084208490556001600160a01b03949094168352600b81528383209183525290812055565b6000612e2583610f1e565b9050612e396009546001600160a01b031690565b6001600160a01b0316836001600160a01b0316148015612e7957507f000000000000000000000000000000000000000000000000000000000000022b8211155b15612f2157612e866125ac565b612eb0907f000000000000000000000000000000000000000000000000000000000000022b61363c565b811115610aeb576001600160a01b0383166000908152600b6020526040812081612edb60018561363c565b815260208082019290925260409081016000908120546001600160a01b0388168252600b845282822086835284528282208190558152600c909252902082905550505050565b6001600160a01b03929092166000908152600b602090815260408083208584528252808320849055928252600c90522055565b828054612f609061367f565b90600052602060002090601f016020900481019282612f825760008555612fc8565b82601f10612f9b5782800160ff19823516178555612fc8565b82800160010185558215612fc8579182015b82811115612fc8578235825591602001919060010190612fad565b50612fd4929150612fd8565b5090565b5b80821115612fd45760008155600101612fd9565b80356001600160a01b0381168114610fa357600080fd5b600060208284031215613015578081fd5b61301e82612fed565b9392505050565b60008060408385031215613037578081fd5b61304083612fed565b915061304e60208401612fed565b90509250929050565b60008060006060848603121561306b578081fd5b61307484612fed565b925061308260208501612fed565b9150604084013590509250925092565b600080600080608085870312156130a7578081fd5b6130b085612fed565b935060206130bf818701612fed565b93506040860135925060608601356001600160401b03808211156130e1578384fd5b818801915088601f8301126130f4578384fd5b81358181111561310657613106613715565b613118601f8201601f191685016135c1565b9150808252898482850101111561312d578485fd5b8084840185840137810190920192909252939692955090935050565b6000806040838503121561315b578182fd5b61316483612fed565b915060208301358015158114613178578182fd5b809150509250929050565b60008060408385031215613195578182fd5b61319e83612fed565b946020939093013593505050565b600080604083850312156131be578182fd5b82356001600160401b03808211156131d4578384fd5b818501915085601f8301126131e7578384fd5b81356020828211156131fb576131fb613715565b8160051b925061320c8184016135c1565b8281528181019085830185870184018b1015613226578889fd5b8896505b8487101561324857803583526001969096019591830191830161322a565b509997909101359750505050505050565b60006020828403121561326a578081fd5b5035919050565b600060208284031215613282578081fd5b813561301e8161372b565b60006020828403121561329e578081fd5b815161301e8161372b565b600080602083850312156132bb578182fd5b82356001600160401b03808211156132d1578384fd5b818501915085601f8301126132e4578384fd5b8135818111156132f2578485fd5b866020828501011115613303578485fd5b60209290920196919550909350505050565b600060208284031215613326578081fd5b813563ffffffff8116811461301e578182fd5b60006020828403121561334a578081fd5b81356001600160401b038116811461301e578182fd5b60008151808452613378816020860160208601613653565b601f01601f19169290920160200192915050565b6000815161339e818560208601613653565b9290920192915050565b600080845482600182811c9150808316806133c457607f831692505b60208084108214156133e457634e487b7160e01b87526022600452602487fd5b8180156133f8576001811461340957613435565b60ff19861689528489019650613435565b60008b815260209020885b8681101561342d5781548b820152908501908301613414565b505084890196505b505050505050613459613448828661338c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061349590830184613360565b9695505050505050565b60208152600061301e6020830184613360565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526017908201527f496e73756666696369656e7420696e76656e746f72792e000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f191681016001600160401b03811182821017156135e9576135e9613715565b604052919050565b60008219821115613604576136046136e9565b500190565b600082613618576136186136ff565b500490565b6000816000190483118215151615613637576136376136e9565b500290565b60008282101561364e5761364e6136e9565b500390565b60005b8381101561366e578181015183820152602001613656565b838111156118d25750506000910152565b600181811c9082168061369357607f821691505b602082108114156136b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136ce576136ce6136e9565b5060010190565b6000826136e4576136e46136ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8557600080fdfea26469706673582212205eaf61c01d7f695619072840c1219b697a62620978d5a982a96ee5e8b294136664736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000022b0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : devMintInventory_ (uint256): 555
Arg [1] : saleMintInventory_ (uint256): 5000
Arg [2] : presaleMaxClaimableCountPerAddress_ (uint256): 10
Arg [3] : saleMintMaxBatchSize_ (uint256): 10

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000022b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a


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.