ETH Price: $3,450.12 (+0.12%)
Gas: 2 Gwei

Token

MutantBioMorphans (MBM)
 

Overview

Max Total Supply

268 MBM

Holders

154

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nft-boutique.eth
Balance
1 MBM
0x114c7dba538049260e3c4919e98447943f9f228a
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:
MutantBioMorphans

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 21 : MutantBioMorphans.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/interfaces/IERC165.sol';
import '@openzeppelin/contracts/interfaces/IERC2981.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract MutantBioMorphans is ERC721Enumerable, Ownable, Pausable, ReentrancyGuard, IERC2981 {
  using Strings for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  bool public saleActive = false;
  bool public transferActive = true;
  uint8 public redeemedGiveaways;
  uint8 private stage;
  uint8 public constant MINT_BATCH_LIMIT = 5; // Max number of Tokens minted in a single txn
  uint8 public constant RESERVED_GIVEAWAYS = 30; // Tokens reserved for giveaway list
  uint16 public constant MAX_TOKENS = 1170; // Max number of token sold in sale
  uint16 public constant SPLIT_BASE = 10000;
  uint16 internal royalty = 700; // base 10000, 7%
  uint16 public constant BASE = 10000;


  string public PROVENANCE_HASH = '';
  string private baseURI;
  string private tokenSuffixURI;
  string private contractMetadata = 'contract.json';

  uint256 public constant SALE_PRICE = 65000000000000000; // 0.065 ETH
  uint256 public constant EVOLVE_PRICE = 25000000000000000; // 0.025 ETH

  uint256 public saleStartsAt;
  uint256 public publicsaleStartsAt;
  uint256 public privatesaleStartsAt;
  uint256 public privatesaleEndsAt;

  bytes32 public whitelistMerkleRoot;

  bytes32 public redeemMerkleRoot;

  address[] private recipients;
  uint16[] private splits;

  mapping(uint256 => uint8) private evolutionLevel;

  mapping(address => bool) public giveawayRedeemed;

  mapping(address => bool) public proxyRegistryAddress;

  event TokenMinted(address indexed owner, uint256 indexed quantity);
  event TokenEvolved(uint256 indexed id, uint8 indexed level, address indexed owner);
  event SaleStatusChange(address indexed issuer, bool indexed status);
  event TransferStatusChange(address indexed issuer, bool indexed status);
  event ContractWithdraw(address indexed initiator, uint256 amount);
  event ContractWithdrawToken(address indexed initiator, address indexed token, uint256 amount);
  event ProvenanceHashSet(address indexed initiator, string previousHash, string newHash);
  event WithdrawAddressChanged(address indexed previousAddress, address indexed newAddress);


  constructor(
    uint256 _saleStartTime,
    uint256 _privateSaleEndsAt,
    uint256 _publicSaleStartsAt,
    string memory _baseContractURI,
    string memory _tokenSuffixURI,
    string memory _provenaceHash,
    address[] memory _recipients,
    uint16[] memory _splits,
    address _proxyAddress
  ) ERC721('MutantBioMorphans', 'MBM') {
    baseURI = _baseContractURI;
    tokenSuffixURI = _tokenSuffixURI;
    saleStartsAt = _saleStartTime; // Unix Timestamp
    privatesaleStartsAt = saleStartsAt; // Start Private Sale,
    privatesaleEndsAt = _privateSaleEndsAt; // End of Private Sale
    publicsaleStartsAt = _publicSaleStartsAt; // Start of Public Sale
    PROVENANCE_HASH = _provenaceHash;
    recipients = _recipients;
    splits = _splits;
    proxyRegistryAddress[_proxyAddress] = true;
    stage = 1;
  }

  function mintNFT(address recipient, uint8 numTokens) external onlyOwner {
    require(block.timestamp >= (publicsaleStartsAt), 'Sale not active');
    require((_tokenIds.current() + numTokens) <= MAX_TOKENS + redeemedGiveaways, 'Sale sold');
    for (uint8 i = 0; i < numTokens; i++) {
      _tokenIds.increment();
      evolutionLevel[_tokenIds.current()] = 3;
      _safeMint(recipient, _tokenIds.current());
    }
    emit TokenMinted(recipient, numTokens);
  }

  function mintGiveawayNFT(bytes32[] memory proof, uint8 numTokens) external {
    require(block.timestamp >= (saleStartsAt), 'Sale not active');
    require(!giveawayRedeemed[msg.sender], 'Already redeemed');
    require((numTokens + redeemedGiveaways) <= RESERVED_GIVEAWAYS, 'All Giveaways Redeemed');
    require(MerkleProof.verify(proof, redeemMerkleRoot, keccak256(abi.encodePacked(msg.sender, numTokens))), 'Restricted Access');
    giveawayRedeemed[msg.sender] = true;
    for (uint8 i = 0; i < numTokens; i++) {
      _tokenIds.increment();
      unchecked {
        redeemedGiveaways++;
      }
      evolutionLevel[_tokenIds.current()] = 3;
      _safeMint(msg.sender, _tokenIds.current());
    }
    emit TokenMinted(msg.sender, numTokens);
  }

  function evolve(uint256 tokenId) external payable {
    require(evolutionLevel[tokenId] < 5, 'Token Fully Evolved');
    require(stage > 2, 'Can not evolve yet');
    require(msg.value >= EVOLVE_PRICE, 'Insufficient ETH');
    require(msg.sender == super.ownerOf(tokenId), 'Access denied');
    unchecked {
      evolutionLevel[tokenId]++;
    }
    emit TokenEvolved(tokenId, evolutionLevel[tokenId], msg.sender);
  }

  function tokenLevel(uint256 tokenId) external view returns (uint8) {
    if (stage == 1 || stage == 2) return stage;
    return evolutionLevel[tokenId];
  }

  function advanceStage() external onlyOwner {
    require(stage < 3, 'Not permitted');
    unchecked {
      stage++;
    }
    emit TokenEvolved(0, stage, msg.sender);
  }

  function setWhitelistMerkleRoot(bytes32 _root) external onlyOwner {
    whitelistMerkleRoot = _root;
  }

  function setRedeemMerkleRoot(bytes32 _root) external onlyOwner {
    redeemMerkleRoot = _root;
  }

  /**
   * @dev mints `numTokens` tokens and assigns it to
   * `msg.sender` by calling _safeMint function.
   *
   * Emits a {TokenMinted} event.
   * Emits two {TransferSingle} events via ERC721 Contract.
   *
   * Requirements:
   * - `saleActive` must be set to true.
   * - Current timestamp must greater than or equal `saleStartsAt`.
   * - Current timestamp must within period of private sale `privatesaleStartsAt` - `privatesaleEndsAt`.
   * - `msg.sender` is among whitelisted memebrs based on the merkle proof provided
   * - Ether amount sent greater or equal the base price multipled by `numTokens`.
   * - `numTokens` within limits of max number of tokens minted in single txn.
   * - Max number of tokens for the private sale not reahced
   * @param numTokens - Number of tokens to be minted
   * @param proof -The merkle proof for the whitelisted address
   */
  function mintPrivateSale(uint8 numTokens, bytes32[] memory proof) external payable {
    require(!Address.isContract(msg.sender), 'Cannot mint to a contract');
    uint256 time = (block.timestamp);
    require(saleActive && time >= (saleStartsAt), 'Sale not active');
    require(time > (privatesaleStartsAt) && time < (privatesaleEndsAt), 'Private sale over');

    require((_tokenIds.current() + numTokens) <= MAX_TOKENS + redeemedGiveaways, 'Private sale sold');

    // bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(proof, whitelistMerkleRoot, keccak256(abi.encodePacked(msg.sender))), 'Restricted Access');

    require(msg.value >= SALE_PRICE * numTokens, 'Insufficient ETH');
    require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Invalid Num Token');

    for (uint256 i = 0; i < numTokens; i++) {
      _tokenIds.increment();
      evolutionLevel[_tokenIds.current()] = 3;
      _safeMint(msg.sender, _tokenIds.current());
    }

    emit TokenMinted(msg.sender, numTokens);
  }

  /**
   * @dev mints `numTokens` tokens and assigns it to
   * `msg.sender` by calling _safeMint function.
   *
   * Emits a {TokenMinted} event.
   * Emits two {TransferSingle} events via ERC721 Contract.
   *
   * Requirements:
   * - `saleActive` must be set to true.
   * - Current timestamp must greater than or equal `saleStartsAt`.
   * - Current timestamp must within period of public sale `publicsaleStartsAt` - `publicsaleEndsAt`.
   * - Ether amount sent greater or equal the current price multipled by `numTokens`.
   * - `numTokens` within limits of max number of tokens minted in single txn.
   * - Max number of tokens for the sale not reahced
   * @param numTokens - Number of tokens to be minted
   */
  function mintPublicSale(uint8 numTokens) external payable {
    require(!Address.isContract(msg.sender), 'Cannot mint to a contract');

    require(saleActive && block.timestamp >= (publicsaleStartsAt), 'Sale not active');

    require(msg.value >= SALE_PRICE * numTokens, 'Insufficient ETH');
    require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Wrong Num Token');
    require((_tokenIds.current() + numTokens) <= MAX_TOKENS + redeemedGiveaways, 'Public sale sold');
    for (uint8 i = 0; i < numTokens; i++) {
      _tokenIds.increment();
      evolutionLevel[_tokenIds.current()] = 3;
      _safeMint(msg.sender, _tokenIds.current());
    }
    emit TokenMinted(msg.sender, numTokens);
  }

  function setBaseURI(string memory baseContractURI) external onlyOwner {
    baseURI = baseContractURI;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

  /**
   * @dev returns the base contract metadata json object
   * this metadat file is used by OpenSea see {https://docs.opensea.io/docs/contract-level-metadata}
   *
   */
  function contractURI() external view returns (string memory) {
    string memory baseContractURI = _baseURI();
    return string(abi.encodePacked(baseContractURI, contractMetadata));
  }

  /**
   * @dev Changes the sale status 'saleActive' from active to not active and vice versa
   *
   * Only Contract Owner can execute
   *
   * Emits a {SaleStatusChange} event.
   */
  function changeSaleStatus() external onlyOwner {
    saleActive = !saleActive;
    emit SaleStatusChange(msg.sender, saleActive);
  }

  /**
   * @dev Changes the sale status 'transferActive' from active to not active and vice versa
   *
   * Only Contract Owner can execute
   *
   * Emits a {TransferStatusChange} event.
   */
  function changeTransferStatus() external onlyOwner {
    transferActive = !transferActive;
    emit TransferStatusChange(msg.sender, transferActive);
  }

  /**
   * @dev withdraws the contract balance and send it to the withdraw Addresses based on split ratio.
   *
   * Emits a {ContractWithdraw} event.
   */
  function withdraw() external nonReentrant onlyOwner {
    uint256 balance = address(this).balance;

    for (uint256 i = 0; i < recipients.length; i++) {
      (bool sent, ) = payable(recipients[i]).call{value: (balance * splits[i]) / SPLIT_BASE}('');
      require(sent, 'Withdraw Failed.');
    }

    emit ContractWithdraw(msg.sender, balance);
  }

  /// @notice Calculate the royalty payment
  /// @param _salePrice the sale price of the token
  function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) {
    return (address(this), (_salePrice * royalty) / BASE);
  }

  /// @dev set the royalty
  /// @param _royalty the royalty in base 10000, 700 = 7%
  function setRoyalty(uint16 _royalty) external onlyOwner {
    require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

    royalty = _royalty;
  }

  /// @dev withdraw ERC20 tokens divided by splits
  function withdrawTokens(address _tokenContract) external nonReentrant onlyOwner {
    IERC20 tokenContract = IERC20(_tokenContract);
    // transfer the token from address of Catbotica address
    uint256 balance = tokenContract.balanceOf(address(this));

    for (uint256 i = 0; i < recipients.length; i++) {
      tokenContract.transfer(recipients[i], (balance * splits[i]) / SPLIT_BASE);
    }

    emit ContractWithdrawToken(msg.sender, _tokenContract, balance);
  }

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

  function changeWithdrawAddress(address _recipient) external {
    require(_recipient != address(0), 'Cannot use zero address.');
    require(_recipient != address(this), 'Cannot use this contract address');
    require(!Address.isContract(_recipient), 'Cannot set recipient to a contract address');

    // loop over all the recipients and update the address
    bool _found = false;
    for (uint256 i = 0; i < recipients.length; i++) {
      // if the sender matches one of the recipients, update the address
      if (recipients[i] == msg.sender) {
        recipients[i] = _recipient;
        _found = true;
        break;
      }
    }
    require(_found, 'The sender is not a recipient.');
    emit WithdrawAddressChanged(msg.sender, _recipient);
  }

  function getRemSaleSupply() external view returns (uint256) {
    // if (_tokenIds.current() >= MAX_TOKENS) return 0;
    return (MAX_TOKENS + RESERVED_GIVEAWAYS - _tokenIds.current());
  }

  /**
   * @dev sets `PROVENANCE_HASH`
   *
   * Only Contract Owner can execute
   *
   * @param provenanceHash the string for the metadata and images hash
   */
  function setProvenanceHash(string memory provenanceHash) external onlyOwner {
    emit ProvenanceHashSet(msg.sender, PROVENANCE_HASH, provenanceHash);
    PROVENANCE_HASH = provenanceHash;
  }

  function setSplitRatio(uint16[] memory _splits) external onlyOwner {
    splits = _splits;
  }

  receive() external payable {}

  /**
   * Override isApprovedForAll to whitelisted marketplaces to enable gas-free listings.
   *
   */
  function isApprovedForAll(address _owner, address _operator) public view override returns (bool isOperator) {
    // check if this is an approved marketplace
    if (proxyRegistryAddress[_operator]) {
      return true;
    }
    // otherwise, use the default ERC721 isApprovedForAll()
    return super.isApprovedForAll(_owner, _operator);
  }

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

    require(!paused(),'ERC721Pausable: token transfer while paused');
    require(transferActive || from == address(0),'ERC721Pausable: token transfer while paused');
  }

  /*
   * Function to set status of proxy contracts addresses
   *
   */
  function setProxy(address _proxyAddress, bool _value) external onlyOwner {
    proxyRegistryAddress[_proxyAddress] = _value;
  }

  function pause() external onlyOwner {
    super._pause();
  }

  function unpause() external onlyOwner {
    super._unpause();
  }

}

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 3 of 21 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 21 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 21 : 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 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 8 of 21 : 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 9 of 21 : 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 10 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 11 of 21 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 21 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 14 of 21 : 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 15 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 16 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 {}
}

File 17 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

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

File 18 of 21 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 19 of 21 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 20 of 21 : 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 21 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"uint256","name":"_privateSaleEndsAt","type":"uint256"},{"internalType":"uint256","name":"_publicSaleStartsAt","type":"uint256"},{"internalType":"string","name":"_baseContractURI","type":"string"},{"internalType":"string","name":"_tokenSuffixURI","type":"string"},{"internalType":"string","name":"_provenaceHash","type":"string"},{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint16[]","name":"_splits","type":"uint16[]"},{"internalType":"address","name":"_proxyAddress","type":"address"}],"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":"initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdrawToken","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":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"previousHash","type":"string"},{"indexed":false,"internalType":"string","name":"newHash","type":"string"}],"name":"ProvenanceHashSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"SaleStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"uint8","name":"level","type":"uint8"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"TokenEvolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TokenMinted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"TransferStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"WithdrawAddressChanged","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EVOLVE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_BATCH_LIMIT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_GIVEAWAYS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPLIT_BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advanceStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeTransferStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"changeWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"evolve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giveawayRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"proxyRegistryAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemedGiveaways","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartsAt","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":"baseContractURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRedeemMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"_splits","type":"uint16[]"}],"name":"setSplitRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenLevel","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"transferActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600d805465ffff0000ffff19166502bc0000010017905560a06040819052600060808190526200003291600e916200024f565b5060408051808201909152600d8082526c31b7b73a3930b1ba173539b7b760991b602090920191825262000069916011916200024f565b503480156200007757600080fd5b5060405162004fef38038062004fef8339810160408190526200009a9162000604565b60408051808201825260118152704d7574616e7442696f4d6f727068616e7360781b6020808301918252835180850190945260038452624d424d60e81b908401528151919291620000ee916000916200024f565b508051620001049060019060208401906200024f565b505050620001216200011b620001f960201b60201c565b620001fd565b600a805460ff60a01b191690556001600b5585516200014890600f9060208901906200024f565b5084516200015e9060109060208801906200024f565b50601289905560148990556015889055601387905583516200018890600e9060208701906200024f565b5082516200019e906018906020860190620002de565b508151620001b490601990602085019062000336565b506001600160a01b03166000908152601c60205260409020805460ff191660011790555050600d805463ff000000191663010000001790555062000754945050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025d9062000717565b90600052602060002090601f016020900481019282620002815760008555620002cc565b82601f106200029c57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cc578251825591602001919060010190620002af565b50620002da929150620003dc565b5090565b828054828255906000526020600020908101928215620002cc579160200282015b82811115620002cc57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002ff565b82805482825590600052602060002090600f01601090048101928215620002cc5791602002820160005b83821115620003a257835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000360565b8015620003d25782816101000a81549061ffff0219169055600201602081600101049283019260010302620003a2565b5050620002da9291505b5b80821115620002da5760008155600101620003dd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004345762000434620003f3565b604052919050565b600082601f8301126200044e57600080fd5b81516001600160401b038111156200046a576200046a620003f3565b602062000480601f8301601f1916820162000409565b82815285828487010111156200049557600080fd5b60005b83811015620004b557858101830151828201840152820162000498565b83811115620004c75760008385840101525b5095945050505050565b60006001600160401b03821115620004ed57620004ed620003f3565b5060051b60200190565b80516001600160a01b03811681146200050f57600080fd5b919050565b600082601f8301126200052657600080fd5b815160206200053f6200053983620004d1565b62000409565b82815260059290921b840181019181810190868411156200055f57600080fd5b8286015b8481101562000585576200057781620004f7565b835291830191830162000563565b509695505050505050565b600082601f830112620005a257600080fd5b81516020620005b56200053983620004d1565b82815260059290921b84018101918181019086841115620005d557600080fd5b8286015b848110156200058557805161ffff81168114620005f65760008081fd5b8352918301918301620005d9565b60008060008060008060008060006101208a8c0312156200062457600080fd5b895160208b015160408c015160608d0151929b5090995097506001600160401b03808211156200065357600080fd5b620006618d838e016200043c565b975060808c01519150808211156200067857600080fd5b620006868d838e016200043c565b965060a08c01519150808211156200069d57600080fd5b620006ab8d838e016200043c565b955060c08c0151915080821115620006c257600080fd5b620006d08d838e0162000514565b945060e08c0151915080821115620006e757600080fd5b50620006f68c828d0162000590565b925050620007086101008b01620004f7565b90509295985092959850929598565b600181811c908216806200072c57607f821691505b602082108114156200074e57634e487b7160e01b600052602260045260246000fd5b50919050565b61488b80620007646000396000f3fe6080604052600436106103bc5760003560e01c8063715018a6116101f2578063bdcd27d51161010d578063e985e9c5116100a0578063f47c84c51161006f578063f47c84c514610aa1578063f891cf0314610ab7578063fc8ff57914610ad7578063ff1b655614610aed57600080fd5b8063e985e9c514610a4e578063ec342ad01461099d578063f119f56714610a6e578063f2fde38b14610a8157600080fd5b8063c87b56dd116100dc578063c87b56dd146109ee578063ca1d953c14610a0e578063d61c943a14610a23578063e8a3d48514610a3957600080fd5b8063bdcd27d51461097d578063c197b0f71461099d578063c31f2d1d146109c6578063c33f48fd146109d957600080fd5b8063a4b379b811610185578063ab8ece8b11610154578063ab8ece8b146108fd578063b63e91f91461091d578063b88d4fde1461093d578063bd32fb661461095d57600080fd5b8063a4b379b81461088d578063a4cd6c61146108a2578063a785c40e146108b7578063aa98e0c6146108e757600080fd5b80638da5cb5b116101c15780638da5cb5b146108255780638fcde9001461084357806395d89b4114610858578063a22cb4651461086d57600080fd5b8063715018a6146107c5578063756059bd146107da5780637f205a74146107f55780638456cb591461081057600080fd5b80632dc04e46116102e25780634f6ccce7116102755780635c975abb116102445780635c975abb1461074c5780636352211e1461076b57806368428a1b1461078b57806370a08231146107a557600080fd5b80634f6ccce7146106d657806351a39a58146106f657806355f804b314610716578063583e88ab1461073657600080fd5b80633f4ba83a116102b15780633f4ba83a1461066b57806342842e0e1461068057806345763d0c146106a057806349df728c146106b657600080fd5b80632dc04e46146106005780632f745c591461061657806336e79a5a146106365780633ccfd60b1461065657600080fd5b806318160ddd1161035a578063254687c311610329578063254687c31461056e578063291bdd061461058e5780632a55205a146105a15780632ca47c6d146105e057600080fd5b806318160ddd146104e05780631f3e1be9146104ff5780632331af611461052f57806323b872dd1461054e57600080fd5b8063095ea7b311610396578063095ea7b3146104575780631096952314610479578063143a3f92146104995780631453671d146104c057600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063081812fc1461041f57600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e3366004613f46565b610b02565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610b46565b6040516103f49190613fbb565b34801561042b57600080fd5b5061043f61043a366004613fce565b610bd8565b6040516001600160a01b0390911681526020016103f4565b34801561046357600080fd5b50610477610472366004614003565b610c72565b005b34801561048557600080fd5b506104776104943660046140cc565b610da4565b3480156104a557600080fd5b506104ae600581565b60405160ff90911681526020016103f4565b3480156104cc57600080fd5b506104776104db366004614115565b610e47565b3480156104ec57600080fd5b506008545b6040519081526020016103f4565b34801561050b57600080fd5b506103e861051a366004614115565b601c6020526000908152604090205460ff1681565b34801561053b57600080fd5b50600d546103e890610100900460ff1681565b34801561055a57600080fd5b50610477610569366004614130565b611096565b34801561057a57600080fd5b50610477610589366004613fce565b61111d565b61047761059c36600461420c565b61116a565b3480156105ad57600080fd5b506105c16105bc36600461425a565b6114df565b604080516001600160a01b0390931683526020830191909152016103f4565b3480156105ec57600080fd5b506104776105fb36600461427c565b611518565b34801561060c57600080fd5b506104f160145481565b34801561062257600080fd5b506104f1610631366004614003565b6116d6565b34801561064257600080fd5b506104776106513660046142c1565b61177e565b34801561066257600080fd5b50610477611866565b34801561067757600080fd5b50610477611a71565b34801561068c57600080fd5b5061047761069b366004614130565b611ac3565b3480156106ac57600080fd5b506104f160125481565b3480156106c257600080fd5b506104776106d1366004614115565b611ade565b3480156106e257600080fd5b506104f16106f1366004613fce565b611d85565b34801561070257600080fd5b506104776107113660046142ea565b611e29565b34801561072257600080fd5b506104776107313660046140cc565b611e9c565b34801561074257600080fd5b506104f160135481565b34801561075857600080fd5b50600a54600160a01b900460ff166103e8565b34801561077757600080fd5b5061043f610786366004613fce565b611ef7565b34801561079757600080fd5b50600d546103e89060ff1681565b3480156107b157600080fd5b506104f16107c0366004614115565b611f82565b3480156107d157600080fd5b5061047761201c565b3480156107e657600080fd5b506104f16658d15e1762800081565b34801561080157600080fd5b506104f166e6ed27d666800081565b34801561081c57600080fd5b5061047761206e565b34801561083157600080fd5b50600a546001600160a01b031661043f565b34801561084f57600080fd5b506104776120be565b34801561086457600080fd5b5061041261215d565b34801561087957600080fd5b506104776108883660046142ea565b61216c565b34801561089957600080fd5b506104f1612177565b3480156108ae57600080fd5b506104ae601e81565b3480156108c357600080fd5b506103e86108d2366004614115565b601b6020526000908152604090205460ff1681565b3480156108f357600080fd5b506104f160165481565b34801561090957600080fd5b506104ae610918366004613fce565b6121a2565b34801561092957600080fd5b50610477610938366004614321565b6121f9565b34801561094957600080fd5b50610477610958366004614366565b61248d565b34801561096957600080fd5b50610477610978366004613fce565b61251b565b34801561098957600080fd5b506104776109983660046143e2565b612568565b3480156109a957600080fd5b506109b361271081565b60405161ffff90911681526020016103f4565b6104776109d436600461447a565b6125c3565b3480156109e557600080fd5b50610477612845565b3480156109fa57600080fd5b50610412610a09366004613fce565b612948565b348015610a1a57600080fd5b50610477612a34565b348015610a2f57600080fd5b506104f160175481565b348015610a4557600080fd5b50610412612ac3565b348015610a5a57600080fd5b506103e8610a69366004614495565b612afa565b610477610a7c366004613fce565b612b51565b348015610a8d57600080fd5b50610477610a9c366004614115565b612d16565b348015610aad57600080fd5b506109b361049281565b348015610ac357600080fd5b50600d546104ae9062010000900460ff1681565b348015610ae357600080fd5b506104f160155481565b348015610af957600080fd5b50610412612de6565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610b405750610b4082612e74565b92915050565b606060008054610b55906144bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b81906144bf565b8015610bce5780601f10610ba357610100808354040283529160200191610bce565b820191906000526020600020905b815481529060010190602001808311610bb157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c7d82611ef7565b9050806001600160a01b0316836001600160a01b03161415610d075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c4d565b336001600160a01b0382161480610d235750610d238133612afa565b610d955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c4d565b610d9f8383612eb2565b505050565b600a546001600160a01b03163314610dec5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c600e83604051610e289291906144fa565b60405180910390a28051610e4390600e906020840190613df7565b5050565b6001600160a01b038116610e9d5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420757365207a65726f20616464726573732e00000000000000006044820152606401610c4d565b6001600160a01b038116301415610ef65760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420757365207468697320636f6e747261637420616464726573736044820152606401610c4d565b803b15610f6b5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f742073657420726563697069656e7420746f206120636f6e74726160448201527f63742061646472657373000000000000000000000000000000000000000000006064820152608401610c4d565b6000805b60185481101561100e57336001600160a01b031660188281548110610f9657610f96614593565b6000918252602090912001546001600160a01b03161415610ffc578260188281548110610fc557610fc5614593565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506001915061100e565b80611006816145bf565b915050610f6f565b508061105c5760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610c4d565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b6110a03382612f2d565b6111125760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c4d565b610d9f838383613004565b600a546001600160a01b031633146111655760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b601755565b333b156111b95760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610c4d565b600d54429060ff1680156111cf57506012548110155b61120d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b6014548111801561121f575060155481105b61126b5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610c4d565b600d546112839062010000900460ff166104926145da565b61ffff168360ff16611294600c5490565b61129e9190614600565b11156112ec5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610c4d565b6016546040516bffffffffffffffffffffffff193360601b16602082015261132f9184916034015b604051602081830303815290604052805190602001206131e9565b61137b5760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610c4d565b61138f60ff841666e6ed27d6668000614618565b3410156113d15760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610c4d565b600560ff8416118015906113e8575060008360ff16115b6114345760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964204e756d20546f6b656e0000000000000000000000000000006044820152606401610c4d565b60005b8360ff168110156114a957611450600c80546001019055565b6003601a600061145f600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff16021790555061149733611492600c5490565b6131ff565b806114a1816145bf565b915050611437565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b600d54600090819030906127109061150390640100000000900461ffff1686614618565b61150d919061464d565b915091509250929050565b600a546001600160a01b031633146115605760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6013544210156115a45760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b600d546115bc9062010000900460ff166104926145da565b61ffff168160ff166115cd600c5490565b6115d79190614600565b11156116255760405162461bcd60e51b815260206004820152600960248201527f53616c6520736f6c6400000000000000000000000000000000000000000000006044820152606401610c4d565b60005b8160ff168160ff16101561169857611644600c80546001019055565b6003601a6000611653600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff16021790555061168683611492600c5490565b8061169081614661565b915050611628565b5060405160ff8216906001600160a01b038416907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b60006116e183611f82565b82106117555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c4d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146117c65760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6103e88161ffff1611156118425760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610c4d565b600d805461ffff9092166401000000000265ffff0000000019909216919091179055565b6002600b5414156118b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c4d565b6002600b55600a546001600160a01b031633146119065760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b4760005b601854811015611a335760006018828154811061192957611929614593565b600091825260209091200154601980546001600160a01b039092169161271091908590811061195a5761195a614593565b6000918252602090912060108204015461198491600f166002026101000a900461ffff1686614618565b61198e919061464d565b604051600081818185875af1925050503d80600081146119ca576040519150601f19603f3d011682016040523d82523d6000602084013e6119cf565b606091505b5050905080611a205760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610c4d565b5080611a2b816145bf565b91505061190a565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b600a546001600160a01b03163314611ab95760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b611ac1613219565b565b610d9f8383836040518060200160405280600081525061248d565b6002600b541415611b315760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c4d565b6002600b55600a546001600160a01b03163314611b7e5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611bdb57600080fd5b505afa158015611bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c139190614681565b905060005b601854811015611d3a57826001600160a01b031663a9059cbb60188381548110611c4457611c44614593565b600091825260209091200154601980546001600160a01b0390921691612710919086908110611c7557611c75614593565b60009182526020909120601082040154611c9f91600f166002026101000a900461ffff1687614618565b611ca9919061464d565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611cef57600080fd5b505af1158015611d03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d27919061469a565b5080611d32816145bf565b915050611c18565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b6000611d9060085490565b8210611e045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c4d565b60088281548110611e1757611e17614593565b90600052602060002001549050919050565b600a546001600160a01b03163314611e715760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314611ee45760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b8051610e4390600f906020840190613df7565b6000818152600260205260408120546001600160a01b031680610b405760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c4d565b60006001600160a01b0382166120005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c4d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146120645760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b611ac160006132bf565b600a546001600160a01b031633146120b65760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b611ac161331e565b600a546001600160a01b031633146121065760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b600d805460ff610100808304821615810261ff001990931692909217928390556040519190920490911615159033907fb9a4950ae90b6bcc761282b0c8d2f676192c5a997e940263952be21f2f26e46490600090a3565b606060018054610b55906144bf565b610e433383836133b3565b6000612182600c5490565b61218f601e6104926145da565b61ffff1661219d91906146b7565b905090565b600d546000906301000000900460ff16600114806121cc5750600d546301000000900460ff166002145b156121e3575050600d546301000000900460ff1690565b506000908152601a602052604090205460ff1690565b60125442101561223d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b336000908152601b602052604090205460ff161561229d5760405162461bcd60e51b815260206004820152601060248201527f416c72656164792072656465656d6564000000000000000000000000000000006044820152606401610c4d565b600d54601e906122b69062010000900460ff16836146ce565b60ff1611156123075760405162461bcd60e51b815260206004820152601660248201527f416c6c204769766561776179732052656465656d6564000000000000000000006044820152606401610c4d565b6017546040516bffffffffffffffffffffffff193360601b1660208201527fff0000000000000000000000000000000000000000000000000000000000000060f884901b16603482015261235f918491603501611314565b6123ab5760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610c4d565b336000908152601b60205260408120805460ff191660011790555b8160ff168160ff161015612458576123e2600c80546001019055565b600d8054600160ff62010000808404821692909201160262ff0000199091161790556003601a6000612413600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff16021790555061244633611492600c5490565b8061245081614661565b9150506123c6565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b6124973383612f2d565b6125095760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c4d565b61251584848484613482565b50505050565b600a546001600160a01b031633146125635760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b601655565b600a546001600160a01b031633146125b05760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b8051610e43906019906020840190613e7b565b333b156126125760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610c4d565b600d5460ff16801561262657506013544210155b6126645760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b61267860ff821666e6ed27d6668000614618565b3410156126ba5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610c4d565b600560ff8216118015906126d1575060008160ff16115b61271d5760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610c4d565b600d546127359062010000900460ff166104926145da565b61ffff168160ff16612746600c5490565b6127509190614600565b111561279e5760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610c4d565b60005b8160ff168160ff161015612811576127bd600c80546001019055565b6003601a60006127cc600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506127ff33611492600c5490565b8061280981614661565b9150506127a1565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b600a546001600160a01b0316331461288d5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b600d546003630100000090910460ff16106128ea5760405162461bcd60e51b815260206004820152600d60248201527f4e6f74207065726d6974746564000000000000000000000000000000000000006044820152606401610c4d565b600d805463ff00000019811663010000009182900460ff90811660010181168302919091179283905560405133939290920416906000907f21100de99ce807b80fda5e0bd8c1a8a16605955b4807b9c721978e13bea5661c908290a4565b6000818152600260205260409020546060906001600160a01b03166129d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c4d565b60006129df613500565b905060008151116129ff5760405180602001604052806000815250612a2d565b80612a098461350f565b6010604051602001612a1d93929190614762565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314612a7c5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b600d805460ff19811660ff91821615908117909255604051911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b60606000612acf613500565b9050806011604051602001612ae5929190614794565b60405160208183030381529060405291505090565b6001600160a01b0381166000908152601c602052604081205460ff1615612b2357506001610b40565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16612a2d565b6000818152601a6020526040902054600560ff90911610612bb45760405162461bcd60e51b815260206004820152601360248201527f546f6b656e2046756c6c792045766f6c766564000000000000000000000000006044820152606401610c4d565b600d546002630100000090910460ff1611612c115760405162461bcd60e51b815260206004820152601260248201527f43616e206e6f742065766f6c76652079657400000000000000000000000000006044820152606401610c4d565b6658d15e17628000341015612c5b5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610c4d565b612c6481611ef7565b6001600160a01b0316336001600160a01b031614612cc45760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610c4d565b6000818152601a6020526040808220805460ff8082166001011660ff1990911681179091559051339284917f21100de99ce807b80fda5e0bd8c1a8a16605955b4807b9c721978e13bea5661c9190a450565b600a546001600160a01b03163314612d5e5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6001600160a01b038116612dda5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c4d565b612de3816132bf565b50565b600e8054612df3906144bf565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1f906144bf565b8015612e6c5780601f10612e4157610100808354040283529160200191612e6c565b820191906000526020600020905b815481529060010190602001808311612e4f57829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610b405750610b4082613641565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612ef482611ef7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612fa65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c4d565b6000612fb183611ef7565b9050806001600160a01b0316846001600160a01b03161480612fec5750836001600160a01b0316612fe184610bd8565b6001600160a01b0316145b80612ffc5750612ffc8185612afa565b949350505050565b826001600160a01b031661301782611ef7565b6001600160a01b0316146130935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c4d565b6001600160a01b03821661310e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c4d565b6131198383836136dc565b613124600082612eb2565b6001600160a01b038316600090815260036020526040812080546001929061314d9084906146b7565b90915550506001600160a01b038216600090815260036020526040812080546001929061317b908490614600565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826131f685846137d2565b14949350505050565b610e4382826040518060200160405280600081525061387e565b600a54600160a01b900460ff166132725760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610c4d565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff16156133785760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c4d565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586132a23390565b816001600160a01b0316836001600160a01b031614156134155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c4d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61348d848484613004565b613499848484846138fc565b6125155760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c4d565b6060600f8054610b55906144bf565b60608161354f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156135795780613563816145bf565b91506135729050600a8361464d565b9150613553565b60008167ffffffffffffffff8111156135945761359461402d565b6040519080825280601f01601f1916602001820160405280156135be576020820181803683370190505b5090505b8415612ffc576135d36001836146b7565b91506135e0600a866147b2565b6135eb906030614600565b60f81b81838151811061360057613600614593565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061363a600a8661464d565b94506135c2565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806136a457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b4057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610b40565b6136e7838383613a54565b600a54600160a01b900460ff16156137555760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c4d565b600d54610100900460ff168061377257506001600160a01b038316155b610d9f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c4d565b600081815b84518110156138765760008582815181106137f4576137f4614593565b60200260200101519050808311613836576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613863565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061386e816145bf565b9150506137d7565b509392505050565b6138888383613b0c565b61389560008484846138fc565b610d9f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c4d565b60006001600160a01b0384163b15613a4957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906139409033908990889088906004016147c6565b602060405180830381600087803b15801561395a57600080fd5b505af192505050801561398a575060408051601f3d908101601f1916820190925261398791810190614802565b60015b613a2f573d8080156139b8576040519150601f19603f3d011682016040523d82523d6000602084013e6139bd565b606091505b508051613a275760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ffc565b506001949350505050565b6001600160a01b038316613aaf57613aaa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613ad2565b816001600160a01b0316836001600160a01b031614613ad257613ad28382613c67565b6001600160a01b038216613ae957610d9f81613d04565b826001600160a01b0316826001600160a01b031614610d9f57610d9f8282613db3565b6001600160a01b038216613b625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c4d565b6000818152600260205260409020546001600160a01b031615613bc75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4d565b613bd3600083836136dc565b6001600160a01b0382166000908152600360205260408120805460019290613bfc908490614600565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613c7484611f82565b613c7e91906146b7565b600083815260076020526040902054909150808214613cd1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613d16906001906146b7565b60008381526009602052604081205460088054939450909284908110613d3e57613d3e614593565b906000526020600020015490508060088381548110613d5f57613d5f614593565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613d9757613d9761481f565b6001900381819060005260206000200160009055905550505050565b6000613dbe83611f82565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613e03906144bf565b90600052602060002090601f016020900481019282613e255760008555613e6b565b82601f10613e3e57805160ff1916838001178555613e6b565b82800160010185558215613e6b579182015b82811115613e6b578251825591602001919060010190613e50565b50613e77929150613f1b565b5090565b82805482825590600052602060002090600f01601090048101928215613e6b5791602002820160005b83821115613ee457835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613ea4565b8015613f125782816101000a81549061ffff0219169055600201602081600101049283019260010302613ee4565b5050613e779291505b5b80821115613e775760008155600101613f1c565b6001600160e01b031981168114612de357600080fd5b600060208284031215613f5857600080fd5b8135612a2d81613f30565b60005b83811015613f7e578181015183820152602001613f66565b838111156125155750506000910152565b60008151808452613fa7816020860160208601613f63565b601f01601f19169290920160200192915050565b602081526000612a2d6020830184613f8f565b600060208284031215613fe057600080fd5b5035919050565b80356001600160a01b0381168114613ffe57600080fd5b919050565b6000806040838503121561401657600080fd5b61401f83613fe7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561406c5761406c61402d565b604052919050565b600067ffffffffffffffff83111561408e5761408e61402d565b6140a1601f8401601f1916602001614043565b90508281528383830111156140b557600080fd5b828260208301376000602084830101529392505050565b6000602082840312156140de57600080fd5b813567ffffffffffffffff8111156140f557600080fd5b8201601f8101841361410657600080fd5b612ffc84823560208401614074565b60006020828403121561412757600080fd5b612a2d82613fe7565b60008060006060848603121561414557600080fd5b61414e84613fe7565b925061415c60208501613fe7565b9150604084013590509250925092565b803560ff81168114613ffe57600080fd5b600067ffffffffffffffff8211156141975761419761402d565b5060051b60200190565b600082601f8301126141b257600080fd5b813560206141c76141c28361417d565b614043565b82815260059290921b840181019181810190868411156141e657600080fd5b8286015b8481101561420157803583529183019183016141ea565b509695505050505050565b6000806040838503121561421f57600080fd5b6142288361416c565b9150602083013567ffffffffffffffff81111561424457600080fd5b614250858286016141a1565b9150509250929050565b6000806040838503121561426d57600080fd5b50508035926020909101359150565b6000806040838503121561428f57600080fd5b61429883613fe7565b91506142a66020840161416c565b90509250929050565b803561ffff81168114613ffe57600080fd5b6000602082840312156142d357600080fd5b612a2d826142af565b8015158114612de357600080fd5b600080604083850312156142fd57600080fd5b61430683613fe7565b91506020830135614316816142dc565b809150509250929050565b6000806040838503121561433457600080fd5b823567ffffffffffffffff81111561434b57600080fd5b614357858286016141a1565b9250506142a66020840161416c565b6000806000806080858703121561437c57600080fd5b61438585613fe7565b935061439360208601613fe7565b925060408501359150606085013567ffffffffffffffff8111156143b657600080fd5b8501601f810187136143c757600080fd5b6143d687823560208401614074565b91505092959194509250565b600060208083850312156143f557600080fd5b823567ffffffffffffffff81111561440c57600080fd5b8301601f8101851361441d57600080fd5b803561442b6141c28261417d565b81815260059190911b8201830190838101908783111561444a57600080fd5b928401925b8284101561446f57614460846142af565b8252928401929084019061444f565b979650505050505050565b60006020828403121561448c57600080fd5b612a2d8261416c565b600080604083850312156144a857600080fd5b6144b183613fe7565b91506142a660208401613fe7565b600181811c908216806144d357607f821691505b602082108114156144f457634e487b7160e01b600052602260045260246000fd5b50919050565b60408152600080845461450c816144bf565b806040860152606060018084166000811461452e576001811461454257614573565b60ff19851688840152608088019550614573565b8960005260208060002060005b8681101561456a5781548b820187015290840190820161454f565b8a018501975050505b5050505050828103602084015261458a8185613f8f565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156145d3576145d36145a9565b5060010190565b600061ffff8083168185168083038211156145f7576145f76145a9565b01949350505050565b60008219821115614613576146136145a9565b500190565b6000816000190483118215151615614632576146326145a9565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261465c5761465c614637565b500490565b600060ff821660ff811415614678576146786145a9565b60010192915050565b60006020828403121561469357600080fd5b5051919050565b6000602082840312156146ac57600080fd5b8151612a2d816142dc565b6000828210156146c9576146c96145a9565b500390565b600060ff821660ff84168060ff038211156146eb576146eb6145a9565b019392505050565b60008154614700816144bf565b60018281168015614718576001811461472957614758565b60ff19841687528287019450614758565b8560005260208060002060005b8581101561474f5781548a820152908401908201614736565b50505082870194505b5050505092915050565b60008451614774818460208901613f63565b845190830190614788818360208901613f63565b61446f818301866146f3565b600083516147a6818460208801613f63565b61458a818401856146f3565b6000826147c1576147c1614637565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526147f86080830184613f8f565b9695505050505050565b60006020828403121561481457600080fd5b8151612a2d81613f30565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b89a3495c411ff4c4df5a86888b0aa825f876585a610f5d103d42b84a71f2d4b64736f6c63430008090033000000000000000000000000000000000000000000000000000000006255a200000000000000000000000000000000000000000000000000000000006256f380000000000000000000000000000000000000000000000000000000006256f3800000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000280000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6d626d2e6c6173746b6e6f776e2e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040376130353236313164306664636638653936383530303933316438356439343966363038616239666532373137336563323561656239356236343765656431650000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f23862e3b839521ed9c3e3566c12c19950804b7a0000000000000000000000002fcb1162ea60a15aabe04728ca653b5ce0d7fe5100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000001b58

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c8063715018a6116101f2578063bdcd27d51161010d578063e985e9c5116100a0578063f47c84c51161006f578063f47c84c514610aa1578063f891cf0314610ab7578063fc8ff57914610ad7578063ff1b655614610aed57600080fd5b8063e985e9c514610a4e578063ec342ad01461099d578063f119f56714610a6e578063f2fde38b14610a8157600080fd5b8063c87b56dd116100dc578063c87b56dd146109ee578063ca1d953c14610a0e578063d61c943a14610a23578063e8a3d48514610a3957600080fd5b8063bdcd27d51461097d578063c197b0f71461099d578063c31f2d1d146109c6578063c33f48fd146109d957600080fd5b8063a4b379b811610185578063ab8ece8b11610154578063ab8ece8b146108fd578063b63e91f91461091d578063b88d4fde1461093d578063bd32fb661461095d57600080fd5b8063a4b379b81461088d578063a4cd6c61146108a2578063a785c40e146108b7578063aa98e0c6146108e757600080fd5b80638da5cb5b116101c15780638da5cb5b146108255780638fcde9001461084357806395d89b4114610858578063a22cb4651461086d57600080fd5b8063715018a6146107c5578063756059bd146107da5780637f205a74146107f55780638456cb591461081057600080fd5b80632dc04e46116102e25780634f6ccce7116102755780635c975abb116102445780635c975abb1461074c5780636352211e1461076b57806368428a1b1461078b57806370a08231146107a557600080fd5b80634f6ccce7146106d657806351a39a58146106f657806355f804b314610716578063583e88ab1461073657600080fd5b80633f4ba83a116102b15780633f4ba83a1461066b57806342842e0e1461068057806345763d0c146106a057806349df728c146106b657600080fd5b80632dc04e46146106005780632f745c591461061657806336e79a5a146106365780633ccfd60b1461065657600080fd5b806318160ddd1161035a578063254687c311610329578063254687c31461056e578063291bdd061461058e5780632a55205a146105a15780632ca47c6d146105e057600080fd5b806318160ddd146104e05780631f3e1be9146104ff5780632331af611461052f57806323b872dd1461054e57600080fd5b8063095ea7b311610396578063095ea7b3146104575780631096952314610479578063143a3f92146104995780631453671d146104c057600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063081812fc1461041f57600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e3366004613f46565b610b02565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610b46565b6040516103f49190613fbb565b34801561042b57600080fd5b5061043f61043a366004613fce565b610bd8565b6040516001600160a01b0390911681526020016103f4565b34801561046357600080fd5b50610477610472366004614003565b610c72565b005b34801561048557600080fd5b506104776104943660046140cc565b610da4565b3480156104a557600080fd5b506104ae600581565b60405160ff90911681526020016103f4565b3480156104cc57600080fd5b506104776104db366004614115565b610e47565b3480156104ec57600080fd5b506008545b6040519081526020016103f4565b34801561050b57600080fd5b506103e861051a366004614115565b601c6020526000908152604090205460ff1681565b34801561053b57600080fd5b50600d546103e890610100900460ff1681565b34801561055a57600080fd5b50610477610569366004614130565b611096565b34801561057a57600080fd5b50610477610589366004613fce565b61111d565b61047761059c36600461420c565b61116a565b3480156105ad57600080fd5b506105c16105bc36600461425a565b6114df565b604080516001600160a01b0390931683526020830191909152016103f4565b3480156105ec57600080fd5b506104776105fb36600461427c565b611518565b34801561060c57600080fd5b506104f160145481565b34801561062257600080fd5b506104f1610631366004614003565b6116d6565b34801561064257600080fd5b506104776106513660046142c1565b61177e565b34801561066257600080fd5b50610477611866565b34801561067757600080fd5b50610477611a71565b34801561068c57600080fd5b5061047761069b366004614130565b611ac3565b3480156106ac57600080fd5b506104f160125481565b3480156106c257600080fd5b506104776106d1366004614115565b611ade565b3480156106e257600080fd5b506104f16106f1366004613fce565b611d85565b34801561070257600080fd5b506104776107113660046142ea565b611e29565b34801561072257600080fd5b506104776107313660046140cc565b611e9c565b34801561074257600080fd5b506104f160135481565b34801561075857600080fd5b50600a54600160a01b900460ff166103e8565b34801561077757600080fd5b5061043f610786366004613fce565b611ef7565b34801561079757600080fd5b50600d546103e89060ff1681565b3480156107b157600080fd5b506104f16107c0366004614115565b611f82565b3480156107d157600080fd5b5061047761201c565b3480156107e657600080fd5b506104f16658d15e1762800081565b34801561080157600080fd5b506104f166e6ed27d666800081565b34801561081c57600080fd5b5061047761206e565b34801561083157600080fd5b50600a546001600160a01b031661043f565b34801561084f57600080fd5b506104776120be565b34801561086457600080fd5b5061041261215d565b34801561087957600080fd5b506104776108883660046142ea565b61216c565b34801561089957600080fd5b506104f1612177565b3480156108ae57600080fd5b506104ae601e81565b3480156108c357600080fd5b506103e86108d2366004614115565b601b6020526000908152604090205460ff1681565b3480156108f357600080fd5b506104f160165481565b34801561090957600080fd5b506104ae610918366004613fce565b6121a2565b34801561092957600080fd5b50610477610938366004614321565b6121f9565b34801561094957600080fd5b50610477610958366004614366565b61248d565b34801561096957600080fd5b50610477610978366004613fce565b61251b565b34801561098957600080fd5b506104776109983660046143e2565b612568565b3480156109a957600080fd5b506109b361271081565b60405161ffff90911681526020016103f4565b6104776109d436600461447a565b6125c3565b3480156109e557600080fd5b50610477612845565b3480156109fa57600080fd5b50610412610a09366004613fce565b612948565b348015610a1a57600080fd5b50610477612a34565b348015610a2f57600080fd5b506104f160175481565b348015610a4557600080fd5b50610412612ac3565b348015610a5a57600080fd5b506103e8610a69366004614495565b612afa565b610477610a7c366004613fce565b612b51565b348015610a8d57600080fd5b50610477610a9c366004614115565b612d16565b348015610aad57600080fd5b506109b361049281565b348015610ac357600080fd5b50600d546104ae9062010000900460ff1681565b348015610ae357600080fd5b506104f160155481565b348015610af957600080fd5b50610412612de6565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610b405750610b4082612e74565b92915050565b606060008054610b55906144bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b81906144bf565b8015610bce5780601f10610ba357610100808354040283529160200191610bce565b820191906000526020600020905b815481529060010190602001808311610bb157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c7d82611ef7565b9050806001600160a01b0316836001600160a01b03161415610d075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c4d565b336001600160a01b0382161480610d235750610d238133612afa565b610d955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c4d565b610d9f8383612eb2565b505050565b600a546001600160a01b03163314610dec5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c600e83604051610e289291906144fa565b60405180910390a28051610e4390600e906020840190613df7565b5050565b6001600160a01b038116610e9d5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420757365207a65726f20616464726573732e00000000000000006044820152606401610c4d565b6001600160a01b038116301415610ef65760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420757365207468697320636f6e747261637420616464726573736044820152606401610c4d565b803b15610f6b5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f742073657420726563697069656e7420746f206120636f6e74726160448201527f63742061646472657373000000000000000000000000000000000000000000006064820152608401610c4d565b6000805b60185481101561100e57336001600160a01b031660188281548110610f9657610f96614593565b6000918252602090912001546001600160a01b03161415610ffc578260188281548110610fc557610fc5614593565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506001915061100e565b80611006816145bf565b915050610f6f565b508061105c5760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610c4d565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b6110a03382612f2d565b6111125760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c4d565b610d9f838383613004565b600a546001600160a01b031633146111655760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b601755565b333b156111b95760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610c4d565b600d54429060ff1680156111cf57506012548110155b61120d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b6014548111801561121f575060155481105b61126b5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610c4d565b600d546112839062010000900460ff166104926145da565b61ffff168360ff16611294600c5490565b61129e9190614600565b11156112ec5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610c4d565b6016546040516bffffffffffffffffffffffff193360601b16602082015261132f9184916034015b604051602081830303815290604052805190602001206131e9565b61137b5760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610c4d565b61138f60ff841666e6ed27d6668000614618565b3410156113d15760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610c4d565b600560ff8416118015906113e8575060008360ff16115b6114345760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964204e756d20546f6b656e0000000000000000000000000000006044820152606401610c4d565b60005b8360ff168110156114a957611450600c80546001019055565b6003601a600061145f600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff16021790555061149733611492600c5490565b6131ff565b806114a1816145bf565b915050611437565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b600d54600090819030906127109061150390640100000000900461ffff1686614618565b61150d919061464d565b915091509250929050565b600a546001600160a01b031633146115605760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6013544210156115a45760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b600d546115bc9062010000900460ff166104926145da565b61ffff168160ff166115cd600c5490565b6115d79190614600565b11156116255760405162461bcd60e51b815260206004820152600960248201527f53616c6520736f6c6400000000000000000000000000000000000000000000006044820152606401610c4d565b60005b8160ff168160ff16101561169857611644600c80546001019055565b6003601a6000611653600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff16021790555061168683611492600c5490565b8061169081614661565b915050611628565b5060405160ff8216906001600160a01b038416907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b60006116e183611f82565b82106117555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c4d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146117c65760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6103e88161ffff1611156118425760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610c4d565b600d805461ffff9092166401000000000265ffff0000000019909216919091179055565b6002600b5414156118b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c4d565b6002600b55600a546001600160a01b031633146119065760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b4760005b601854811015611a335760006018828154811061192957611929614593565b600091825260209091200154601980546001600160a01b039092169161271091908590811061195a5761195a614593565b6000918252602090912060108204015461198491600f166002026101000a900461ffff1686614618565b61198e919061464d565b604051600081818185875af1925050503d80600081146119ca576040519150601f19603f3d011682016040523d82523d6000602084013e6119cf565b606091505b5050905080611a205760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610c4d565b5080611a2b816145bf565b91505061190a565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b600a546001600160a01b03163314611ab95760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b611ac1613219565b565b610d9f8383836040518060200160405280600081525061248d565b6002600b541415611b315760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c4d565b6002600b55600a546001600160a01b03163314611b7e5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611bdb57600080fd5b505afa158015611bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c139190614681565b905060005b601854811015611d3a57826001600160a01b031663a9059cbb60188381548110611c4457611c44614593565b600091825260209091200154601980546001600160a01b0390921691612710919086908110611c7557611c75614593565b60009182526020909120601082040154611c9f91600f166002026101000a900461ffff1687614618565b611ca9919061464d565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611cef57600080fd5b505af1158015611d03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d27919061469a565b5080611d32816145bf565b915050611c18565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b6000611d9060085490565b8210611e045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c4d565b60088281548110611e1757611e17614593565b90600052602060002001549050919050565b600a546001600160a01b03163314611e715760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314611ee45760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b8051610e4390600f906020840190613df7565b6000818152600260205260408120546001600160a01b031680610b405760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c4d565b60006001600160a01b0382166120005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c4d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146120645760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b611ac160006132bf565b600a546001600160a01b031633146120b65760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b611ac161331e565b600a546001600160a01b031633146121065760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b600d805460ff610100808304821615810261ff001990931692909217928390556040519190920490911615159033907fb9a4950ae90b6bcc761282b0c8d2f676192c5a997e940263952be21f2f26e46490600090a3565b606060018054610b55906144bf565b610e433383836133b3565b6000612182600c5490565b61218f601e6104926145da565b61ffff1661219d91906146b7565b905090565b600d546000906301000000900460ff16600114806121cc5750600d546301000000900460ff166002145b156121e3575050600d546301000000900460ff1690565b506000908152601a602052604090205460ff1690565b60125442101561223d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b336000908152601b602052604090205460ff161561229d5760405162461bcd60e51b815260206004820152601060248201527f416c72656164792072656465656d6564000000000000000000000000000000006044820152606401610c4d565b600d54601e906122b69062010000900460ff16836146ce565b60ff1611156123075760405162461bcd60e51b815260206004820152601660248201527f416c6c204769766561776179732052656465656d6564000000000000000000006044820152606401610c4d565b6017546040516bffffffffffffffffffffffff193360601b1660208201527fff0000000000000000000000000000000000000000000000000000000000000060f884901b16603482015261235f918491603501611314565b6123ab5760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610c4d565b336000908152601b60205260408120805460ff191660011790555b8160ff168160ff161015612458576123e2600c80546001019055565b600d8054600160ff62010000808404821692909201160262ff0000199091161790556003601a6000612413600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff16021790555061244633611492600c5490565b8061245081614661565b9150506123c6565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b6124973383612f2d565b6125095760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c4d565b61251584848484613482565b50505050565b600a546001600160a01b031633146125635760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b601655565b600a546001600160a01b031633146125b05760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b8051610e43906019906020840190613e7b565b333b156126125760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610c4d565b600d5460ff16801561262657506013544210155b6126645760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c4d565b61267860ff821666e6ed27d6668000614618565b3410156126ba5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610c4d565b600560ff8216118015906126d1575060008160ff16115b61271d5760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610c4d565b600d546127359062010000900460ff166104926145da565b61ffff168160ff16612746600c5490565b6127509190614600565b111561279e5760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610c4d565b60005b8160ff168160ff161015612811576127bd600c80546001019055565b6003601a60006127cc600c5490565b815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506127ff33611492600c5490565b8061280981614661565b9150506127a1565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b600a546001600160a01b0316331461288d5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b600d546003630100000090910460ff16106128ea5760405162461bcd60e51b815260206004820152600d60248201527f4e6f74207065726d6974746564000000000000000000000000000000000000006044820152606401610c4d565b600d805463ff00000019811663010000009182900460ff90811660010181168302919091179283905560405133939290920416906000907f21100de99ce807b80fda5e0bd8c1a8a16605955b4807b9c721978e13bea5661c908290a4565b6000818152600260205260409020546060906001600160a01b03166129d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c4d565b60006129df613500565b905060008151116129ff5760405180602001604052806000815250612a2d565b80612a098461350f565b6010604051602001612a1d93929190614762565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314612a7c5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b600d805460ff19811660ff91821615908117909255604051911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b60606000612acf613500565b9050806011604051602001612ae5929190614794565b60405160208183030381529060405291505090565b6001600160a01b0381166000908152601c602052604081205460ff1615612b2357506001610b40565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16612a2d565b6000818152601a6020526040902054600560ff90911610612bb45760405162461bcd60e51b815260206004820152601360248201527f546f6b656e2046756c6c792045766f6c766564000000000000000000000000006044820152606401610c4d565b600d546002630100000090910460ff1611612c115760405162461bcd60e51b815260206004820152601260248201527f43616e206e6f742065766f6c76652079657400000000000000000000000000006044820152606401610c4d565b6658d15e17628000341015612c5b5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610c4d565b612c6481611ef7565b6001600160a01b0316336001600160a01b031614612cc45760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610c4d565b6000818152601a6020526040808220805460ff8082166001011660ff1990911681179091559051339284917f21100de99ce807b80fda5e0bd8c1a8a16605955b4807b9c721978e13bea5661c9190a450565b600a546001600160a01b03163314612d5e5760405162461bcd60e51b815260206004820181905260248201526000805160206148368339815191526044820152606401610c4d565b6001600160a01b038116612dda5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c4d565b612de3816132bf565b50565b600e8054612df3906144bf565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1f906144bf565b8015612e6c5780601f10612e4157610100808354040283529160200191612e6c565b820191906000526020600020905b815481529060010190602001808311612e4f57829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610b405750610b4082613641565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612ef482611ef7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612fa65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c4d565b6000612fb183611ef7565b9050806001600160a01b0316846001600160a01b03161480612fec5750836001600160a01b0316612fe184610bd8565b6001600160a01b0316145b80612ffc5750612ffc8185612afa565b949350505050565b826001600160a01b031661301782611ef7565b6001600160a01b0316146130935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c4d565b6001600160a01b03821661310e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c4d565b6131198383836136dc565b613124600082612eb2565b6001600160a01b038316600090815260036020526040812080546001929061314d9084906146b7565b90915550506001600160a01b038216600090815260036020526040812080546001929061317b908490614600565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826131f685846137d2565b14949350505050565b610e4382826040518060200160405280600081525061387e565b600a54600160a01b900460ff166132725760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610c4d565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff16156133785760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c4d565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586132a23390565b816001600160a01b0316836001600160a01b031614156134155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c4d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61348d848484613004565b613499848484846138fc565b6125155760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c4d565b6060600f8054610b55906144bf565b60608161354f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156135795780613563816145bf565b91506135729050600a8361464d565b9150613553565b60008167ffffffffffffffff8111156135945761359461402d565b6040519080825280601f01601f1916602001820160405280156135be576020820181803683370190505b5090505b8415612ffc576135d36001836146b7565b91506135e0600a866147b2565b6135eb906030614600565b60f81b81838151811061360057613600614593565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061363a600a8661464d565b94506135c2565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806136a457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b4057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610b40565b6136e7838383613a54565b600a54600160a01b900460ff16156137555760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c4d565b600d54610100900460ff168061377257506001600160a01b038316155b610d9f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c4d565b600081815b84518110156138765760008582815181106137f4576137f4614593565b60200260200101519050808311613836576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613863565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061386e816145bf565b9150506137d7565b509392505050565b6138888383613b0c565b61389560008484846138fc565b610d9f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c4d565b60006001600160a01b0384163b15613a4957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906139409033908990889088906004016147c6565b602060405180830381600087803b15801561395a57600080fd5b505af192505050801561398a575060408051601f3d908101601f1916820190925261398791810190614802565b60015b613a2f573d8080156139b8576040519150601f19603f3d011682016040523d82523d6000602084013e6139bd565b606091505b508051613a275760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ffc565b506001949350505050565b6001600160a01b038316613aaf57613aaa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613ad2565b816001600160a01b0316836001600160a01b031614613ad257613ad28382613c67565b6001600160a01b038216613ae957610d9f81613d04565b826001600160a01b0316826001600160a01b031614610d9f57610d9f8282613db3565b6001600160a01b038216613b625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c4d565b6000818152600260205260409020546001600160a01b031615613bc75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4d565b613bd3600083836136dc565b6001600160a01b0382166000908152600360205260408120805460019290613bfc908490614600565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613c7484611f82565b613c7e91906146b7565b600083815260076020526040902054909150808214613cd1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613d16906001906146b7565b60008381526009602052604081205460088054939450909284908110613d3e57613d3e614593565b906000526020600020015490508060088381548110613d5f57613d5f614593565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613d9757613d9761481f565b6001900381819060005260206000200160009055905550505050565b6000613dbe83611f82565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613e03906144bf565b90600052602060002090601f016020900481019282613e255760008555613e6b565b82601f10613e3e57805160ff1916838001178555613e6b565b82800160010185558215613e6b579182015b82811115613e6b578251825591602001919060010190613e50565b50613e77929150613f1b565b5090565b82805482825590600052602060002090600f01601090048101928215613e6b5791602002820160005b83821115613ee457835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613ea4565b8015613f125782816101000a81549061ffff0219169055600201602081600101049283019260010302613ee4565b5050613e779291505b5b80821115613e775760008155600101613f1c565b6001600160e01b031981168114612de357600080fd5b600060208284031215613f5857600080fd5b8135612a2d81613f30565b60005b83811015613f7e578181015183820152602001613f66565b838111156125155750506000910152565b60008151808452613fa7816020860160208601613f63565b601f01601f19169290920160200192915050565b602081526000612a2d6020830184613f8f565b600060208284031215613fe057600080fd5b5035919050565b80356001600160a01b0381168114613ffe57600080fd5b919050565b6000806040838503121561401657600080fd5b61401f83613fe7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561406c5761406c61402d565b604052919050565b600067ffffffffffffffff83111561408e5761408e61402d565b6140a1601f8401601f1916602001614043565b90508281528383830111156140b557600080fd5b828260208301376000602084830101529392505050565b6000602082840312156140de57600080fd5b813567ffffffffffffffff8111156140f557600080fd5b8201601f8101841361410657600080fd5b612ffc84823560208401614074565b60006020828403121561412757600080fd5b612a2d82613fe7565b60008060006060848603121561414557600080fd5b61414e84613fe7565b925061415c60208501613fe7565b9150604084013590509250925092565b803560ff81168114613ffe57600080fd5b600067ffffffffffffffff8211156141975761419761402d565b5060051b60200190565b600082601f8301126141b257600080fd5b813560206141c76141c28361417d565b614043565b82815260059290921b840181019181810190868411156141e657600080fd5b8286015b8481101561420157803583529183019183016141ea565b509695505050505050565b6000806040838503121561421f57600080fd5b6142288361416c565b9150602083013567ffffffffffffffff81111561424457600080fd5b614250858286016141a1565b9150509250929050565b6000806040838503121561426d57600080fd5b50508035926020909101359150565b6000806040838503121561428f57600080fd5b61429883613fe7565b91506142a66020840161416c565b90509250929050565b803561ffff81168114613ffe57600080fd5b6000602082840312156142d357600080fd5b612a2d826142af565b8015158114612de357600080fd5b600080604083850312156142fd57600080fd5b61430683613fe7565b91506020830135614316816142dc565b809150509250929050565b6000806040838503121561433457600080fd5b823567ffffffffffffffff81111561434b57600080fd5b614357858286016141a1565b9250506142a66020840161416c565b6000806000806080858703121561437c57600080fd5b61438585613fe7565b935061439360208601613fe7565b925060408501359150606085013567ffffffffffffffff8111156143b657600080fd5b8501601f810187136143c757600080fd5b6143d687823560208401614074565b91505092959194509250565b600060208083850312156143f557600080fd5b823567ffffffffffffffff81111561440c57600080fd5b8301601f8101851361441d57600080fd5b803561442b6141c28261417d565b81815260059190911b8201830190838101908783111561444a57600080fd5b928401925b8284101561446f57614460846142af565b8252928401929084019061444f565b979650505050505050565b60006020828403121561448c57600080fd5b612a2d8261416c565b600080604083850312156144a857600080fd5b6144b183613fe7565b91506142a660208401613fe7565b600181811c908216806144d357607f821691505b602082108114156144f457634e487b7160e01b600052602260045260246000fd5b50919050565b60408152600080845461450c816144bf565b806040860152606060018084166000811461452e576001811461454257614573565b60ff19851688840152608088019550614573565b8960005260208060002060005b8681101561456a5781548b820187015290840190820161454f565b8a018501975050505b5050505050828103602084015261458a8185613f8f565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156145d3576145d36145a9565b5060010190565b600061ffff8083168185168083038211156145f7576145f76145a9565b01949350505050565b60008219821115614613576146136145a9565b500190565b6000816000190483118215151615614632576146326145a9565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261465c5761465c614637565b500490565b600060ff821660ff811415614678576146786145a9565b60010192915050565b60006020828403121561469357600080fd5b5051919050565b6000602082840312156146ac57600080fd5b8151612a2d816142dc565b6000828210156146c9576146c96145a9565b500390565b600060ff821660ff84168060ff038211156146eb576146eb6145a9565b019392505050565b60008154614700816144bf565b60018281168015614718576001811461472957614758565b60ff19841687528287019450614758565b8560005260208060002060005b8581101561474f5781548a820152908401908201614736565b50505082870194505b5050505092915050565b60008451614774818460208901613f63565b845190830190614788818360208901613f63565b61446f818301866146f3565b600083516147a6818460208801613f63565b61458a818401856146f3565b6000826147c1576147c1614637565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526147f86080830184613f8f565b9695505050505050565b60006020828403121561481457600080fd5b8151612a2d81613f30565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b89a3495c411ff4c4df5a86888b0aa825f876585a610f5d103d42b84a71f2d4b64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000006255a200000000000000000000000000000000000000000000000000000000006256f380000000000000000000000000000000000000000000000000000000006256f3800000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000280000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6d626d2e6c6173746b6e6f776e2e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040376130353236313164306664636638653936383530303933316438356439343966363038616239666532373137336563323561656239356236343765656431650000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f23862e3b839521ed9c3e3566c12c19950804b7a0000000000000000000000002fcb1162ea60a15aabe04728ca653b5ce0d7fe5100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000001b58

-----Decoded View---------------
Arg [0] : _saleStartTime (uint256): 1649779200
Arg [1] : _privateSaleEndsAt (uint256): 1649865600
Arg [2] : _publicSaleStartsAt (uint256): 1649865600
Arg [3] : _baseContractURI (string): https://mbm.lastknown.com/metadata/
Arg [4] : _tokenSuffixURI (string): .json
Arg [5] : _provenaceHash (string): 7a052611d0fdcf8e968500931d85d949f608ab9fe27173ec25aeb95b647eed1e
Arg [6] : _recipients (address[]): 0xf23862e3b839521ED9c3E3566C12C19950804b7A,0x2fcB1162EA60a15aAbe04728cA653B5CE0D7FE51
Arg [7] : _splits (uint16[]): 3000,7000
Arg [8] : _proxyAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000006255a200
Arg [1] : 000000000000000000000000000000000000000000000000000000006256f380
Arg [2] : 000000000000000000000000000000000000000000000000000000006256f380
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [8] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [10] : 68747470733a2f2f6d626d2e6c6173746b6e6f776e2e636f6d2f6d6574616461
Arg [11] : 74612f0000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [13] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [15] : 3761303532363131643066646366386539363835303039333164383564393439
Arg [16] : 6636303861623966653237313733656332356165623935623634376565643165
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [18] : 000000000000000000000000f23862e3b839521ed9c3e3566c12c19950804b7a
Arg [19] : 0000000000000000000000002fcb1162ea60a15aabe04728ca653b5ce0d7fe51
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [22] : 0000000000000000000000000000000000000000000000000000000000001b58


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.