ETH Price: $3,505.48 (+0.14%)
Gas: 5 Gwei

Token

(0x8b3c69abc8c588e3eceb2eedf3bccf8fea950241)
 

Overview

Max Total Supply

2,700 ERC-721 TOKEN*

Holders

550

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
decolife.eth
Balance
0 ERC-721 TOKEN*
0x6b81cced22f9c23d1e141c00b9382603e9eef9fb
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:
DeckOfDegeneracy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-09
*/

// SPDX-License-Identifier: GPL-3.0

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @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 (last updated v4.5.0) (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);

    /**
     * @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/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

// File: @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: contracts/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 = 1;

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



pragma solidity >=0.7.0 <0.9.0;




contract DeckOfDegeneracy is ERC721A, Ownable {
	using Strings for uint256;

	string baseURI;
	string baseExtension = ".json";
	string notRevealedUri;
	uint256 public cost = .1 ether;
	uint256 public maxSupply = 2700;
	uint256 public maxMintPerBatch = 108;
	bool public paused = true;
	bool public revealed = false;
	bool public isPresale = true;
	bool public isMainSale = false;
	bytes32 public whitelistMerkleRoot;
	bool public useWhitelistedAddressesBackup = false;
	mapping(address => uint256) public addressMintedBalance;
	mapping(address => bool) public whitelistedAddressesBackup;

	constructor(
		string memory _name,
		string memory _symbol,
		string memory _notRevealedUri
	) ERC721A(_name, _symbol, maxMintPerBatch, maxSupply) {
		notRevealedUri = _notRevealedUri;
	}

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

	function _generateMerkleLeaf(address account)
		internal
		pure
		returns (bytes32)
	{
		return keccak256(abi.encodePacked(account));
	}

	/**
	 * Validates a Merkle proof based on a provided merkle root and leaf node.
	 */
	function _verify(
		bytes32[] memory proof,
		bytes32 merkleRoot,
		bytes32 leafNode
	) internal pure returns (bool) {
		return MerkleProof.verify(proof, merkleRoot, leafNode);
	}

	// require checks refactored for presaleMint() & mint().
	function requireChecks(uint256 _mintAmount) internal {
		require(paused == false, "the contract is paused");
		require(_mintAmount > 0, "need to mint at least 1 NFT");
		require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");
		require(
			_mintAmount <= maxMintPerBatch,
			"max NFT per address exceeded"
		);

	}

	/**
	 * Go all in!
	 *
	 * Limit: 2 Whitelist Presale
	 * Only whitelisted individuals can mint presale. We utilize a Merkle Proof to determine who is whitelisted.
	 *
	 * If these cases are not met, the mint WILL fail, and your gas will NOT be refunded.
	 * Please only mint through deckofdegeneracy.io unless you're absolutely sure you know what you're doing!
	 */
	function presaleMint(uint256 _mintAmount, bytes32[] calldata proof)
		public
		payable
	{
		requireChecks(_mintAmount);
		// The owner of the smart contract can mint at any time, regardless of if the presale is on.
		if (msg.sender != owner()) {
			if (useWhitelistedAddressesBackup) {
				require(whitelistedAddressesBackup[msg.sender] == true, "user is not whitelisted");
			} else {
				require(
					_verify(
						proof,
						whitelistMerkleRoot,
						_generateMerkleLeaf(msg.sender)
					),
					"user is not whitelisted"
				);
			}
		}
		
		if (msg.sender != owner()) {
			require(msg.value >= cost * _mintAmount, "insufficient funds");
		}

		_safeMint(msg.sender, _mintAmount);
	}


	// mint function for the public sale
	function mint(uint256 _mintAmount)
		public
		payable
	{

		requireChecks(_mintAmount);
		require(isMainSale == true, "sale not on");
		if (msg.sender != owner()) {
			require(msg.value >= cost * _mintAmount, "insufficient funds");
		}

		_safeMint(msg.sender, _mintAmount);
	}


	function tokenURI(uint256 tokenId)
			public
			view
			virtual
			override
			returns (string memory)
		{
			require(
				_exists(tokenId),
				"ERC721Metadata: URI query for nonexistent token"
			);

			if (revealed == false) {
				return notRevealedUri;
			}

			string memory currentBaseURI = _baseURI();
			return
				bytes(currentBaseURI).length > 0
					? string(
						abi.encodePacked(
							currentBaseURI,
							tokenId.toString(),
							baseExtension
						)
					)
					: "";
	}

	/** Sets the merkle root for the whitelisted individuals. */
	function setWhiteListMerkleRoot(bytes32 merkleRoot) public onlyOwner {
		whitelistMerkleRoot = merkleRoot;
	}

	function setWhitelistedAddressesBackup(address[] memory addresses) public onlyOwner {
		for (uint256 i = 0; i < addresses.length; i++) {
			whitelistedAddressesBackup[addresses[i]] = true;
		}
	}

	function setBackupWhitelistedAddressState(bool state) public onlyOwner {
		useWhitelistedAddressesBackup = state;
	}

	//cost in Wei
	function setCost(uint256 _newCost) public onlyOwner {
		cost = _newCost;
	}

	function setBaseURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}

	function setBaseExtension(string memory _newBaseExtension)
		public
		onlyOwner
	{
		baseExtension = _newBaseExtension;
	}

	function setRevealedState(bool revealedState) public onlyOwner {
		revealed = revealedState;
	}

	function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
		notRevealedUri = _notRevealedURI;
	}

	function pause(bool _state) public onlyOwner {
		paused = _state;
	}

	function setPresale(bool _state) public onlyOwner {
		isPresale = _state;
	}

	function setMainSale(bool _state) public onlyOwner {
		isMainSale = _state;
	}

	function withdraw() public payable onlyOwner {
		(bool os, ) = payable(owner()).call{value: address(this).balance}("");
		require(os);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"bool","name":"state","type":"bool"}],"name":"setBackupWhitelistedAddressState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"revealedState","type":"bool"}],"name":"setRevealedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelistedAddressesBackup","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":"useWhitelistedAddressesBackup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddressesBackup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60016000908155600755610100604052600560c081905264173539b7b760d91b60e09081526200003391600a919062000222565b5067016345785d8a0000600c55610a8c600d55606c600e55600f805463ffffffff1916620100011790556011805460ff191690553480156200007457600080fd5b50604051620030643803806200306483398101604081905262000097916200037f565b8282600e54600d54600081116200010c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000103565b83516200018390600190602087019062000222565b5082516200019990600290602086019062000222565b5060a09190915260805250620001b1905033620001d0565b8051620001c690600b90602084019062000222565b5050505062000463565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002309062000410565b90600052602060002090601f0160209004810192826200025457600085556200029f565b82601f106200026f57805160ff19168380011785556200029f565b828001600101855582156200029f579182015b828111156200029f57825182559160200191906001019062000282565b50620002ad929150620002b1565b5090565b5b80821115620002ad5760008155600101620002b2565b600082601f830112620002da57600080fd5b81516001600160401b0380821115620002f757620002f76200044d565b604051601f8301601f19908116603f011681019082821181831017156200032257620003226200044d565b816040528381526020925086838588010111156200033f57600080fd5b600091505b8382101562000363578582018301518183018401529082019062000344565b83821115620003755760008385830101525b9695505050505050565b6000806000606084860312156200039557600080fd5b83516001600160401b0380821115620003ad57600080fd5b620003bb87838801620002c8565b94506020860151915080821115620003d257600080fd5b620003e087838801620002c8565b93506040860151915080821115620003f757600080fd5b506200040686828701620002c8565b9150509250925092565b600181811c908216806200042557607f821691505b602082108114156200044757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a051612bd06200049460003960008181611b0c01528181611b3601526120d1015260005050612bd06000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063c87b56dd116100c1578063e3e1e8ef1161007a578063e3e1e8ef14610737578063e62630261461074a578063e985e9c514610760578063f2c4ce1e146107a9578063f2fde38b146107c9578063fce237df146107e957600080fd5b8063c87b56dd1461068a578063d1f2efd5146106aa578063d5abeb01146106cb578063d7224ba0146106e1578063da3ef23f146106f7578063e08e65ea1461071757600080fd5b8063a22cb46511610113578063a22cb465146105da578063aa98e0c6146105fa578063b88d4fde14610610578063be11ce0614610630578063c54e73e31461064a578063c737e0c61461066a57600080fd5b8063715018a61461055f5780638da5cb5b1461057457806395364a841461059257806395d89b41146105b2578063a0712d68146105c757600080fd5b80633945d9d5116101e857806351830227116101ac57806351830227146104a657806355f804b3146104c55780635c975abb146104e55780635e1b065c146104ff5780636352211e1461051f57806370a082311461053f57600080fd5b80633945d9d51461041e5780633ccfd60b1461043e57806342842e0e1461044657806344a0d68a146104665780634f6ccce71461048657600080fd5b806313faede61161023a57806313faede61461034857806318160ddd1461036c57806318cae2691461038157806323b872dd146103ae5780632f745c59146103ce5780633913124c146103ee57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028357600080fd5b506102976102923660046126cf565b610809565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461269b565b610876565b005b3480156102da57600080fd5b506102e36108bc565b6040516102a391906128fe565b3480156102fc57600080fd5b5061031061030b3660046126b6565b61094e565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102cc6103433660046125bd565b6109d9565b34801561035457600080fd5b5061035e600c5481565b6040519081526020016102a3565b34801561037857600080fd5b5060005461035e565b34801561038d57600080fd5b5061035e61039c36600461248d565b60126020526000908152604090205481565b3480156103ba57600080fd5b506102cc6103c93660046124db565b610af1565b3480156103da57600080fd5b5061035e6103e93660046125bd565b610afc565b3480156103fa57600080fd5b5061029761040936600461248d565b60136020526000908152604090205460ff1681565b34801561042a57600080fd5b506102cc61043936600461269b565b610c6a565b6102cc610cb2565b34801561045257600080fd5b506102cc6104613660046124db565b610d50565b34801561047257600080fd5b506102cc6104813660046126b6565b610d6b565b34801561049257600080fd5b5061035e6104a13660046126b6565b610d9a565b3480156104b257600080fd5b50600f5461029790610100900460ff1681565b3480156104d157600080fd5b506102cc6104e0366004612709565b610dfc565b3480156104f157600080fd5b50600f546102979060ff1681565b34801561050b57600080fd5b506102cc61051a3660046125e7565b610e3d565b34801561052b57600080fd5b5061031061053a3660046126b6565b610ecf565b34801561054b57600080fd5b5061035e61055a36600461248d565b610ee1565b34801561056b57600080fd5b506102cc610f72565b34801561058057600080fd5b506008546001600160a01b0316610310565b34801561059e57600080fd5b50600f546102979062010000900460ff1681565b3480156105be57600080fd5b506102e3610fa8565b6102cc6105d53660046126b6565b610fb7565b3480156105e657600080fd5b506102cc6105f5366004612593565b61107a565b34801561060657600080fd5b5061035e60105481565b34801561061c57600080fd5b506102cc61062b366004612517565b61113f565b34801561063c57600080fd5b506011546102979060ff1681565b34801561065657600080fd5b506102cc61066536600461269b565b611178565b34801561067657600080fd5b506102cc61068536600461269b565b6111be565b34801561069657600080fd5b506102e36106a53660046126b6565b6111fb565b3480156106b657600080fd5b50600f54610297906301000000900460ff1681565b3480156106d757600080fd5b5061035e600d5481565b3480156106ed57600080fd5b5061035e60075481565b34801561070357600080fd5b506102cc610712366004612709565b61136c565b34801561072357600080fd5b506102cc6107323660046126b6565b6113a9565b6102cc610745366004612752565b6113d8565b34801561075657600080fd5b5061035e600e5481565b34801561076c57600080fd5b5061029761077b3660046124a8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107b557600080fd5b506102cc6107c4366004612709565b61158d565b3480156107d557600080fd5b506102cc6107e436600461248d565b6115ca565b3480156107f557600080fd5b506102cc61080436600461269b565b611662565b60006001600160e01b031982166380ac58cd60e01b148061083a57506001600160e01b03198216635b5e139f60e01b145b8061085557506001600160e01b0319821663780e9d6360e01b145b8061087057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108a95760405162461bcd60e51b81526004016108a090612911565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108cb90612ac2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f790612ac2565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061095b826000541190565b6109bd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108a0565b506000908152600560205260409020546001600160a01b031690565b60006109e482610ecf565b9050806001600160a01b0316836001600160a01b03161415610a535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a0565b336001600160a01b0382161480610a6f5750610a6f813361077b565b610ae15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a0565b610aec8383836116a6565b505050565b610aec838383611702565b6000610b0783610ee1565b8210610b605760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a0565b600080549080805b83811015610c0a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bbb57805192505b876001600160a01b0316836001600160a01b03161415610bf75786841415610be95750935061087092505050565b83610bf381612afd565b9450505b5080610c0281612afd565b915050610b68565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a0565b6008546001600160a01b03163314610c945760405162461bcd60e51b81526004016108a090612911565b600f805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016108a090612911565b6000610cf06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3a576040519150601f19603f3d011682016040523d82523d6000602084013e610d3f565b606091505b5050905080610d4d57600080fd5b50565b610aec8383836040518060200160405280600081525061113f565b6008546001600160a01b03163314610d955760405162461bcd60e51b81526004016108a090612911565b600c55565b600080548210610df85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a0565b5090565b6008546001600160a01b03163314610e265760405162461bcd60e51b81526004016108a090612911565b8051610e39906009906020840190612379565b5050565b6008546001600160a01b03163314610e675760405162461bcd60e51b81526004016108a090612911565b60005b8151811015610e3957600160136000848481518110610e8b57610e8b612b58565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610ec781612afd565b915050610e6a565b6000610eda82611a8a565b5192915050565b60006001600160a01b038216610f4d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610f9c5760405162461bcd60e51b81526004016108a090612911565b610fa66000611c34565b565b6060600280546108cb90612ac2565b610fc081611c86565b600f546301000000900460ff16151560011461100c5760405162461bcd60e51b815260206004820152600b60248201526a39b0b632903737ba1037b760a91b60448201526064016108a0565b6008546001600160a01b031633146110705780600c5461102c9190612a21565b3410156110705760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108a0565b610d4d3382611dd2565b6001600160a01b0382163314156110d35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114a848484611702565b61115684848484611dec565b6111725760405162461bcd60e51b81526004016108a090612946565b50505050565b6008546001600160a01b031633146111a25760405162461bcd60e51b81526004016108a090612911565b600f8054911515620100000262ff000019909216919091179055565b6008546001600160a01b031633146111e85760405162461bcd60e51b81526004016108a090612911565b6011805460ff1916911515919091179055565b6060611208826000541190565b61126c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a0565b600f54610100900460ff1661130d57600b805461128890612ac2565b80601f01602080910402602001604051908101604052809291908181526020018280546112b490612ac2565b80156113015780601f106112d657610100808354040283529160200191611301565b820191906000526020600020905b8154815290600101906020018083116112e457829003601f168201915b50505050509050919050565b6000611317611efa565b905060008151116113375760405180602001604052806000815250611365565b8061134184611f09565b600a604051602001611355939291906127fd565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113965760405162461bcd60e51b81526004016108a090612911565b8051610e3990600a906020840190612379565b6008546001600160a01b031633146113d35760405162461bcd60e51b81526004016108a090612911565b601055565b6113e183611c86565b6008546001600160a01b0316331461151f5760115460ff1615611461573360009081526013602052604090205460ff16151560011461145c5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108a0565b61151f565b6114d982828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601054604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050612007565b61151f5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108a0565b6008546001600160a01b031633146115835782600c5461153f9190612a21565b3410156115835760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108a0565b610aec3384611dd2565b6008546001600160a01b031633146115b75760405162461bcd60e51b81526004016108a090612911565b8051610e3990600b906020840190612379565b6008546001600160a01b031633146115f45760405162461bcd60e51b81526004016108a090612911565b6001600160a01b0381166116595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a0565b610d4d81611c34565b6008546001600160a01b0316331461168c5760405162461bcd60e51b81526004016108a090612911565b600f80549115156101000261ff0019909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170d82611a8a565b80519091506000906001600160a01b0316336001600160a01b031614806117445750336117398461094e565b6001600160a01b0316145b8061175657508151611756903361077b565b9050806117c05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a0565b846001600160a01b031682600001516001600160a01b0316146118345760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a0565b6001600160a01b0384166118985760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a0565b6118a860008484600001516116a6565b6001600160a01b03851660009081526004602052604081208054600192906118da9084906001600160801b0316612a40565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611926918591166129ca565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119ae8460016129f5565b6000818152600360205260409020549091506001600160a01b0316611a40576119d8816000541190565b15611a405760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611aa9826000541190565b611b085760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a0565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b6957611b5b7f000000000000000000000000000000000000000000000000000000000000000084612a68565b611b669060016129f5565b90505b825b818110611bd3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bc057949350505050565b5080611bcb81612aab565b915050611b6b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108a0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f5460ff1615611cd25760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108a0565b60008111611d225760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108a0565b600d5481611d2f60005490565b611d3991906129f5565b1115611d805760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108a0565b600e54811115610d4d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108a0565b610e39828260405180602001604052806000815250612014565b60006001600160a01b0384163b15611eee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e309033908990889088906004016128c1565b602060405180830381600087803b158015611e4a57600080fd5b505af1925050508015611e7a575060408051601f3d908101601f19168201909252611e77918101906126ec565b60015b611ed4573d808015611ea8576040519150601f19603f3d011682016040523d82523d6000602084013e611ead565b606091505b508051611ecc5760405162461bcd60e51b81526004016108a090612946565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ef2565b5060015b949350505050565b6060600980546108cb90612ac2565b606081611f2d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f575780611f4181612afd565b9150611f509050600a83612a0d565b9150611f31565b60008167ffffffffffffffff811115611f7257611f72612b6e565b6040519080825280601f01601f191660200182016040528015611f9c576020820181803683370190505b5090505b8415611ef257611fb1600183612a68565b9150611fbe600a86612b18565b611fc99060306129f5565b60f81b818381518110611fde57611fde612b58565b60200101906001600160f81b031916908160001a905350612000600a86612a0d565b9450611fa0565b6000611ef28484846122ef565b6000546001600160a01b0384166120775760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a0565b612082816000541190565b156120cf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a0565b7f000000000000000000000000000000000000000000000000000000000000000083111561214a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108a0565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121a69087906129ca565b6001600160801b031681526020018583602001516121c491906129ca565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122e45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a86000888488611dec565b6122c45760405162461bcd60e51b81526004016108a090612946565b816122ce81612afd565b92505080806122dc90612afd565b91505061225b565b506000819055611a82565b6000826122fc8584612305565b14949350505050565b600081815b845181101561237157600085828151811061232757612327612b58565b6020026020010151905080831161234d576000838152602082905260409020925061235e565b600081815260208490526040902092505b508061236981612afd565b91505061230a565b509392505050565b82805461238590612ac2565b90600052602060002090601f0160209004810192826123a757600085556123ed565b82601f106123c057805160ff19168380011785556123ed565b828001600101855582156123ed579182015b828111156123ed5782518255916020019190600101906123d2565b50610df89291505b80821115610df857600081556001016123f5565b600067ffffffffffffffff83111561242357612423612b6e565b612436601f8401601f1916602001612999565b905082815283838301111561244a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461247857600080fd5b919050565b8035801515811461247857600080fd5b60006020828403121561249f57600080fd5b61136582612461565b600080604083850312156124bb57600080fd5b6124c483612461565b91506124d260208401612461565b90509250929050565b6000806000606084860312156124f057600080fd5b6124f984612461565b925061250760208501612461565b9150604084013590509250925092565b6000806000806080858703121561252d57600080fd5b61253685612461565b935061254460208601612461565b925060408501359150606085013567ffffffffffffffff81111561256757600080fd5b8501601f8101871361257857600080fd5b61258787823560208401612409565b91505092959194509250565b600080604083850312156125a657600080fd5b6125af83612461565b91506124d26020840161247d565b600080604083850312156125d057600080fd5b6125d983612461565b946020939093013593505050565b600060208083850312156125fa57600080fd5b823567ffffffffffffffff8082111561261257600080fd5b818501915085601f83011261262657600080fd5b81358181111561263857612638612b6e565b8060051b9150612649848301612999565b8181528481019084860184860187018a101561266457600080fd5b600095505b8386101561268e5761267a81612461565b835260019590950194918601918601612669565b5098975050505050505050565b6000602082840312156126ad57600080fd5b6113658261247d565b6000602082840312156126c857600080fd5b5035919050565b6000602082840312156126e157600080fd5b813561136581612b84565b6000602082840312156126fe57600080fd5b815161136581612b84565b60006020828403121561271b57600080fd5b813567ffffffffffffffff81111561273257600080fd5b8201601f8101841361274357600080fd5b611ef284823560208401612409565b60008060006040848603121561276757600080fd5b83359250602084013567ffffffffffffffff8082111561278657600080fd5b818601915086601f83011261279a57600080fd5b8135818111156127a957600080fd5b8760208260051b85010111156127be57600080fd5b6020830194508093505050509250925092565b600081518084526127e9816020860160208601612a7f565b601f01601f19169290920160200192915050565b6000845160206128108285838a01612a7f565b8551918401916128238184848a01612a7f565b8554920191600090600181811c908083168061284057607f831692505b85831081141561285e57634e487b7160e01b85526022600452602485fd5b8080156128725760018114612883576128b0565b60ff198516885283880195506128b0565b60008b81526020902060005b858110156128a85781548a82015290840190880161288f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f4908301846127d1565b9695505050505050565b60208152600061136560208301846127d1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129c2576129c2612b6e565b604052919050565b60006001600160801b038083168185168083038211156129ec576129ec612b2c565b01949350505050565b60008219821115612a0857612a08612b2c565b500190565b600082612a1c57612a1c612b42565b500490565b6000816000190483118215151615612a3b57612a3b612b2c565b500290565b60006001600160801b0383811690831681811015612a6057612a60612b2c565b039392505050565b600082821015612a7a57612a7a612b2c565b500390565b60005b83811015612a9a578181015183820152602001612a82565b838111156111725750506000910152565b600081612aba57612aba612b2c565b506000190190565b600181811c90821680612ad657607f821691505b60208210811415612af757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1157612b11612b2c565b5060010190565b600082612b2757612b27612b42565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4d57600080fdfea2646970667358221220e1a98afa9022c8f499978284cc224ab16246aaf87016b508312873007db936e764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000124465636b206f6620446567656e657261637900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003446f4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a6f3475544a38335556336847725546534c7638634a45365341344e41384d4c415a4e3953506d5575734d430000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063715018a61161014f578063c87b56dd116100c1578063e3e1e8ef1161007a578063e3e1e8ef14610737578063e62630261461074a578063e985e9c514610760578063f2c4ce1e146107a9578063f2fde38b146107c9578063fce237df146107e957600080fd5b8063c87b56dd1461068a578063d1f2efd5146106aa578063d5abeb01146106cb578063d7224ba0146106e1578063da3ef23f146106f7578063e08e65ea1461071757600080fd5b8063a22cb46511610113578063a22cb465146105da578063aa98e0c6146105fa578063b88d4fde14610610578063be11ce0614610630578063c54e73e31461064a578063c737e0c61461066a57600080fd5b8063715018a61461055f5780638da5cb5b1461057457806395364a841461059257806395d89b41146105b2578063a0712d68146105c757600080fd5b80633945d9d5116101e857806351830227116101ac57806351830227146104a657806355f804b3146104c55780635c975abb146104e55780635e1b065c146104ff5780636352211e1461051f57806370a082311461053f57600080fd5b80633945d9d51461041e5780633ccfd60b1461043e57806342842e0e1461044657806344a0d68a146104665780634f6ccce71461048657600080fd5b806313faede61161023a57806313faede61461034857806318160ddd1461036c57806318cae2691461038157806323b872dd146103ae5780632f745c59146103ce5780633913124c146103ee57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028357600080fd5b506102976102923660046126cf565b610809565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461269b565b610876565b005b3480156102da57600080fd5b506102e36108bc565b6040516102a391906128fe565b3480156102fc57600080fd5b5061031061030b3660046126b6565b61094e565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102cc6103433660046125bd565b6109d9565b34801561035457600080fd5b5061035e600c5481565b6040519081526020016102a3565b34801561037857600080fd5b5060005461035e565b34801561038d57600080fd5b5061035e61039c36600461248d565b60126020526000908152604090205481565b3480156103ba57600080fd5b506102cc6103c93660046124db565b610af1565b3480156103da57600080fd5b5061035e6103e93660046125bd565b610afc565b3480156103fa57600080fd5b5061029761040936600461248d565b60136020526000908152604090205460ff1681565b34801561042a57600080fd5b506102cc61043936600461269b565b610c6a565b6102cc610cb2565b34801561045257600080fd5b506102cc6104613660046124db565b610d50565b34801561047257600080fd5b506102cc6104813660046126b6565b610d6b565b34801561049257600080fd5b5061035e6104a13660046126b6565b610d9a565b3480156104b257600080fd5b50600f5461029790610100900460ff1681565b3480156104d157600080fd5b506102cc6104e0366004612709565b610dfc565b3480156104f157600080fd5b50600f546102979060ff1681565b34801561050b57600080fd5b506102cc61051a3660046125e7565b610e3d565b34801561052b57600080fd5b5061031061053a3660046126b6565b610ecf565b34801561054b57600080fd5b5061035e61055a36600461248d565b610ee1565b34801561056b57600080fd5b506102cc610f72565b34801561058057600080fd5b506008546001600160a01b0316610310565b34801561059e57600080fd5b50600f546102979062010000900460ff1681565b3480156105be57600080fd5b506102e3610fa8565b6102cc6105d53660046126b6565b610fb7565b3480156105e657600080fd5b506102cc6105f5366004612593565b61107a565b34801561060657600080fd5b5061035e60105481565b34801561061c57600080fd5b506102cc61062b366004612517565b61113f565b34801561063c57600080fd5b506011546102979060ff1681565b34801561065657600080fd5b506102cc61066536600461269b565b611178565b34801561067657600080fd5b506102cc61068536600461269b565b6111be565b34801561069657600080fd5b506102e36106a53660046126b6565b6111fb565b3480156106b657600080fd5b50600f54610297906301000000900460ff1681565b3480156106d757600080fd5b5061035e600d5481565b3480156106ed57600080fd5b5061035e60075481565b34801561070357600080fd5b506102cc610712366004612709565b61136c565b34801561072357600080fd5b506102cc6107323660046126b6565b6113a9565b6102cc610745366004612752565b6113d8565b34801561075657600080fd5b5061035e600e5481565b34801561076c57600080fd5b5061029761077b3660046124a8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107b557600080fd5b506102cc6107c4366004612709565b61158d565b3480156107d557600080fd5b506102cc6107e436600461248d565b6115ca565b3480156107f557600080fd5b506102cc61080436600461269b565b611662565b60006001600160e01b031982166380ac58cd60e01b148061083a57506001600160e01b03198216635b5e139f60e01b145b8061085557506001600160e01b0319821663780e9d6360e01b145b8061087057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108a95760405162461bcd60e51b81526004016108a090612911565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108cb90612ac2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f790612ac2565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061095b826000541190565b6109bd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108a0565b506000908152600560205260409020546001600160a01b031690565b60006109e482610ecf565b9050806001600160a01b0316836001600160a01b03161415610a535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a0565b336001600160a01b0382161480610a6f5750610a6f813361077b565b610ae15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a0565b610aec8383836116a6565b505050565b610aec838383611702565b6000610b0783610ee1565b8210610b605760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a0565b600080549080805b83811015610c0a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bbb57805192505b876001600160a01b0316836001600160a01b03161415610bf75786841415610be95750935061087092505050565b83610bf381612afd565b9450505b5080610c0281612afd565b915050610b68565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a0565b6008546001600160a01b03163314610c945760405162461bcd60e51b81526004016108a090612911565b600f805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016108a090612911565b6000610cf06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3a576040519150601f19603f3d011682016040523d82523d6000602084013e610d3f565b606091505b5050905080610d4d57600080fd5b50565b610aec8383836040518060200160405280600081525061113f565b6008546001600160a01b03163314610d955760405162461bcd60e51b81526004016108a090612911565b600c55565b600080548210610df85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a0565b5090565b6008546001600160a01b03163314610e265760405162461bcd60e51b81526004016108a090612911565b8051610e39906009906020840190612379565b5050565b6008546001600160a01b03163314610e675760405162461bcd60e51b81526004016108a090612911565b60005b8151811015610e3957600160136000848481518110610e8b57610e8b612b58565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610ec781612afd565b915050610e6a565b6000610eda82611a8a565b5192915050565b60006001600160a01b038216610f4d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610f9c5760405162461bcd60e51b81526004016108a090612911565b610fa66000611c34565b565b6060600280546108cb90612ac2565b610fc081611c86565b600f546301000000900460ff16151560011461100c5760405162461bcd60e51b815260206004820152600b60248201526a39b0b632903737ba1037b760a91b60448201526064016108a0565b6008546001600160a01b031633146110705780600c5461102c9190612a21565b3410156110705760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108a0565b610d4d3382611dd2565b6001600160a01b0382163314156110d35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114a848484611702565b61115684848484611dec565b6111725760405162461bcd60e51b81526004016108a090612946565b50505050565b6008546001600160a01b031633146111a25760405162461bcd60e51b81526004016108a090612911565b600f8054911515620100000262ff000019909216919091179055565b6008546001600160a01b031633146111e85760405162461bcd60e51b81526004016108a090612911565b6011805460ff1916911515919091179055565b6060611208826000541190565b61126c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a0565b600f54610100900460ff1661130d57600b805461128890612ac2565b80601f01602080910402602001604051908101604052809291908181526020018280546112b490612ac2565b80156113015780601f106112d657610100808354040283529160200191611301565b820191906000526020600020905b8154815290600101906020018083116112e457829003601f168201915b50505050509050919050565b6000611317611efa565b905060008151116113375760405180602001604052806000815250611365565b8061134184611f09565b600a604051602001611355939291906127fd565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113965760405162461bcd60e51b81526004016108a090612911565b8051610e3990600a906020840190612379565b6008546001600160a01b031633146113d35760405162461bcd60e51b81526004016108a090612911565b601055565b6113e183611c86565b6008546001600160a01b0316331461151f5760115460ff1615611461573360009081526013602052604090205460ff16151560011461145c5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108a0565b61151f565b6114d982828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601054604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050612007565b61151f5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108a0565b6008546001600160a01b031633146115835782600c5461153f9190612a21565b3410156115835760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108a0565b610aec3384611dd2565b6008546001600160a01b031633146115b75760405162461bcd60e51b81526004016108a090612911565b8051610e3990600b906020840190612379565b6008546001600160a01b031633146115f45760405162461bcd60e51b81526004016108a090612911565b6001600160a01b0381166116595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a0565b610d4d81611c34565b6008546001600160a01b0316331461168c5760405162461bcd60e51b81526004016108a090612911565b600f80549115156101000261ff0019909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170d82611a8a565b80519091506000906001600160a01b0316336001600160a01b031614806117445750336117398461094e565b6001600160a01b0316145b8061175657508151611756903361077b565b9050806117c05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a0565b846001600160a01b031682600001516001600160a01b0316146118345760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a0565b6001600160a01b0384166118985760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a0565b6118a860008484600001516116a6565b6001600160a01b03851660009081526004602052604081208054600192906118da9084906001600160801b0316612a40565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611926918591166129ca565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119ae8460016129f5565b6000818152600360205260409020549091506001600160a01b0316611a40576119d8816000541190565b15611a405760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611aa9826000541190565b611b085760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a0565b60007f000000000000000000000000000000000000000000000000000000000000006c8310611b6957611b5b7f000000000000000000000000000000000000000000000000000000000000006c84612a68565b611b669060016129f5565b90505b825b818110611bd3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bc057949350505050565b5080611bcb81612aab565b915050611b6b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108a0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f5460ff1615611cd25760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108a0565b60008111611d225760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108a0565b600d5481611d2f60005490565b611d3991906129f5565b1115611d805760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108a0565b600e54811115610d4d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108a0565b610e39828260405180602001604052806000815250612014565b60006001600160a01b0384163b15611eee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e309033908990889088906004016128c1565b602060405180830381600087803b158015611e4a57600080fd5b505af1925050508015611e7a575060408051601f3d908101601f19168201909252611e77918101906126ec565b60015b611ed4573d808015611ea8576040519150601f19603f3d011682016040523d82523d6000602084013e611ead565b606091505b508051611ecc5760405162461bcd60e51b81526004016108a090612946565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ef2565b5060015b949350505050565b6060600980546108cb90612ac2565b606081611f2d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f575780611f4181612afd565b9150611f509050600a83612a0d565b9150611f31565b60008167ffffffffffffffff811115611f7257611f72612b6e565b6040519080825280601f01601f191660200182016040528015611f9c576020820181803683370190505b5090505b8415611ef257611fb1600183612a68565b9150611fbe600a86612b18565b611fc99060306129f5565b60f81b818381518110611fde57611fde612b58565b60200101906001600160f81b031916908160001a905350612000600a86612a0d565b9450611fa0565b6000611ef28484846122ef565b6000546001600160a01b0384166120775760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a0565b612082816000541190565b156120cf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a0565b7f000000000000000000000000000000000000000000000000000000000000006c83111561214a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108a0565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121a69087906129ca565b6001600160801b031681526020018583602001516121c491906129ca565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122e45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a86000888488611dec565b6122c45760405162461bcd60e51b81526004016108a090612946565b816122ce81612afd565b92505080806122dc90612afd565b91505061225b565b506000819055611a82565b6000826122fc8584612305565b14949350505050565b600081815b845181101561237157600085828151811061232757612327612b58565b6020026020010151905080831161234d576000838152602082905260409020925061235e565b600081815260208490526040902092505b508061236981612afd565b91505061230a565b509392505050565b82805461238590612ac2565b90600052602060002090601f0160209004810192826123a757600085556123ed565b82601f106123c057805160ff19168380011785556123ed565b828001600101855582156123ed579182015b828111156123ed5782518255916020019190600101906123d2565b50610df89291505b80821115610df857600081556001016123f5565b600067ffffffffffffffff83111561242357612423612b6e565b612436601f8401601f1916602001612999565b905082815283838301111561244a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461247857600080fd5b919050565b8035801515811461247857600080fd5b60006020828403121561249f57600080fd5b61136582612461565b600080604083850312156124bb57600080fd5b6124c483612461565b91506124d260208401612461565b90509250929050565b6000806000606084860312156124f057600080fd5b6124f984612461565b925061250760208501612461565b9150604084013590509250925092565b6000806000806080858703121561252d57600080fd5b61253685612461565b935061254460208601612461565b925060408501359150606085013567ffffffffffffffff81111561256757600080fd5b8501601f8101871361257857600080fd5b61258787823560208401612409565b91505092959194509250565b600080604083850312156125a657600080fd5b6125af83612461565b91506124d26020840161247d565b600080604083850312156125d057600080fd5b6125d983612461565b946020939093013593505050565b600060208083850312156125fa57600080fd5b823567ffffffffffffffff8082111561261257600080fd5b818501915085601f83011261262657600080fd5b81358181111561263857612638612b6e565b8060051b9150612649848301612999565b8181528481019084860184860187018a101561266457600080fd5b600095505b8386101561268e5761267a81612461565b835260019590950194918601918601612669565b5098975050505050505050565b6000602082840312156126ad57600080fd5b6113658261247d565b6000602082840312156126c857600080fd5b5035919050565b6000602082840312156126e157600080fd5b813561136581612b84565b6000602082840312156126fe57600080fd5b815161136581612b84565b60006020828403121561271b57600080fd5b813567ffffffffffffffff81111561273257600080fd5b8201601f8101841361274357600080fd5b611ef284823560208401612409565b60008060006040848603121561276757600080fd5b83359250602084013567ffffffffffffffff8082111561278657600080fd5b818601915086601f83011261279a57600080fd5b8135818111156127a957600080fd5b8760208260051b85010111156127be57600080fd5b6020830194508093505050509250925092565b600081518084526127e9816020860160208601612a7f565b601f01601f19169290920160200192915050565b6000845160206128108285838a01612a7f565b8551918401916128238184848a01612a7f565b8554920191600090600181811c908083168061284057607f831692505b85831081141561285e57634e487b7160e01b85526022600452602485fd5b8080156128725760018114612883576128b0565b60ff198516885283880195506128b0565b60008b81526020902060005b858110156128a85781548a82015290840190880161288f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f4908301846127d1565b9695505050505050565b60208152600061136560208301846127d1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129c2576129c2612b6e565b604052919050565b60006001600160801b038083168185168083038211156129ec576129ec612b2c565b01949350505050565b60008219821115612a0857612a08612b2c565b500190565b600082612a1c57612a1c612b42565b500490565b6000816000190483118215151615612a3b57612a3b612b2c565b500290565b60006001600160801b0383811690831681811015612a6057612a60612b2c565b039392505050565b600082821015612a7a57612a7a612b2c565b500390565b60005b83811015612a9a578181015183820152602001612a82565b838111156111725750506000910152565b600081612aba57612aba612b2c565b506000190190565b600181811c90821680612ad657607f821691505b60208210811415612af757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1157612b11612b2c565b5060010190565b600082612b2757612b27612b42565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4d57600080fdfea2646970667358221220e1a98afa9022c8f499978284cc224ab16246aaf87016b508312873007db936e764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000124465636b206f6620446567656e657261637900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003446f4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a6f3475544a38335556336847725546534c7638634a45365341344e41384d4c415a4e3953506d5575734d430000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Deck of Degeneracy
Arg [1] : _symbol (string): DoD
Arg [2] : _notRevealedUri (string): ipfs://QmZo4uTJ83UV3hGrUFSLv8cJE6SA4NA8MLAZN9SPmUusMC

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 4465636b206f6620446567656e65726163790000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 446f440000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5a6f3475544a38335556336847725546534c7638634a45
Arg [9] : 365341344e41384d4c415a4e3953506d5575734d430000000000000000000000


Deployed Bytecode Sourcemap

42355:5168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27435:370;;;;;;;;;;-1:-1:-1;27435:370:0;;;;;:::i;:::-;;:::i;:::-;;;9020:14:1;;9013:22;8995:41;;8983:2;8968:18;27435:370:0;;;;;;;;47137:70;;;;;;;;;;-1:-1:-1;47137:70:0;;;;;:::i;:::-;;:::i;:::-;;29161:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30686:204::-;;;;;;;;;;-1:-1:-1;30686:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8318:32:1;;;8300:51;;8288:2;8273:18;30686:204:0;8154:203:1;30249:379:0;;;;;;;;;;-1:-1:-1;30249:379:0;;;;;:::i;:::-;;:::i;42513:30::-;;;;;;;;;;;;;;;;;;;9193:25:1;;;9181:2;9166:18;42513:30:0;9047:177:1;25996:94:0;;;;;;;;;;-1:-1:-1;26049:7:0;26072:12;25996:94;;42840:55;;;;;;;;;;-1:-1:-1;42840:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;31536:142;;;;;;;;;;-1:-1:-1;31536:142:0;;;;;:::i;:::-;;:::i;26627:744::-;;;;;;;;;;-1:-1:-1;26627:744:0;;;;;:::i;:::-;;:::i;42899:58::-;;;;;;;;;;-1:-1:-1;42899:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47295:80;;;;;;;;;;-1:-1:-1;47295:80:0;;;;;:::i;:::-;;:::i;47380:140::-;;;:::i;31741:157::-;;;;;;;;;;-1:-1:-1;31741:157:0;;;;;:::i;:::-;;:::i;46599:77::-;;;;;;;;;;-1:-1:-1;46599:77:0;;;;;:::i;:::-;;:::i;26159:177::-;;;;;;;;;;-1:-1:-1;26159:177:0;;;;;:::i;:::-;;:::i;42651:28::-;;;;;;;;;;-1:-1:-1;42651:28:0;;;;;;;;;;;46681:95;;;;;;;;;;-1:-1:-1;46681:95:0;;;;;:::i;:::-;;:::i;42622:25::-;;;;;;;;;;-1:-1:-1;42622:25:0;;;;;;;;46256:199;;;;;;;;;;-1:-1:-1;46256:199:0;;;;;:::i;:::-;;:::i;28984:118::-;;;;;;;;;;-1:-1:-1;28984:118:0;;;;;:::i;:::-;;:::i;27861:211::-;;;;;;;;;;-1:-1:-1;27861:211:0;;;;;:::i;:::-;;:::i;41450:103::-;;;;;;;;;;;;;:::i;40799:87::-;;;;;;;;;;-1:-1:-1;40872:6:0;;-1:-1:-1;;;;;40872:6:0;40799:87;;42683:28;;;;;;;;;;-1:-1:-1;42683:28:0;;;;;;;;;;;29316:98;;;;;;;;;;;;;:::i;45255:289::-;;;;;;:::i;:::-;;:::i;30954:274::-;;;;;;;;;;-1:-1:-1;30954:274:0;;;;;:::i;:::-;;:::i;42749:34::-;;;;;;;;;;;;;;;;31961:311;;;;;;;;;;-1:-1:-1;31961:311:0;;;;;:::i;:::-;;:::i;42787:49::-;;;;;;;;;;-1:-1:-1;42787:49:0;;;;;;;;47212:78;;;;;;;;;;-1:-1:-1;47212:78:0;;;;;:::i;:::-;;:::i;46460:118::-;;;;;;;;;;-1:-1:-1;46460:118:0;;;;;:::i;:::-;;:::i;45551:521::-;;;;;;;;;;-1:-1:-1;45551:521:0;;;;;:::i;:::-;;:::i;42715:30::-;;;;;;;;;;-1:-1:-1;42715:30:0;;;;;;;;;;;42547:31;;;;;;;;;;;;;;;;36376:43;;;;;;;;;;;;;;;;46781:127;;;;;;;;;;-1:-1:-1;46781:127:0;;;;;:::i;:::-;;:::i;46140:111::-;;;;;;;;;;-1:-1:-1;46140:111:0;;;;;:::i;:::-;;:::i;44491:718::-;;;;;;:::i;:::-;;:::i;42582:36::-;;;;;;;;;;;;;;;;31291:186;;;;;;;;;;-1:-1:-1;31291:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31436:25:0;;;31413:4;31436:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31291:186;47015:117;;;;;;;;;;-1:-1:-1;47015:117:0;;;;;:::i;:::-;;:::i;41708:201::-;;;;;;;;;;-1:-1:-1;41708:201:0;;;;;:::i;:::-;;:::i;46913:97::-;;;;;;;;;;-1:-1:-1;46913:97:0;;;;;:::i;:::-;;:::i;27435:370::-;27562:4;-1:-1:-1;;;;;;27592:40:0;;-1:-1:-1;;;27592:40:0;;:99;;-1:-1:-1;;;;;;;27643:48:0;;-1:-1:-1;;;27643:48:0;27592:99;:160;;;-1:-1:-1;;;;;;;27702:50:0;;-1:-1:-1;;;27702:50:0;27592:160;:207;;;-1:-1:-1;;;;;;;;;;13588:40:0;;;27763:36;27578:221;27435:370;-1:-1:-1;;27435:370:0:o;47137:70::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;;;;;;;;;47187:6:::1;:15:::0;;-1:-1:-1;;47187:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47137:70::o;29161:94::-;29215:13;29244:5;29237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29161:94;:::o;30686:204::-;30754:7;30778:16;30786:7;32568:4;32598:12;-1:-1:-1;32588:22:0;32511:105;30778:16;30770:74;;;;-1:-1:-1;;;30770:74:0;;18994:2:1;30770:74:0;;;18976:21:1;19033:2;19013:18;;;19006:30;19072:34;19052:18;;;19045:62;-1:-1:-1;;;19123:18:1;;;19116:43;19176:19;;30770:74:0;18792:409:1;30770:74:0;-1:-1:-1;30860:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30860:24:0;;30686:204::o;30249:379::-;30318:13;30334:24;30350:7;30334:15;:24::i;:::-;30318:40;;30379:5;-1:-1:-1;;;;;30373:11:0;:2;-1:-1:-1;;;;;30373:11:0;;;30365:58;;;;-1:-1:-1;;;30365:58:0;;15881:2:1;30365:58:0;;;15863:21:1;15920:2;15900:18;;;15893:30;15959:34;15939:18;;;15932:62;-1:-1:-1;;;16010:18:1;;;16003:32;16052:19;;30365:58:0;15679:398:1;30365:58:0;23546:10;-1:-1:-1;;;;;30448:21:0;;;;:62;;-1:-1:-1;30473:37:0;30490:5;23546:10;31291:186;:::i;30473:37::-;30432:153;;;;-1:-1:-1;;;30432:153:0;;12383:2:1;30432:153:0;;;12365:21:1;12422:2;12402:18;;;12395:30;12461:34;12441:18;;;12434:62;12532:27;12512:18;;;12505:55;12577:19;;30432:153:0;12181:421:1;30432:153:0;30594:28;30603:2;30607:7;30616:5;30594:8;:28::i;:::-;30311:317;30249:379;;:::o;31536:142::-;31644:28;31654:4;31660:2;31664:7;31644:9;:28::i;26627:744::-;26736:7;26771:16;26781:5;26771:9;:16::i;:::-;26763:5;:24;26755:71;;;;-1:-1:-1;;;26755:71:0;;9655:2:1;26755:71:0;;;9637:21:1;9694:2;9674:18;;;9667:30;9733:34;9713:18;;;9706:62;-1:-1:-1;;;9784:18:1;;;9777:32;9826:19;;26755:71:0;9453:398:1;26755:71:0;26833:22;26072:12;;;26833:22;;26953:350;26977:14;26973:1;:18;26953:350;;;27007:31;27041:14;;;:11;:14;;;;;;;;;27007:48;;;;;;;;;-1:-1:-1;;;;;27007:48:0;;;;;-1:-1:-1;;;27007:48:0;;;;;;;;;;;;27068:28;27064:89;;27129:14;;;-1:-1:-1;27064:89:0;27186:5;-1:-1:-1;;;;;27165:26:0;:17;-1:-1:-1;;;;;27165:26:0;;27161:135;;;27223:5;27208:11;:20;27204:59;;;-1:-1:-1;27250:1:0;-1:-1:-1;27243:8:0;;-1:-1:-1;;;27243:8:0;27204:59;27273:13;;;;:::i;:::-;;;;27161:135;-1:-1:-1;26993:3:0;;;;:::i;:::-;;;;26953:350;;;-1:-1:-1;27309:56:0;;-1:-1:-1;;;27309:56:0;;17811:2:1;27309:56:0;;;17793:21:1;17850:2;17830:18;;;17823:30;17889:34;17869:18;;;17862:62;-1:-1:-1;;;17940:18:1;;;17933:44;17994:19;;27309:56:0;17609:410:1;47295:80:0;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;47351:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47351:19:0;;::::1;::::0;;;::::1;::::0;;47295:80::o;47380:140::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;47431:7:::1;47452;40872:6:::0;;-1:-1:-1;;;;;40872:6:0;;40799:87;47452:7:::1;-1:-1:-1::0;;;;;47444:21:0::1;47473;47444:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47430:69;;;47512:2;47504:11;;;::::0;::::1;;47425:95;47380:140::o:0;31741:157::-;31853:39;31870:4;31876:2;31880:7;31853:39;;;;;;;;;;;;:16;:39::i;46599:77::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46656:4:::1;:15:::0;46599:77::o;26159:177::-;26226:7;26072:12;;26250:5;:21;26242:69;;;;-1:-1:-1;;;26242:69:0;;11573:2:1;26242:69:0;;;11555:21:1;11612:2;11592:18;;;11585:30;11651:34;11631:18;;;11624:62;-1:-1:-1;;;11702:18:1;;;11695:33;11745:19;;26242:69:0;11371:399:1;26242:69:0;-1:-1:-1;26325:5:0;26159:177::o;46681:95::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46750:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46681:95:::0;:::o;46256:199::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46350:9:::1;46345:106;46369:9;:16;46365:1;:20;46345:106;;;46441:4;46398:26;:40;46425:9;46435:1;46425:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46398:40:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46398:40:0;:47;;-1:-1:-1;;46398:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46387:3;::::1;::::0;::::1;:::i;:::-;;;;46345:106;;28984:118:::0;29048:7;29071:20;29083:7;29071:11;:20::i;:::-;:25;;28984:118;-1:-1:-1;;28984:118:0:o;27861:211::-;27925:7;-1:-1:-1;;;;;27949:19:0;;27941:75;;;;-1:-1:-1;;;27941:75:0;;13160:2:1;27941:75:0;;;13142:21:1;13199:2;13179:18;;;13172:30;13238:34;13218:18;;;13211:62;-1:-1:-1;;;13289:18:1;;;13282:41;13340:19;;27941:75:0;12958:407:1;27941:75:0;-1:-1:-1;;;;;;28038:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28038:27:0;;27861:211::o;41450:103::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;41515:30:::1;41542:1;41515:18;:30::i;:::-;41450:103::o:0;29316:98::-;29372:13;29401:7;29394:14;;;;;:::i;45255:289::-;45320:26;45334:11;45320:13;:26::i;:::-;45359:10;;;;;;;:18;;45373:4;45359:18;45351:42;;;;-1:-1:-1;;;45351:42:0;;10876:2:1;45351:42:0;;;10858:21:1;10915:2;10895:18;;;10888:30;-1:-1:-1;;;10934:18:1;;;10927:41;10985:18;;45351:42:0;10674:335:1;45351:42:0;40872:6;;-1:-1:-1;;;;;40872:6:0;45402:10;:21;45398:101;;45459:11;45452:4;;:18;;;;:::i;:::-;45439:9;:31;;45431:62;;;;-1:-1:-1;;;45431:62:0;;16284:2:1;45431:62:0;;;16266:21:1;16323:2;16303:18;;;16296:30;-1:-1:-1;;;16342:18:1;;;16335:48;16400:18;;45431:62:0;16082:342:1;45431:62:0;45505:34;45515:10;45527:11;45505:9;:34::i;30954:274::-;-1:-1:-1;;;;;31045:24:0;;23546:10;31045:24;;31037:63;;;;-1:-1:-1;;;31037:63:0;;15107:2:1;31037:63:0;;;15089:21:1;15146:2;15126:18;;;15119:30;15185:28;15165:18;;;15158:56;15231:18;;31037:63:0;14905:350:1;31037:63:0;23546:10;31109:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31109:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31109:53:0;;;;;;;;;;31174:48;;8995:41:1;;;31109:42:0;;23546:10;31174:48;;8968:18:1;31174:48:0;;;;;;;30954:274;;:::o;31961:311::-;32098:28;32108:4;32114:2;32118:7;32098:9;:28::i;:::-;32149:48;32172:4;32178:2;32182:7;32191:5;32149:22;:48::i;:::-;32133:133;;;;-1:-1:-1;;;32133:133:0;;;;;;;:::i;:::-;31961:311;;;;:::o;47212:78::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;47267:9:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47267:18:0;;::::1;::::0;;;::::1;::::0;;47212:78::o;46460:118::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46536:29:::1;:37:::0;;-1:-1:-1;;46536:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46460:118::o;45551:521::-;45644:13;45682:16;45690:7;32568:4;32598:12;-1:-1:-1;32588:22:0;32511:105;45682:16;45668:92;;;;-1:-1:-1;;;45668:92:0;;14691:2:1;45668:92:0;;;14673:21:1;14730:2;14710:18;;;14703:30;14769:34;14749:18;;;14742:62;-1:-1:-1;;;14820:18:1;;;14813:45;14875:19;;45668:92:0;14489:411:1;45668:92:0;45772:8;;;;;;;45768:58;;45805:14;45798:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45551:521;;;:::o;45768:58::-;45833:28;45864:10;:8;:10::i;:::-;45833:41;;45923:1;45898:14;45892:28;:32;:175;;;;;;;;;;;;;;;;;45974:14;45998:18;:7;:16;:18::i;:::-;46026:13;45948:100;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45892:175;45880:187;45551:521;-1:-1:-1;;;45551:521:0:o;46781:127::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46870:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46140:111::-:0;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46214:19:::1;:32:::0;46140:111::o;44491:718::-;44587:26;44601:11;44587:13;:26::i;:::-;40872:6;;-1:-1:-1;;;;;40872:6:0;44718:10;:21;44714:341;;44751:29;;;;44747:303;;;44824:10;44797:38;;;;:26;:38;;;;;;;;:46;;:38;:46;44789:82;;;;-1:-1:-1;;;44789:82:0;;18226:2:1;44789:82:0;;;18208:21:1;18265:2;18245:18;;;18238:30;-1:-1:-1;;;18284:18:1;;;18277:53;18347:18;;44789:82:0;18024:347:1;44789:82:0;44747:303;;;44906:97;44922:5;;44906:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44936:19:0;;43391:25;;;44984:10;6327:2:1;6323:15;-1:-1:-1;;6319:53:1;43391:25:0;;;;6307:66:1;;;;43391:25:0;;;;;;;;;6389:12:1;;;;43391:25:0;;;43381:36;;;;;44936:19;;-1:-1:-1;43381:36:0;-1:-1:-1;44906:7:0;:97::i;:::-;44891:152;;;;-1:-1:-1;;;44891:152:0;;18226:2:1;44891:152:0;;;18208:21:1;18265:2;18245:18;;;18238:30;-1:-1:-1;;;18284:18:1;;;18277:53;18347:18;;44891:152:0;18024:347:1;44891:152:0;40872:6;;-1:-1:-1;;;;;40872:6:0;45067:10;:21;45063:101;;45124:11;45117:4;;:18;;;;:::i;:::-;45104:9;:31;;45096:62;;;;-1:-1:-1;;;45096:62:0;;16284:2:1;45096:62:0;;;16266:21:1;16323:2;16303:18;;;16296:30;-1:-1:-1;;;16342:18:1;;;16335:48;16400:18;;45096:62:0;16082:342:1;45096:62:0;45170:34;45180:10;45192:11;45170:9;:34::i;47015:117::-;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;47095:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;41708:201::-:0;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41797:22:0;::::1;41789:73;;;::::0;-1:-1:-1;;;41789:73:0;;10058:2:1;41789:73:0::1;::::0;::::1;10040:21:1::0;10097:2;10077:18;;;10070:30;10136:34;10116:18;;;10109:62;-1:-1:-1;;;10187:18:1;;;10180:36;10233:19;;41789:73:0::1;9856:402:1::0;41789:73:0::1;41873:28;41892:8;41873:18;:28::i;46913:97::-:0;40872:6;;-1:-1:-1;;;;;40872:6:0;23546:10;41019:23;41011:68;;;;-1:-1:-1;;;41011:68:0;;;;;;;:::i;:::-;46981:8:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;46981:24:0;;::::1;::::0;;;::::1;::::0;;46913:97::o;36198:172::-;36295:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36295:29:0;-1:-1:-1;;;;;36295:29:0;;;;;;;;;36336:28;;36295:24;;36336:28;;;;;;;36198:172;;;:::o;34563:1529::-;34660:35;34698:20;34710:7;34698:11;:20::i;:::-;34769:18;;34660:58;;-1:-1:-1;34727:22:0;;-1:-1:-1;;;;;34753:34:0;23546:10;-1:-1:-1;;;;;34753:34:0;;:81;;;-1:-1:-1;23546:10:0;34798:20;34810:7;34798:11;:20::i;:::-;-1:-1:-1;;;;;34798:36:0;;34753:81;:142;;;-1:-1:-1;34862:18:0;;34845:50;;23546:10;31291:186;:::i;34845:50::-;34727:169;;34921:17;34905:101;;;;-1:-1:-1;;;34905:101:0;;15462:2:1;34905:101:0;;;15444:21:1;15501:2;15481:18;;;15474:30;15540:34;15520:18;;;15513:62;-1:-1:-1;;;15591:18:1;;;15584:48;15649:19;;34905:101:0;15260:414:1;34905:101:0;35053:4;-1:-1:-1;;;;;35031:26:0;:13;:18;;;-1:-1:-1;;;;;35031:26:0;;35015:98;;;;-1:-1:-1;;;35015:98:0;;13572:2:1;35015:98:0;;;13554:21:1;13611:2;13591:18;;;13584:30;13650:34;13630:18;;;13623:62;-1:-1:-1;;;13701:18:1;;;13694:36;13747:19;;35015:98:0;13370:402:1;35015:98:0;-1:-1:-1;;;;;35128:16:0;;35120:66;;;;-1:-1:-1;;;35120:66:0;;11977:2:1;35120:66:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:35;12151:19;;35120:66:0;11775:401:1;35120:66:0;35295:49;35312:1;35316:7;35325:13;:18;;;35295:8;:49::i;:::-;-1:-1:-1;;;;;35353:18:0;;;;;;:12;:18;;;;;:31;;35383:1;;35353:18;:31;;35383:1;;-1:-1:-1;;;;;35353:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35353:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35391:16:0;;-1:-1:-1;35391:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35391:16:0;;:29;;-1:-1:-1;;35391:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35391:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35450:43:0;;;;;;;;-1:-1:-1;;;;;35450:43:0;;;;;;35476:15;35450:43;;;;;;;;;-1:-1:-1;35427:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35427:66:0;-1:-1:-1;;;;;;35427:66:0;;;;;;;;;;;35743:11;35439:7;-1:-1:-1;35743:11:0;:::i;:::-;35806:1;35765:24;;;:11;:24;;;;;:29;35721:33;;-1:-1:-1;;;;;;35765:29:0;35761:236;;35823:20;35831:11;32568:4;32598:12;-1:-1:-1;32588:22:0;32511:105;35823:20;35819:171;;;35883:97;;;;;;;;35910:18;;-1:-1:-1;;;;;35883:97:0;;;;;;35941:28;;;;35883:97;;;;;;;;;;-1:-1:-1;35856:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35856:124:0;-1:-1:-1;;;;;;35856:124:0;;;;;;;;;;;;35819:171;36029:7;36025:2;-1:-1:-1;;;;;36010:27:0;36019:4;-1:-1:-1;;;;;36010:27:0;;;;;;;;;;;36044:42;34653:1439;;;34563:1529;;;:::o;28324:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28441:16:0;28449:7;32568:4;32598:12;-1:-1:-1;32588:22:0;32511:105;28441:16;28433:71;;;;-1:-1:-1;;;28433:71:0;;10465:2:1;28433:71:0;;;10447:21:1;10504:2;10484:18;;;10477:30;10543:34;10523:18;;;10516:62;-1:-1:-1;;;10594:18:1;;;10587:40;10644:19;;28433:71:0;10263:406:1;28433:71:0;28513:26;28561:12;28550:7;:23;28546:93;;28605:22;28615:12;28605:7;:22;:::i;:::-;:26;;28630:1;28605:26;:::i;:::-;28584:47;;28546:93;28667:7;28647:212;28684:18;28676:4;:26;28647:212;;28721:31;28755:17;;;:11;:17;;;;;;;;;28721:51;;;;;;;;;-1:-1:-1;;;;;28721:51:0;;;;;-1:-1:-1;;;28721:51:0;;;;;;;;;;;;28785:28;28781:71;;28833:9;28324:606;-1:-1:-1;;;;28324:606:0:o;28781:71::-;-1:-1:-1;28704:6:0;;;;:::i;:::-;;;;28647:212;;;-1:-1:-1;28867:57:0;;-1:-1:-1;;;28867:57:0;;18578:2:1;28867:57:0;;;18560:21:1;18617:2;18597:18;;;18590:30;18656:34;18636:18;;;18629:62;-1:-1:-1;;;18707:18:1;;;18700:45;18762:19;;28867:57:0;18376:411:1;42069:191:0;42162:6;;;-1:-1:-1;;;;;42179:17:0;;;-1:-1:-1;;;;;;42179:17:0;;;;;;;42212:40;;42162:6;;;42179:17;42162:6;;42212:40;;42143:16;;42212:40;42132:128;42069:191;:::o;43765:344::-;43831:6;;;;:15;43823:50;;;;-1:-1:-1;;;43823:50:0;;14340:2:1;43823:50:0;;;14322:21:1;14379:2;14359:18;;;14352:30;-1:-1:-1;;;14398:18:1;;;14391:52;14460:18;;43823:50:0;14138:346:1;43823:50:0;43900:1;43886:11;:15;43878:55;;;;-1:-1:-1;;;43878:55:0;;19408:2:1;43878:55:0;;;19390:21:1;19447:2;19427:18;;;19420:30;19486:29;19466:18;;;19459:57;19533:18;;43878:55:0;19206:351:1;43878:55:0;43977:9;;43962:11;43946:13;26049:7;26072:12;;25996:94;43946:13;:27;;;;:::i;:::-;:40;;43938:75;;;;-1:-1:-1;;;43938:75:0;;12809:2:1;43938:75:0;;;12791:21:1;12848:2;12828:18;;;12821:30;-1:-1:-1;;;12867:18:1;;;12860:52;12929:18;;43938:75:0;12607:346:1;43938:75:0;44046:15;;44031:11;:30;;44018:84;;;;-1:-1:-1;;;44018:84:0;;11216:2:1;44018:84:0;;;11198:21:1;11255:2;11235:18;;;11228:30;11294;11274:18;;;11267:58;11342:18;;44018:84:0;11014:352:1;32622:98:0;32687:27;32697:2;32701:8;32687:27;;;;;;;;;;;;:9;:27::i;37913:690::-;38050:4;-1:-1:-1;;;;;38067:13:0;;3691:19;:23;38063:535;;38106:72;;-1:-1:-1;;;38106:72:0;;-1:-1:-1;;;;;38106:36:0;;;;;:72;;23546:10;;38157:4;;38163:7;;38172:5;;38106:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38106:72:0;;;;;;;;-1:-1:-1;;38106:72:0;;;;;;;;;;;;:::i;:::-;;;38093:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38337:13:0;;38333:215;;38370:61;;-1:-1:-1;;;38370:61:0;;;;;;;:::i;38333:215::-;38516:6;38510:13;38501:6;38497:2;38493:15;38486:38;38093:464;-1:-1:-1;;;;;;38228:55:0;-1:-1:-1;;;38228:55:0;;-1:-1:-1;38221:62:0;;38063:535;-1:-1:-1;38586:4:0;38063:535;37913:690;;;;;;:::o;43176:99::-;43236:13;43263:7;43256:14;;;;;:::i;404:723::-;460:13;681:10;677:53;;-1:-1:-1;;708:10:0;;;;;;;;;;;;-1:-1:-1;;;708:10:0;;;;;404:723::o;677:53::-;755:5;740:12;796:78;803:9;;796:78;;829:8;;;;:::i;:::-;;-1:-1:-1;852:10:0;;-1:-1:-1;860:2:0;852:10;;:::i;:::-;;;796:78;;;884:19;916:6;906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;906:17:0;;884:39;;934:154;941:10;;934:154;;968:11;978:1;968:11;;:::i;:::-;;-1:-1:-1;1037:10:0;1045:2;1037:5;:10;:::i;:::-;1024:24;;:2;:24;:::i;:::-;1011:39;;994:6;1001;994:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;994:56:0;;;;;;;;-1:-1:-1;1065:11:0;1074:2;1065:11;;:::i;:::-;;;934:154;;43516:185;43631:4;43649:47;43668:5;43675:10;43687:8;43649:18;:47::i;33059:1272::-;33164:20;33187:12;-1:-1:-1;;;;;33214:16:0;;33206:62;;;;-1:-1:-1;;;33206:62:0;;17409:2:1;33206:62:0;;;17391:21:1;17448:2;17428:18;;;17421:30;17487:34;17467:18;;;17460:62;-1:-1:-1;;;17538:18:1;;;17531:31;17579:19;;33206:62:0;17207:397:1;33206:62:0;33405:21;33413:12;32568:4;32598:12;-1:-1:-1;32588:22:0;32511:105;33405:21;33404:22;33396:64;;;;-1:-1:-1;;;33396:64:0;;17051:2:1;33396:64:0;;;17033:21:1;17090:2;17070:18;;;17063:30;17129:31;17109:18;;;17102:59;17178:18;;33396:64:0;16849:353:1;33396:64:0;33487:12;33475:8;:24;;33467:71;;;;-1:-1:-1;;;33467:71:0;;19764:2:1;33467:71:0;;;19746:21:1;19803:2;19783:18;;;19776:30;19842:34;19822:18;;;19815:62;-1:-1:-1;;;19893:18:1;;;19886:32;19935:19;;33467:71:0;19562:398:1;33467:71:0;-1:-1:-1;;;;;33650:16:0;;33617:30;33650:16;;;:12;:16;;;;;;;;;33617:49;;;;;;;;;-1:-1:-1;;;;;33617:49:0;;;;;-1:-1:-1;;;33617:49:0;;;;;;;;;;;33692:119;;;;;;;;33712:19;;33617:49;;33692:119;;;33712:39;;33742:8;;33712:39;:::i;:::-;-1:-1:-1;;;;;33692:119:0;;;;;33795:8;33760:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33692:119:0;;;;;;-1:-1:-1;;;;;33673:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33673:138:0;;;;;;;;;;;;33846:43;;;;;;;;;;;33872:15;33846:43;;;;;;;;33818:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33818:71:0;-1:-1:-1;;;;;;33818:71:0;;;;;;;;;;;;;;;;;;33830:12;;33942:281;33966:8;33962:1;:12;33942:281;;;33995:38;;34020:12;;-1:-1:-1;;;;;33995:38:0;;;34012:1;;33995:38;;34012:1;;33995:38;34060:59;34091:1;34095:2;34099:12;34113:5;34060:22;:59::i;:::-;34042:150;;;;-1:-1:-1;;;34042:150:0;;;;;;;:::i;:::-;34201:14;;;;:::i;:::-;;;;33976:3;;;;;:::i;:::-;;;;33942:281;;;-1:-1:-1;34231:12:0;:27;;;34265:60;31961:311;21321:190;21446:4;21499;21470:25;21483:5;21490:4;21470:12;:25::i;:::-;:33;;21321:190;-1:-1:-1;;;;21321:190:0:o;21873:675::-;21956:7;21999:4;21956:7;22014:497;22038:5;:12;22034:1;:16;22014:497;;;22072:20;22095:5;22101:1;22095:8;;;;;;;;:::i;:::-;;;;;;;22072:31;;22138:12;22122;:28;22118:382;;22624:13;22674:15;;;22710:4;22703:15;;;22757:4;22741:21;;22250:57;;22118:382;;;22624:13;22674:15;;;22710:4;22703:15;;;22757:4;22741:21;;22427:57;;22118:382;-1:-1:-1;22052:3:0;;;;:::i;:::-;;;;22014:497;;;-1:-1:-1;22528:12:0;21873:675;-1:-1:-1;;;21873:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:180::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;-1:-1:-1;4050:23:1;;3899:180;-1:-1:-1;3899:180:1:o;4084:245::-;4142:6;4195:2;4183:9;4174:7;4170:23;4166:32;4163:52;;;4211:1;4208;4201:12;4163:52;4250:9;4237:23;4269:30;4293:5;4269:30;:::i;4334:249::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4504:9;4498:16;4523:30;4547:5;4523:30;:::i;4588:450::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:52;;;4726:1;4723;4716:12;4678:52;4766:9;4753:23;4799:18;4791:6;4788:30;4785:50;;;4831:1;4828;4821:12;4785:50;4854:22;;4907:4;4899:13;;4895:27;-1:-1:-1;4885:55:1;;4936:1;4933;4926:12;4885:55;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5228:683::-;5323:6;5331;5339;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5444:9;5431:23;5421:33;;5505:2;5494:9;5490:18;5477:32;5528:18;5569:2;5561:6;5558:14;5555:34;;;5585:1;5582;5575:12;5555:34;5623:6;5612:9;5608:22;5598:32;;5668:7;5661:4;5657:2;5653:13;5649:27;5639:55;;5690:1;5687;5680:12;5639:55;5730:2;5717:16;5756:2;5748:6;5745:14;5742:34;;;5772:1;5769;5762:12;5742:34;5825:7;5820:2;5810:6;5807:1;5803:14;5799:2;5795:23;5791:32;5788:45;5785:65;;;5846:1;5843;5836:12;5785:65;5877:2;5873;5869:11;5859:21;;5899:6;5889:16;;;;;5228:683;;;;;:::o;5916:257::-;5957:3;5995:5;5989:12;6022:6;6017:3;6010:19;6038:63;6094:6;6087:4;6082:3;6078:14;6071:4;6064:5;6060:16;6038:63;:::i;:::-;6155:2;6134:15;-1:-1:-1;;6130:29:1;6121:39;;;;6162:4;6117:50;;5916:257;-1:-1:-1;;5916:257:1:o;6412:1527::-;6636:3;6674:6;6668:13;6700:4;6713:51;6757:6;6752:3;6747:2;6739:6;6735:15;6713:51;:::i;:::-;6827:13;;6786:16;;;;6849:55;6827:13;6786:16;6871:15;;;6849:55;:::i;:::-;6993:13;;6926:20;;;6966:1;;7053;7075:18;;;;7128;;;;7155:93;;7233:4;7223:8;7219:19;7207:31;;7155:93;7296:2;7286:8;7283:16;7263:18;7260:40;7257:167;;;-1:-1:-1;;;7323:33:1;;7379:4;7376:1;7369:15;7409:4;7330:3;7397:17;7257:167;7440:18;7467:110;;;;7591:1;7586:328;;;;7433:481;;7467:110;-1:-1:-1;;7502:24:1;;7488:39;;7547:20;;;;-1:-1:-1;7467:110:1;;7586:328;20500:1;20493:14;;;20537:4;20524:18;;7681:1;7695:169;7709:8;7706:1;7703:15;7695:169;;;7791:14;;7776:13;;;7769:37;7834:16;;;;7726:10;;7695:169;;;7699:3;;7895:8;7888:5;7884:20;7877:27;;7433:481;-1:-1:-1;7930:3:1;;6412:1527;-1:-1:-1;;;;;;;;;;;6412:1527:1:o;8362:488::-;-1:-1:-1;;;;;8631:15:1;;;8613:34;;8683:15;;8678:2;8663:18;;8656:43;8730:2;8715:18;;8708:34;;;8778:3;8773:2;8758:18;;8751:31;;;8556:4;;8799:45;;8824:19;;8816:6;8799:45;:::i;:::-;8791:53;8362:488;-1:-1:-1;;;;;;8362:488:1:o;9229:219::-;9378:2;9367:9;9360:21;9341:4;9398:44;9438:2;9427:9;9423:18;9415:6;9398:44;:::i;13777:356::-;13979:2;13961:21;;;13998:18;;;13991:30;14057:34;14052:2;14037:18;;14030:62;14124:2;14109:18;;13777:356::o;16429:415::-;16631:2;16613:21;;;16670:2;16650:18;;;16643:30;16709:34;16704:2;16689:18;;16682:62;-1:-1:-1;;;16775:2:1;16760:18;;16753:49;16834:3;16819:19;;16429:415::o;20147:275::-;20218:2;20212:9;20283:2;20264:13;;-1:-1:-1;;20260:27:1;20248:40;;20318:18;20303:34;;20339:22;;;20300:62;20297:88;;;20365:18;;:::i;:::-;20401:2;20394:22;20147:275;;-1:-1:-1;20147:275:1:o;20553:253::-;20593:3;-1:-1:-1;;;;;20682:2:1;20679:1;20675:10;20712:2;20709:1;20705:10;20743:3;20739:2;20735:12;20730:3;20727:21;20724:47;;;20751:18;;:::i;:::-;20787:13;;20553:253;-1:-1:-1;;;;20553:253:1:o;20811:128::-;20851:3;20882:1;20878:6;20875:1;20872:13;20869:39;;;20888:18;;:::i;:::-;-1:-1:-1;20924:9:1;;20811:128::o;20944:120::-;20984:1;21010;21000:35;;21015:18;;:::i;:::-;-1:-1:-1;21049:9:1;;20944:120::o;21069:168::-;21109:7;21175:1;21171;21167:6;21163:14;21160:1;21157:21;21152:1;21145:9;21138:17;21134:45;21131:71;;;21182:18;;:::i;:::-;-1:-1:-1;21222:9:1;;21069:168::o;21242:246::-;21282:4;-1:-1:-1;;;;;21395:10:1;;;;21365;;21417:12;;;21414:38;;;21432:18;;:::i;:::-;21469:13;;21242:246;-1:-1:-1;;;21242:246:1:o;21493:125::-;21533:4;21561:1;21558;21555:8;21552:34;;;21566:18;;:::i;:::-;-1:-1:-1;21603:9:1;;21493:125::o;21623:258::-;21695:1;21705:113;21719:6;21716:1;21713:13;21705:113;;;21795:11;;;21789:18;21776:11;;;21769:39;21741:2;21734:10;21705:113;;;21836:6;21833:1;21830:13;21827:48;;;-1:-1:-1;;21871:1:1;21853:16;;21846:27;21623:258::o;21886:136::-;21925:3;21953:5;21943:39;;21962:18;;:::i;:::-;-1:-1:-1;;;21998:18:1;;21886:136::o;22027:380::-;22106:1;22102:12;;;;22149;;;22170:61;;22224:4;22216:6;22212:17;22202:27;;22170:61;22277:2;22269:6;22266:14;22246:18;22243:38;22240:161;;;22323:10;22318:3;22314:20;22311:1;22304:31;22358:4;22355:1;22348:15;22386:4;22383:1;22376:15;22240:161;;22027:380;;;:::o;22412:135::-;22451:3;-1:-1:-1;;22472:17:1;;22469:43;;;22492:18;;:::i;:::-;-1:-1:-1;22539:1:1;22528:13;;22412:135::o;22552:112::-;22584:1;22610;22600:35;;22615:18;;:::i;:::-;-1:-1:-1;22649:9:1;;22552:112::o;22669:127::-;22730:10;22725:3;22721:20;22718:1;22711:31;22761:4;22758:1;22751:15;22785:4;22782:1;22775:15;22801:127;22862:10;22857:3;22853:20;22850:1;22843:31;22893:4;22890:1;22883:15;22917:4;22914:1;22907:15;22933:127;22994:10;22989:3;22985:20;22982:1;22975:31;23025:4;23022:1;23015:15;23049:4;23046:1;23039:15;23065:127;23126:10;23121:3;23117:20;23114:1;23107:31;23157:4;23154:1;23147:15;23181:4;23178:1;23171:15;23197:131;-1:-1:-1;;;;;;23271:32:1;;23261:43;;23251:71;;23318:1;23315;23308:12

Swarm Source

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