ETH Price: $2,473.82 (-2.06%)

Neo Samurai Monkeys (NSM)
 

Overview

TokenID

3341

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

360 Baby Monkeys were born on January 20,2022 and evolved into Samurai Monkeys. Samurai Monkeys were training so hard for their dreams.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NeoSamuraiMonkeys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: UNLISENCED

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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/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: @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: @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: 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 {}
}

abstract contract MerkleProof {
    bytes32 internal _merkleRoot;
    function _setMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _merkleRoot = merkleRoot_;
    }
    function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _merkleRoot;
    }
}
 
//            /~\_
//           C oo
//           _( ^)
//          ~/   ~\ 
//
//   contract by 0xSumo
//   Twitter: https://twitter.com/0xSumo
//   Discord: 0xSumo#9999

pragma solidity ^0.8.7;

contract NeoSamuraiMonkeys is ERC721A, Ownable, ReentrancyGuard, MerkleProof {

    uint256 public numberOfToken;
    uint256 public wlmintPrice = 0.03 ether;
    uint256 public mintPrice = 0.05 ether;
    uint256 private maxMintsPerWL = 5;
    uint256 private maxMintsPerPS = 5;
    uint256 private _totalSupply = 3600;
    string private _baseTokenURI;
    string private revealUri;
    bool public whitelistSaleEnabled = false;
    bool public publicSaleEnabled = false;
    bool public revealed = false;
    mapping(address => uint256) public wlMinted;
    mapping(address => uint256) public psMinted;

    constructor () ERC721A ("Neo Samurai Monkeys","NSM", maxMintsPerPS, _totalSupply) {
        numberOfToken = 0;
        sethiddenBaseURI("ipfs://QmZWx78vUPSPBLRQWrfyhYL8cHHyjSpWK4jvdWNtg5HpBB");
    }

    function ownerMint(uint256 _amount, address _address) public onlyOwner { 
        require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs");

        _safeMint(_address, _amount);
        numberOfToken += _amount;
    }

    function whitelistMint(uint256 _amount, bytes32[] memory proof_) external payable nonReentrant {
        require(whitelistSaleEnabled, "whitelistMint: Paused");
        require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!");
        require(maxMintsPerWL >= _amount, "whitelistMint: 5 max per tx");
        require(maxMintsPerWL >= wlMinted[msg.sender] + _amount, "You have no whitelistMint left");
        require(msg.value == wlmintPrice * _amount, "Value sent is not correct");
        require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs");

        wlMinted[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
        numberOfToken += _amount;
    }

    function publicMint(uint256 _amount) public payable nonReentrant {
        require(publicSaleEnabled, "publicMint: Paused");
        require(maxMintsPerPS >= _amount, "publicMint: 5 maxper tx");
        require(maxMintsPerPS >= psMinted[msg.sender] + _amount, "You have no publicMint left");
        require(msg.value == mintPrice * _amount, "Value sent is not correct");
        require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs");
         
        psMinted[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
        numberOfToken += _amount;
    }

    function setwlPrice(uint256 newPrice) external onlyOwner {
        wlmintPrice = newPrice;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        mintPrice = newPrice;
    }

    function setreveal(bool bool_) external onlyOwner {
        revealed = bool_;
    }
    
    function setWhitelistSale(bool bool_) external onlyOwner {
        whitelistSaleEnabled = bool_;
    }

    function setPublicSale(bool bool_) external onlyOwner {
        publicSaleEnabled = bool_;
    }

    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        _setMerkleRoot(merkleRoot_);
    }

    function sethiddenBaseURI(string memory uri_) public onlyOwner {
        revealUri = uri_;
    }

    function setBaseURI(string memory uri_) public onlyOwner {
        _baseTokenURI = uri_;
    }

    function currentBaseURI() private view returns (string memory){
        return _baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if(revealed == false) {
        return revealUri;
        }
        return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), ".json"));
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address aa = payable(0xd1ecfd51F5fb984903B6aF9193dAe9A3F172ea62);
        address bb = payable(0xBD1Ef3f306e6375F67A7Db6123f5Eb95B27A38E6);

        bool success;

        (success, ) = aa.call{value: (sendAmount * 640/1000)}("");
        require(success, "Failed to withdraw Ether");

        (success, ) = bb.call{value: (sendAmount * 360/1000)}("");
        require(success, "Failed to withdraw Ether");
    }

    function walletOfOwner(address _address) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_address);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
          tokenIds[i] = tokenOfOwnerByIndex(_address, i);
        }
        return tokenIds;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfToken","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":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"sethiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setwlPrice","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c060405260016000908155600755666a94d74f430000600c5566b1a2bc2ec50000600d556005600e819055600f55610e106010556013805462ffffff191690553480156200004d57600080fd5b506040518060400160405280601381526020017f4e656f2053616d75726169204d6f6e6b65797300000000000000000000000000815250604051806040016040528060038152602001624e534d60e81b815250600f5460105460008111620001135760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001755760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200010a565b83516200018a906001906020870190620002b4565b508251620001a0906002906020860190620002b4565b5060a09190915260805250620001b8905033620001ed565b60016009556000600b5560408051606081019091526035808252620001e791906200318160208301396200023f565b62000397565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200029b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200010a565b8051620002b0906012906020840190620002b4565b5050565b828054620002c2906200035a565b90600052602060002090601f016020900481019282620002e6576000855562000331565b82601f106200030157805160ff191683800117855562000331565b8280016001018555821562000331579182015b828111156200033157825182559160200191906001019062000314565b506200033f92915062000343565b5090565b5b808211156200033f576000815560010162000344565b600181811c908216806200036f57607f821691505b602082108114156200039157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612db9620003c860003960008181611f1b01528181611f45015261236b015260005050612db96000f3fe6080604052600436106102515760003560e01c80636817c76c11610139578063a22cb465116100b6578063d2cab0561161007a578063d2cab056146106e2578063d52c57e0146106f5578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a22cb4651461064c578063b88d4fde1461066c578063bf1f577b1461068c578063c87b56dd146106a2578063ca7ce3ec146106c257600080fd5b80638da5cb5b116100fd5780638da5cb5b146105ac57806391b7f5ed146105ca578063942958f4146105ea57806395d89b4114610617578063a08c008b1461062c57600080fd5b80636817c76c1461051457806370a082311461052a578063715018a61461054a57806378a923801461055f5780637cb647591461058c57600080fd5b80632f5d8cad116101d25780634f6ccce7116101965780634f6ccce714610454578063518302271461047457806355f804b3146104945780635a23dd99146104b45780635aca1bb6146104d45780636352211e146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612901565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506013546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612ac2565b3480156102d357600080fd5b506102e76102e23660046128e8565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a3660046128a3565b610939565b005b34801561032d57600080fd5b5061031f61033c3660046128e8565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b366004612775565b610a80565b34801561038c57600080fd5b5060135461027690610100900460ff1681565b61031f6103ad3660046128e8565b610a8b565b3480156103be57600080fd5b5061031f6103cd3660046128cd565b610cc1565b3480156103de57600080fd5b506103526103ed3660046128a3565b610d07565b3480156103fe57600080fd5b5061031f610e74565b34801561041357600080fd5b5061031f610422366004612775565b61102c565b34801561043357600080fd5b50610447610442366004612720565b611047565b6040516102829190612a7e565b34801561046057600080fd5b5061035261046f3660046128e8565b6110e8565b34801561048057600080fd5b506013546102769062010000900460ff1681565b3480156104a057600080fd5b5061031f6104af36600461293b565b61114a565b3480156104c057600080fd5b506102766104cf36600461282c565b61118b565b3480156104e057600080fd5b5061031f6104ef3660046128cd565b6112af565b34801561050057600080fd5b506102e761050f3660046128e8565b6112f3565b34801561052057600080fd5b50610352600d5481565b34801561053657600080fd5b50610352610545366004612720565b611305565b34801561055657600080fd5b5061031f611396565b34801561056b57600080fd5b5061035261057a366004612720565b60146020526000908152604090205481565b34801561059857600080fd5b5061031f6105a73660046128e8565b6113cc565b3480156105b857600080fd5b506008546001600160a01b03166102e7565b3480156105d657600080fd5b5061031f6105e53660046128e8565b611402565b3480156105f657600080fd5b50610352610605366004612720565b60156020526000908152604090205481565b34801561062357600080fd5b506102ba611431565b34801561063857600080fd5b5061031f61064736600461293b565b611440565b34801561065857600080fd5b5061031f610667366004612879565b61147d565b34801561067857600080fd5b5061031f6106873660046127b1565b611542565b34801561069857600080fd5b50610352600b5481565b3480156106ae57600080fd5b506102ba6106bd3660046128e8565b611575565b3480156106ce57600080fd5b5061031f6106dd3660046128cd565b6116c0565b61031f6106f03660046129a6565b6116fd565b34801561070157600080fd5b5061031f610710366004612983565b611988565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b50610276610746366004612742565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f366004612720565b611a05565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612cab565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610944826112f3565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611a9d565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612ad5565b600c55565b610a4c838383611af9565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955601354610100900460ff16610b2f5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b80600f541015610b815760405162461bcd60e51b815260206004820152601760248201527f7075626c69634d696e743a2035206d61787065722074780000000000000000006044820152606401610914565b33600090815260156020526040902054610b9c908290612bde565b600f541015610bed5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610bfb9190612c0a565b3414610c455760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b54610c559083612bde565b1115610c735760405162461bcd60e51b815260040161091490612b0a565b3360009081526015602052604081208054839290610c92908490612bde565b90915550610ca290503382611e7f565b80600b6000828254610cb49190612bde565b9091555050600160095550565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161091490612ad5565b60138054911515620100000262ff000019909216919091179055565b6000610d1283611305565b8210610d6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e14576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dc557805192505b876001600160a01b0316836001600160a01b03161415610e015786841415610df35750935061081192505050565b83610dfd81612ce6565b9450505b5080610e0c81612ce6565b915050610d73565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161091490612ad5565b4773d1ecfd51f5fb984903b6af9193dae9a3f172ea6273bd1ef3f306e6375f67a7db6123f5eb95b27a38e66000826103e8610edb86610280612c0a565b610ee59190612bf6565b604051600081818185875af1925050503d8060008114610f21576040519150601f19603f3d011682016040523d82523d6000602084013e610f26565b606091505b50508091505080610f745760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610f8d86610168612c0a565b610f979190612bf6565b604051600081818185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505080915050806110265760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c83838360405180602001604052806000815250611542565b6060600061105483611305565b90506000816001600160401b0381111561107057611070612d57565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b828110156110e0576110b18582610d07565b8282815181106110c3576110c3612d41565b6020908102919091010152806110d881612ce6565b91505061109f565b509392505050565b6000805482106111465760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111745760405162461bcd60e51b815260040161091490612ad5565b8051611187906011906020840190612588565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156112a3578381815181106111e5576111e5612d41565b602002602001015182106112435783818151811061120557611205612d41565b602002602001015182604051602001611228929190918252602082015260400190565b6040516020818303038152906040528051906020012061128f565b8184828151811061125657611256612d41565b6020026020010151604051602001611278929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061129b81612ce6565b9150506111ca565b50600a54149392505050565b6008546001600160a01b031633146112d95760405162461bcd60e51b815260040161091490612ad5565b601380549115156101000261ff0019909216919091179055565b60006112fe82611e99565b5192915050565b60006001600160a01b0382166113715760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113c05760405162461bcd60e51b815260040161091490612ad5565b6113ca6000612042565b565b6008546001600160a01b031633146113f65760405162461bcd60e51b815260040161091490612ad5565b6113ff81600a55565b50565b6008546001600160a01b0316331461142c5760405162461bcd60e51b815260040161091490612ad5565b600d55565b60606002805461082690612cab565b6008546001600160a01b0316331461146a5760405162461bcd60e51b815260040161091490612ad5565b8051611187906012906020840190612588565b6001600160a01b0382163314156114d65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61154d848484611af9565b61155984848484612094565b6110265760405162461bcd60e51b815260040161091490612b30565b6060611582826000541190565b6115e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60135462010000900460ff16611688576012805461160390612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461162f90612cab565b801561167c5780601f106116515761010080835404028352916020019161167c565b820191906000526020600020905b81548152906001019060200180831161165f57829003601f168201915b50505050509050919050565b6116906121a2565b611699836121b1565b6040516020016116aa929190612a02565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146116ea5760405162461bcd60e51b815260040161091490612ad5565b6013805460ff1916911515919091179055565b600260095414156117505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b600260095560135460ff1661179f5760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b6117a9338261118b565b6117f55760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118475760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2035206d61782070657220747800000000006044820152606401610914565b33600090815260146020526040902054611862908390612bde565b600e5410156118b35760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c546118c19190612c0a565b341461190b5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b5461191b9084612bde565b11156119395760405162461bcd60e51b815260040161091490612b0a565b3360009081526014602052604081208054849290611958908490612bde565b9091555061196890503383611e7f565b81600b600082825461197a9190612bde565b909155505060016009555050565b6008546001600160a01b031633146119b25760405162461bcd60e51b815260040161091490612ad5565b601054600b546119c29084612bde565b11156119e05760405162461bcd60e51b815260040161091490612b0a565b6119ea8183611e7f565b81600b60008282546119fc9190612bde565b90915550505050565b6008546001600160a01b03163314611a2f5760405162461bcd60e51b815260040161091490612ad5565b6001600160a01b038116611a945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b6113ff81612042565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0482611e99565b80519091506000906001600160a01b0316336001600160a01b03161480611b3b575033611b30846108a9565b6001600160a01b0316145b80611b4d57508151611b4d9033610746565b905080611bb75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611c2b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611c8f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611c9f6000848460000151611a9d565b6001600160a01b0385166000908152600460205260408120805460019290611cd19084906001600160801b0316612c29565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d1d91859116612bb3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da4846001612bde565b6000818152600360205260409020549091506001600160a01b0316611e3557611dce816000541190565b15611e355760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111878282604051806020016040528060008152506122ae565b6040805180820190915260008082526020820152611eb8826000541190565b611f175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f7857611f6a7f000000000000000000000000000000000000000000000000000000000000000084612c51565b611f75906001612bde565b90505b825b818110611fe1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fce57949350505050565b5080611fd981612c94565b915050611f7a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561219657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d8903390899088908890600401612a41565b602060405180830381600087803b1580156120f257600080fd5b505af1925050508015612122575060408051601f3d908101601f1916820190925261211f9181019061291e565b60015b61217c573d808015612150576040519150601f19603f3d011682016040523d82523d6000602084013e612155565b606091505b5080516121745760405162461bcd60e51b815260040161091490612b30565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061219a565b5060015b949350505050565b60606011805461082690612cab565b6060816121d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ff57806121e981612ce6565b91506121f89050600a83612bf6565b91506121d9565b6000816001600160401b0381111561221957612219612d57565b6040519080825280601f01601f191660200182016040528015612243576020820181803683370190505b5090505b841561219a57612258600183612c51565b9150612265600a86612d01565b612270906030612bde565b60f81b81838151811061228557612285612d41565b60200101906001600160f81b031916908160001a9053506122a7600a86612bf6565b9450612247565b6000546001600160a01b0384166123115760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b61231c816000541190565b156123695760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f00000000000000000000000000000000000000000000000000000000000000008311156123e45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612440908790612bb3565b6001600160801b0316815260200185836020015161245e9190612bb3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561257d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125416000888488612094565b61255d5760405162461bcd60e51b815260040161091490612b30565b8161256781612ce6565b925050808061257590612ce6565b9150506124f4565b506000819055611e77565b82805461259490612cab565b90600052602060002090601f0160209004810192826125b657600085556125fc565b82601f106125cf57805160ff19168380011785556125fc565b828001600101855582156125fc579182015b828111156125fc5782518255916020019190600101906125e1565b506111469291505b808211156111465760008155600101612604565b60006001600160401b0383111561263157612631612d57565b612644601f8401601f1916602001612b83565b905082815283838301111561265857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461268657600080fd5b919050565b600082601f83011261269c57600080fd5b813560206001600160401b038211156126b7576126b7612d57565b8160051b6126c6828201612b83565b8381528281019086840183880185018910156126e157600080fd5b600093505b858410156127045780358352600193909301929184019184016126e6565b50979650505050505050565b8035801515811461268657600080fd5b60006020828403121561273257600080fd5b61273b8261266f565b9392505050565b6000806040838503121561275557600080fd5b61275e8361266f565b915061276c6020840161266f565b90509250929050565b60008060006060848603121561278a57600080fd5b6127938461266f565b92506127a16020850161266f565b9150604084013590509250925092565b600080600080608085870312156127c757600080fd5b6127d08561266f565b93506127de6020860161266f565b92506040850135915060608501356001600160401b0381111561280057600080fd5b8501601f8101871361281157600080fd5b61282087823560208401612618565b91505092959194509250565b6000806040838503121561283f57600080fd5b6128488361266f565b915060208301356001600160401b0381111561286357600080fd5b61286f8582860161268b565b9150509250929050565b6000806040838503121561288c57600080fd5b6128958361266f565b915061276c60208401612710565b600080604083850312156128b657600080fd5b6128bf8361266f565b946020939093013593505050565b6000602082840312156128df57600080fd5b61273b82612710565b6000602082840312156128fa57600080fd5b5035919050565b60006020828403121561291357600080fd5b813561273b81612d6d565b60006020828403121561293057600080fd5b815161273b81612d6d565b60006020828403121561294d57600080fd5b81356001600160401b0381111561296357600080fd5b8201601f8101841361297457600080fd5b61219a84823560208401612618565b6000806040838503121561299657600080fd5b8235915061276c6020840161266f565b600080604083850312156129b957600080fd5b8235915060208301356001600160401b0381111561286357600080fd5b600081518084526129ee816020860160208601612c68565b601f01601f19169290920160200192915050565b60008351612a14818460208801612c68565b835190830190612a28818360208801612c68565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a74908301846129d6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab657835183529284019291840191600101612a9a565b50909695505050505050565b60208152600061273b60208301846129d6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612bab57612bab612d57565b604052919050565b60006001600160801b03808316818516808303821115612bd557612bd5612d15565b01949350505050565b60008219821115612bf157612bf1612d15565b500190565b600082612c0557612c05612d2b565b500490565b6000816000190483118215151615612c2457612c24612d15565b500290565b60006001600160801b0383811690831681811015612c4957612c49612d15565b039392505050565b600082821015612c6357612c63612d15565b500390565b60005b83811015612c83578181015183820152602001612c6b565b838111156110265750506000910152565b600081612ca357612ca3612d15565b506000190190565b600181811c90821680612cbf57607f821691505b60208210811415612ce057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cfa57612cfa612d15565b5060010190565b600082612d1057612d10612d2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ff57600080fdfea26469706673582212205207134cdc05d79e92d4d10d8aaed58660313aa1425f4dc44f345af11a40de3864736f6c63430008070033697066733a2f2f516d5a577837387655505350424c52515772667968594c38634848796a5370574b346a7664574e74673548704242

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636817c76c11610139578063a22cb465116100b6578063d2cab0561161007a578063d2cab056146106e2578063d52c57e0146106f5578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a22cb4651461064c578063b88d4fde1461066c578063bf1f577b1461068c578063c87b56dd146106a2578063ca7ce3ec146106c257600080fd5b80638da5cb5b116100fd5780638da5cb5b146105ac57806391b7f5ed146105ca578063942958f4146105ea57806395d89b4114610617578063a08c008b1461062c57600080fd5b80636817c76c1461051457806370a082311461052a578063715018a61461054a57806378a923801461055f5780637cb647591461058c57600080fd5b80632f5d8cad116101d25780634f6ccce7116101965780634f6ccce714610454578063518302271461047457806355f804b3146104945780635a23dd99146104b45780635aca1bb6146104d45780636352211e146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612901565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506013546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612ac2565b3480156102d357600080fd5b506102e76102e23660046128e8565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a3660046128a3565b610939565b005b34801561032d57600080fd5b5061031f61033c3660046128e8565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b366004612775565b610a80565b34801561038c57600080fd5b5060135461027690610100900460ff1681565b61031f6103ad3660046128e8565b610a8b565b3480156103be57600080fd5b5061031f6103cd3660046128cd565b610cc1565b3480156103de57600080fd5b506103526103ed3660046128a3565b610d07565b3480156103fe57600080fd5b5061031f610e74565b34801561041357600080fd5b5061031f610422366004612775565b61102c565b34801561043357600080fd5b50610447610442366004612720565b611047565b6040516102829190612a7e565b34801561046057600080fd5b5061035261046f3660046128e8565b6110e8565b34801561048057600080fd5b506013546102769062010000900460ff1681565b3480156104a057600080fd5b5061031f6104af36600461293b565b61114a565b3480156104c057600080fd5b506102766104cf36600461282c565b61118b565b3480156104e057600080fd5b5061031f6104ef3660046128cd565b6112af565b34801561050057600080fd5b506102e761050f3660046128e8565b6112f3565b34801561052057600080fd5b50610352600d5481565b34801561053657600080fd5b50610352610545366004612720565b611305565b34801561055657600080fd5b5061031f611396565b34801561056b57600080fd5b5061035261057a366004612720565b60146020526000908152604090205481565b34801561059857600080fd5b5061031f6105a73660046128e8565b6113cc565b3480156105b857600080fd5b506008546001600160a01b03166102e7565b3480156105d657600080fd5b5061031f6105e53660046128e8565b611402565b3480156105f657600080fd5b50610352610605366004612720565b60156020526000908152604090205481565b34801561062357600080fd5b506102ba611431565b34801561063857600080fd5b5061031f61064736600461293b565b611440565b34801561065857600080fd5b5061031f610667366004612879565b61147d565b34801561067857600080fd5b5061031f6106873660046127b1565b611542565b34801561069857600080fd5b50610352600b5481565b3480156106ae57600080fd5b506102ba6106bd3660046128e8565b611575565b3480156106ce57600080fd5b5061031f6106dd3660046128cd565b6116c0565b61031f6106f03660046129a6565b6116fd565b34801561070157600080fd5b5061031f610710366004612983565b611988565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b50610276610746366004612742565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f366004612720565b611a05565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612cab565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610944826112f3565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611a9d565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612ad5565b600c55565b610a4c838383611af9565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955601354610100900460ff16610b2f5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b80600f541015610b815760405162461bcd60e51b815260206004820152601760248201527f7075626c69634d696e743a2035206d61787065722074780000000000000000006044820152606401610914565b33600090815260156020526040902054610b9c908290612bde565b600f541015610bed5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610bfb9190612c0a565b3414610c455760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b54610c559083612bde565b1115610c735760405162461bcd60e51b815260040161091490612b0a565b3360009081526015602052604081208054839290610c92908490612bde565b90915550610ca290503382611e7f565b80600b6000828254610cb49190612bde565b9091555050600160095550565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161091490612ad5565b60138054911515620100000262ff000019909216919091179055565b6000610d1283611305565b8210610d6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e14576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dc557805192505b876001600160a01b0316836001600160a01b03161415610e015786841415610df35750935061081192505050565b83610dfd81612ce6565b9450505b5080610e0c81612ce6565b915050610d73565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161091490612ad5565b4773d1ecfd51f5fb984903b6af9193dae9a3f172ea6273bd1ef3f306e6375f67a7db6123f5eb95b27a38e66000826103e8610edb86610280612c0a565b610ee59190612bf6565b604051600081818185875af1925050503d8060008114610f21576040519150601f19603f3d011682016040523d82523d6000602084013e610f26565b606091505b50508091505080610f745760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610f8d86610168612c0a565b610f979190612bf6565b604051600081818185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505080915050806110265760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c83838360405180602001604052806000815250611542565b6060600061105483611305565b90506000816001600160401b0381111561107057611070612d57565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b828110156110e0576110b18582610d07565b8282815181106110c3576110c3612d41565b6020908102919091010152806110d881612ce6565b91505061109f565b509392505050565b6000805482106111465760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111745760405162461bcd60e51b815260040161091490612ad5565b8051611187906011906020840190612588565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156112a3578381815181106111e5576111e5612d41565b602002602001015182106112435783818151811061120557611205612d41565b602002602001015182604051602001611228929190918252602082015260400190565b6040516020818303038152906040528051906020012061128f565b8184828151811061125657611256612d41565b6020026020010151604051602001611278929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061129b81612ce6565b9150506111ca565b50600a54149392505050565b6008546001600160a01b031633146112d95760405162461bcd60e51b815260040161091490612ad5565b601380549115156101000261ff0019909216919091179055565b60006112fe82611e99565b5192915050565b60006001600160a01b0382166113715760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113c05760405162461bcd60e51b815260040161091490612ad5565b6113ca6000612042565b565b6008546001600160a01b031633146113f65760405162461bcd60e51b815260040161091490612ad5565b6113ff81600a55565b50565b6008546001600160a01b0316331461142c5760405162461bcd60e51b815260040161091490612ad5565b600d55565b60606002805461082690612cab565b6008546001600160a01b0316331461146a5760405162461bcd60e51b815260040161091490612ad5565b8051611187906012906020840190612588565b6001600160a01b0382163314156114d65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61154d848484611af9565b61155984848484612094565b6110265760405162461bcd60e51b815260040161091490612b30565b6060611582826000541190565b6115e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60135462010000900460ff16611688576012805461160390612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461162f90612cab565b801561167c5780601f106116515761010080835404028352916020019161167c565b820191906000526020600020905b81548152906001019060200180831161165f57829003601f168201915b50505050509050919050565b6116906121a2565b611699836121b1565b6040516020016116aa929190612a02565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146116ea5760405162461bcd60e51b815260040161091490612ad5565b6013805460ff1916911515919091179055565b600260095414156117505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b600260095560135460ff1661179f5760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b6117a9338261118b565b6117f55760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118475760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2035206d61782070657220747800000000006044820152606401610914565b33600090815260146020526040902054611862908390612bde565b600e5410156118b35760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c546118c19190612c0a565b341461190b5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b5461191b9084612bde565b11156119395760405162461bcd60e51b815260040161091490612b0a565b3360009081526014602052604081208054849290611958908490612bde565b9091555061196890503383611e7f565b81600b600082825461197a9190612bde565b909155505060016009555050565b6008546001600160a01b031633146119b25760405162461bcd60e51b815260040161091490612ad5565b601054600b546119c29084612bde565b11156119e05760405162461bcd60e51b815260040161091490612b0a565b6119ea8183611e7f565b81600b60008282546119fc9190612bde565b90915550505050565b6008546001600160a01b03163314611a2f5760405162461bcd60e51b815260040161091490612ad5565b6001600160a01b038116611a945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b6113ff81612042565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0482611e99565b80519091506000906001600160a01b0316336001600160a01b03161480611b3b575033611b30846108a9565b6001600160a01b0316145b80611b4d57508151611b4d9033610746565b905080611bb75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611c2b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611c8f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611c9f6000848460000151611a9d565b6001600160a01b0385166000908152600460205260408120805460019290611cd19084906001600160801b0316612c29565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d1d91859116612bb3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da4846001612bde565b6000818152600360205260409020549091506001600160a01b0316611e3557611dce816000541190565b15611e355760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111878282604051806020016040528060008152506122ae565b6040805180820190915260008082526020820152611eb8826000541190565b611f175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f00000000000000000000000000000000000000000000000000000000000000058310611f7857611f6a7f000000000000000000000000000000000000000000000000000000000000000584612c51565b611f75906001612bde565b90505b825b818110611fe1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fce57949350505050565b5080611fd981612c94565b915050611f7a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561219657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d8903390899088908890600401612a41565b602060405180830381600087803b1580156120f257600080fd5b505af1925050508015612122575060408051601f3d908101601f1916820190925261211f9181019061291e565b60015b61217c573d808015612150576040519150601f19603f3d011682016040523d82523d6000602084013e612155565b606091505b5080516121745760405162461bcd60e51b815260040161091490612b30565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061219a565b5060015b949350505050565b60606011805461082690612cab565b6060816121d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ff57806121e981612ce6565b91506121f89050600a83612bf6565b91506121d9565b6000816001600160401b0381111561221957612219612d57565b6040519080825280601f01601f191660200182016040528015612243576020820181803683370190505b5090505b841561219a57612258600183612c51565b9150612265600a86612d01565b612270906030612bde565b60f81b81838151811061228557612285612d41565b60200101906001600160f81b031916908160001a9053506122a7600a86612bf6565b9450612247565b6000546001600160a01b0384166123115760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b61231c816000541190565b156123695760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f00000000000000000000000000000000000000000000000000000000000000058311156123e45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612440908790612bb3565b6001600160801b0316815260200185836020015161245e9190612bb3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561257d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125416000888488612094565b61255d5760405162461bcd60e51b815260040161091490612b30565b8161256781612ce6565b925050808061257590612ce6565b9150506124f4565b506000819055611e77565b82805461259490612cab565b90600052602060002090601f0160209004810192826125b657600085556125fc565b82601f106125cf57805160ff19168380011785556125fc565b828001600101855582156125fc579182015b828111156125fc5782518255916020019190600101906125e1565b506111469291505b808211156111465760008155600101612604565b60006001600160401b0383111561263157612631612d57565b612644601f8401601f1916602001612b83565b905082815283838301111561265857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461268657600080fd5b919050565b600082601f83011261269c57600080fd5b813560206001600160401b038211156126b7576126b7612d57565b8160051b6126c6828201612b83565b8381528281019086840183880185018910156126e157600080fd5b600093505b858410156127045780358352600193909301929184019184016126e6565b50979650505050505050565b8035801515811461268657600080fd5b60006020828403121561273257600080fd5b61273b8261266f565b9392505050565b6000806040838503121561275557600080fd5b61275e8361266f565b915061276c6020840161266f565b90509250929050565b60008060006060848603121561278a57600080fd5b6127938461266f565b92506127a16020850161266f565b9150604084013590509250925092565b600080600080608085870312156127c757600080fd5b6127d08561266f565b93506127de6020860161266f565b92506040850135915060608501356001600160401b0381111561280057600080fd5b8501601f8101871361281157600080fd5b61282087823560208401612618565b91505092959194509250565b6000806040838503121561283f57600080fd5b6128488361266f565b915060208301356001600160401b0381111561286357600080fd5b61286f8582860161268b565b9150509250929050565b6000806040838503121561288c57600080fd5b6128958361266f565b915061276c60208401612710565b600080604083850312156128b657600080fd5b6128bf8361266f565b946020939093013593505050565b6000602082840312156128df57600080fd5b61273b82612710565b6000602082840312156128fa57600080fd5b5035919050565b60006020828403121561291357600080fd5b813561273b81612d6d565b60006020828403121561293057600080fd5b815161273b81612d6d565b60006020828403121561294d57600080fd5b81356001600160401b0381111561296357600080fd5b8201601f8101841361297457600080fd5b61219a84823560208401612618565b6000806040838503121561299657600080fd5b8235915061276c6020840161266f565b600080604083850312156129b957600080fd5b8235915060208301356001600160401b0381111561286357600080fd5b600081518084526129ee816020860160208601612c68565b601f01601f19169290920160200192915050565b60008351612a14818460208801612c68565b835190830190612a28818360208801612c68565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a74908301846129d6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab657835183529284019291840191600101612a9a565b50909695505050505050565b60208152600061273b60208301846129d6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612bab57612bab612d57565b604052919050565b60006001600160801b03808316818516808303821115612bd557612bd5612d15565b01949350505050565b60008219821115612bf157612bf1612d15565b500190565b600082612c0557612c05612d2b565b500490565b6000816000190483118215151615612c2457612c24612d15565b500290565b60006001600160801b0383811690831681811015612c4957612c49612d15565b039392505050565b600082821015612c6357612c63612d15565b500390565b60005b83811015612c83578181015183820152602001612c6b565b838111156110265750506000910152565b600081612ca357612ca3612d15565b506000190190565b600181811c90821680612cbf57607f821691505b60208210811415612ce057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cfa57612cfa612d15565b5060010190565b600082612d1057612d10612d2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ff57600080fdfea26469706673582212205207134cdc05d79e92d4d10d8aaed58660313aa1425f4dc44f345af11a40de3864736f6c63430008070033

Deployed Bytecode Sourcemap

43280:4608:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30171:370;;;;;;;;;;-1:-1:-1;30171:370:0;;;;;:::i;:::-;;:::i;:::-;;;9198:14:1;;9191:22;9173:41;;9161:2;9146:18;30171:370:0;;;;;;;;43679:40;;;;;;;;;;-1:-1:-1;43679:40:0;;;;;;;;31897:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33422:204::-;;;;;;;;;;-1:-1:-1;33422:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7859:32:1;;;7841:51;;7829:2;7814:18;33422:204:0;7695:203:1;32985:379:0;;;;;;;;;;-1:-1:-1;32985:379:0;;;;;:::i;:::-;;:::i;:::-;;45673:98;;;;;;;;;;-1:-1:-1;45673:98:0;;;;;:::i;:::-;;:::i;28732:94::-;;;;;;;;;;-1:-1:-1;28785:7:0;28808:12;28732:94;;;21534:25:1;;;21522:2;21507:18;28732:94:0;21388:177:1;34272:142:0;;;;;;;;;;-1:-1:-1;34272:142:0;;;;;:::i;:::-;;:::i;43726:37::-;;;;;;;;;;-1:-1:-1;43726:37:0;;;;;;;;;;;45075:590;;;;;;:::i;:::-;;:::i;45881:85::-;;;;;;;;;;-1:-1:-1;45881:85:0;;;;;:::i;:::-;;:::i;29363:744::-;;;;;;;;;;-1:-1:-1;29363:744:0;;;;;:::i;:::-;;:::i;46990:525::-;;;;;;;;;;;;;:::i;34477:157::-;;;;;;;;;;-1:-1:-1;34477:157:0;;;;;:::i;:::-;;:::i;47523:362::-;;;;;;;;;;-1:-1:-1;47523:362:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28895:177::-;;;;;;;;;;-1:-1:-1;28895:177:0;;;;;:::i;:::-;;:::i;43770:28::-;;;;;;;;;;-1:-1:-1;43770:28:0;;;;;;;;;;;46419:96;;;;;;;;;;-1:-1:-1;46419:96:0;;;;;:::i;:::-;;:::i;42659:405::-;;;;;;;;;;-1:-1:-1;42659:405:0;;;;;:::i;:::-;;:::i;46090:98::-;;;;;;;;;;-1:-1:-1;46090:98:0;;;;;:::i;:::-;;:::i;31720:118::-;;;;;;;;;;-1:-1:-1;31720:118:0;;;;;:::i;:::-;;:::i;43447:37::-;;;;;;;;;;;;;;;;30597:211;;;;;;;;;;-1:-1:-1;30597:211:0;;;;;:::i;:::-;;:::i;7388:103::-;;;;;;;;;;;;;:::i;43805:43::-;;;;;;;;;;-1:-1:-1;43805:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;46196:109;;;;;;;;;;-1:-1:-1;46196:109:0;;;;;:::i;:::-;;:::i;6737:87::-;;;;;;;;;;-1:-1:-1;6810:6:0;;-1:-1:-1;;;;;6810:6:0;6737:87;;45779:94;;;;;;;;;;-1:-1:-1;45779:94:0;;;;;:::i;:::-;;:::i;43855:43::-;;;;;;;;;;-1:-1:-1;43855:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;32052:98;;;;;;;;;;;;;:::i;46313:::-;;;;;;;;;;-1:-1:-1;46313:98:0;;;;;:::i;:::-;;:::i;33690:274::-;;;;;;;;;;-1:-1:-1;33690:274:0;;;;;:::i;:::-;;:::i;34697:311::-;;;;;;;;;;-1:-1:-1;34697:311:0;;;;;:::i;:::-;;:::i;43366:28::-;;;;;;;;;;;;;;;;46632:350;;;;;;;;;;-1:-1:-1;46632:350:0;;;;;:::i;:::-;;:::i;45978:104::-;;;;;;;;;;-1:-1:-1;45978:104:0;;;;;:::i;:::-;;:::i;44360:707::-;;;;;;:::i;:::-;;:::i;44117:235::-;;;;;;;;;;-1:-1:-1;44117:235:0;;;;;:::i;:::-;;:::i;39112:43::-;;;;;;;;;;;;;;;;34027:186;;;;;;;;;;-1:-1:-1;34027:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34172:25:0;;;34149:4;34172:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34027:186;7646:201;;;;;;;;;;-1:-1:-1;7646:201:0;;;;;:::i;:::-;;:::i;43401:39::-;;;;;;;;;;;;;;;;30171:370;30298:4;-1:-1:-1;;;;;;30328:40:0;;-1:-1:-1;;;30328:40:0;;:99;;-1:-1:-1;;;;;;;30379:48:0;;-1:-1:-1;;;30379:48:0;30328:99;:160;;;-1:-1:-1;;;;;;;30438:50:0;;-1:-1:-1;;;30438:50:0;30328:160;:207;;;-1:-1:-1;;;;;;;;;;19626:40:0;;;30499:36;30314:221;30171:370;-1:-1:-1;;30171:370:0:o;31897:94::-;31951:13;31980:5;31973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31897:94;:::o;33422:204::-;33490:7;33514:16;33522:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;33514:16;33506:74;;;;-1:-1:-1;;;33506:74:0;;20773:2:1;33506:74:0;;;20755:21:1;20812:2;20792:18;;;20785:30;20851:34;20831:18;;;20824:62;-1:-1:-1;;;20902:18:1;;;20895:43;20955:19;;33506:74:0;;;;;;;;;-1:-1:-1;33596:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33596:24:0;;33422:204::o;32985:379::-;33054:13;33070:24;33086:7;33070:15;:24::i;:::-;33054:40;;33115:5;-1:-1:-1;;;;;33109:11:0;:2;-1:-1:-1;;;;;33109:11:0;;;33101:58;;;;-1:-1:-1;;;33101:58:0;;17643:2:1;33101:58:0;;;17625:21:1;17682:2;17662:18;;;17655:30;17721:34;17701:18;;;17694:62;-1:-1:-1;;;17772:18:1;;;17765:32;17814:19;;33101:58:0;17441:398:1;33101:58:0;5545:10;-1:-1:-1;;;;;33184:21:0;;;;:62;;-1:-1:-1;33209:37:0;33226:5;5545:10;34027:186;:::i;33209:37::-;33168:153;;;;-1:-1:-1;;;33168:153:0;;13799:2:1;33168:153:0;;;13781:21:1;13838:2;13818:18;;;13811:30;13877:34;13857:18;;;13850:62;13948:27;13928:18;;;13921:55;13993:19;;33168:153:0;13597:421:1;33168:153:0;33330:28;33339:2;33343:7;33352:5;33330:8;:28::i;:::-;33047:317;32985:379;;:::o;45673:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;45741:11:::1;:22:::0;45673:98::o;34272:142::-;34380:28;34390:4;34396:2;34400:7;34380:9;:28::i;45075:590::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;19997:2:1;2309:63:0;;;19979:21:1;20036:2;20016:18;;;20009:30;20075:33;20055:18;;;20048:61;20126:18;;2309:63:0;19795:355:1;2309:63:0;1719:1;2450:7;:18;45159:17:::1;::::0;::::1;::::0;::::1;;;45151:48;;;::::0;-1:-1:-1;;;45151:48:0;;11115:2:1;45151:48:0::1;::::0;::::1;11097:21:1::0;11154:2;11134:18;;;11127:30;-1:-1:-1;;;11173:18:1;;;11166:48;11231:18;;45151:48:0::1;10913:342:1::0;45151:48:0::1;45235:7;45218:13;;:24;;45210:60;;;::::0;-1:-1:-1;;;45210:60:0;;10054:2:1;45210:60:0::1;::::0;::::1;10036:21:1::0;10093:2;10073:18;;;10066:30;10132:25;10112:18;;;10105:53;10175:18;;45210:60:0::1;9852:347:1::0;45210:60:0::1;45315:10;45306:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;45329:7;;45306:30:::1;:::i;:::-;45289:13;;:47;;45281:87;;;::::0;-1:-1:-1;;;45281:87:0;;18046:2:1;45281:87:0::1;::::0;::::1;18028:21:1::0;18085:2;18065:18;;;18058:30;18124:29;18104:18;;;18097:57;18171:18;;45281:87:0::1;17844:351:1::0;45281:87:0::1;45412:7;45400:9;;:19;;;;:::i;:::-;45387:9;:32;45379:70;;;::::0;-1:-1:-1;;;45379:70:0;;14225:2:1;45379:70:0::1;::::0;::::1;14207:21:1::0;14264:2;14244:18;;;14237:30;-1:-1:-1;;;14283:18:1;;;14276:55;14348:18;;45379:70:0::1;14023:349:1::0;45379:70:0::1;45498:12;::::0;45479:13:::1;::::0;45469:23:::1;::::0;:7;:23:::1;:::i;:::-;45468:43;;45460:68;;;;-1:-1:-1::0;;;45460:68:0::1;;;;;;;:::i;:::-;45559:10;45550:20;::::0;;;:8:::1;:20;::::0;;;;:31;;45574:7;;45550:20;:31:::1;::::0;45574:7;;45550:31:::1;:::i;:::-;::::0;;;-1:-1:-1;45592:30:0::1;::::0;-1:-1:-1;45602:10:0::1;45614:7:::0;45592:9:::1;:30::i;:::-;45650:7;45633:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;45075:590:0:o;45881:85::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;45942:8:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45942:16:0;;::::1;::::0;;;::::1;::::0;;45881:85::o;29363:744::-;29472:7;29507:16;29517:5;29507:9;:16::i;:::-;29499:5;:24;29491:71;;;;-1:-1:-1;;;29491:71:0;;9651:2:1;29491:71:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:18:1;;;9773:32;9822:19;;29491:71:0;9449:398:1;29491:71:0;29569:22;28808:12;;;29569:22;;29689:350;29713:14;29709:1;:18;29689:350;;;29743:31;29777:14;;;:11;:14;;;;;;;;;29743:48;;;;;;;;;-1:-1:-1;;;;;29743:48:0;;;;;-1:-1:-1;;;29743:48:0;;;-1:-1:-1;;;;;29743:48:0;;;;;;;;29804:28;29800:89;;29865:14;;;-1:-1:-1;29800:89:0;29922:5;-1:-1:-1;;;;;29901:26:0;:17;-1:-1:-1;;;;;29901:26:0;;29897:135;;;29959:5;29944:11;:20;29940:59;;;-1:-1:-1;29986:1:0;-1:-1:-1;29979:8:0;;-1:-1:-1;;;29979:8:0;29940:59;30009:13;;;;:::i;:::-;;;;29897:135;-1:-1:-1;29729:3:0;;;;:::i;:::-;;;;29689:350;;;-1:-1:-1;30045:56:0;;-1:-1:-1;;;30045:56:0;;19582:2:1;30045:56:0;;;19564:21:1;19621:2;19601:18;;;19594:30;19660:34;19640:18;;;19633:62;-1:-1:-1;;;19711:18:1;;;19704:44;19765:19;;30045:56:0;19380:410:1;46990:525:0;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;47059:21:::1;47114:42;47189;47038:18;47114:42:::0;47317:4:::1;47300:16;47059:21:::0;47313:3:::1;47300:16;:::i;:::-;:21;;;;:::i;:::-;47284:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47270:57;;;;;47346:7;47338:44;;;::::0;-1:-1:-1;;;47338:44:0;;16949:2:1;47338:44:0::1;::::0;::::1;16931:21:1::0;16988:2;16968:18;;;16961:30;-1:-1:-1;;;17007:18:1;;;17000:54;17071:18;;47338:44:0::1;16747:348:1::0;47338:44:0::1;-1:-1:-1::0;;;;;47409:7:0;::::1;47442:4;47425:16;:10:::0;47438:3:::1;47425:16;:::i;:::-;:21;;;;:::i;:::-;47409:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47395:57;;;;;47471:7;47463:44;;;::::0;-1:-1:-1;;;47463:44:0;;16949:2:1;47463:44:0::1;::::0;::::1;16931:21:1::0;16988:2;16968:18;;;16961:30;-1:-1:-1;;;17007:18:1;;;17000:54;17071:18;;47463:44:0::1;16747:348:1::0;47463:44:0::1;47027:488;;;;46990:525::o:0;34477:157::-;34589:39;34606:4;34612:2;34616:7;34589:39;;;;;;;;;;;;:16;:39::i;47523:362::-;47585:16;47614:23;47640:19;47650:8;47640:9;:19::i;:::-;47614:45;;47670:25;47712:15;-1:-1:-1;;;;;47698:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47698:30:0;;47670:58;;47744:9;47739:113;47759:15;47755:1;:19;47739:113;;;47808:32;47828:8;47838:1;47808:19;:32::i;:::-;47794:8;47803:1;47794:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;47776:3;;;;:::i;:::-;;;;47739:113;;;-1:-1:-1;47869:8:0;47523:362;-1:-1:-1;;;47523:362:0:o;28895:177::-;28962:7;28808:12;;28986:5;:21;28978:69;;;;-1:-1:-1;;;28978:69:0;;12280:2:1;28978:69:0;;;12262:21:1;12319:2;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;-1:-1:-1;;;12409:18:1;;;12402:33;12452:19;;28978:69:0;12078:399:1;28978:69:0;-1:-1:-1;29061:5:0;28895:177::o;46419:96::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;46487:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46419:96:::0;:::o;42659:405::-;42789:26;;-1:-1:-1;;6506:2:1;6502:15;;;6498:53;42789:26:0;;;6486:66:1;42746:4:0;;;;6568:12:1;;42789:26:0;;;;;;;;;;;;42779:37;;;;;;42763:53;;42832:9;42827:192;42851:6;:13;42847:1;:17;42827:192;;;42902:6;42909:1;42902:9;;;;;;;;:::i;:::-;;;;;;;42894:5;:17;:113;;42989:6;42996:1;42989:9;;;;;;;;:::i;:::-;;;;;;;43000:5;42972:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42972:34:0;;;;;;;;;;;;;42962:45;;;;;;42894:113;;;42941:5;42948:6;42955:1;42948:9;;;;;;;;:::i;:::-;;;;;;;42924:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42924:34:0;;;;;;;;;;;;;42914:45;;;;;;42894:113;42886:121;-1:-1:-1;42866:3:0;;;;:::i;:::-;;;;42827:192;;;-1:-1:-1;43045:11:0;;43036:20;;42659:405;-1:-1:-1;;;42659:405:0:o;46090:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;46155:17:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;46155:25:0;;::::1;::::0;;;::::1;::::0;;46090:98::o;31720:118::-;31784:7;31807:20;31819:7;31807:11;:20::i;:::-;:25;;31720:118;-1:-1:-1;;31720:118:0:o;30597:211::-;30661:7;-1:-1:-1;;;;;30685:19:0;;30677:75;;;;-1:-1:-1;;;30677:75:0;;14579:2:1;30677:75:0;;;14561:21:1;14618:2;14598:18;;;14591:30;14657:34;14637:18;;;14630:62;-1:-1:-1;;;14708:18:1;;;14701:41;14759:19;;30677:75:0;14377:407:1;30677:75:0;-1:-1:-1;;;;;;30774:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30774:27:0;;30597:211::o;7388:103::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;7453:30:::1;7480:1;7453:18;:30::i;:::-;7388:103::o:0;46196:109::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;46270:27:::1;46285:11;42620::::0;:25;42547:106;46270:27:::1;46196:109:::0;:::o;45779:94::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;45845:9:::1;:20:::0;45779:94::o;32052:98::-;32108:13;32137:7;32130:14;;;;;:::i;46313:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;46387:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;33690:274::-:0;-1:-1:-1;;;;;33781:24:0;;5545:10;33781:24;;33773:63;;;;-1:-1:-1;;;33773:63:0;;16175:2:1;33773:63:0;;;16157:21:1;16214:2;16194:18;;;16187:30;16253:28;16233:18;;;16226:56;16299:18;;33773:63:0;15973:350:1;33773:63:0;5545:10;33845:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33845:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33845:53:0;;;;;;;;;;33910:48;;9173:41:1;;;33845:42:0;;5545:10;33910:48;;9146:18:1;33910:48:0;;;;;;;33690:274;;:::o;34697:311::-;34834:28;34844:4;34850:2;34854:7;34834:9;:28::i;:::-;34885:48;34908:4;34914:2;34918:7;34927:5;34885:22;:48::i;:::-;34869:133;;;;-1:-1:-1;;;34869:133:0;;;;;;;:::i;46632:350::-;46705:13;46739:16;46747:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;46739:16;46731:76;;;;-1:-1:-1;;;46731:76:0;;15759:2:1;46731:76:0;;;15741:21:1;15798:2;15778:18;;;15771:30;15837:34;15817:18;;;15810:62;-1:-1:-1;;;15888:18:1;;;15881:45;15943:19;;46731:76:0;15557:411:1;46731:76:0;46821:8;;;;;;;46818:61;;46858:9;46851:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46632:350;;;:::o;46818:61::-;46920:16;:14;:16::i;:::-;46938:25;46955:7;46938:16;:25::i;:::-;46903:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46889:85;;46632:350;;;:::o;45978:104::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;46046:20:::1;:28:::0;;-1:-1:-1;;46046:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45978:104::o;44360:707::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;19997:2:1;2309:63:0;;;19979:21:1;20036:2;20016:18;;;20009:30;20075:33;20055:18;;;20048:61;20126:18;;2309:63:0;19795:355:1;2309:63:0;1719:1;2450:7;:18;44474:20:::1;::::0;::::1;;44466:54;;;::::0;-1:-1:-1;;;44466:54:0;;10406:2:1;44466:54:0::1;::::0;::::1;10388:21:1::0;10445:2;10425:18;;;10418:30;-1:-1:-1;;;10464:18:1;;;10457:51;10525:18;;44466:54:0::1;10204:345:1::0;44466:54:0::1;44539:33;44553:10;44565:6;44539:13;:33::i;:::-;44531:70;;;::::0;-1:-1:-1;;;44531:70:0;;12684:2:1;44531:70:0::1;::::0;::::1;12666:21:1::0;12723:2;12703:18;;;12696:30;12762:26;12742:18;;;12735:54;12806:18;;44531:70:0::1;12482:348:1::0;44531:70:0::1;44637:7;44620:13;;:24;;44612:64;;;::::0;-1:-1:-1;;;44612:64:0;;13443:2:1;44612:64:0::1;::::0;::::1;13425:21:1::0;13482:2;13462:18;;;13455:30;13521:29;13501:18;;;13494:57;13568:18;;44612:64:0::1;13241:351:1::0;44612:64:0::1;44721:10;44712:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;44735:7;;44712:30:::1;:::i;:::-;44695:13;;:47;;44687:90;;;::::0;-1:-1:-1;;;44687:90:0;;10756:2:1;44687:90:0::1;::::0;::::1;10738:21:1::0;10795:2;10775:18;;;10768:30;10834:32;10814:18;;;10807:60;10884:18;;44687:90:0::1;10554:354:1::0;44687:90:0::1;44823:7;44809:11;;:21;;;;:::i;:::-;44796:9;:34;44788:72;;;::::0;-1:-1:-1;;;44788:72:0;;14225:2:1;44788:72:0::1;::::0;::::1;14207:21:1::0;14264:2;14244:18;;;14237:30;-1:-1:-1;;;14283:18:1;;;14276:55;14348:18;;44788:72:0::1;14023:349:1::0;44788:72:0::1;44909:12;::::0;44890:13:::1;::::0;44880:23:::1;::::0;:7;:23:::1;:::i;:::-;44879:43;;44871:68;;;;-1:-1:-1::0;;;44871:68:0::1;;;;;;;:::i;:::-;44961:10;44952:20;::::0;;;:8:::1;:20;::::0;;;;:31;;44976:7;;44952:20;:31:::1;::::0;44976:7;;44952:31:::1;:::i;:::-;::::0;;;-1:-1:-1;44994:30:0::1;::::0;-1:-1:-1;45004:10:0::1;45016:7:::0;44994:9:::1;:30::i;:::-;45052:7;45035:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;;44360:707:0:o;44117:235::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44238:12:::1;::::0;44219:13:::1;::::0;44209:23:::1;::::0;:7;:23:::1;:::i;:::-;44208:43;;44200:68;;;;-1:-1:-1::0;;;44200:68:0::1;;;;;;;:::i;:::-;44281:28;44291:8;44301:7;44281:9;:28::i;:::-;44337:7;44320:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;44117:235:0:o;7646:201::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7735:22:0;::::1;7727:73;;;::::0;-1:-1:-1;;;7727:73:0;;11462:2:1;7727:73:0::1;::::0;::::1;11444:21:1::0;11501:2;11481:18;;;11474:30;11540:34;11520:18;;;11513:62;-1:-1:-1;;;11591:18:1;;;11584:36;11637:19;;7727:73:0::1;11260:402:1::0;7727:73:0::1;7811:28;7830:8;7811:18;:28::i;38934:172::-:0;39031:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39031:29:0;-1:-1:-1;;;;;39031:29:0;;;;;;;;;39072:28;;39031:24;;39072:28;;;;;;;38934:172;;;:::o;37299:1529::-;37396:35;37434:20;37446:7;37434:11;:20::i;:::-;37505:18;;37396:58;;-1:-1:-1;37463:22:0;;-1:-1:-1;;;;;37489:34:0;5545:10;-1:-1:-1;;;;;37489:34:0;;:81;;;-1:-1:-1;5545:10:0;37534:20;37546:7;37534:11;:20::i;:::-;-1:-1:-1;;;;;37534:36:0;;37489:81;:142;;;-1:-1:-1;37598:18:0;;37581:50;;5545:10;34027:186;:::i;37581:50::-;37463:169;;37657:17;37641:101;;;;-1:-1:-1;;;37641:101:0;;16530:2:1;37641:101:0;;;16512:21:1;16569:2;16549:18;;;16542:30;16608:34;16588:18;;;16581:62;-1:-1:-1;;;16659:18:1;;;16652:48;16717:19;;37641:101:0;16328:414:1;37641:101:0;37789:4;-1:-1:-1;;;;;37767:26:0;:13;:18;;;-1:-1:-1;;;;;37767:26:0;;37751:98;;;;-1:-1:-1;;;37751:98:0;;14991:2:1;37751:98:0;;;14973:21:1;15030:2;15010:18;;;15003:30;15069:34;15049:18;;;15042:62;-1:-1:-1;;;15120:18:1;;;15113:36;15166:19;;37751:98:0;14789:402:1;37751:98:0;-1:-1:-1;;;;;37864:16:0;;37856:66;;;;-1:-1:-1;;;37856:66:0;;13037:2:1;37856:66:0;;;13019:21:1;13076:2;13056:18;;;13049:30;13115:34;13095:18;;;13088:62;-1:-1:-1;;;13166:18:1;;;13159:35;13211:19;;37856:66:0;12835:401:1;37856:66:0;38031:49;38048:1;38052:7;38061:13;:18;;;38031:8;:49::i;:::-;-1:-1:-1;;;;;38089:18:0;;;;;;:12;:18;;;;;:31;;38119:1;;38089:18;:31;;38119:1;;-1:-1:-1;;;;;38089:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38089:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38127:16:0;;-1:-1:-1;38127:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38127:16:0;;:29;;-1:-1:-1;;38127:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38127:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38186:43:0;;;;;;;;-1:-1:-1;;;;;38186:43:0;;;;;-1:-1:-1;;;;;38212:15:0;38186:43;;;;;;;;;-1:-1:-1;38163:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38163:66:0;-1:-1:-1;;;;;;38163:66:0;;;;;;;;;;;38479:11;38175:7;-1:-1:-1;38479:11:0;:::i;:::-;38542:1;38501:24;;;:11;:24;;;;;:29;38457:33;;-1:-1:-1;;;;;;38501:29:0;38497:236;;38559:20;38567:11;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;38559:20;38555:171;;;38619:97;;;;;;;;38646:18;;-1:-1:-1;;;;;38619:97:0;;;;;;38677:28;;;;-1:-1:-1;;;;;38619:97:0;;;;;;;;;-1:-1:-1;38592:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38592:124:0;-1:-1:-1;;;;;;38592:124:0;;;;;;;;;;;;38555:171;38765:7;38761:2;-1:-1:-1;;;;;38746:27:0;38755:4;-1:-1:-1;;;;;38746:27:0;;;;;;;;;;;38780:42;37389:1439;;;37299:1529;;;:::o;35358:98::-;35423:27;35433:2;35437:8;35423:27;;;;;;;;;;;;:9;:27::i;31060:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31177:16:0;31185:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;31177:16;31169:71;;;;-1:-1:-1;;;31169:71:0;;11869:2:1;31169:71:0;;;11851:21:1;11908:2;11888:18;;;11881:30;11947:34;11927:18;;;11920:62;-1:-1:-1;;;11998:18:1;;;11991:40;12048:19;;31169:71:0;11667:406:1;31169:71:0;31249:26;31297:12;31286:7;:23;31282:93;;31341:22;31351:12;31341:7;:22;:::i;:::-;:26;;31366:1;31341:26;:::i;:::-;31320:47;;31282:93;31403:7;31383:212;31420:18;31412:4;:26;31383:212;;31457:31;31491:17;;;:11;:17;;;;;;;;;31457:51;;;;;;;;;-1:-1:-1;;;;;31457:51:0;;;;;-1:-1:-1;;;31457:51:0;;;-1:-1:-1;;;;;31457:51:0;;;;;;;;31521:28;31517:71;;31569:9;31060:606;-1:-1:-1;;;;31060:606:0:o;31517:71::-;-1:-1:-1;31440:6:0;;;;:::i;:::-;;;;31383:212;;;-1:-1:-1;31603:57:0;;-1:-1:-1;;;31603:57:0;;20357:2:1;31603:57:0;;;20339:21:1;20396:2;20376:18;;;20369:30;20435:34;20415:18;;;20408:62;-1:-1:-1;;;20486:18:1;;;20479:45;20541:19;;31603:57:0;20155:411:1;8007:191:0;8100:6;;;-1:-1:-1;;;;;8117:17:0;;;-1:-1:-1;;;;;;8117:17:0;;;;;;;8150:40;;8100:6;;;8117:17;8100:6;;8150:40;;8081:16;;8150:40;8070:128;8007:191;:::o;40649:690::-;40786:4;-1:-1:-1;;;;;40803:13:0;;9731:19;:23;40799:535;;40842:72;;-1:-1:-1;;;40842:72:0;;-1:-1:-1;;;;;40842:36:0;;;;;:72;;5545:10;;40893:4;;40899:7;;40908:5;;40842:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40842:72:0;;;;;;;;-1:-1:-1;;40842:72:0;;;;;;;;;;;;:::i;:::-;;;40829:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41073:13:0;;41069:215;;41106:61;;-1:-1:-1;;;41106:61:0;;;;;;;:::i;41069:215::-;41252:6;41246:13;41237:6;41233:2;41229:15;41222:38;40829:464;-1:-1:-1;;;;;;40964:55:0;-1:-1:-1;;;40964:55:0;;-1:-1:-1;40957:62:0;;40799:535;-1:-1:-1;41322:4:0;40799:535;40649:690;;;;;;:::o;46523:101::-;46571:13;46603;46596:20;;;;;:::i;3029:723::-;3085:13;3306:10;3302:53;;-1:-1:-1;;3333:10:0;;;;;;;;;;;;-1:-1:-1;;;3333:10:0;;;;;3029:723::o;3302:53::-;3380:5;3365:12;3421:78;3428:9;;3421:78;;3454:8;;;;:::i;:::-;;-1:-1:-1;3477:10:0;;-1:-1:-1;3485:2:0;3477:10;;:::i;:::-;;;3421:78;;;3509:19;3541:6;-1:-1:-1;;;;;3531:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3531:17:0;;3509:39;;3559:154;3566:10;;3559:154;;3593:11;3603:1;3593:11;;:::i;:::-;;-1:-1:-1;3662:10:0;3670:2;3662:5;:10;:::i;:::-;3649:24;;:2;:24;:::i;:::-;3636:39;;3619:6;3626;3619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3619:56:0;;;;;;;;-1:-1:-1;3690:11:0;3699:2;3690:11;;:::i;:::-;;;3559:154;;35795:1272;35900:20;35923:12;-1:-1:-1;;;;;35950:16:0;;35942:62;;;;-1:-1:-1;;;35942:62:0;;19180:2:1;35942:62:0;;;19162:21:1;19219:2;19199:18;;;19192:30;19258:34;19238:18;;;19231:62;-1:-1:-1;;;19309:18:1;;;19302:31;19350:19;;35942:62:0;18978:397:1;35942:62:0;36141:21;36149:12;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;36141:21;36140:22;36132:64;;;;-1:-1:-1;;;36132:64:0;;18822:2:1;36132:64:0;;;18804:21:1;18861:2;18841:18;;;18834:30;18900:31;18880:18;;;18873:59;18949:18;;36132:64:0;18620:353:1;36132:64:0;36223:12;36211:8;:24;;36203:71;;;;-1:-1:-1;;;36203:71:0;;21187:2:1;36203:71:0;;;21169:21:1;21226:2;21206:18;;;21199:30;21265:34;21245:18;;;21238:62;-1:-1:-1;;;21316:18:1;;;21309:32;21358:19;;36203:71:0;20985:398:1;36203:71:0;-1:-1:-1;;;;;36386:16:0;;36353:30;36386:16;;;:12;:16;;;;;;;;;36353:49;;;;;;;;;-1:-1:-1;;;;;36353:49:0;;;;;-1:-1:-1;;;36353:49:0;;;;;;;;;;;36428:119;;;;;;;;36448:19;;36353:49;;36428:119;;;36448:39;;36478:8;;36448:39;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;36531:8;36496:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;;-1:-1:-1;;;;;36409:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36409:138:0;;;;;;;;;;;;36582:43;;;;;;;;;;-1:-1:-1;;;;;36608:15:0;36582:43;;;;;;;;36554:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36554:71:0;-1:-1:-1;;;;;;36554:71:0;;;;;;;;;;;;;;;;;;36566:12;;36678:281;36702:8;36698:1;:12;36678:281;;;36731:38;;36756:12;;-1:-1:-1;;;;;36731:38:0;;;36748:1;;36731:38;;36748:1;;36731:38;36796:59;36827:1;36831:2;36835:12;36849:5;36796:22;:59::i;:::-;36778:150;;;;-1:-1:-1;;;36778:150:0;;;;;;;:::i;:::-;36937:14;;;;:::i;:::-;;;;36712:3;;;;;:::i;:::-;;;;36678:281;;;-1:-1:-1;36967:12:0;:27;;;37001:60;46990:525;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;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:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;:::-;1637:39;1496:186;-1:-1:-1;;;1496:186:1:o;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:422::-;3049:6;3057;3110:2;3098:9;3089:7;3085:23;3081:32;3078:52;;;3126:1;3123;3116:12;3078:52;3149:29;3168:9;3149:29;:::i;:::-;3139:39;;3229:2;3218:9;3214:18;3201:32;-1:-1:-1;;;;;3248:6:1;3245:30;3242:50;;;3288:1;3285;3278:12;3242:50;3311:61;3364:7;3355:6;3344:9;3340:22;3311:61;:::i;:::-;3301:71;;;2956:422;;;;;:::o;3383:254::-;3448:6;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:35;3627:2;3616:9;3612:18;3596:35;:::i;3642:254::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;3886:2;3871:18;;;;3858:32;;-1:-1:-1;;;3642:254:1:o;3901:180::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4049:26;4065:9;4049:26;:::i;4086:180::-;4145:6;4198:2;4186:9;4177:7;4173:23;4169:32;4166:52;;;4214:1;4211;4204:12;4166:52;-1:-1:-1;4237:23:1;;4086:180;-1:-1:-1;4086:180:1:o;4271:245::-;4329:6;4382:2;4370:9;4361:7;4357:23;4353:32;4350:52;;;4398:1;4395;4388:12;4350:52;4437:9;4424:23;4456:30;4480:5;4456:30;:::i;4521:249::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4691:9;4685:16;4710:30;4734:5;4710:30;:::i;4775:450::-;4844:6;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4953:9;4940:23;-1:-1:-1;;;;;4978:6:1;4975:30;4972:50;;;5018:1;5015;5008:12;4972:50;5041:22;;5094:4;5086:13;;5082:27;-1:-1:-1;5072:55:1;;5123:1;5120;5113:12;5072:55;5146:73;5211:7;5206:2;5193:16;5188:2;5184;5180:11;5146:73;:::i;5415:254::-;5483:6;5491;5544:2;5532:9;5523:7;5519:23;5515:32;5512:52;;;5560:1;5557;5550:12;5512:52;5596:9;5583:23;5573:33;;5625:38;5659:2;5648:9;5644:18;5625:38;:::i;5674:416::-;5767:6;5775;5828:2;5816:9;5807:7;5803:23;5799:32;5796:52;;;5844:1;5841;5834:12;5796:52;5880:9;5867:23;5857:33;;5941:2;5930:9;5926:18;5913:32;-1:-1:-1;;;;;5960:6:1;5957:30;5954:50;;;6000:1;5997;5990:12;6095:257;6136:3;6174:5;6168:12;6201:6;6196:3;6189:19;6217:63;6273:6;6266:4;6261:3;6257:14;6250:4;6243:5;6239:16;6217:63;:::i;:::-;6334:2;6313:15;-1:-1:-1;;6309:29:1;6300:39;;;;6341:4;6296:50;;6095:257;-1:-1:-1;;6095:257:1:o;6843:637::-;7123:3;7161:6;7155:13;7177:53;7223:6;7218:3;7211:4;7203:6;7199:17;7177:53;:::i;:::-;7293:13;;7252:16;;;;7315:57;7293:13;7252:16;7349:4;7337:17;;7315:57;:::i;:::-;-1:-1:-1;;;7394:20:1;;7423:22;;;7472:1;7461:13;;6843:637;-1:-1:-1;;;;6843:637:1:o;7903:488::-;-1:-1:-1;;;;;8172:15:1;;;8154:34;;8224:15;;8219:2;8204:18;;8197:43;8271:2;8256:18;;8249:34;;;8319:3;8314:2;8299:18;;8292:31;;;8097:4;;8340:45;;8365:19;;8357:6;8340:45;:::i;:::-;8332:53;7903:488;-1:-1:-1;;;;;;7903:488:1:o;8396:632::-;8567:2;8619:21;;;8689:13;;8592:18;;;8711:22;;;8538:4;;8567:2;8790:15;;;;8764:2;8749:18;;;8538:4;8833:169;8847:6;8844:1;8841:13;8833:169;;;8908:13;;8896:26;;8977:15;;;;8942:12;;;;8869:1;8862:9;8833:169;;;-1:-1:-1;9019:3:1;;8396:632;-1:-1:-1;;;;;;8396:632:1:o;9225:219::-;9374:2;9363:9;9356:21;9337:4;9394:44;9434:2;9423:9;9419:18;9411:6;9394:44;:::i;15196:356::-;15398:2;15380:21;;;15417:18;;;15410:30;15476:34;15471:2;15456:18;;15449:62;15543:2;15528:18;;15196:356::o;17100:336::-;17302:2;17284:21;;;17341:2;17321:18;;;17314:30;-1:-1:-1;;;17375:2:1;17360:18;;17353:42;17427:2;17412:18;;17100:336::o;18200:415::-;18402:2;18384:21;;;18441:2;18421:18;;;18414:30;18480:34;18475:2;18460:18;;18453:62;-1:-1:-1;;;18546:2:1;18531:18;;18524:49;18605:3;18590:19;;18200:415::o;21570:275::-;21641:2;21635:9;21706:2;21687:13;;-1:-1:-1;;21683:27:1;21671:40;;-1:-1:-1;;;;;21726:34:1;;21762:22;;;21723:62;21720:88;;;21788:18;;:::i;:::-;21824:2;21817:22;21570:275;;-1:-1:-1;21570:275:1:o;21850:253::-;21890:3;-1:-1:-1;;;;;21979:2:1;21976:1;21972:10;22009:2;22006:1;22002:10;22040:3;22036:2;22032:12;22027:3;22024:21;22021:47;;;22048:18;;:::i;:::-;22084:13;;21850:253;-1:-1:-1;;;;21850:253:1:o;22108:128::-;22148:3;22179:1;22175:6;22172:1;22169:13;22166:39;;;22185:18;;:::i;:::-;-1:-1:-1;22221:9:1;;22108:128::o;22241:120::-;22281:1;22307;22297:35;;22312:18;;:::i;:::-;-1:-1:-1;22346:9:1;;22241:120::o;22366:168::-;22406:7;22472:1;22468;22464:6;22460:14;22457:1;22454:21;22449:1;22442:9;22435:17;22431:45;22428:71;;;22479:18;;:::i;:::-;-1:-1:-1;22519:9:1;;22366:168::o;22539:246::-;22579:4;-1:-1:-1;;;;;22692:10:1;;;;22662;;22714:12;;;22711:38;;;22729:18;;:::i;:::-;22766:13;;22539:246;-1:-1:-1;;;22539:246:1:o;22790:125::-;22830:4;22858:1;22855;22852:8;22849:34;;;22863:18;;:::i;:::-;-1:-1:-1;22900:9:1;;22790:125::o;22920:258::-;22992:1;23002:113;23016:6;23013:1;23010:13;23002:113;;;23092:11;;;23086:18;23073:11;;;23066:39;23038:2;23031:10;23002:113;;;23133:6;23130:1;23127:13;23124:48;;;-1:-1:-1;;23168:1:1;23150:16;;23143:27;22920:258::o;23183:136::-;23222:3;23250:5;23240:39;;23259:18;;:::i;:::-;-1:-1:-1;;;23295:18:1;;23183:136::o;23324:380::-;23403:1;23399:12;;;;23446;;;23467:61;;23521:4;23513:6;23509:17;23499:27;;23467:61;23574:2;23566:6;23563:14;23543:18;23540:38;23537:161;;;23620:10;23615:3;23611:20;23608:1;23601:31;23655:4;23652:1;23645:15;23683:4;23680:1;23673:15;23537:161;;23324:380;;;:::o;23709:135::-;23748:3;-1:-1:-1;;23769:17:1;;23766:43;;;23789:18;;:::i;:::-;-1:-1:-1;23836:1:1;23825:13;;23709:135::o;23849:112::-;23881:1;23907;23897:35;;23912:18;;:::i;:::-;-1:-1:-1;23946:9:1;;23849:112::o;23966:127::-;24027:10;24022:3;24018:20;24015:1;24008:31;24058:4;24055:1;24048:15;24082:4;24079:1;24072:15;24098:127;24159:10;24154:3;24150:20;24147:1;24140:31;24190:4;24187:1;24180:15;24214:4;24211:1;24204:15;24230:127;24291:10;24286:3;24282:20;24279:1;24272:31;24322:4;24319:1;24312:15;24346:4;24343:1;24336:15;24362:127;24423:10;24418:3;24414:20;24411:1;24404:31;24454:4;24451:1;24444:15;24478:4;24475:1;24468:15;24494:131;-1:-1:-1;;;;;;24568:32:1;;24558:43;;24548:71;;24615:1;24612;24605:12

Swarm Source

ipfs://5207134cdc05d79e92d4d10d8aaed58660313aa1425f4dc44f345af11a40de38
Loading...
Loading
Loading...
Loading
[ 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.