ETH Price: $3,315.66 (+2.33%)
Gas: 3 Gwei

Token

greenchipzonly (GREENCHIPZONLY)
 

Overview

Max Total Supply

6,669 GREENCHIPZONLY

Holders

557

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xjpeg.eth
Balance
17 GREENCHIPZONLY
0x0e90618baaa3b593adc21111c550d5750144adb2
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:
greenchipzonly

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-31
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// 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: @openzeppelin/contracts/utils/Strings.sol


// 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: @openzeppelin/contracts/utils/Address.sol


// 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// 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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// 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: @openzeppelin/contracts/utils/Context.sol


// 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: ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

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

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: greenchipzonly.sol



pragma solidity ^0.8.0;






contract greenchipzonly is Ownable, ERC721A, ReentrancyGuard {
  using Strings for uint256;
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  uint256 public publicMintStartBlock =
    0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
  uint256 public publicPrice = 20000000000000000;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_
  ) ERC721A("greenchipzonly", "GREENCHIPZONLY", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
    require(
      amountForDevs_ <= collectionSize_,
      "larger collection size needed"
    );
  }

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

  function mintStarted() public view returns (bool) {
    return block.number >= publicMintStartBlock;
  }

  function mint(uint256 quantity) public payable nonReentrant {
    require(mintStarted(), 'Mint not started');
    publicSaleMint(quantity);
  }

  function publicSaleMint(uint256 quantity)
    private
    callerIsUser
  {
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(msg.value >= (publicPrice * quantity), "Need to send more ETH.");
    require(msg.value <= (publicPrice * quantity), "You have tried to send too much ETH");
    _safeMint(msg.sender, quantity);
  }


  // To replace OG Tokens
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

  function setPublicMintStartBlock(uint256 _newPublicMintStartBlock)
    external
    onlyOwner
  {
    publicMintStartBlock = _newPublicMintStartBlock;
  }

  function setPublicPrice(uint64 _newPublicPrice)
    external
    onlyOwner
    nonReentrant
  {
    publicPrice = _newPublicPrice;
  }


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

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicMintStartBlock","type":"uint256"}],"name":"setPublicMintStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_newPublicPrice","type":"uint64"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260006001556000600855600019600a5566470de4df820000600b553480156200002d57600080fd5b50604051620035da380380620035da833981016040819052620000509162000324565b6040518060400160405280600e81526020016d677265656e636869707a6f6e6c7960901b8152506040518060400160405280600e81526020016d475245454e434849505a4f4e4c5960901b8152508484620000ba620000b46200022a60201b60201c565b6200022e565b60008111620001275760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001895760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200011e565b83516200019e9060029060208701906200027e565b508251620001b49060039060208601906200027e565b5060a0919091526080525050600160095560c083905260e081905281811115620002215760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e656564656400000060448201526064016200011e565b50505062000390565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200028c9062000353565b90600052602060002090601f016020900481019282620002b05760008555620002fb565b82601f10620002cb57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fb578251825591602001919060010190620002de565b50620003099291506200030d565b5090565b5b808211156200030957600081556001016200030e565b6000806000606084860312156200033a57600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200036857607f821691505b602082108114156200038a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516131d862000402600039600081816106750152610dec01526000610455015260008181610e9801528181610f3701528181610f6f01528181611f7101528181611f9b0152612782015260008181611d0501528181611d37015261217101526131d86000f3fe6080604052600436106102195760003560e01c80638da5cb5b1161011d578063ac446002116100b0578063dc33e6811161007f578063f2fde38b11610064578063f2fde38b14610643578063fbe1aa5114610663578063fce531df1461069757600080fd5b8063dc33e681146105da578063e985e9c5146105fa57600080fd5b8063ac4460021461056f578063b88d4fde14610584578063c87b56dd146105a4578063d7224ba0146105c457600080fd5b8063a0712d68116100ec578063a0712d681461050e578063a22cb46514610521578063a945bf8014610541578063a9722cf31461055757600080fd5b80638da5cb5b146104775780639231ab2a1461049557806395d89b41146104e35780639bb4fc45146104f857600080fd5b80632f745c59116101b057806355f804b31161017f57806370a082311161016457806370a082311461040e578063715018a61461042e5780638bc35c2f1461044357600080fd5b806355f804b3146103ce5780636352211e146103ee57600080fd5b80632f745c591461034e578063375a069a1461036e57806342842e0e1461038e5780634f6ccce7146103ae57600080fd5b80630c29dbae116101ec5780630c29dbae146102cf57806318160ddd146102ef57806323b872dd1461030e5780632d20fb601461032e57600080fd5b806301ffc9a71461021e57806306fdde0314610253578063081812fc14610275578063095ea7b3146102ad575b600080fd5b34801561022a57600080fd5b5061023e610239366004612d23565b6106b7565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b506102686107e8565b60405161024a9190612ec7565b34801561028157600080fd5b50610295610290366004612dcf565b61087a565b6040516001600160a01b03909116815260200161024a565b3480156102b957600080fd5b506102cd6102c8366004612cf9565b61091a565b005b3480156102db57600080fd5b506102cd6102ea366004612de8565b610a4d565b3480156102fb57600080fd5b506001545b60405190815260200161024a565b34801561031a57600080fd5b506102cd610329366004612b87565b610b0e565b34801561033a57600080fd5b506102cd610349366004612dcf565b610b19565b34801561035a57600080fd5b50610300610369366004612cf9565b610bdc565b34801561037a57600080fd5b506102cd610389366004612dcf565b610d90565b34801561039a57600080fd5b506102cd6103a9366004612b87565b610fa5565b3480156103ba57600080fd5b506103006103c9366004612dcf565b610fc0565b3480156103da57600080fd5b506102cd6103e9366004612d5d565b611043565b3480156103fa57600080fd5b50610295610409366004612dcf565b61110b565b34801561041a57600080fd5b50610300610429366004612b39565b61111d565b34801561043a57600080fd5b506102cd6111c9565b34801561044f57600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b34801561048357600080fd5b506000546001600160a01b0316610295565b3480156104a157600080fd5b506104b56104b0366004612dcf565b61122f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161024a565b3480156104ef57600080fd5b5061026861124c565b34801561050457600080fd5b50610300600a5481565b6102cd61051c366004612dcf565b61125b565b34801561052d57600080fd5b506102cd61053c366004612cbd565b61130e565b34801561054d57600080fd5b50610300600b5481565b34801561056357600080fd5b50600a5443101561023e565b34801561057b57600080fd5b506102cd6113f1565b34801561059057600080fd5b506102cd61059f366004612bc3565b61153b565b3480156105b057600080fd5b506102686105bf366004612dcf565b6115ca565b3480156105d057600080fd5b5061030060085481565b3480156105e657600080fd5b506103006105f5366004612b39565b6116a5565b34801561060657600080fd5b5061023e610615366004612b54565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064f57600080fd5b506102cd61065e366004612b39565b6116b0565b34801561066f57600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a357600080fd5b506102cd6106b2366004612dcf565b611792565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061074a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061079657507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806107e257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107f790613017565b80601f016020809104026020016040519081016040528092919081815260200182805461082390613017565b80156108705780601f1061084557610100808354040283529160200191610870565b820191906000526020600020905b81548152906001019060200180831161085357829003601f168201915b5050505050905090565b6000610887826001541190565b6108fe5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109258261110b565b9050806001600160a01b0316836001600160a01b031614156109af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b336001600160a01b03821614806109cb57506109cb8133610615565b610a3d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f5565b610a488383836117f1565b505050565b6000546001600160a01b03163314610aa75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b60026009541415610afa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b67ffffffffffffffff16600b556001600955565b610a48838383611865565b6000546001600160a01b03163314610b735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b60026009541415610bc65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955610bd481611c94565b506001600955565b6000610be78361111d565b8210610c5b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b6000610c6660015490565b905060008060005b83811015610d21576000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610cd257805192505b876001600160a01b0316836001600160a01b03161415610d0e5786841415610d00575093506107e292505050565b83610d0a8161306b565b9450505b5080610d198161306b565b915050610c6e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016108f5565b6000546001600160a01b03163314610dea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b7f000000000000000000000000000000000000000000000000000000000000000081610e1560015490565b610e1f9190612f05565b1115610e935760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460448201527f6576206d696e740000000000000000000000000000000000000000000000000060648201526084016108f5565b610ebd7f0000000000000000000000000000000000000000000000000000000000000000826130a4565b15610f305760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201527f6d6178426174636853697a65000000000000000000000000000000000000000060648201526084016108f5565b6000610f5c7f000000000000000000000000000000000000000000000000000000000000000083612f1d565b905060005b81811015610a4857610f93337f0000000000000000000000000000000000000000000000000000000000000000611ebe565b80610f9d8161306b565b915050610f61565b610a488383836040518060200160405280600081525061153b565b6000610fcb60015490565b821061103f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e6473000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b5090565b6000546001600160a01b0316331461109d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b600260095414156110f05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955611101600c8383612a6f565b5050600160095550565b600061111682611edc565b5192915050565b60006001600160a01b03821661119b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016108f5565b506001600160a01b03166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b6000546001600160a01b031633146112235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b61122d60006120b8565b565b60408051808201909152600080825260208201526107e282611edc565b6060600380546107f790613017565b600260095414156112ae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955600a544310156113055760405162461bcd60e51b815260206004820152601060248201527f4d696e74206e6f7420737461727465640000000000000000000000000000000060448201526064016108f5565b610bd481612120565b6001600160a01b0382163314156113675760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f5565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461144b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b6002600954141561149e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955604051600090339047908381818185875af1925050503d80600081146114e5576040519150601f19603f3d011682016040523d82523d6000602084013e6114ea565b606091505b5050905080610bd45760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016108f5565b611546848484611865565b611552848484846122dc565b6115c45760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016108f5565b50505050565b60606115d7826001541190565b6116495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108f5565b60006116536124a8565b90506000815111611673576040518060200160405280600081525061169e565b8061167d846124b7565b60405160200161168e929190612e5c565b6040516020818303038152906040525b9392505050565b60006107e2826125e9565b6000546001600160a01b0316331461170a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b6001600160a01b0381166117865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108f5565b61178f816120b8565b50565b6000546001600160a01b031633146117ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b600a55565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061187082611edc565b80519091506000906001600160a01b0316336001600160a01b031614806118a757503361189c8461087a565b6001600160a01b0316145b806118b9575081516118b99033610615565b90508061192e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016108f5565b846001600160a01b031682600001516001600160a01b0316146119b95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016108f5565b6001600160a01b038416611a355760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108f5565b611a4560008484600001516117f1565b6001600160a01b0385166000908152600560205260408120805460019290611a809084906fffffffffffffffffffffffffffffffff16612f6e565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611ad591859116612eda565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600490915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055611b8f846001612f05565b6000818152600460205260409020549091506001600160a01b0316611c4a57611bb9816001541190565b15611c4a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260049093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611ce45760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108f5565b60006001611cf28484612f05565b611cfc9190612f9f565b9050611d2960017f0000000000000000000000000000000000000000000000000000000000000000612f9f565b811115611d5e57611d5b60017f0000000000000000000000000000000000000000000000000000000000000000612f9f565b90505b611d69816001541190565b611ddb5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201527f6c65616e7570000000000000000000000000000000000000000000000000000060648201526084016108f5565b815b818111611eaa576000818152600460205260409020546001600160a01b0316611e98576000611e0b82611edc565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff908116858401908152600088815260049096529390942091518254935190941674010000000000000000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909316931692909217179055505b80611ea28161306b565b915050611ddd565b50611eb6816001612f05565b600855505050565b611ed88282604051806020016040528060008152506126a9565b5050565b6040805180820190915260008082526020820152611efb826001541190565b611f6d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016108f5565b60007f00000000000000000000000000000000000000000000000000000000000000008310611fce57611fc07f000000000000000000000000000000000000000000000000000000000000000084612f9f565b611fcb906001612f05565b90505b825b818110612049576000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561203657949350505050565b508061204181612fe2565b915050611fd0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e000000000000000000000000000000000060648201526084016108f5565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b32331461216f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f5565b7f00000000000000000000000000000000000000000000000000000000000000008161219a60015490565b6121a49190612f05565b11156121f25760405162461bcd60e51b815260206004820152601260248201527f72656163686564206d617820737570706c79000000000000000000000000000060448201526064016108f5565b80600b546122009190612f31565b34101561224f5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e0000000000000000000060448201526064016108f5565b80600b5461225d9190612f31565b3411156122d25760405162461bcd60e51b815260206004820152602360248201527f596f75206861766520747269656420746f2073656e6420746f6f206d7563682060448201527f455448000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b61178f3382611ebe565b60006001600160a01b0384163b1561249c576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612339903390899088908890600401612e8b565b602060405180830381600087803b15801561235357600080fd5b505af19250505080156123a1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261239e91810190612d40565b60015b612451573d8080156123cf576040519150601f19603f3d011682016040523d82523d6000602084013e6123d4565b606091505b5080516124495760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016108f5565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506124a0565b5060015b949350505050565b6060600c80546107f790613017565b6060816124f757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612521578061250b8161306b565b915061251a9050600a83612f1d565b91506124fb565b60008167ffffffffffffffff81111561253c5761253c613145565b6040519080825280601f01601f191660200182016040528015612566576020820181803683370190505b5090505b84156124a05761257b600183612f9f565b9150612588600a866130a4565b612593906030612f05565b60f81b8183815181106125a8576125a8613116565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125e2600a86612f1d565b945061256a565b60006001600160a01b0382166126675760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f206164647265737300000000000000000000000000000060648201526084016108f5565b506001600160a01b031660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b6001546001600160a01b0384166127285760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b612733816001541190565b156127805760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f5565b7f00000000000000000000000000000000000000000000000000000000000000008311156128165760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f676800000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612888908790612eda565b6fffffffffffffffffffffffffffffffff1681526020018583602001516128af9190612eda565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260056020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600490955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b85811015612a645760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129d260008884886122dc565b612a445760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016108f5565b81612a4e8161306b565b9250508080612a5c9061306b565b915050612985565b506001819055611c8c565b828054612a7b90613017565b90600052602060002090601f016020900481019282612a9d5760008555612b01565b82601f10612ad4578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612b01565b82800160010185558215612b01579182015b82811115612b01578235825591602001919060010190612ae6565b5061103f9291505b8082111561103f5760008155600101612b09565b80356001600160a01b0381168114612b3457600080fd5b919050565b600060208284031215612b4b57600080fd5b61169e82612b1d565b60008060408385031215612b6757600080fd5b612b7083612b1d565b9150612b7e60208401612b1d565b90509250929050565b600080600060608486031215612b9c57600080fd5b612ba584612b1d565b9250612bb360208501612b1d565b9150604084013590509250925092565b60008060008060808587031215612bd957600080fd5b612be285612b1d565b9350612bf060208601612b1d565b925060408501359150606085013567ffffffffffffffff80821115612c1457600080fd5b818701915087601f830112612c2857600080fd5b813581811115612c3a57612c3a613145565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612c8057612c80613145565b816040528281528a6020848701011115612c9957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612cd057600080fd5b612cd983612b1d565b915060208301358015158114612cee57600080fd5b809150509250929050565b60008060408385031215612d0c57600080fd5b612d1583612b1d565b946020939093013593505050565b600060208284031215612d3557600080fd5b813561169e81613174565b600060208284031215612d5257600080fd5b815161169e81613174565b60008060208385031215612d7057600080fd5b823567ffffffffffffffff80821115612d8857600080fd5b818501915085601f830112612d9c57600080fd5b813581811115612dab57600080fd5b866020828501011115612dbd57600080fd5b60209290920196919550909350505050565b600060208284031215612de157600080fd5b5035919050565b600060208284031215612dfa57600080fd5b813567ffffffffffffffff8116811461169e57600080fd5b60008151808452612e2a816020860160208601612fb6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612e6e818460208801612fb6565b835190830190612e82818360208801612fb6565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ebd6080830184612e12565b9695505050505050565b60208152600061169e6020830184612e12565b60006fffffffffffffffffffffffffffffffff808316818516808303821115612e8257612e826130b8565b60008219821115612f1857612f186130b8565b500190565b600082612f2c57612f2c6130e7565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6957612f696130b8565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015612f9757612f976130b8565b039392505050565b600082821015612fb157612fb16130b8565b500390565b60005b83811015612fd1578181015183820152602001612fb9565b838111156115c45750506000910152565b600081612ff157612ff16130b8565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061302b57607f821691505b60208210811415613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561309d5761309d6130b8565b5060010190565b6000826130b3576130b36130e7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461178f57600080fdfea2646970667358221220a6470e1d179353225b6ba374adaff0bc1d1da0ea34607b9faa3362e6a0d229b264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000001a0d00000000000000000000000000000000000000000000000000000000000001a9

Deployed Bytecode

0x6080604052600436106102195760003560e01c80638da5cb5b1161011d578063ac446002116100b0578063dc33e6811161007f578063f2fde38b11610064578063f2fde38b14610643578063fbe1aa5114610663578063fce531df1461069757600080fd5b8063dc33e681146105da578063e985e9c5146105fa57600080fd5b8063ac4460021461056f578063b88d4fde14610584578063c87b56dd146105a4578063d7224ba0146105c457600080fd5b8063a0712d68116100ec578063a0712d681461050e578063a22cb46514610521578063a945bf8014610541578063a9722cf31461055757600080fd5b80638da5cb5b146104775780639231ab2a1461049557806395d89b41146104e35780639bb4fc45146104f857600080fd5b80632f745c59116101b057806355f804b31161017f57806370a082311161016457806370a082311461040e578063715018a61461042e5780638bc35c2f1461044357600080fd5b806355f804b3146103ce5780636352211e146103ee57600080fd5b80632f745c591461034e578063375a069a1461036e57806342842e0e1461038e5780634f6ccce7146103ae57600080fd5b80630c29dbae116101ec5780630c29dbae146102cf57806318160ddd146102ef57806323b872dd1461030e5780632d20fb601461032e57600080fd5b806301ffc9a71461021e57806306fdde0314610253578063081812fc14610275578063095ea7b3146102ad575b600080fd5b34801561022a57600080fd5b5061023e610239366004612d23565b6106b7565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b506102686107e8565b60405161024a9190612ec7565b34801561028157600080fd5b50610295610290366004612dcf565b61087a565b6040516001600160a01b03909116815260200161024a565b3480156102b957600080fd5b506102cd6102c8366004612cf9565b61091a565b005b3480156102db57600080fd5b506102cd6102ea366004612de8565b610a4d565b3480156102fb57600080fd5b506001545b60405190815260200161024a565b34801561031a57600080fd5b506102cd610329366004612b87565b610b0e565b34801561033a57600080fd5b506102cd610349366004612dcf565b610b19565b34801561035a57600080fd5b50610300610369366004612cf9565b610bdc565b34801561037a57600080fd5b506102cd610389366004612dcf565b610d90565b34801561039a57600080fd5b506102cd6103a9366004612b87565b610fa5565b3480156103ba57600080fd5b506103006103c9366004612dcf565b610fc0565b3480156103da57600080fd5b506102cd6103e9366004612d5d565b611043565b3480156103fa57600080fd5b50610295610409366004612dcf565b61110b565b34801561041a57600080fd5b50610300610429366004612b39565b61111d565b34801561043a57600080fd5b506102cd6111c9565b34801561044f57600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000001181565b34801561048357600080fd5b506000546001600160a01b0316610295565b3480156104a157600080fd5b506104b56104b0366004612dcf565b61122f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161024a565b3480156104ef57600080fd5b5061026861124c565b34801561050457600080fd5b50610300600a5481565b6102cd61051c366004612dcf565b61125b565b34801561052d57600080fd5b506102cd61053c366004612cbd565b61130e565b34801561054d57600080fd5b50610300600b5481565b34801561056357600080fd5b50600a5443101561023e565b34801561057b57600080fd5b506102cd6113f1565b34801561059057600080fd5b506102cd61059f366004612bc3565b61153b565b3480156105b057600080fd5b506102686105bf366004612dcf565b6115ca565b3480156105d057600080fd5b5061030060085481565b3480156105e657600080fd5b506103006105f5366004612b39565b6116a5565b34801561060657600080fd5b5061023e610615366004612b54565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064f57600080fd5b506102cd61065e366004612b39565b6116b0565b34801561066f57600080fd5b506103007f00000000000000000000000000000000000000000000000000000000000001a981565b3480156106a357600080fd5b506102cd6106b2366004612dcf565b611792565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061074a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061079657507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806107e257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107f790613017565b80601f016020809104026020016040519081016040528092919081815260200182805461082390613017565b80156108705780601f1061084557610100808354040283529160200191610870565b820191906000526020600020905b81548152906001019060200180831161085357829003601f168201915b5050505050905090565b6000610887826001541190565b6108fe5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109258261110b565b9050806001600160a01b0316836001600160a01b031614156109af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b336001600160a01b03821614806109cb57506109cb8133610615565b610a3d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f5565b610a488383836117f1565b505050565b6000546001600160a01b03163314610aa75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b60026009541415610afa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b67ffffffffffffffff16600b556001600955565b610a48838383611865565b6000546001600160a01b03163314610b735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b60026009541415610bc65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955610bd481611c94565b506001600955565b6000610be78361111d565b8210610c5b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b6000610c6660015490565b905060008060005b83811015610d21576000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610cd257805192505b876001600160a01b0316836001600160a01b03161415610d0e5786841415610d00575093506107e292505050565b83610d0a8161306b565b9450505b5080610d198161306b565b915050610c6e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016108f5565b6000546001600160a01b03163314610dea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b7f00000000000000000000000000000000000000000000000000000000000001a981610e1560015490565b610e1f9190612f05565b1115610e935760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460448201527f6576206d696e740000000000000000000000000000000000000000000000000060648201526084016108f5565b610ebd7f0000000000000000000000000000000000000000000000000000000000000011826130a4565b15610f305760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201527f6d6178426174636853697a65000000000000000000000000000000000000000060648201526084016108f5565b6000610f5c7f000000000000000000000000000000000000000000000000000000000000001183612f1d565b905060005b81811015610a4857610f93337f0000000000000000000000000000000000000000000000000000000000000011611ebe565b80610f9d8161306b565b915050610f61565b610a488383836040518060200160405280600081525061153b565b6000610fcb60015490565b821061103f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e6473000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b5090565b6000546001600160a01b0316331461109d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b600260095414156110f05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955611101600c8383612a6f565b5050600160095550565b600061111682611edc565b5192915050565b60006001600160a01b03821661119b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016108f5565b506001600160a01b03166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b6000546001600160a01b031633146112235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b61122d60006120b8565b565b60408051808201909152600080825260208201526107e282611edc565b6060600380546107f790613017565b600260095414156112ae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955600a544310156113055760405162461bcd60e51b815260206004820152601060248201527f4d696e74206e6f7420737461727465640000000000000000000000000000000060448201526064016108f5565b610bd481612120565b6001600160a01b0382163314156113675760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f5565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461144b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b6002600954141561149e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600955604051600090339047908381818185875af1925050503d80600081146114e5576040519150601f19603f3d011682016040523d82523d6000602084013e6114ea565b606091505b5050905080610bd45760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016108f5565b611546848484611865565b611552848484846122dc565b6115c45760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016108f5565b50505050565b60606115d7826001541190565b6116495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108f5565b60006116536124a8565b90506000815111611673576040518060200160405280600081525061169e565b8061167d846124b7565b60405160200161168e929190612e5c565b6040516020818303038152906040525b9392505050565b60006107e2826125e9565b6000546001600160a01b0316331461170a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b6001600160a01b0381166117865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108f5565b61178f816120b8565b50565b6000546001600160a01b031633146117ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f5565b600a55565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061187082611edc565b80519091506000906001600160a01b0316336001600160a01b031614806118a757503361189c8461087a565b6001600160a01b0316145b806118b9575081516118b99033610615565b90508061192e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016108f5565b846001600160a01b031682600001516001600160a01b0316146119b95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016108f5565b6001600160a01b038416611a355760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108f5565b611a4560008484600001516117f1565b6001600160a01b0385166000908152600560205260408120805460019290611a809084906fffffffffffffffffffffffffffffffff16612f6e565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611ad591859116612eda565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600490915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055611b8f846001612f05565b6000818152600460205260409020549091506001600160a01b0316611c4a57611bb9816001541190565b15611c4a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260049093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611ce45760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108f5565b60006001611cf28484612f05565b611cfc9190612f9f565b9050611d2960017f0000000000000000000000000000000000000000000000000000000000001a0d612f9f565b811115611d5e57611d5b60017f0000000000000000000000000000000000000000000000000000000000001a0d612f9f565b90505b611d69816001541190565b611ddb5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201527f6c65616e7570000000000000000000000000000000000000000000000000000060648201526084016108f5565b815b818111611eaa576000818152600460205260409020546001600160a01b0316611e98576000611e0b82611edc565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff908116858401908152600088815260049096529390942091518254935190941674010000000000000000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909316931692909217179055505b80611ea28161306b565b915050611ddd565b50611eb6816001612f05565b600855505050565b611ed88282604051806020016040528060008152506126a9565b5050565b6040805180820190915260008082526020820152611efb826001541190565b611f6d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016108f5565b60007f00000000000000000000000000000000000000000000000000000000000000118310611fce57611fc07f000000000000000000000000000000000000000000000000000000000000001184612f9f565b611fcb906001612f05565b90505b825b818110612049576000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561203657949350505050565b508061204181612fe2565b915050611fd0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e000000000000000000000000000000000060648201526084016108f5565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b32331461216f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f5565b7f0000000000000000000000000000000000000000000000000000000000001a0d8161219a60015490565b6121a49190612f05565b11156121f25760405162461bcd60e51b815260206004820152601260248201527f72656163686564206d617820737570706c79000000000000000000000000000060448201526064016108f5565b80600b546122009190612f31565b34101561224f5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e0000000000000000000060448201526064016108f5565b80600b5461225d9190612f31565b3411156122d25760405162461bcd60e51b815260206004820152602360248201527f596f75206861766520747269656420746f2073656e6420746f6f206d7563682060448201527f455448000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b61178f3382611ebe565b60006001600160a01b0384163b1561249c576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612339903390899088908890600401612e8b565b602060405180830381600087803b15801561235357600080fd5b505af19250505080156123a1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261239e91810190612d40565b60015b612451573d8080156123cf576040519150601f19603f3d011682016040523d82523d6000602084013e6123d4565b606091505b5080516124495760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016108f5565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506124a0565b5060015b949350505050565b6060600c80546107f790613017565b6060816124f757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612521578061250b8161306b565b915061251a9050600a83612f1d565b91506124fb565b60008167ffffffffffffffff81111561253c5761253c613145565b6040519080825280601f01601f191660200182016040528015612566576020820181803683370190505b5090505b84156124a05761257b600183612f9f565b9150612588600a866130a4565b612593906030612f05565b60f81b8183815181106125a8576125a8613116565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125e2600a86612f1d565b945061256a565b60006001600160a01b0382166126675760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f206164647265737300000000000000000000000000000060648201526084016108f5565b506001600160a01b031660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b6001546001600160a01b0384166127285760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b612733816001541190565b156127805760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f5565b7f00000000000000000000000000000000000000000000000000000000000000118311156128165760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f676800000000000000000000000000000000000000000000000000000000000060648201526084016108f5565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612888908790612eda565b6fffffffffffffffffffffffffffffffff1681526020018583602001516128af9190612eda565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260056020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600490955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b85811015612a645760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129d260008884886122dc565b612a445760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016108f5565b81612a4e8161306b565b9250508080612a5c9061306b565b915050612985565b506001819055611c8c565b828054612a7b90613017565b90600052602060002090601f016020900481019282612a9d5760008555612b01565b82601f10612ad4578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612b01565b82800160010185558215612b01579182015b82811115612b01578235825591602001919060010190612ae6565b5061103f9291505b8082111561103f5760008155600101612b09565b80356001600160a01b0381168114612b3457600080fd5b919050565b600060208284031215612b4b57600080fd5b61169e82612b1d565b60008060408385031215612b6757600080fd5b612b7083612b1d565b9150612b7e60208401612b1d565b90509250929050565b600080600060608486031215612b9c57600080fd5b612ba584612b1d565b9250612bb360208501612b1d565b9150604084013590509250925092565b60008060008060808587031215612bd957600080fd5b612be285612b1d565b9350612bf060208601612b1d565b925060408501359150606085013567ffffffffffffffff80821115612c1457600080fd5b818701915087601f830112612c2857600080fd5b813581811115612c3a57612c3a613145565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612c8057612c80613145565b816040528281528a6020848701011115612c9957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612cd057600080fd5b612cd983612b1d565b915060208301358015158114612cee57600080fd5b809150509250929050565b60008060408385031215612d0c57600080fd5b612d1583612b1d565b946020939093013593505050565b600060208284031215612d3557600080fd5b813561169e81613174565b600060208284031215612d5257600080fd5b815161169e81613174565b60008060208385031215612d7057600080fd5b823567ffffffffffffffff80821115612d8857600080fd5b818501915085601f830112612d9c57600080fd5b813581811115612dab57600080fd5b866020828501011115612dbd57600080fd5b60209290920196919550909350505050565b600060208284031215612de157600080fd5b5035919050565b600060208284031215612dfa57600080fd5b813567ffffffffffffffff8116811461169e57600080fd5b60008151808452612e2a816020860160208601612fb6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612e6e818460208801612fb6565b835190830190612e82818360208801612fb6565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ebd6080830184612e12565b9695505050505050565b60208152600061169e6020830184612e12565b60006fffffffffffffffffffffffffffffffff808316818516808303821115612e8257612e826130b8565b60008219821115612f1857612f186130b8565b500190565b600082612f2c57612f2c6130e7565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6957612f696130b8565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015612f9757612f976130b8565b039392505050565b600082821015612fb157612fb16130b8565b500390565b60005b83811015612fd1578181015183820152602001612fb9565b838111156115c45750506000910152565b600081612ff157612ff16130b8565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061302b57607f821691505b60208210811415613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561309d5761309d6130b8565b5060010190565b6000826130b3576130b36130e7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461178f57600080fdfea2646970667358221220a6470e1d179353225b6ba374adaff0bc1d1da0ea34607b9faa3362e6a0d229b264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000001a0d00000000000000000000000000000000000000000000000000000000000001a9

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 17
Arg [1] : collectionSize_ (uint256): 6669
Arg [2] : amountForDevs_ (uint256): 425

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001a0d
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a9


Deployed Bytecode Sourcemap

44469:3150:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29565:370;;;;;;;;;;-1:-1:-1;29565:370:0;;;;;:::i;:::-;;:::i;:::-;;;6310:14:1;;6303:22;6285:41;;6273:2;6258:18;29565:370:0;;;;;;;;31291:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32816:204::-;;;;;;;;;;-1:-1:-1;32816:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5562:55:1;;;5544:74;;5532:2;5517:18;32816:204:0;5398:226:1;32379:379:0;;;;;;;;;;-1:-1:-1;32379:379:0;;;;;:::i;:::-;;:::i;:::-;;46895:140;;;;;;;;;;-1:-1:-1;46895:140:0;;;;;:::i;:::-;;:::i;28126:94::-;;;;;;;;;;-1:-1:-1;28202:12:0;;28126:94;;;19663:25:1;;;19651:2;19636:18;28126:94:0;19517:177:1;33666:142:0;;;;;;;;;;-1:-1:-1;33666:142:0;;;;;:::i;:::-;;:::i;47230:118::-;;;;;;;;;;-1:-1:-1;47230:118:0;;;;;:::i;:::-;;:::i;28757:744::-;;;;;;;;;;-1:-1:-1;28757:744:0;;;;;:::i;:::-;;:::i;45993:442::-;;;;;;;;;;-1:-1:-1;45993:442:0;;;;;:::i;:::-;;:::i;33871:157::-;;;;;;;;;;-1:-1:-1;33871:157:0;;;;;:::i;:::-;;:::i;28289:177::-;;;;;;;;;;-1:-1:-1;28289:177:0;;;;;:::i;:::-;;:::i;46612:112::-;;;;;;;;;;-1:-1:-1;46612:112:0;;;;;:::i;:::-;;:::i;31114:118::-;;;;;;;;;;-1:-1:-1;31114:118:0;;;;;:::i;:::-;;:::i;29991:211::-;;;;;;;;;;-1:-1:-1;29991:211:0;;;;;:::i;:::-;;:::i;43580:103::-;;;;;;;;;;;;;:::i;44565:48::-;;;;;;;;;;;;;;;42929:87;;;;;;;;;;-1:-1:-1;42975:7:0;43002:6;-1:-1:-1;;;;;43002:6:0;42929:87;;47467:147;;;;;;;;;;-1:-1:-1;47467:147:0;;;;;:::i;:::-;;:::i;:::-;;;;19359:13:1;;-1:-1:-1;;;;;19355:62:1;19337:81;;19478:4;19466:17;;;19460:24;19486:18;19456:49;19434:20;;;19427:79;;;;19310:18;47467:147:0;19129:383:1;31446:98:0;;;;;;;;;;;;;:::i;44661:109::-;;;;;;;;;;;;;;;;45435:146;;;;;;:::i;:::-;;:::i;33084:274::-;;;;;;;;;;-1:-1:-1;33084:274:0;;;;;:::i;:::-;;:::i;44775:46::-;;;;;;;;;;;;;;;;45323:106;;;;;;;;;;-1:-1:-1;45403:20:0;;45387:12;:36;;45323:106;;47043:181;;;;;;;;;;;;;:::i;34091:311::-;;;;;;;;;;-1:-1:-1;34091:311:0;;;;;:::i;:::-;;:::i;31607:394::-;;;;;;;;;;-1:-1:-1;31607:394:0;;;;;:::i;:::-;;:::i;38506:43::-;;;;;;;;;;;;;;;;47354:107;;;;;;;;;;-1:-1:-1;47354:107:0;;;;;:::i;:::-;;:::i;33421:186::-;;;;;;;;;;-1:-1:-1;33421:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;33566:25:0;;;33543:4;33566:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33421:186;43838:201;;;;;;;;;;-1:-1:-1;43838:201:0;;;;;:::i;:::-;;:::i;44618:38::-;;;;;;;;;;;;;;;46730:159;;;;;;;;;;-1:-1:-1;46730:159:0;;;;;:::i;:::-;;:::i;29565:370::-;29692:4;29722:40;;;29737:25;29722:40;;:99;;-1:-1:-1;29773:48:0;;;29788:33;29773:48;29722:99;:160;;;-1:-1:-1;29832:50:0;;;29847:35;29832:50;29722:160;:207;;;-1:-1:-1;15380:25:0;15365:40;;;;29893:36;29708:221;29565:370;-1:-1:-1;;29565:370:0:o;31291:94::-;31345:13;31374:5;31367:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:94;:::o;32816:204::-;32884:7;32908:16;32916:7;34728:12;;-1:-1:-1;34718:22:0;34641:105;32908:16;32900:74;;;;-1:-1:-1;;;32900:74:0;;18514:2:1;32900:74:0;;;18496:21:1;18553:2;18533:18;;;18526:30;18592:34;18572:18;;;18565:62;18663:15;18643:18;;;18636:43;18696:19;;32900:74:0;;;;;;;;;-1:-1:-1;32990:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32990:24:0;;32816:204::o;32379:379::-;32448:13;32464:24;32480:7;32464:15;:24::i;:::-;32448:40;;32509:5;-1:-1:-1;;;;;32503:11:0;:2;-1:-1:-1;;;;;32503:11:0;;;32495:58;;;;-1:-1:-1;;;32495:58:0;;14229:2:1;32495:58:0;;;14211:21:1;14268:2;14248:18;;;14241:30;14307:34;14287:18;;;14280:62;14378:4;14358:18;;;14351:32;14400:19;;32495:58:0;14027:398:1;32495:58:0;25686:10;-1:-1:-1;;;;;32578:21:0;;;;:62;;-1:-1:-1;32603:37:0;32620:5;25686:10;33421:186;:::i;32603:37::-;32562:153;;;;-1:-1:-1;;;32562:153:0;;10329:2:1;32562:153:0;;;10311:21:1;10368:2;10348:18;;;10341:30;10407:34;10387:18;;;10380:62;10478:27;10458:18;;;10451:55;10523:19;;32562:153:0;10127:421:1;32562:153:0;32724:28;32733:2;32737:7;32746:5;32724:8;:28::i;:::-;32441:317;32379:379;;:::o;46895:140::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;23980:1:::1;24578:7;;:19;;24570:63;;;::::0;-1:-1:-1;;;24570:63:0;;17738:2:1;24570:63:0::1;::::0;::::1;17720:21:1::0;17777:2;17757:18;;;17750:30;17816:33;17796:18;;;17789:61;17867:18;;24570:63:0::1;17536:355:1::0;24570:63:0::1;47000:29:::2;;:11;:29:::0;23936:1:::1;24711:7;24890:22:::0;46895:140::o;33666:142::-;33774:28;33784:4;33790:2;33794:7;33774:9;:28::i;47230:118::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;23980:1:::1;24578:7;;:19;;24570:63;;;::::0;-1:-1:-1;;;24570:63:0;;17738:2:1;24570:63:0::1;::::0;::::1;17720:21:1::0;17777:2;17757:18;;;17750:30;17816:33;17796:18;;;17789:61;17867:18;;24570:63:0::1;17536:355:1::0;24570:63:0::1;23980:1;24711:7;:18:::0;47314:28:::2;47333:8:::0;47314:18:::2;:28::i;:::-;-1:-1:-1::0;23936:1:0::1;24890:7;:22:::0;47230:118::o;28757:744::-;28866:7;28901:16;28911:5;28901:9;:16::i;:::-;28893:5;:24;28885:71;;;;-1:-1:-1;;;28885:71:0;;6763:2:1;28885:71:0;;;6745:21:1;6802:2;6782:18;;;6775:30;6841:34;6821:18;;;6814:62;6912:4;6892:18;;;6885:32;6934:19;;28885:71:0;6561:398:1;28885:71:0;28963:22;28988:13;28202:12;;;28126:94;28988:13;28963:38;;29008:19;29038:25;29088:9;29083:350;29107:14;29103:1;:18;29083:350;;;29137:31;29171:14;;;:11;:14;;;;;;;;;29137:48;;;;;;;;;-1:-1:-1;;;;;29137:48:0;;;;;;;;;;;;;;;;;;29198:28;29194:89;;29259:14;;;-1:-1:-1;29194:89:0;29316:5;-1:-1:-1;;;;;29295:26:0;:17;-1:-1:-1;;;;;29295:26:0;;29291:135;;;29353:5;29338:11;:20;29334:59;;;-1:-1:-1;29380:1:0;-1:-1:-1;29373:8:0;;-1:-1:-1;;;29373:8:0;29334:59;29403:13;;;;:::i;:::-;;;;29291:135;-1:-1:-1;29123:3:0;;;;:::i;:::-;;;;29083:350;;;-1:-1:-1;29439:56:0;;-1:-1:-1;;;29439:56:0;;16916:2:1;29439:56:0;;;16898:21:1;16955:2;16935:18;;;16928:30;16994:34;16974:18;;;16967:62;17065:16;17045:18;;;17038:44;17099:19;;29439:56:0;16714:410:1;45993:442:0;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;46098:13:::1;46086:8;46070:13;28202:12:::0;;;28126:94;46070:13:::1;:24;;;;:::i;:::-;:41;;46054:114;;;::::0;-1:-1:-1;;;46054:114:0;;16508:2:1;46054:114:0::1;::::0;::::1;16490:21:1::0;16547:2;16527:18;;;16520:30;16586:34;16566:18;;;16559:62;16657:9;16637:18;;;16630:37;16684:19;;46054:114:0::1;16306:403:1::0;46054:114:0::1;46191:23;46202:12;46191:8:::0;:23:::1;:::i;:::-;:28:::0;46175:106:::1;;;::::0;-1:-1:-1;;;46175:106:0;;7984:2:1;46175:106:0::1;::::0;::::1;7966:21:1::0;8023:2;8003:18;;;7996:30;8062:34;8042:18;;;8035:62;8133:14;8113:18;;;8106:42;8165:19;;46175:106:0::1;7782:408:1::0;46175:106:0::1;46288:17;46308:23;46319:12;46308:8:::0;:23:::1;:::i;:::-;46288:43;;46343:9;46338:92;46362:9;46358:1;:13;46338:92;;;46387:35;46397:10;46409:12;46387:9;:35::i;:::-;46373:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46338:92;;33871:157:::0;33983:39;34000:4;34006:2;34010:7;33983:39;;;;;;;;;;;;:16;:39::i;28289:177::-;28356:7;28388:13;28202:12;;;28126:94;28388:13;28380:5;:21;28372:69;;;;-1:-1:-1;;;28372:69:0;;8397:2:1;28372:69:0;;;8379:21:1;8436:2;8416:18;;;8409:30;8475:34;8455:18;;;8448:62;8546:5;8526:18;;;8519:33;8569:19;;28372:69:0;8195:399:1;28372:69:0;-1:-1:-1;28455:5:0;28289:177::o;46612:112::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;23980:1:::1;24578:7;;:19;;24570:63;;;::::0;-1:-1:-1;;;24570:63:0;;17738:2:1;24570:63:0::1;::::0;::::1;17720:21:1::0;17777:2;17757:18;;;17750:30;17816:33;17796:18;;;17789:61;17867:18;;24570:63:0::1;17536:355:1::0;24570:63:0::1;23980:1;24711:7;:18:::0;46695:23:::2;:13;46711:7:::0;;46695:23:::2;:::i;:::-;-1:-1:-1::0;;23936:1:0::1;24890:7;:22:::0;-1:-1:-1;46612:112:0:o;31114:118::-;31178:7;31201:20;31213:7;31201:11;:20::i;:::-;:25;;31114:118;-1:-1:-1;;31114:118:0:o;29991:211::-;30055:7;-1:-1:-1;;;;;30079:19:0;;30071:75;;;;-1:-1:-1;;;30071:75:0;;11512:2:1;30071:75:0;;;11494:21:1;11551:2;11531:18;;;11524:30;11590:34;11570:18;;;11563:62;11661:13;11641:18;;;11634:41;11692:19;;30071:75:0;11310:407:1;30071:75:0;-1:-1:-1;;;;;;30168:19:0;;;;;:12;:19;;;;;:27;;;;29991:211::o;43580:103::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;43645:30:::1;43672:1;43645:18;:30::i;:::-;43580:103::o:0;47467:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;47588:20:0;47600:7;47588:11;:20::i;31446:98::-;31502:13;31531:7;31524:14;;;;;:::i;45435:146::-;23980:1;24578:7;;:19;;24570:63;;;;-1:-1:-1;;;24570:63:0;;17738:2:1;24570:63:0;;;17720:21:1;17777:2;17757:18;;;17750:30;17816:33;17796:18;;;17789:61;17867:18;;24570:63:0;17536:355:1;24570:63:0;23980:1;24711:7;:18;45403:20;;45387:12;:36;;45502:42:::1;;;::::0;-1:-1:-1;;;45502:42:0;;9207:2:1;45502:42:0::1;::::0;::::1;9189:21:1::0;9246:2;9226:18;;;9219:30;9285:18;9265;;;9258:46;9321:18;;45502:42:0::1;9005:340:1::0;45502:42:0::1;45551:24;45566:8;45551:14;:24::i;33084:274::-:0;-1:-1:-1;;;;;33175:24:0;;25686:10;33175:24;;33167:63;;;;-1:-1:-1;;;33167:63:0;;13455:2:1;33167:63:0;;;13437:21:1;13494:2;13474:18;;;13467:30;13533:28;13513:18;;;13506:56;13579:18;;33167:63:0;13253:350:1;33167:63:0;25686:10;33239:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33239:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;33304:48;;6285:41:1;;;33239:42:0;;25686:10;33304:48;;6258:18:1;33304:48:0;;;;;;;33084:274;;:::o;47043:181::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;23980:1:::1;24578:7;;:19;;24570:63;;;::::0;-1:-1:-1;;;24570:63:0;;17738:2:1;24570:63:0::1;::::0;::::1;17720:21:1::0;17777:2;17757:18;;;17750:30;17816:33;17796:18;;;17789:61;17867:18;;24570:63:0::1;17536:355:1::0;24570:63:0::1;23980:1;24711:7;:18:::0;47126:49:::2;::::0;47108:12:::2;::::0;47126:10:::2;::::0;47149:21:::2;::::0;47108:12;47126:49;47108:12;47126:49;47149:21;47126:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47107:68;;;47190:7;47182:36;;;::::0;-1:-1:-1;;;47182:36:0;;14632:2:1;47182:36:0::2;::::0;::::2;14614:21:1::0;14671:2;14651:18;;;14644:30;14710:18;14690;;;14683:46;14746:18;;47182:36:0::2;14430:340:1::0;34091:311:0;34228:28;34238:4;34244:2;34248:7;34228:9;:28::i;:::-;34279:48;34302:4;34308:2;34312:7;34321:5;34279:22;:48::i;:::-;34263:133;;;;-1:-1:-1;;;34263:133:0;;14977:2:1;34263:133:0;;;14959:21:1;15016:2;14996:18;;;14989:30;15055:34;15035:18;;;15028:62;15126:21;15106:18;;;15099:49;15165:19;;34263:133:0;14775:415:1;34263:133:0;34091:311;;;;:::o;31607:394::-;31705:13;31746:16;31754:7;34728:12;;-1:-1:-1;34718:22:0;34641:105;31746:16;31730:97;;;;-1:-1:-1;;;31730:97:0;;13039:2:1;31730:97:0;;;13021:21:1;13078:2;13058:18;;;13051:30;13117:34;13097:18;;;13090:62;13188:17;13168:18;;;13161:45;13223:19;;31730:97:0;12837:411:1;31730:97:0;31836:21;31860:10;:8;:10::i;:::-;31836:34;;31915:1;31897:7;31891:21;:25;:104;;;;;;;;;;;;;;;;;31952:7;31961:18;:7;:16;:18::i;:::-;31935:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31891:104;31877:118;31607:394;-1:-1:-1;;;31607:394:0:o;47354:107::-;47412:7;47435:20;47449:5;47435:13;:20::i;43838:201::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;-1:-1:-1;;;;;43927:22:0;::::1;43919:73;;;::::0;-1:-1:-1;;;43919:73:0;;7166:2:1;43919:73:0::1;::::0;::::1;7148:21:1::0;7205:2;7185:18;;;7178:30;7244:34;7224:18;;;7217:62;7315:8;7295:18;;;7288:36;7341:19;;43919:73:0::1;6964:402:1::0;43919:73:0::1;44003:28;44022:8;44003:18;:28::i;:::-;43838:201:::0;:::o;46730:159::-;42975:7;43002:6;-1:-1:-1;;;;;43002:6:0;25686:10;43149:23;43141:68;;;;-1:-1:-1;;;43141:68:0;;12678:2:1;43141:68:0;;;12660:21:1;;;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;12808:18;;43141:68:0;12476:356:1;43141:68:0;46836:20:::1;:47:::0;46730:159::o;38328:172::-;38425:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;38425:29:0;;;;;;;;;38466:28;;38425:24;;38466:28;;;;;;;38328:172;;;:::o;36693:1529::-;36790:35;36828:20;36840:7;36828:11;:20::i;:::-;36899:18;;36790:58;;-1:-1:-1;36857:22:0;;-1:-1:-1;;;;;36883:34:0;25686:10;-1:-1:-1;;;;;36883:34:0;;:81;;;-1:-1:-1;25686:10:0;36928:20;36940:7;36928:11;:20::i;:::-;-1:-1:-1;;;;;36928:36:0;;36883:81;:142;;;-1:-1:-1;36992:18:0;;36975:50;;25686:10;33421:186;:::i;36975:50::-;36857:169;;37051:17;37035:101;;;;-1:-1:-1;;;37035:101:0;;13810:2:1;37035:101:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;13959:20;13939:18;;;13932:48;13997:19;;37035:101:0;13608:414:1;37035:101:0;37183:4;-1:-1:-1;;;;;37161:26:0;:13;:18;;;-1:-1:-1;;;;;37161:26:0;;37145:98;;;;-1:-1:-1;;;37145:98:0;;12271:2:1;37145:98:0;;;12253:21:1;12310:2;12290:18;;;12283:30;12349:34;12329:18;;;12322:62;12420:8;12400:18;;;12393:36;12446:19;;37145:98:0;12069:402:1;37145:98:0;-1:-1:-1;;;;;37258:16:0;;37250:66;;;;-1:-1:-1;;;37250:66:0;;8801:2:1;37250:66:0;;;8783:21:1;8840:2;8820:18;;;8813:30;8879:34;8859:18;;;8852:62;8950:7;8930:18;;;8923:35;8975:19;;37250:66:0;8599:401:1;37250:66:0;37425:49;37442:1;37446:7;37455:13;:18;;;37425:8;:49::i;:::-;-1:-1:-1;;;;;37483:18:0;;;;;;:12;:18;;;;;:31;;37513:1;;37483:18;:31;;37513:1;;37483:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37521:16:0;;-1:-1:-1;37521:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37521:16:0;;:29;;-1:-1:-1;;37521:29:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37580:43:0;;;;;;;;-1:-1:-1;;;;;37580:43:0;;;;;;37606:15;37580:43;;;;;;;;;-1:-1:-1;37557:20:0;;;:11;:20;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;37873:11;37569:7;-1:-1:-1;37873:11:0;:::i;:::-;37936:1;37895:24;;;:11;:24;;;;;:29;37851:33;;-1:-1:-1;;;;;;37895:29:0;37891:236;;37953:20;37961:11;34728:12;;-1:-1:-1;34718:22:0;34641:105;37953:20;37949:171;;;38013:97;;;;;;;;38040:18;;-1:-1:-1;;;;;38013:97:0;;;;;;38071:28;;;;38013:97;;;;;;;;;;-1:-1:-1;37986:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;37949:171;38159:7;38155:2;-1:-1:-1;;;;;38140:27:0;38149:4;-1:-1:-1;;;;;38140:27:0;;;;;;;;;;;38174:42;36783:1439;;;36693:1529;;;:::o;38654:846::-;38744:24;;38783:12;38775:49;;;;-1:-1:-1;;;38775:49:0;;10755:2:1;38775:49:0;;;10737:21:1;10794:2;10774:18;;;10767:30;10833:26;10813:18;;;10806:54;10877:18;;38775:49:0;10553:348:1;38775:49:0;38831:16;38881:1;38850:28;38870:8;38850:17;:28;:::i;:::-;:32;;;;:::i;:::-;38831:51;-1:-1:-1;38904:18:0;38921:1;38904:14;:18;:::i;:::-;38893:8;:29;38889:81;;;38944:18;38961:1;38944:14;:18;:::i;:::-;38933:29;;38889:81;39085:17;39093:8;34728:12;;-1:-1:-1;34718:22:0;34641:105;39085:17;39077:68;;;;-1:-1:-1;;;39077:68:0;;17331:2:1;39077:68:0;;;17313:21:1;17370:2;17350:18;;;17343:30;17409:34;17389:18;;;17382:62;17480:8;17460:18;;;17453:36;17506:19;;39077:68:0;17129:402:1;39077:68:0;39169:17;39152:297;39193:8;39188:1;:13;39152:297;;39252:1;39221:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;39221:19:0;39217:225;;39267:31;39301:14;39313:1;39301:11;:14::i;:::-;39343:89;;;;;;;;39370:14;;-1:-1:-1;;;;;39343:89:0;;;;;;39397:24;;;;39343:89;;;;;;;;;;-1:-1:-1;39326:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39217:225:0;39203:3;;;;:::i;:::-;;;;39152:297;;;-1:-1:-1;39482:12:0;:8;39493:1;39482:12;:::i;:::-;39455:24;:39;-1:-1:-1;;;38654:846:0:o;34752:98::-;34817:27;34827:2;34831:8;34817:27;;;;;;;;;;;;:9;:27::i;:::-;34752:98;;:::o;30454:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;30571:16:0;30579:7;34728:12;;-1:-1:-1;34718:22:0;34641:105;30571:16;30563:71;;;;-1:-1:-1;;;30563:71:0;;7573:2:1;30563:71:0;;;7555:21:1;7612:2;7592:18;;;7585:30;7651:34;7631:18;;;7624:62;7722:12;7702:18;;;7695:40;7752:19;;30563:71:0;7371:406:1;30563:71:0;30643:26;30691:12;30680:7;:23;30676:93;;30735:22;30745:12;30735:7;:22;:::i;:::-;:26;;30760:1;30735:26;:::i;:::-;30714:47;;30676:93;30797:7;30777:212;30814:18;30806:4;:26;30777:212;;30851:31;30885:17;;;:11;:17;;;;;;;;;30851:51;;;;;;;;;-1:-1:-1;;;;;30851:51:0;;;;;;;;;;;;;;;;;;30915:28;30911:71;;30963:9;30454:606;-1:-1:-1;;;;30454:606:0:o;30911:71::-;-1:-1:-1;30834:6:0;;;;:::i;:::-;;;;30777:212;;;-1:-1:-1;30997:57:0;;-1:-1:-1;;;30997:57:0;;18098:2:1;30997:57:0;;;18080:21:1;18137:2;18117:18;;;18110:30;18176:34;18156:18;;;18149:62;18247:17;18227:18;;;18220:45;18282:19;;30997:57:0;17896:411:1;44199:191:0;44273:16;44292:6;;-1:-1:-1;;;;;44309:17:0;;;;;;;;;;44342:40;;44292:6;;;;;;;44342:40;;44273:16;44342:40;44262:128;44199:191;:::o;45587:371::-;45245:9;45258:10;45245:23;45237:66;;;;-1:-1:-1;;;45237:66:0;;9970:2:1;45237:66:0;;;9952:21:1;10009:2;9989:18;;;9982:30;10048:32;10028:18;;;10021:60;10098:18;;45237:66:0;9768:354:1;45237:66:0;45706:14:::1;45694:8;45678:13;28202:12:::0;;;28126:94;45678:13:::1;:24;;;;:::i;:::-;:42;;45670:73;;;::::0;-1:-1:-1;;;45670:73:0;;11924:2:1;45670:73:0::1;::::0;::::1;11906:21:1::0;11963:2;11943:18;;;11936:30;12002:20;11982:18;;;11975:48;12040:18;;45670:73:0::1;11722:342:1::0;45670:73:0::1;45786:8;45772:11;;:22;;;;:::i;:::-;45758:9;:37;;45750:72;;;::::0;-1:-1:-1;;;45750:72:0;;15397:2:1;45750:72:0::1;::::0;::::1;15379:21:1::0;15436:2;15416:18;;;15409:30;15475:24;15455:18;;;15448:52;15517:18;;45750:72:0::1;15195:346:1::0;45750:72:0::1;45865:8;45851:11;;:22;;;;:::i;:::-;45837:9;:37;;45829:85;;;::::0;-1:-1:-1;;;45829:85:0;;11108:2:1;45829:85:0::1;::::0;::::1;11090:21:1::0;11147:2;11127:18;;;11120:30;11186:34;11166:18;;;11159:62;11257:5;11237:18;;;11230:33;11280:19;;45829:85:0::1;10906:399:1::0;45829:85:0::1;45921:31;45931:10;45943:8;45921:9;:31::i;40043:690::-:0;40180:4;-1:-1:-1;;;;;40197:13:0;;5435:20;5483:8;40193:535;;40236:72;;;;;-1:-1:-1;;;;;40236:36:0;;;;;:72;;25686:10;;40287:4;;40293:7;;40302:5;;40236:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40236:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40223:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40467:13:0;;40463:215;;40500:61;;-1:-1:-1;;;40500:61:0;;14977:2:1;40500:61:0;;;14959:21:1;15016:2;14996:18;;;14989:30;15055:34;15035:18;;;15028:62;15126:21;15106:18;;;15099:49;15165:19;;40500:61:0;14775:415:1;40463:215:0;40646:6;40640:13;40631:6;40627:2;40623:15;40616:38;40223:464;40358:55;;40368:45;40358:55;;-1:-1:-1;40351:62:0;;40193:535;-1:-1:-1;40716:4:0;40193:535;40043:690;;;;;;:::o;46498:108::-;46558:13;46587;46580:20;;;;;:::i;2533:723::-;2589:13;2810:10;2806:53;;-1:-1:-1;;2837:10:0;;;;;;;;;;;;;;;;;;2533:723::o;2806:53::-;2884:5;2869:12;2925:78;2932:9;;2925:78;;2958:8;;;;:::i;:::-;;-1:-1:-1;2981:10:0;;-1:-1:-1;2989:2:0;2981:10;;:::i;:::-;;;2925:78;;;3013:19;3045:6;3035:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3035:17:0;;3013:39;;3063:154;3070:10;;3063:154;;3097:11;3107:1;3097:11;;:::i;:::-;;-1:-1:-1;3166:10:0;3174:2;3166:5;:10;:::i;:::-;3153:24;;:2;:24;:::i;:::-;3140:39;;3123:6;3130;3123:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3194:11:0;3203:2;3194:11;;:::i;:::-;;;3063:154;;30208:240;30269:7;-1:-1:-1;;;;;30301:19:0;;30285:102;;;;-1:-1:-1;;;30285:102:0;;9552:2:1;30285:102:0;;;9534:21:1;9591:2;9571:18;;;9564:30;9630:34;9610:18;;;9603:62;9701:19;9681:18;;;9674:47;9738:19;;30285:102:0;9350:413:1;30285:102:0;-1:-1:-1;;;;;;30409:19:0;;;;;:12;:19;;;;;:32;;;;;;;30208:240::o;35189:1272::-;35317:12;;-1:-1:-1;;;;;35344:16:0;;35336:62;;;;-1:-1:-1;;;35336:62:0;;16106:2:1;35336:62:0;;;16088:21:1;16145:2;16125:18;;;16118:30;16184:34;16164:18;;;16157:62;16255:3;16235:18;;;16228:31;16276:19;;35336:62:0;15904:397:1;35336:62:0;35535:21;35543:12;34728;;-1:-1:-1;34718:22:0;34641:105;35535:21;35534:22;35526:64;;;;-1:-1:-1;;;35526:64:0;;15748:2:1;35526:64:0;;;15730:21:1;15787:2;15767:18;;;15760:30;15826:31;15806:18;;;15799:59;15875:18;;35526:64:0;15546:353:1;35526:64:0;35617:12;35605:8;:24;;35597:71;;;;-1:-1:-1;;;35597:71:0;;18928:2:1;35597:71:0;;;18910:21:1;18967:2;18947:18;;;18940:30;19006:34;18986:18;;;18979:62;19077:4;19057:18;;;19050:32;19099:19;;35597:71:0;18726:398:1;35597:71:0;-1:-1:-1;;;;;35780:16:0;;35747:30;35780:16;;;:12;:16;;;;;;;;;35747:49;;;;;;;;;;;;;;;;;;;;;;;;;;;35822:119;;;;;;;;35842:19;;35747:49;;35822:119;;;35842:39;;35872:8;;35842:39;:::i;:::-;35822:119;;;;;;35925:8;35890:11;:24;;;:44;;;;:::i;:::-;35822:119;;;;;;;-1:-1:-1;;;;;35803:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;35976:43;;;;;;;;;;;36002:15;35976:43;;;;;;;;35948:25;;;:11;:25;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35960:12;;36072:281;36096:8;36092:1;:12;36072:281;;;36125:38;;36150:12;;-1:-1:-1;;;;;36125:38:0;;;36142:1;;36125:38;;36142:1;;36125:38;36190:59;36221:1;36225:2;36229:12;36243:5;36190:22;:59::i;:::-;36172:150;;;;-1:-1:-1;;;36172:150:0;;14977:2:1;36172:150:0;;;14959:21:1;15016:2;14996:18;;;14989:30;15055:34;15035:18;;;15028:62;15126:21;15106:18;;;15099:49;15165:19;;36172:150:0;14775:415:1;36172:150:0;36331:14;;;;:::i;:::-;;;;36106:3;;;;;:::i;:::-;;;;36072:281;;;-1:-1:-1;36361:12:0;:27;;;36395:60;34091:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1197::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1787:2;1781:9;1849:4;1841:13;;1692:66;1837:22;;;1861:2;1833:31;1829:40;1817:53;;;1885:18;;;1905:22;;;1882:46;1879:72;;;1931:18;;:::i;:::-;1971:10;1967:2;1960:22;2006:2;1998:6;1991:18;2046:7;2041:2;2036;2032;2028:11;2024:20;2021:33;2018:53;;;2067:1;2064;2057:12;2018:53;2123:2;2118;2114;2110:11;2105:2;2097:6;2093:15;2080:46;2168:1;2163:2;2158;2150:6;2146:15;2142:24;2135:35;2189:6;2179:16;;;;;;;1004:1197;;;;;;;:::o;2206:347::-;2271:6;2279;2332:2;2320:9;2311:7;2307:23;2303:32;2300:52;;;2348:1;2345;2338:12;2300:52;2371:29;2390:9;2371:29;:::i;:::-;2361:39;;2450:2;2439:9;2435:18;2422:32;2497:5;2490:13;2483:21;2476:5;2473:32;2463:60;;2519:1;2516;2509:12;2463:60;2542:5;2532:15;;;2206:347;;;;;:::o;2558:254::-;2626:6;2634;2687:2;2675:9;2666:7;2662:23;2658:32;2655:52;;;2703:1;2700;2693:12;2655:52;2726:29;2745:9;2726:29;:::i;:::-;2716:39;2802:2;2787:18;;;;2774:32;;-1:-1:-1;;;2558:254:1:o;2817:245::-;2875:6;2928:2;2916:9;2907:7;2903:23;2899:32;2896:52;;;2944:1;2941;2934:12;2896:52;2983:9;2970:23;3002:30;3026:5;3002:30;:::i;3067:249::-;3136:6;3189:2;3177:9;3168:7;3164:23;3160:32;3157:52;;;3205:1;3202;3195:12;3157:52;3237:9;3231:16;3256:30;3280:5;3256:30;:::i;3321:592::-;3392:6;3400;3453:2;3441:9;3432:7;3428:23;3424:32;3421:52;;;3469:1;3466;3459:12;3421:52;3509:9;3496:23;3538:18;3579:2;3571:6;3568:14;3565:34;;;3595:1;3592;3585:12;3565:34;3633:6;3622:9;3618:22;3608:32;;3678:7;3671:4;3667:2;3663:13;3659:27;3649:55;;3700:1;3697;3690:12;3649:55;3740:2;3727:16;3766:2;3758:6;3755:14;3752:34;;;3782:1;3779;3772:12;3752:34;3827:7;3822:2;3813:6;3809:2;3805:15;3801:24;3798:37;3795:57;;;3848:1;3845;3838:12;3795:57;3879:2;3871:11;;;;;3901:6;;-1:-1:-1;3321:592:1;;-1:-1:-1;;;;3321:592:1:o;3918:180::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;-1:-1:-1;4069:23:1;;3918:180;-1:-1:-1;3918:180:1:o;4103:284::-;4161:6;4214:2;4202:9;4193:7;4189:23;4185:32;4182:52;;;4230:1;4227;4220:12;4182:52;4269:9;4256:23;4319:18;4312:5;4308:30;4301:5;4298:41;4288:69;;4353:1;4350;4343:12;4392:316;4433:3;4471:5;4465:12;4498:6;4493:3;4486:19;4514:63;4570:6;4563:4;4558:3;4554:14;4547:4;4540:5;4536:16;4514:63;:::i;:::-;4622:2;4610:15;4627:66;4606:88;4597:98;;;;4697:4;4593:109;;4392:316;-1:-1:-1;;4392:316:1:o;4713:470::-;4892:3;4930:6;4924:13;4946:53;4992:6;4987:3;4980:4;4972:6;4968:17;4946:53;:::i;:::-;5062:13;;5021:16;;;;5084:57;5062:13;5021:16;5118:4;5106:17;;5084:57;:::i;:::-;5157:20;;4713:470;-1:-1:-1;;;;4713:470:1:o;5629:511::-;5823:4;-1:-1:-1;;;;;5933:2:1;5925:6;5921:15;5910:9;5903:34;5985:2;5977:6;5973:15;5968:2;5957:9;5953:18;5946:43;;6025:6;6020:2;6009:9;6005:18;5998:34;6068:3;6063:2;6052:9;6048:18;6041:31;6089:45;6129:3;6118:9;6114:19;6106:6;6089:45;:::i;:::-;6081:53;5629:511;-1:-1:-1;;;;;;5629:511:1:o;6337:219::-;6486:2;6475:9;6468:21;6449:4;6506:44;6546:2;6535:9;6531:18;6523:6;6506:44;:::i;19699:253::-;19739:3;19767:34;19828:2;19825:1;19821:10;19858:2;19855:1;19851:10;19889:3;19885:2;19881:12;19876:3;19873:21;19870:47;;;19897:18;;:::i;19957:128::-;19997:3;20028:1;20024:6;20021:1;20018:13;20015:39;;;20034:18;;:::i;:::-;-1:-1:-1;20070:9:1;;19957:128::o;20090:120::-;20130:1;20156;20146:35;;20161:18;;:::i;:::-;-1:-1:-1;20195:9:1;;20090:120::o;20215:228::-;20255:7;20381:1;20313:66;20309:74;20306:1;20303:81;20298:1;20291:9;20284:17;20280:105;20277:131;;;20388:18;;:::i;:::-;-1:-1:-1;20428:9:1;;20215:228::o;20448:246::-;20488:4;20517:34;20601:10;;;;20571;;20623:12;;;20620:38;;;20638:18;;:::i;:::-;20675:13;;20448:246;-1:-1:-1;;;20448:246:1:o;20699:125::-;20739:4;20767:1;20764;20761:8;20758:34;;;20772:18;;:::i;:::-;-1:-1:-1;20809:9:1;;20699:125::o;20829:258::-;20901:1;20911:113;20925:6;20922:1;20919:13;20911:113;;;21001:11;;;20995:18;20982:11;;;20975:39;20947:2;20940:10;20911:113;;;21042:6;21039:1;21036:13;21033:48;;;-1:-1:-1;;21077:1:1;21059:16;;21052:27;20829:258::o;21092:196::-;21131:3;21159:5;21149:39;;21168:18;;:::i;:::-;-1:-1:-1;21215:66:1;21204:78;;21092:196::o;21293:437::-;21372:1;21368:12;;;;21415;;;21436:61;;21490:4;21482:6;21478:17;21468:27;;21436:61;21543:2;21535:6;21532:14;21512:18;21509:38;21506:218;;;21580:77;21577:1;21570:88;21681:4;21678:1;21671:15;21709:4;21706:1;21699:15;21506:218;;21293:437;;;:::o;21735:195::-;21774:3;21805:66;21798:5;21795:77;21792:103;;;21875:18;;:::i;:::-;-1:-1:-1;21922:1:1;21911:13;;21735:195::o;21935:112::-;21967:1;21993;21983:35;;21998:18;;:::i;:::-;-1:-1:-1;22032:9:1;;21935:112::o;22052:184::-;22104:77;22101:1;22094:88;22201:4;22198:1;22191:15;22225:4;22222:1;22215:15;22241:184;22293:77;22290:1;22283:88;22390:4;22387:1;22380:15;22414:4;22411:1;22404:15;22430:184;22482:77;22479:1;22472:88;22579:4;22576:1;22569:15;22603:4;22600:1;22593:15;22619:184;22671:77;22668:1;22661:88;22768:4;22765:1;22758:15;22792:4;22789:1;22782:15;22808:177;22893:66;22886:5;22882:78;22875:5;22872:89;22862:117;;22975:1;22972;22965:12

Swarm Source

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