ETH Price: $2,907.51 (-4.05%)
Gas: 2 Gwei

Token

Yomazuka Family (YF)
 

Overview

Max Total Supply

4,400 YF

Holders

927

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
12 YF
0x6170cfe5c01bc952778f805ef4bd41a5f668bb7a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YomazukaFamily

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

// File: @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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

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

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


pragma solidity ^0.8.4;




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

  uint256 public constant MAX_SUPPLY = 9999;
  uint256 public constant MAX_PUBLIC_MINT = 5;
  uint256 public constant MAX_WHITELIST_MINT = 5;
  uint256 public PUBLIC_SALE_PRICE = 99000000000000000;
  uint256 public WHITELIST_SALE_PRICE = 99000000000000000;

  string private baseTokenUri;
  string public placeholderTokenUri;

  uint256 public NUMBER_OF_UNITS_DROP_1 = 2500;
  uint256 public NUMBER_OF_UNITS_DROP_2 = 5000;

  //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale
  //2 days later toggle reveal
  bool public isRevealed;
  bool public publicSale;
  bool public whiteListSale;
  bool public pause;
  bool public teamMinted;
  bool public drop2;
  bool public drop3;

  bytes32 private merkleRoot;

  mapping(address => uint256) public totalPublicMint;
  mapping(address => uint256) public totalWhitelistMint;

  constructor() ERC721A('Yomazuka Family', 'YF', 5, 9999) {}

  modifier callerIsUser() {
    require(
      tx.origin == msg.sender,
      'Yomazuka Family :: Cannot be called by a contract'
    );
    _;
  }

  function mint(uint256 _quantity) external payable callerIsUser {
    // TODO: Setprice
    //  Connect to OpenSea

    if ((totalSupply() + _quantity) > NUMBER_OF_UNITS_DROP_1) {
      require(drop2, 'Yomazuka Family :: Drop 1 beyond Max Supply');
    }

    if ((totalSupply() + _quantity) > NUMBER_OF_UNITS_DROP_2) {
      require(drop3, 'Yomazuka Family :: Drop 2 beyond Max Supply');
    }

    require(publicSale, 'Yomazuka Family :: Not Yet Active.');

    require(
      (totalSupply() + _quantity) <= MAX_SUPPLY,
      'Yomazuka Family :: Beyond Max Supply'
    );
    require(
      (totalPublicMint[msg.sender] + _quantity) <= MAX_PUBLIC_MINT,
      'Yomazuka Family :: Already minted 5 times!'
    );
    require(
      msg.value >= (PUBLIC_SALE_PRICE * _quantity),
      'Yomazuka Family :: Below '
    );

    totalPublicMint[msg.sender] += _quantity;
    _safeMint(msg.sender, _quantity);
  }

  function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity)
    external
    payable
    callerIsUser
  {
    require(whiteListSale, 'Yomazuka Family :: Minting is on Pause');
    require(
      (totalSupply() + _quantity) <= MAX_SUPPLY,
      'Yomazuka Family :: Cannot mint beyond max supply'
    );
    require(
      (totalWhitelistMint[msg.sender] + _quantity) <= MAX_WHITELIST_MINT,
      'Yomazuka Family :: Cannot mint beyond whitelist max mint!'
    );
    require(
      msg.value >= (WHITELIST_SALE_PRICE * _quantity),
      'Yomazuka Family :: Payment is below the price'
    );
    //create leaf node
    bytes32 sender = keccak256(abi.encodePacked(msg.sender));
    require(
      MerkleProof.verify(_merkleProof, merkleRoot, sender),
      'Yomazuka Family :: You are not whitelisted'
    );

    totalWhitelistMint[msg.sender] += _quantity;
    _safeMint(msg.sender, _quantity);
  }

  function teamMint() external onlyOwner {
    require(!teamMinted, 'Yomazuka Family :: Team already minted');
    teamMinted = true;
    _safeMint(msg.sender, 200);
  }

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

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

    uint256 trueId = tokenId + 1;

    if (!isRevealed) {
      return placeholderTokenUri;
    }
    //string memory baseURI = _baseURI();
    return
      bytes(baseTokenUri).length > 0
        ? string(abi.encodePacked(baseTokenUri, trueId.toString(), '.json'))
        : '';
  }

  /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
  function walletOf() external view returns (uint256[] memory) {
    address _owner = msg.sender;
    uint256 numberOfOwnedNFT = balanceOf(_owner);
    uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

    for (uint256 index = 0; index < numberOfOwnedNFT; index++) {
      ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
    }

    return ownerIds;
  }

  function setTokenUri(string memory _baseTokenUri) external onlyOwner {
    baseTokenUri = _baseTokenUri;
  }

  function setPlaceHolderUri(string memory _placeholderTokenUri)
    external
    onlyOwner
  {
    placeholderTokenUri = _placeholderTokenUri;
  }

  function getMerkleRoot() external view returns (bytes32) {
    return merkleRoot;
  }

  function togglePause() external onlyOwner {
    pause = !pause;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setPublicPrice(uint256 newPublicPrice) external onlyOwner {
    PUBLIC_SALE_PRICE = newPublicPrice;
  }

  function toggleWhiteListSale() external onlyOwner {
    whiteListSale = !whiteListSale;
  }

  function togglePublicSale() external onlyOwner {
    publicSale = !publicSale;
  }

  function setDrop2Amount(uint256 dropOneAmount) external onlyOwner {
    NUMBER_OF_UNITS_DROP_1 = dropOneAmount;
  }

  function setDrop3Amount(uint256 dropTwoAmount) external onlyOwner {
    NUMBER_OF_UNITS_DROP_2 = dropTwoAmount;
  }

  function toggleDrop2() external onlyOwner {
    drop2 = !drop2;
  }

  function toggleDrop3() external onlyOwner {
    drop3 = !drop3;
  }

  function toggleReveal() external onlyOwner {
    isRevealed = !isRevealed;
  }

  function withdraw() external onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
  }
}

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":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_UNITS_DROP_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_UNITS_DROP_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drop2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drop3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dropOneAmount","type":"uint256"}],"name":"setDrop2Amount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dropTwoAmount","type":"uint256"}],"name":"setDrop3Amount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleDrop2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDrop3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260008055600060075567015fb7f9b8c3800060095567015fb7f9b8c38000600a556109c4600d55611388600e553480156200003e57600080fd5b506040518060400160405280600f81526020016e596f6d617a756b612046616d696c7960881b815250604051806040016040528060028152602001612ca360f11b815250600561270f60008111620000f45760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001565760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000eb565b83516200016b906001906020870190620001f1565b50825162000181906002906020860190620001f1565b5060a09190915260805250620001999050336200019f565b620002d4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ff9062000297565b90600052602060002090601f0160209004810192826200022357600085556200026e565b82601f106200023e57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026e57825182559160200191906001019062000251565b506200027c92915062000280565b5090565b5b808211156200027c576000815560010162000281565b600181811c90821680620002ac57607f821691505b60208210811415620002ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161312962000305600039600081816121f60152818161222001526126a50152600050506131296000f3fe6080604052600436106103505760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063c87b56dd11610095578063e8b5498d1161006f578063e8b5498d14610907578063e985e9c514610929578063edd5a79e14610972578063f2fde38b1461098757600080fd5b8063c87b56dd146108bc578063d7224ba0146108dc578063e222c7f9146108f257600080fd5b8063be117759116100d1578063be11775914610864578063c08dfd3c1461065b578063c4ae316814610887578063c62752551461089c57600080fd5b8063b88d4fde14610819578063ba7a86b814610839578063bc912e1a1461084e57600080fd5b80638da5cb5b116101645780639f488d731161013e5780639f488d73146107a6578063a0712d68146107c6578063a22cb465146107d9578063b0962c53146107f957600080fd5b80638da5cb5b1461075357806395d89b41146107715780639ac940361461078657600080fd5b80638456cb59116101a05780638456cb59146106e757806386a173ee1461070857806386ba5134146107285780638bb64a8c1461073e57600080fd5b8063715018a6146106905780637cb64759146106a557806383a974a2146106c557600080fd5b806332cb6b0c116102a05780634f6ccce71161023e5780635b8ad429116102185780635b8ad429146106265780636352211e1461063b57806365f130971461065b57806370a082311461067057600080fd5b80634f6ccce7146105cb57806354214f69146105eb5780635900d5701461060557600080fd5b80633ccfd60b1161027a5780633ccfd60b1461056c57806342842e0e1461058157806349590657146105a15780634cf5f7a4146105b657600080fd5b806332cb6b0c1461052257806333bc1c5c1461053857806336c7d6941461055757600080fd5b8063095ea7b31161030d57806323b872dd116102e757806323b872dd146104b95780632904e6d9146104d95780632a006f17146104ec5780632f745c591461050257600080fd5b8063095ea7b31461045757806318160ddd146104775780631c16521c1461048c57600080fd5b806301ffc9a7146103555780630345e3cb1461038a5780630675b7c6146103c557806306fdde03146103e757806307e89ec014610409578063081812fc1461041f575b600080fd5b34801561036157600080fd5b50610375610370366004612bff565b6109a7565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103b76103a53660046129c7565b60126020526000908152604090205481565b604051908152602001610381565b3480156103d157600080fd5b506103e56103e0366004612c39565b610a14565b005b3480156103f357600080fd5b506103fc610a5e565b6040516103819190612e06565b34801561041557600080fd5b506103b760095481565b34801561042b57600080fd5b5061043f61043a366004612be6565b610af0565b6040516001600160a01b039091168152602001610381565b34801561046357600080fd5b506103e5610472366004612b09565b610b7b565b34801561048357600080fd5b506000546103b7565b34801561049857600080fd5b506103b76104a73660046129c7565b60116020526000908152604090205481565b3480156104c557600080fd5b506103e56104d4366004612a15565b610c93565b6103e56104e7366004612b33565b610c9e565b3480156104f857600080fd5b506103b7600d5481565b34801561050e57600080fd5b506103b761051d366004612b09565b610f7b565b34801561052e57600080fd5b506103b761270f81565b34801561054457600080fd5b50600f5461037590610100900460ff1681565b34801561056357600080fd5b506103e56110e9565b34801561057857600080fd5b506103e5611138565b34801561058d57600080fd5b506103e561059c366004612a15565b611191565b3480156105ad57600080fd5b506010546103b7565b3480156105c257600080fd5b506103fc6111ac565b3480156105d757600080fd5b506103b76105e6366004612be6565b61123a565b3480156105f757600080fd5b50600f546103759060ff1681565b34801561061157600080fd5b50600f5461037590600160301b900460ff1681565b34801561063257600080fd5b506103e561129c565b34801561064757600080fd5b5061043f610656366004612be6565b6112da565b34801561066757600080fd5b506103b7600581565b34801561067c57600080fd5b506103b761068b3660046129c7565b6112ec565b34801561069c57600080fd5b506103e561137d565b3480156106b157600080fd5b506103e56106c0366004612be6565b6113b3565b3480156106d157600080fd5b506106da6113e2565b6040516103819190612dc2565b3480156106f357600080fd5b50600f54610375906301000000900460ff1681565b34801561071457600080fd5b50600f546103759062010000900460ff1681565b34801561073457600080fd5b506103b7600e5481565b34801561074a57600080fd5b506103e5611485565b34801561075f57600080fd5b506008546001600160a01b031661043f565b34801561077d57600080fd5b506103fc6114ce565b34801561079257600080fd5b506103e56107a1366004612be6565b6114dd565b3480156107b257600080fd5b506103e56107c1366004612be6565b61150c565b6103e56107d4366004612be6565b61153b565b3480156107e557600080fd5b506103e56107f4366004612acd565b61184e565b34801561080557600080fd5b506103e5610814366004612c39565b611913565b34801561082557600080fd5b506103e5610834366004612a51565b611950565b34801561084557600080fd5b506103e5611989565b34801561085a57600080fd5b506103b7600a5481565b34801561087057600080fd5b50600f546103759065010000000000900460ff1681565b34801561089357600080fd5b506103e5611a3d565b3480156108a857600080fd5b506103e56108b7366004612be6565b611a88565b3480156108c857600080fd5b506103fc6108d7366004612be6565b611ab7565b3480156108e857600080fd5b506103b760075481565b3480156108fe57600080fd5b506103e5611c33565b34801561091357600080fd5b50600f5461037590640100000000900460ff1681565b34801561093557600080fd5b506103756109443660046129e2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561097e57600080fd5b506103e5611c7a565b34801561099357600080fd5b506103e56109a23660046129c7565b611cc8565b60006001600160e01b031982166380ac58cd60e01b14806109d857506001600160e01b03198216635b5e139f60e01b145b806109f357506001600160e01b0319821663780e9d6360e01b145b80610a0e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610a475760405162461bcd60e51b8152600401610a3e90612e6a565b60405180910390fd5b8051610a5a90600b9060208401906128c3565b5050565b606060018054610a6d9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a999061301b565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afd826000541190565b610b5f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a3e565b506000908152600560205260409020546001600160a01b031690565b6000610b86826112da565b9050806001600160a01b0316836001600160a01b03161415610bf55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a3e565b336001600160a01b0382161480610c115750610c118133610944565b610c835760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a3e565b610c8e838383611d60565b505050565b610c8e838383611dbc565b323314610cbd5760405162461bcd60e51b8152600401610a3e90612e19565b600f5462010000900460ff16610d245760405162461bcd60e51b815260206004820152602660248201527f596f6d617a756b612046616d696c79203a3a204d696e74696e67206973206f6e60448201526520506175736560d01b6064820152608401610a3e565b61270f81610d3160005490565b610d3b9190612f4e565b1115610da25760405162461bcd60e51b815260206004820152603060248201527f596f6d617a756b612046616d696c79203a3a2043616e6e6f74206d696e74206260448201526f65796f6e64206d617820737570706c7960801b6064820152608401610a3e565b33600090815260126020526040902054600590610dc0908390612f4e565b1115610e345760405162461bcd60e51b815260206004820152603960248201527f596f6d617a756b612046616d696c79203a3a2043616e6e6f74206d696e74206260448201527f65796f6e642077686974656c697374206d6178206d696e7421000000000000006064820152608401610a3e565b80600a54610e429190612f7a565b341015610ea75760405162461bcd60e51b815260206004820152602d60248201527f596f6d617a756b612046616d696c79203a3a205061796d656e7420697320626560448201526c6c6f772074686520707269636560981b6064820152608401610a3e565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610eed8360105483612144565b610f4c5760405162461bcd60e51b815260206004820152602a60248201527f596f6d617a756b612046616d696c79203a3a20596f7520617265206e6f7420776044820152691a1a5d195b1a5cdd195960b21b6064820152608401610a3e565b3360009081526012602052604081208054849290610f6b908490612f4e565b90915550610c8e9050338361215a565b6000610f86836112ec565b8210610fdf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a3e565b600080549080805b83811015611089576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561103a57805192505b876001600160a01b0316836001600160a01b03161415611076578684141561106857509350610a0e92505050565b8361107281613056565b9450505b508061108181613056565b915050610fe7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a3e565b6008546001600160a01b031633146111135760405162461bcd60e51b8152600401610a3e90612e6a565b600f805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b031633146111625760405162461bcd60e51b8152600401610a3e90612e6a565b60405133904780156108fc02916000818181858888f1935050505015801561118e573d6000803e3d6000fd5b50565b610c8e83838360405180602001604052806000815250611950565b600c80546111b99061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546111e59061301b565b80156112325780601f1061120757610100808354040283529160200191611232565b820191906000526020600020905b81548152906001019060200180831161121557829003601f168201915b505050505081565b6000805482106112985760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a3e565b5090565b6008546001600160a01b031633146112c65760405162461bcd60e51b8152600401610a3e90612e6a565b600f805460ff19811660ff90911615179055565b60006112e582612174565b5192915050565b60006001600160a01b0382166113585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a3e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113a75760405162461bcd60e51b8152600401610a3e90612e6a565b6113b1600061231e565b565b6008546001600160a01b031633146113dd5760405162461bcd60e51b8152600401610a3e90612e6a565b601055565b60603360006113f0826112ec565b905060008167ffffffffffffffff81111561140d5761140d6130c7565b604051908082528060200260200182016040528015611436578160200160208202803683370190505b50905060005b8281101561147d5761144e8482610f7b565b828281518110611460576114606130b1565b60209081029190910101528061147581613056565b91505061143c565b509392505050565b6008546001600160a01b031633146114af5760405162461bcd60e51b8152600401610a3e90612e6a565b600f805462ff0000198116620100009182900460ff1615909102179055565b606060028054610a6d9061301b565b6008546001600160a01b031633146115075760405162461bcd60e51b8152600401610a3e90612e6a565b600d55565b6008546001600160a01b031633146115365760405162461bcd60e51b8152600401610a3e90612e6a565b600e55565b32331461155a5760405162461bcd60e51b8152600401610a3e90612e19565b600d548161156760005490565b6115719190612f4e565b11156115e657600f5465010000000000900460ff166115e65760405162461bcd60e51b815260206004820152602b60248201527f596f6d617a756b612046616d696c79203a3a2044726f702031206265796f6e6460448201526a204d617820537570706c7960a81b6064820152608401610a3e565b600e54816115f360005490565b6115fd9190612f4e565b111561167057600f54600160301b900460ff166116705760405162461bcd60e51b815260206004820152602b60248201527f596f6d617a756b612046616d696c79203a3a2044726f702032206265796f6e6460448201526a204d617820537570706c7960a81b6064820152608401610a3e565b600f54610100900460ff166116d25760405162461bcd60e51b815260206004820152602260248201527f596f6d617a756b612046616d696c79203a3a204e6f7420596574204163746976604482015261329760f11b6064820152608401610a3e565b61270f816116df60005490565b6116e99190612f4e565b11156117435760405162461bcd60e51b8152602060048201526024808201527f596f6d617a756b612046616d696c79203a3a204265796f6e64204d617820537560448201526370706c7960e01b6064820152608401610a3e565b33600090815260116020526040902054600590611761908390612f4e565b11156117c25760405162461bcd60e51b815260206004820152602a60248201527f596f6d617a756b612046616d696c79203a3a20416c7265616479206d696e74656044820152696420352074696d65732160b01b6064820152608401610a3e565b806009546117d09190612f7a565b34101561181f5760405162461bcd60e51b815260206004820152601960248201527f596f6d617a756b612046616d696c79203a3a2042656c6f7720000000000000006044820152606401610a3e565b336000908152601160205260408120805483929061183e908490612f4e565b9091555061118e9050338261215a565b6001600160a01b0382163314156118a75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a3e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461193d5760405162461bcd60e51b8152600401610a3e90612e6a565b8051610a5a90600c9060208401906128c3565b61195b848484611dbc565b61196784848484612370565b6119835760405162461bcd60e51b8152600401610a3e90612e9f565b50505050565b6008546001600160a01b031633146119b35760405162461bcd60e51b8152600401610a3e90612e6a565b600f54640100000000900460ff1615611a1d5760405162461bcd60e51b815260206004820152602660248201527f596f6d617a756b612046616d696c79203a3a205465616d20616c7265616479206044820152651b5a5b9d195960d21b6064820152608401610a3e565b600f805464ff0000000019166401000000001790556113b13360c861215a565b6008546001600160a01b03163314611a675760405162461bcd60e51b8152600401610a3e90612e6a565b600f805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314611ab25760405162461bcd60e51b8152600401610a3e90612e6a565b600955565b6060611ac4826000541190565b611b285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a3e565b6000611b35836001612f4e565b600f5490915060ff16611bd557600c8054611b4f9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7b9061301b565b8015611bc85780601f10611b9d57610100808354040283529160200191611bc8565b820191906000526020600020905b815481529060010190602001808311611bab57829003601f168201915b5050505050915050919050565b6000600b8054611be49061301b565b905011611c005760405180602001604052806000815250611c2c565b600b611c0b8261247e565b604051602001611c1c929190612cca565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611c5d5760405162461bcd60e51b8152600401610a3e90612e6a565b600f805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314611ca45760405162461bcd60e51b8152600401610a3e90612e6a565b600f805466ff000000000000198116600160301b9182900460ff1615909102179055565b6008546001600160a01b03163314611cf25760405162461bcd60e51b8152600401610a3e90612e6a565b6001600160a01b038116611d575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3e565b61118e8161231e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611dc782612174565b80519091506000906001600160a01b0316336001600160a01b03161480611dfe575033611df384610af0565b6001600160a01b0316145b80611e1057508151611e109033610944565b905080611e7a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a3e565b846001600160a01b031682600001516001600160a01b031614611eee5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a3e565b6001600160a01b038416611f525760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3e565b611f626000848460000151611d60565b6001600160a01b0385166000908152600460205260408120805460019290611f949084906001600160801b0316612f99565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611fe091859116612f23565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612068846001612f4e565b6000818152600360205260409020549091506001600160a01b03166120fa57612092816000541190565b156120fa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600082612151858461257c565b14949350505050565b610a5a8282604051806020016040528060008152506125e8565b6040805180820190915260008082526020820152612193826000541190565b6121f25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a3e565b60007f00000000000000000000000000000000000000000000000000000000000000008310612253576122457f000000000000000000000000000000000000000000000000000000000000000084612fc1565b612250906001612f4e565b90505b825b8181106122bd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156122aa57949350505050565b50806122b581613004565b915050612255565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a3e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561247257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123b4903390899088908890600401612d85565b602060405180830381600087803b1580156123ce57600080fd5b505af19250505080156123fe575060408051601f3d908101601f191682019092526123fb91810190612c1c565b60015b612458573d80801561242c576040519150601f19603f3d011682016040523d82523d6000602084013e612431565b606091505b5080516124505760405162461bcd60e51b8152600401610a3e90612e9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612476565b5060015b949350505050565b6060816124a25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124cc57806124b681613056565b91506124c59050600a83612f66565b91506124a6565b60008167ffffffffffffffff8111156124e7576124e76130c7565b6040519080825280601f01601f191660200182016040528015612511576020820181803683370190505b5090505b841561247657612526600183612fc1565b9150612533600a86613071565b61253e906030612f4e565b60f81b818381518110612553576125536130b1565b60200101906001600160f81b031916908160001a905350612575600a86612f66565b9450612515565b600081815b845181101561147d57600085828151811061259e5761259e6130b1565b602002602001015190508083116125c457600083815260208290526040902092506125d5565b600081815260208490526040902092505b50806125e081613056565b915050612581565b6000546001600160a01b03841661264b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a3e565b612656816000541190565b156126a35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a3e565b7f000000000000000000000000000000000000000000000000000000000000000083111561271e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a3e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061277a908790612f23565b6001600160801b031681526020018583602001516127989190612f23565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128b85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461287c6000888488612370565b6128985760405162461bcd60e51b8152600401610a3e90612e9f565b816128a281613056565b92505080806128b090613056565b91505061282f565b50600081905561213c565b8280546128cf9061301b565b90600052602060002090601f0160209004810192826128f15760008555612937565b82601f1061290a57805160ff1916838001178555612937565b82800160010185558215612937579182015b8281111561293757825182559160200191906001019061291c565b506112989291505b80821115611298576000815560010161293f565b600067ffffffffffffffff83111561296d5761296d6130c7565b612980601f8401601f1916602001612ef2565b905082815283838301111561299457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146129c257600080fd5b919050565b6000602082840312156129d957600080fd5b611c2c826129ab565b600080604083850312156129f557600080fd5b6129fe836129ab565b9150612a0c602084016129ab565b90509250929050565b600080600060608486031215612a2a57600080fd5b612a33846129ab565b9250612a41602085016129ab565b9150604084013590509250925092565b60008060008060808587031215612a6757600080fd5b612a70856129ab565b9350612a7e602086016129ab565b925060408501359150606085013567ffffffffffffffff811115612aa157600080fd5b8501601f81018713612ab257600080fd5b612ac187823560208401612953565b91505092959194509250565b60008060408385031215612ae057600080fd5b612ae9836129ab565b915060208301358015158114612afe57600080fd5b809150509250929050565b60008060408385031215612b1c57600080fd5b612b25836129ab565b946020939093013593505050565b60008060408385031215612b4657600080fd5b823567ffffffffffffffff80821115612b5e57600080fd5b818501915085601f830112612b7257600080fd5b8135602082821115612b8657612b866130c7565b8160051b9250612b97818401612ef2565b8281528181019085830185870184018b1015612bb257600080fd5b600096505b84871015612bd5578035835260019690960195918301918301612bb7565b509997909101359750505050505050565b600060208284031215612bf857600080fd5b5035919050565b600060208284031215612c1157600080fd5b8135611c2c816130dd565b600060208284031215612c2e57600080fd5b8151611c2c816130dd565b600060208284031215612c4b57600080fd5b813567ffffffffffffffff811115612c6257600080fd5b8201601f81018413612c7357600080fd5b61247684823560208401612953565b60008151808452612c9a816020860160208601612fd8565b601f01601f19169290920160200192915050565b60008151612cc0818560208601612fd8565b9290920192915050565b600080845481600182811c915080831680612ce657607f831692505b6020808410821415612d0657634e487b7160e01b86526022600452602486fd5b818015612d1a5760018114612d2b57612d58565b60ff19861689528489019650612d58565b60008b81526020902060005b86811015612d505781548b820152908501908301612d37565b505084890196505b505050505050612d7c612d6b8286612cae565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612db890830184612c82565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612dfa57835183529284019291840191600101612dde565b50909695505050505050565b602081526000611c2c6020830184612c82565b60208082526031908201527f596f6d617a756b612046616d696c79203a3a2043616e6e6f742062652063616c6040820152701b195908189e48184818dbdb9d1c9858dd607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f1b57612f1b6130c7565b604052919050565b60006001600160801b03808316818516808303821115612f4557612f45613085565b01949350505050565b60008219821115612f6157612f61613085565b500190565b600082612f7557612f7561309b565b500490565b6000816000190483118215151615612f9457612f94613085565b500290565b60006001600160801b0383811690831681811015612fb957612fb9613085565b039392505050565b600082821015612fd357612fd3613085565b500390565b60005b83811015612ff3578181015183820152602001612fdb565b838111156119835750506000910152565b60008161301357613013613085565b506000190190565b600181811c9082168061302f57607f821691505b6020821081141561305057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561306a5761306a613085565b5060010190565b6000826130805761308061309b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461118e57600080fdfea2646970667358221220ae24b9a7386496f3d02c65cd4248448f7594f79f696c36e7cd2291debead2ac664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106103505760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063c87b56dd11610095578063e8b5498d1161006f578063e8b5498d14610907578063e985e9c514610929578063edd5a79e14610972578063f2fde38b1461098757600080fd5b8063c87b56dd146108bc578063d7224ba0146108dc578063e222c7f9146108f257600080fd5b8063be117759116100d1578063be11775914610864578063c08dfd3c1461065b578063c4ae316814610887578063c62752551461089c57600080fd5b8063b88d4fde14610819578063ba7a86b814610839578063bc912e1a1461084e57600080fd5b80638da5cb5b116101645780639f488d731161013e5780639f488d73146107a6578063a0712d68146107c6578063a22cb465146107d9578063b0962c53146107f957600080fd5b80638da5cb5b1461075357806395d89b41146107715780639ac940361461078657600080fd5b80638456cb59116101a05780638456cb59146106e757806386a173ee1461070857806386ba5134146107285780638bb64a8c1461073e57600080fd5b8063715018a6146106905780637cb64759146106a557806383a974a2146106c557600080fd5b806332cb6b0c116102a05780634f6ccce71161023e5780635b8ad429116102185780635b8ad429146106265780636352211e1461063b57806365f130971461065b57806370a082311461067057600080fd5b80634f6ccce7146105cb57806354214f69146105eb5780635900d5701461060557600080fd5b80633ccfd60b1161027a5780633ccfd60b1461056c57806342842e0e1461058157806349590657146105a15780634cf5f7a4146105b657600080fd5b806332cb6b0c1461052257806333bc1c5c1461053857806336c7d6941461055757600080fd5b8063095ea7b31161030d57806323b872dd116102e757806323b872dd146104b95780632904e6d9146104d95780632a006f17146104ec5780632f745c591461050257600080fd5b8063095ea7b31461045757806318160ddd146104775780631c16521c1461048c57600080fd5b806301ffc9a7146103555780630345e3cb1461038a5780630675b7c6146103c557806306fdde03146103e757806307e89ec014610409578063081812fc1461041f575b600080fd5b34801561036157600080fd5b50610375610370366004612bff565b6109a7565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103b76103a53660046129c7565b60126020526000908152604090205481565b604051908152602001610381565b3480156103d157600080fd5b506103e56103e0366004612c39565b610a14565b005b3480156103f357600080fd5b506103fc610a5e565b6040516103819190612e06565b34801561041557600080fd5b506103b760095481565b34801561042b57600080fd5b5061043f61043a366004612be6565b610af0565b6040516001600160a01b039091168152602001610381565b34801561046357600080fd5b506103e5610472366004612b09565b610b7b565b34801561048357600080fd5b506000546103b7565b34801561049857600080fd5b506103b76104a73660046129c7565b60116020526000908152604090205481565b3480156104c557600080fd5b506103e56104d4366004612a15565b610c93565b6103e56104e7366004612b33565b610c9e565b3480156104f857600080fd5b506103b7600d5481565b34801561050e57600080fd5b506103b761051d366004612b09565b610f7b565b34801561052e57600080fd5b506103b761270f81565b34801561054457600080fd5b50600f5461037590610100900460ff1681565b34801561056357600080fd5b506103e56110e9565b34801561057857600080fd5b506103e5611138565b34801561058d57600080fd5b506103e561059c366004612a15565b611191565b3480156105ad57600080fd5b506010546103b7565b3480156105c257600080fd5b506103fc6111ac565b3480156105d757600080fd5b506103b76105e6366004612be6565b61123a565b3480156105f757600080fd5b50600f546103759060ff1681565b34801561061157600080fd5b50600f5461037590600160301b900460ff1681565b34801561063257600080fd5b506103e561129c565b34801561064757600080fd5b5061043f610656366004612be6565b6112da565b34801561066757600080fd5b506103b7600581565b34801561067c57600080fd5b506103b761068b3660046129c7565b6112ec565b34801561069c57600080fd5b506103e561137d565b3480156106b157600080fd5b506103e56106c0366004612be6565b6113b3565b3480156106d157600080fd5b506106da6113e2565b6040516103819190612dc2565b3480156106f357600080fd5b50600f54610375906301000000900460ff1681565b34801561071457600080fd5b50600f546103759062010000900460ff1681565b34801561073457600080fd5b506103b7600e5481565b34801561074a57600080fd5b506103e5611485565b34801561075f57600080fd5b506008546001600160a01b031661043f565b34801561077d57600080fd5b506103fc6114ce565b34801561079257600080fd5b506103e56107a1366004612be6565b6114dd565b3480156107b257600080fd5b506103e56107c1366004612be6565b61150c565b6103e56107d4366004612be6565b61153b565b3480156107e557600080fd5b506103e56107f4366004612acd565b61184e565b34801561080557600080fd5b506103e5610814366004612c39565b611913565b34801561082557600080fd5b506103e5610834366004612a51565b611950565b34801561084557600080fd5b506103e5611989565b34801561085a57600080fd5b506103b7600a5481565b34801561087057600080fd5b50600f546103759065010000000000900460ff1681565b34801561089357600080fd5b506103e5611a3d565b3480156108a857600080fd5b506103e56108b7366004612be6565b611a88565b3480156108c857600080fd5b506103fc6108d7366004612be6565b611ab7565b3480156108e857600080fd5b506103b760075481565b3480156108fe57600080fd5b506103e5611c33565b34801561091357600080fd5b50600f5461037590640100000000900460ff1681565b34801561093557600080fd5b506103756109443660046129e2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561097e57600080fd5b506103e5611c7a565b34801561099357600080fd5b506103e56109a23660046129c7565b611cc8565b60006001600160e01b031982166380ac58cd60e01b14806109d857506001600160e01b03198216635b5e139f60e01b145b806109f357506001600160e01b0319821663780e9d6360e01b145b80610a0e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610a475760405162461bcd60e51b8152600401610a3e90612e6a565b60405180910390fd5b8051610a5a90600b9060208401906128c3565b5050565b606060018054610a6d9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a999061301b565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afd826000541190565b610b5f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a3e565b506000908152600560205260409020546001600160a01b031690565b6000610b86826112da565b9050806001600160a01b0316836001600160a01b03161415610bf55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a3e565b336001600160a01b0382161480610c115750610c118133610944565b610c835760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a3e565b610c8e838383611d60565b505050565b610c8e838383611dbc565b323314610cbd5760405162461bcd60e51b8152600401610a3e90612e19565b600f5462010000900460ff16610d245760405162461bcd60e51b815260206004820152602660248201527f596f6d617a756b612046616d696c79203a3a204d696e74696e67206973206f6e60448201526520506175736560d01b6064820152608401610a3e565b61270f81610d3160005490565b610d3b9190612f4e565b1115610da25760405162461bcd60e51b815260206004820152603060248201527f596f6d617a756b612046616d696c79203a3a2043616e6e6f74206d696e74206260448201526f65796f6e64206d617820737570706c7960801b6064820152608401610a3e565b33600090815260126020526040902054600590610dc0908390612f4e565b1115610e345760405162461bcd60e51b815260206004820152603960248201527f596f6d617a756b612046616d696c79203a3a2043616e6e6f74206d696e74206260448201527f65796f6e642077686974656c697374206d6178206d696e7421000000000000006064820152608401610a3e565b80600a54610e429190612f7a565b341015610ea75760405162461bcd60e51b815260206004820152602d60248201527f596f6d617a756b612046616d696c79203a3a205061796d656e7420697320626560448201526c6c6f772074686520707269636560981b6064820152608401610a3e565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610eed8360105483612144565b610f4c5760405162461bcd60e51b815260206004820152602a60248201527f596f6d617a756b612046616d696c79203a3a20596f7520617265206e6f7420776044820152691a1a5d195b1a5cdd195960b21b6064820152608401610a3e565b3360009081526012602052604081208054849290610f6b908490612f4e565b90915550610c8e9050338361215a565b6000610f86836112ec565b8210610fdf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a3e565b600080549080805b83811015611089576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561103a57805192505b876001600160a01b0316836001600160a01b03161415611076578684141561106857509350610a0e92505050565b8361107281613056565b9450505b508061108181613056565b915050610fe7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a3e565b6008546001600160a01b031633146111135760405162461bcd60e51b8152600401610a3e90612e6a565b600f805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b031633146111625760405162461bcd60e51b8152600401610a3e90612e6a565b60405133904780156108fc02916000818181858888f1935050505015801561118e573d6000803e3d6000fd5b50565b610c8e83838360405180602001604052806000815250611950565b600c80546111b99061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546111e59061301b565b80156112325780601f1061120757610100808354040283529160200191611232565b820191906000526020600020905b81548152906001019060200180831161121557829003601f168201915b505050505081565b6000805482106112985760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a3e565b5090565b6008546001600160a01b031633146112c65760405162461bcd60e51b8152600401610a3e90612e6a565b600f805460ff19811660ff90911615179055565b60006112e582612174565b5192915050565b60006001600160a01b0382166113585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a3e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113a75760405162461bcd60e51b8152600401610a3e90612e6a565b6113b1600061231e565b565b6008546001600160a01b031633146113dd5760405162461bcd60e51b8152600401610a3e90612e6a565b601055565b60603360006113f0826112ec565b905060008167ffffffffffffffff81111561140d5761140d6130c7565b604051908082528060200260200182016040528015611436578160200160208202803683370190505b50905060005b8281101561147d5761144e8482610f7b565b828281518110611460576114606130b1565b60209081029190910101528061147581613056565b91505061143c565b509392505050565b6008546001600160a01b031633146114af5760405162461bcd60e51b8152600401610a3e90612e6a565b600f805462ff0000198116620100009182900460ff1615909102179055565b606060028054610a6d9061301b565b6008546001600160a01b031633146115075760405162461bcd60e51b8152600401610a3e90612e6a565b600d55565b6008546001600160a01b031633146115365760405162461bcd60e51b8152600401610a3e90612e6a565b600e55565b32331461155a5760405162461bcd60e51b8152600401610a3e90612e19565b600d548161156760005490565b6115719190612f4e565b11156115e657600f5465010000000000900460ff166115e65760405162461bcd60e51b815260206004820152602b60248201527f596f6d617a756b612046616d696c79203a3a2044726f702031206265796f6e6460448201526a204d617820537570706c7960a81b6064820152608401610a3e565b600e54816115f360005490565b6115fd9190612f4e565b111561167057600f54600160301b900460ff166116705760405162461bcd60e51b815260206004820152602b60248201527f596f6d617a756b612046616d696c79203a3a2044726f702032206265796f6e6460448201526a204d617820537570706c7960a81b6064820152608401610a3e565b600f54610100900460ff166116d25760405162461bcd60e51b815260206004820152602260248201527f596f6d617a756b612046616d696c79203a3a204e6f7420596574204163746976604482015261329760f11b6064820152608401610a3e565b61270f816116df60005490565b6116e99190612f4e565b11156117435760405162461bcd60e51b8152602060048201526024808201527f596f6d617a756b612046616d696c79203a3a204265796f6e64204d617820537560448201526370706c7960e01b6064820152608401610a3e565b33600090815260116020526040902054600590611761908390612f4e565b11156117c25760405162461bcd60e51b815260206004820152602a60248201527f596f6d617a756b612046616d696c79203a3a20416c7265616479206d696e74656044820152696420352074696d65732160b01b6064820152608401610a3e565b806009546117d09190612f7a565b34101561181f5760405162461bcd60e51b815260206004820152601960248201527f596f6d617a756b612046616d696c79203a3a2042656c6f7720000000000000006044820152606401610a3e565b336000908152601160205260408120805483929061183e908490612f4e565b9091555061118e9050338261215a565b6001600160a01b0382163314156118a75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a3e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461193d5760405162461bcd60e51b8152600401610a3e90612e6a565b8051610a5a90600c9060208401906128c3565b61195b848484611dbc565b61196784848484612370565b6119835760405162461bcd60e51b8152600401610a3e90612e9f565b50505050565b6008546001600160a01b031633146119b35760405162461bcd60e51b8152600401610a3e90612e6a565b600f54640100000000900460ff1615611a1d5760405162461bcd60e51b815260206004820152602660248201527f596f6d617a756b612046616d696c79203a3a205465616d20616c7265616479206044820152651b5a5b9d195960d21b6064820152608401610a3e565b600f805464ff0000000019166401000000001790556113b13360c861215a565b6008546001600160a01b03163314611a675760405162461bcd60e51b8152600401610a3e90612e6a565b600f805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314611ab25760405162461bcd60e51b8152600401610a3e90612e6a565b600955565b6060611ac4826000541190565b611b285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a3e565b6000611b35836001612f4e565b600f5490915060ff16611bd557600c8054611b4f9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7b9061301b565b8015611bc85780601f10611b9d57610100808354040283529160200191611bc8565b820191906000526020600020905b815481529060010190602001808311611bab57829003601f168201915b5050505050915050919050565b6000600b8054611be49061301b565b905011611c005760405180602001604052806000815250611c2c565b600b611c0b8261247e565b604051602001611c1c929190612cca565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611c5d5760405162461bcd60e51b8152600401610a3e90612e6a565b600f805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314611ca45760405162461bcd60e51b8152600401610a3e90612e6a565b600f805466ff000000000000198116600160301b9182900460ff1615909102179055565b6008546001600160a01b03163314611cf25760405162461bcd60e51b8152600401610a3e90612e6a565b6001600160a01b038116611d575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3e565b61118e8161231e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611dc782612174565b80519091506000906001600160a01b0316336001600160a01b03161480611dfe575033611df384610af0565b6001600160a01b0316145b80611e1057508151611e109033610944565b905080611e7a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a3e565b846001600160a01b031682600001516001600160a01b031614611eee5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a3e565b6001600160a01b038416611f525760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3e565b611f626000848460000151611d60565b6001600160a01b0385166000908152600460205260408120805460019290611f949084906001600160801b0316612f99565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611fe091859116612f23565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612068846001612f4e565b6000818152600360205260409020549091506001600160a01b03166120fa57612092816000541190565b156120fa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600082612151858461257c565b14949350505050565b610a5a8282604051806020016040528060008152506125e8565b6040805180820190915260008082526020820152612193826000541190565b6121f25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a3e565b60007f00000000000000000000000000000000000000000000000000000000000000058310612253576122457f000000000000000000000000000000000000000000000000000000000000000584612fc1565b612250906001612f4e565b90505b825b8181106122bd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156122aa57949350505050565b50806122b581613004565b915050612255565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a3e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561247257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123b4903390899088908890600401612d85565b602060405180830381600087803b1580156123ce57600080fd5b505af19250505080156123fe575060408051601f3d908101601f191682019092526123fb91810190612c1c565b60015b612458573d80801561242c576040519150601f19603f3d011682016040523d82523d6000602084013e612431565b606091505b5080516124505760405162461bcd60e51b8152600401610a3e90612e9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612476565b5060015b949350505050565b6060816124a25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124cc57806124b681613056565b91506124c59050600a83612f66565b91506124a6565b60008167ffffffffffffffff8111156124e7576124e76130c7565b6040519080825280601f01601f191660200182016040528015612511576020820181803683370190505b5090505b841561247657612526600183612fc1565b9150612533600a86613071565b61253e906030612f4e565b60f81b818381518110612553576125536130b1565b60200101906001600160f81b031916908160001a905350612575600a86612f66565b9450612515565b600081815b845181101561147d57600085828151811061259e5761259e6130b1565b602002602001015190508083116125c457600083815260208290526040902092506125d5565b600081815260208490526040902092505b50806125e081613056565b915050612581565b6000546001600160a01b03841661264b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a3e565b612656816000541190565b156126a35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a3e565b7f000000000000000000000000000000000000000000000000000000000000000583111561271e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a3e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061277a908790612f23565b6001600160801b031681526020018583602001516127989190612f23565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128b85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461287c6000888488612370565b6128985760405162461bcd60e51b8152600401610a3e90612e9f565b816128a281613056565b92505080806128b090613056565b91505061282f565b50600081905561213c565b8280546128cf9061301b565b90600052602060002090601f0160209004810192826128f15760008555612937565b82601f1061290a57805160ff1916838001178555612937565b82800160010185558215612937579182015b8281111561293757825182559160200191906001019061291c565b506112989291505b80821115611298576000815560010161293f565b600067ffffffffffffffff83111561296d5761296d6130c7565b612980601f8401601f1916602001612ef2565b905082815283838301111561299457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146129c257600080fd5b919050565b6000602082840312156129d957600080fd5b611c2c826129ab565b600080604083850312156129f557600080fd5b6129fe836129ab565b9150612a0c602084016129ab565b90509250929050565b600080600060608486031215612a2a57600080fd5b612a33846129ab565b9250612a41602085016129ab565b9150604084013590509250925092565b60008060008060808587031215612a6757600080fd5b612a70856129ab565b9350612a7e602086016129ab565b925060408501359150606085013567ffffffffffffffff811115612aa157600080fd5b8501601f81018713612ab257600080fd5b612ac187823560208401612953565b91505092959194509250565b60008060408385031215612ae057600080fd5b612ae9836129ab565b915060208301358015158114612afe57600080fd5b809150509250929050565b60008060408385031215612b1c57600080fd5b612b25836129ab565b946020939093013593505050565b60008060408385031215612b4657600080fd5b823567ffffffffffffffff80821115612b5e57600080fd5b818501915085601f830112612b7257600080fd5b8135602082821115612b8657612b866130c7565b8160051b9250612b97818401612ef2565b8281528181019085830185870184018b1015612bb257600080fd5b600096505b84871015612bd5578035835260019690960195918301918301612bb7565b509997909101359750505050505050565b600060208284031215612bf857600080fd5b5035919050565b600060208284031215612c1157600080fd5b8135611c2c816130dd565b600060208284031215612c2e57600080fd5b8151611c2c816130dd565b600060208284031215612c4b57600080fd5b813567ffffffffffffffff811115612c6257600080fd5b8201601f81018413612c7357600080fd5b61247684823560208401612953565b60008151808452612c9a816020860160208601612fd8565b601f01601f19169290920160200192915050565b60008151612cc0818560208601612fd8565b9290920192915050565b600080845481600182811c915080831680612ce657607f831692505b6020808410821415612d0657634e487b7160e01b86526022600452602486fd5b818015612d1a5760018114612d2b57612d58565b60ff19861689528489019650612d58565b60008b81526020902060005b86811015612d505781548b820152908501908301612d37565b505084890196505b505050505050612d7c612d6b8286612cae565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612db890830184612c82565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612dfa57835183529284019291840191600101612dde565b50909695505050505050565b602081526000611c2c6020830184612c82565b60208082526031908201527f596f6d617a756b612046616d696c79203a3a2043616e6e6f742062652063616c6040820152701b195908189e48184818dbdb9d1c9858dd607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f1b57612f1b6130c7565b604052919050565b60006001600160801b03808316818516808303821115612f4557612f45613085565b01949350505050565b60008219821115612f6157612f61613085565b500190565b600082612f7557612f7561309b565b500490565b6000816000190483118215151615612f9457612f94613085565b500290565b60006001600160801b0383811690831681811015612fb957612fb9613085565b039392505050565b600082821015612fd357612fd3613085565b500390565b60005b83811015612ff3578181015183820152602001612fdb565b838111156119835750506000910152565b60008161301357613013613085565b506000190190565b600181811c9082168061302f57607f821691505b6020821081141561305057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561306a5761306a613085565b5060010190565b6000826130805761308061309b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461118e57600080fdfea2646970667358221220ae24b9a7386496f3d02c65cd4248448f7594f79f696c36e7cd2291debead2ac664736f6c63430008070033

Deployed Bytecode Sourcemap

42632:5818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30260:370;;;;;;;;;;-1:-1:-1;30260:370:0;;;;;:::i;:::-;;:::i;:::-;;;8648:14:1;;8641:22;8623:41;;8611:2;8596:18;30260:370:0;;;;;;;;43526:53;;;;;;;;;;-1:-1:-1;43526:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;8821:25:1;;;8809:2;8794:18;43526:53:0;8675:177:1;47007:110:0;;;;;;;;;;-1:-1:-1;47007:110:0;;;;;:::i;:::-;;:::i;:::-;;31986:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42858:52::-;;;;;;;;;;;;;;;;33511:204;;;;;;;;;;-1:-1:-1;33511:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7309:32:1;;;7291:51;;7279:2;7264:18;33511:204:0;7145:203:1;33074:379:0;;;;;;;;;;-1:-1:-1;33074:379:0;;;;;:::i;:::-;;:::i;28821:94::-;;;;;;;;;;-1:-1:-1;28874:7:0;28897:12;28821:94;;43471:50;;;;;;;;;;-1:-1:-1;43471:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;34361:142;;;;;;;;;;-1:-1:-1;34361:142:0;;;;;:::i;:::-;;:::i;44748:938::-;;;;;;:::i;:::-;;:::i;43049:44::-;;;;;;;;;;;;;;;;29452:744;;;;;;;;;;-1:-1:-1;29452:744:0;;;;;:::i;:::-;;:::i;42713:41::-;;;;;;;;;;;;42750:4;42713:41;;43286:22;;;;;;;;;;-1:-1:-1;43286:22:0;;;;;;;;;;;48108:69;;;;;;;;;;;;;:::i;48344:103::-;;;;;;;;;;;;;:::i;34566:157::-;;;;;;;;;;-1:-1:-1;34566:157:0;;;;;:::i;:::-;;:::i;47279:87::-;;;;;;;;;;-1:-1:-1;47350:10:0;;47279:87;;43009:33;;;;;;;;;;;;;:::i;28984:177::-;;;;;;;;;;-1:-1:-1;28984:177:0;;;;;:::i;:::-;;:::i;43259:22::-;;;;;;;;;;-1:-1:-1;43259:22:0;;;;;;;;43414:17;;;;;;;;;;-1:-1:-1;43414:17:0;;;;-1:-1:-1;;;43414:17:0;;;;;;48258:80;;;;;;;;;;;;;:::i;31809:118::-;;;;;;;;;;-1:-1:-1;31809:118:0;;;;;:::i;:::-;;:::i;42759:43::-;;;;;;;;;;;;42801:1;42759:43;;30686:211;;;;;;;;;;-1:-1:-1;30686:211:0;;;;;:::i;:::-;;:::i;7415:103::-;;;;;;;;;;;;;:::i;47447:100::-;;;;;;;;;;-1:-1:-1;47447:100:0;;;;;:::i;:::-;;:::i;46623:378::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43343:17::-;;;;;;;;;;-1:-1:-1;43343:17:0;;;;;;;;;;;43313:25;;;;;;;;;;-1:-1:-1;43313:25:0;;;;;;;;;;;43098:44;;;;;;;;;;;;;;;;47673:93;;;;;;;;;;;;;:::i;6764:87::-;;;;;;;;;;-1:-1:-1;6837:6:0;;-1:-1:-1;;;;;6837:6:0;6764:87;;32141:98;;;;;;;;;;;;;:::i;47862:117::-;;;;;;;;;;-1:-1:-1;47862:117:0;;;;;:::i;:::-;;:::i;47985:::-;;;;;;;;;;-1:-1:-1;47985:117:0;;;;;:::i;:::-;;:::i;43807:935::-;;;;;;:::i;:::-;;:::i;33779:274::-;;;;;;;;;;-1:-1:-1;33779:274:0;;;;;:::i;:::-;;:::i;47123:150::-;;;;;;;;;;-1:-1:-1;47123:150:0;;;;;:::i;:::-;;:::i;34786:311::-;;;;;;;;;;-1:-1:-1;34786:311:0;;;;;:::i;:::-;;:::i;45692:171::-;;;;;;;;;;;;;:::i;42915:55::-;;;;;;;;;;;;;;;;43392:17;;;;;;;;;;-1:-1:-1;43392:17:0;;;;;;;;;;;47372:69;;;;;;;;;;;;;:::i;47553:114::-;;;;;;;;;;-1:-1:-1;47553:114:0;;;;;:::i;:::-;;:::i;46016:517::-;;;;;;;;;;-1:-1:-1;46016:517:0;;;;;:::i;:::-;;:::i;39201:43::-;;;;;;;;;;;;;;;;47772:84;;;;;;;;;;;;;:::i;43365:22::-;;;;;;;;;;-1:-1:-1;43365:22:0;;;;;;;;;;;34116:186;;;;;;;;;;-1:-1:-1;34116:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34261:25:0;;;34238:4;34261:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34116:186;48183:69;;;;;;;;;;;;;:::i;7673:201::-;;;;;;;;;;-1:-1:-1;7673:201:0;;;;;:::i;:::-;;:::i;30260:370::-;30387:4;-1:-1:-1;;;;;;30417:40:0;;-1:-1:-1;;;30417:40:0;;:99;;-1:-1:-1;;;;;;;30468:48:0;;-1:-1:-1;;;30468:48:0;30417:99;:160;;;-1:-1:-1;;;;;;;30527:50:0;;-1:-1:-1;;;30527:50:0;30417:160;:207;;;-1:-1:-1;;;;;;;;;;19680:40:0;;;30588:36;30403:221;30260:370;-1:-1:-1;;30260:370:0:o;47007:110::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;;;;;;;;;47083:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47007:110:::0;:::o;31986:94::-;32040:13;32069:5;32062:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31986:94;:::o;33511:204::-;33579:7;33603:16;33611:7;35393:4;35423:12;-1:-1:-1;35413:22:0;35336:105;33603:16;33595:74;;;;-1:-1:-1;;;33595:74:0;;21821:2:1;33595:74:0;;;21803:21:1;21860:2;21840:18;;;21833:30;21899:34;21879:18;;;21872:62;-1:-1:-1;;;21950:18:1;;;21943:43;22003:19;;33595:74:0;21619:409:1;33595:74:0;-1:-1:-1;33685:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33685:24:0;;33511:204::o;33074:379::-;33143:13;33159:24;33175:7;33159:15;:24::i;:::-;33143:40;;33204:5;-1:-1:-1;;;;;33198:11:0;:2;-1:-1:-1;;;;;33198:11:0;;;33190:58;;;;-1:-1:-1;;;33190:58:0;;18589:2:1;33190:58:0;;;18571:21:1;18628:2;18608:18;;;18601:30;18667:34;18647:18;;;18640:62;-1:-1:-1;;;18718:18:1;;;18711:32;18760:19;;33190:58:0;18387:398:1;33190:58:0;5568:10;-1:-1:-1;;;;;33273:21:0;;;;:62;;-1:-1:-1;33298:37:0;33315:5;5568:10;34116:186;:::i;33298:37::-;33257:153;;;;-1:-1:-1;;;33257:153:0;;13370:2:1;33257:153:0;;;13352:21:1;13409:2;13389:18;;;13382:30;13448:34;13428:18;;;13421:62;13519:27;13499:18;;;13492:55;13564:19;;33257:153:0;13168:421:1;33257:153:0;33419:28;33428:2;33432:7;33441:5;33419:8;:28::i;:::-;33136:317;33074:379;;:::o;34361:142::-;34469:28;34479:4;34485:2;34489:7;34469:9;:28::i;44748:938::-;43697:9;43710:10;43697:23;43681:106;;;;-1:-1:-1;;;43681:106:0;;;;;;;:::i;:::-;44884:13:::1;::::0;;;::::1;;;44876:64;;;::::0;-1:-1:-1;;;44876:64:0;;18992:2:1;44876:64:0::1;::::0;::::1;18974:21:1::0;19031:2;19011:18;;;19004:30;19070:34;19050:18;;;19043:62;-1:-1:-1;;;19121:18:1;;;19114:36;19167:19;;44876:64:0::1;18790:402:1::0;44876:64:0::1;42750:4;44980:9;44964:13;28874:7:::0;28897:12;;28821:94;44964:13:::1;:25;;;;:::i;:::-;44963:41;;44947:123;;;::::0;-1:-1:-1;;;44947:123:0;;17364:2:1;44947:123:0::1;::::0;::::1;17346:21:1::0;17403:2;17383:18;;;17376:30;17442:34;17422:18;;;17415:62;-1:-1:-1;;;17493:18:1;;;17486:46;17549:19;;44947:123:0::1;17162:412:1::0;44947:123:0::1;45113:10;45094:30;::::0;;;:18:::1;:30;::::0;;;;;42852:1:::1;::::0;45094:42:::1;::::0;45127:9;;45094:42:::1;:::i;:::-;45093:66;;45077:157;;;::::0;-1:-1:-1;;;45077:157:0;;14214:2:1;45077:157:0::1;::::0;::::1;14196:21:1::0;14253:2;14233:18;;;14226:30;14292:34;14272:18;;;14265:62;14363:27;14343:18;;;14336:55;14408:19;;45077:157:0::1;14012:421:1::0;45077:157:0::1;45294:9;45271:20;;:32;;;;:::i;:::-;45257:9;:47;;45241:126;;;::::0;-1:-1:-1;;;45241:126:0;;12956:2:1;45241:126:0::1;::::0;::::1;12938:21:1::0;12995:2;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;-1:-1:-1;;;13085:18:1;;;13078:43;13138:19;;45241:126:0::1;12754:409:1::0;45241:126:0::1;45425:28;::::0;-1:-1:-1;;45442:10:0::1;5754:2:1::0;5750:15;5746:53;45425:28:0::1;::::0;::::1;5734:66:1::0;45398:14:0::1;::::0;5816:12:1;;45425:28:0::1;;;;;;;;;;;;45415:39;;;;;;45398:56;;45477:52;45496:12;45510:10;;45522:6;45477:18;:52::i;:::-;45461:128;;;::::0;-1:-1:-1;;;45461:128:0;;12138:2:1;45461:128:0::1;::::0;::::1;12120:21:1::0;12177:2;12157:18;;;12150:30;12216:34;12196:18;;;12189:62;-1:-1:-1;;;12267:18:1;;;12260:40;12317:19;;45461:128:0::1;11936:406:1::0;45461:128:0::1;45617:10;45598:30;::::0;;;:18:::1;:30;::::0;;;;:43;;45632:9;;45598:30;:43:::1;::::0;45632:9;;45598:43:::1;:::i;:::-;::::0;;;-1:-1:-1;45648:32:0::1;::::0;-1:-1:-1;45658:10:0::1;45670:9:::0;45648::::1;:32::i;29452:744::-:0;29561:7;29596:16;29606:5;29596:9;:16::i;:::-;29588:5;:24;29580:71;;;;-1:-1:-1;;;29580:71:0;;9283:2:1;29580:71:0;;;9265:21:1;9322:2;9302:18;;;9295:30;9361:34;9341:18;;;9334:62;-1:-1:-1;;;9412:18:1;;;9405:32;9454:19;;29580:71:0;9081:398:1;29580:71:0;29658:22;28897:12;;;29658:22;;29778:350;29802:14;29798:1;:18;29778:350;;;29832:31;29866:14;;;:11;:14;;;;;;;;;29832:48;;;;;;;;;-1:-1:-1;;;;;29832:48:0;;;;;-1:-1:-1;;;29832:48:0;;;;;;;;;;;;29893:28;29889:89;;29954:14;;;-1:-1:-1;29889:89:0;30011:5;-1:-1:-1;;;;;29990:26:0;:17;-1:-1:-1;;;;;29990:26:0;;29986:135;;;30048:5;30033:11;:20;30029:59;;;-1:-1:-1;30075:1:0;-1:-1:-1;30068:8:0;;-1:-1:-1;;;30068:8:0;30029:59;30098:13;;;;:::i;:::-;;;;29986:135;-1:-1:-1;29818:3:0;;;;:::i;:::-;;;;29778:350;;;-1:-1:-1;30134:56:0;;-1:-1:-1;;;30134:56:0;;20990:2:1;30134:56:0;;;20972:21:1;21029:2;21009:18;;;21002:30;21068:34;21048:18;;;21041:62;-1:-1:-1;;;21119:18:1;;;21112:44;21173:19;;30134:56:0;20788:410:1;48108:69:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48166:5:::1;::::0;;-1:-1:-1;;48157:14:0;::::1;48166:5:::0;;;;::::1;;;48165:6;48157:14:::0;;::::1;;::::0;;48108:69::o;48344:103::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48390:51:::1;::::0;48398:10:::1;::::0;48419:21:::1;48390:51:::0;::::1;;;::::0;::::1;::::0;;;48419:21;48398:10;48390:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48344:103::o:0;34566:157::-;34678:39;34695:4;34701:2;34705:7;34678:39;;;;;;;;;;;;:16;:39::i;43009:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28984:177::-;29051:7;28897:12;;29075:5;:21;29067:69;;;;-1:-1:-1;;;29067:69:0;;11328:2:1;29067:69:0;;;11310:21:1;11367:2;11347:18;;;11340:30;11406:34;11386:18;;;11379:62;-1:-1:-1;;;11457:18:1;;;11450:33;11500:19;;29067:69:0;11126:399:1;29067:69:0;-1:-1:-1;29150:5:0;28984:177::o;48258:80::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48322:10:::1;::::0;;-1:-1:-1;;48308:24:0;::::1;48322:10;::::0;;::::1;48321:11;48308:24;::::0;;48258:80::o;31809:118::-;31873:7;31896:20;31908:7;31896:11;:20::i;:::-;:25;;31809:118;-1:-1:-1;;31809:118:0:o;30686:211::-;30750:7;-1:-1:-1;;;;;30774:19:0;;30766:75;;;;-1:-1:-1;;;30766:75:0;;14640:2:1;30766:75:0;;;14622:21:1;14679:2;14659:18;;;14652:30;14718:34;14698:18;;;14691:62;-1:-1:-1;;;14769:18:1;;;14762:41;14820:19;;30766:75:0;14438:407:1;30766:75:0;-1:-1:-1;;;;;;30863:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30863:27:0;;30686:211::o;7415:103::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;7480:30:::1;7507:1;7480:18;:30::i;:::-;7415:103::o:0;47447:100::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47517:10:::1;:24:::0;47447:100::o;46623:378::-;46666:16;46708:10;46691:14;46752:17;46708:10;46752:9;:17::i;:::-;46725:44;;46776:25;46818:16;46804:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46804:31:0;;46776:59;;46849:13;46844:128;46876:16;46868:5;:24;46844:128;;;46930:34;46950:6;46958:5;46930:19;:34::i;:::-;46912:8;46921:5;46912:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;46894:7;;;;:::i;:::-;;;;46844:128;;;-1:-1:-1;46987:8:0;46623:378;-1:-1:-1;;;46623:378:0:o;47673:93::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47747:13:::1;::::0;;-1:-1:-1;;47730:30:0;::::1;47747:13:::0;;;;::::1;;;47746:14;47730:30:::0;;::::1;;::::0;;47673:93::o;32141:98::-;32197:13;32226:7;32219:14;;;;;:::i;47862:117::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47935:22:::1;:38:::0;47862:117::o;47985:::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48058:22:::1;:38:::0;47985:117::o;43807:935::-;43697:9;43710:10;43697:23;43681:106;;;;-1:-1:-1;;;43681:106:0;;;;;;;:::i;:::-;43964:22:::1;;43951:9;43935:13;28874:7:::0;28897:12;;28821:94;43935:13:::1;:25;;;;:::i;:::-;43934:52;43930:136;;;44005:5;::::0;;;::::1;;;43997:61;;;::::0;-1:-1:-1;;;43997:61:0;;10505:2:1;43997:61:0::1;::::0;::::1;10487:21:1::0;10544:2;10524:18;;;10517:30;10583:34;10563:18;;;10556:62;-1:-1:-1;;;10634:18:1;;;10627:41;10685:19;;43997:61:0::1;10303:407:1::0;43997:61:0::1;44108:22;;44095:9;44079:13;28874:7:::0;28897:12;;28821:94;44079:13:::1;:25;;;;:::i;:::-;44078:52;44074:136;;;44149:5;::::0;-1:-1:-1;;;44149:5:0;::::1;;;44141:61;;;::::0;-1:-1:-1;;;44141:61:0;;9686:2:1;44141:61:0::1;::::0;::::1;9668:21:1::0;9725:2;9705:18;;;9698:30;9764:34;9744:18;;;9737:62;-1:-1:-1;;;9815:18:1;;;9808:41;9866:19;;44141:61:0::1;9484:407:1::0;44141:61:0::1;44226:10;::::0;::::1;::::0;::::1;;;44218:57;;;::::0;-1:-1:-1;;;44218:57:0;;18186:2:1;44218:57:0::1;::::0;::::1;18168:21:1::0;18225:2;18205:18;;;18198:30;18264:34;18244:18;;;18237:62;-1:-1:-1;;;18315:18:1;;;18308:32;18357:19;;44218:57:0::1;17984:398:1::0;44218:57:0::1;42750:4;44317:9;44301:13;28874:7:::0;28897:12;;28821:94;44301:13:::1;:25;;;;:::i;:::-;44300:41;;44284:111;;;::::0;-1:-1:-1;;;44284:111:0;;17781:2:1;44284:111:0::1;::::0;::::1;17763:21:1::0;17820:2;17800:18;;;17793:30;17859:34;17839:18;;;17832:62;-1:-1:-1;;;17910:18:1;;;17903:34;17954:19;;44284:111:0::1;17579:400:1::0;44284:111:0::1;44435:10;44419:27;::::0;;;:15:::1;:27;::::0;;;;;42801:1:::1;::::0;44419:39:::1;::::0;44449:9;;44419:39:::1;:::i;:::-;44418:60;;44402:136;;;::::0;-1:-1:-1;;;44402:136:0;;20579:2:1;44402:136:0::1;::::0;::::1;20561:21:1::0;20618:2;20598:18;;;20591:30;20657:34;20637:18;;;20630:62;-1:-1:-1;;;20708:18:1;;;20701:40;20758:19;;44402:136:0::1;20377:406:1::0;44402:136:0::1;44595:9;44575:17;;:29;;;;:::i;:::-;44561:9;:44;;44545:103;;;::::0;-1:-1:-1;;;44545:103:0;;15052:2:1;44545:103:0::1;::::0;::::1;15034:21:1::0;15091:2;15071:18;;;15064:30;15130:27;15110:18;;;15103:55;15175:18;;44545:103:0::1;14850:349:1::0;44545:103:0::1;44673:10;44657:27;::::0;;;:15:::1;:27;::::0;;;;:40;;44688:9;;44657:27;:40:::1;::::0;44688:9;;44657:40:::1;:::i;:::-;::::0;;;-1:-1:-1;44704:32:0::1;::::0;-1:-1:-1;44714:10:0::1;44726:9:::0;44704::::1;:32::i;33779:274::-:0;-1:-1:-1;;;;;33870:24:0;;5568:10;33870:24;;33862:63;;;;-1:-1:-1;;;33862:63:0;;16590:2:1;33862:63:0;;;16572:21:1;16629:2;16609:18;;;16602:30;16668:28;16648:18;;;16641:56;16714:18;;33862:63:0;16388:350:1;33862:63:0;5568:10;33934:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33934:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33934:53:0;;;;;;;;;;33999:48;;8623:41:1;;;33934:42:0;;5568:10;33999:48;;8596:18:1;33999:48:0;;;;;;;33779:274;;:::o;47123:150::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47225:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;34786:311::-:0;34923:28;34933:4;34939:2;34943:7;34923:9;:28::i;:::-;34974:48;34997:4;35003:2;35007:7;35016:5;34974:22;:48::i;:::-;34958:133;;;;-1:-1:-1;;;34958:133:0;;;;;;;:::i;:::-;34786:311;;;;:::o;45692:171::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;45747:10:::1;::::0;;;::::1;;;45746:11;45738:62;;;::::0;-1:-1:-1;;;45738:62:0;;12549:2:1;45738:62:0::1;::::0;::::1;12531:21:1::0;12588:2;12568:18;;;12561:30;12627:34;12607:18;;;12600:62;-1:-1:-1;;;12678:18:1;;;12671:36;12724:19;;45738:62:0::1;12347:402:1::0;45738:62:0::1;45807:10;:17:::0;;-1:-1:-1;;45807:17:0::1;::::0;::::1;::::0;;45831:26:::1;45841:10;45853:3;45831:9;:26::i;47372:69::-:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47430:5:::1;::::0;;-1:-1:-1;;47421:14:0;::::1;47430:5:::0;;;;::::1;;;47429:6;47421:14:::0;;::::1;;::::0;;47372:69::o;47553:114::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47627:17:::1;:34:::0;47553:114::o;46016:517::-;46114:13;46155:16;46163:7;35393:4;35423:12;-1:-1:-1;35413:22:0;35336:105;46155:16;46139:97;;;;-1:-1:-1;;;46139:97:0;;16174:2:1;46139:97:0;;;16156:21:1;16213:2;16193:18;;;16186:30;16252:34;16232:18;;;16225:62;-1:-1:-1;;;16303:18:1;;;16296:45;16358:19;;46139:97:0;15972:411:1;46139:97:0;46245:14;46262:11;:7;46272:1;46262:11;:::i;:::-;46287:10;;46245:28;;-1:-1:-1;46287:10:0;;46282:60;;46315:19;46308:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46016:517;;;:::o;46282:60::-;46434:1;46411:12;46405:26;;;;;:::i;:::-;;;:30;:122;;;;;;;;;;;;;;;;;46471:12;46485:17;:6;:15;:17::i;:::-;46454:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46405:122;46391:136;46016:517;-1:-1:-1;;;46016:517:0:o;47772:84::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47840:10:::1;::::0;;-1:-1:-1;;47826:24:0;::::1;47840:10;::::0;;;::::1;;;47839:11;47826:24:::0;;::::1;;::::0;;47772:84::o;48183:69::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48241:5:::1;::::0;;-1:-1:-1;;48232:14:0;::::1;-1:-1:-1::0;;;48241:5:0;;;::::1;;;48240:6;48232:14:::0;;::::1;;::::0;;48183:69::o;7673:201::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7762:22:0;::::1;7754:73;;;::::0;-1:-1:-1;;;7754:73:0;;10098:2:1;7754:73:0::1;::::0;::::1;10080:21:1::0;10137:2;10117:18;;;10110:30;10176:34;10156:18;;;10149:62;-1:-1:-1;;;10227:18:1;;;10220:36;10273:19;;7754:73:0::1;9896:402:1::0;7754:73:0::1;7838:28;7857:8;7838:18;:28::i;39023:172::-:0;39120:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39120:29:0;-1:-1:-1;;;;;39120:29:0;;;;;;;;;39161:28;;39120:24;;39161:28;;;;;;;39023:172;;;:::o;37388:1529::-;37485:35;37523:20;37535:7;37523:11;:20::i;:::-;37594:18;;37485:58;;-1:-1:-1;37552:22:0;;-1:-1:-1;;;;;37578:34:0;5568:10;-1:-1:-1;;;;;37578:34:0;;:81;;;-1:-1:-1;5568:10:0;37623:20;37635:7;37623:11;:20::i;:::-;-1:-1:-1;;;;;37623:36:0;;37578:81;:142;;;-1:-1:-1;37687:18:0;;37670:50;;5568:10;34116:186;:::i;37670:50::-;37552:169;;37746:17;37730:101;;;;-1:-1:-1;;;37730:101:0;;16945:2:1;37730:101:0;;;16927:21:1;16984:2;16964:18;;;16957:30;17023:34;17003:18;;;16996:62;-1:-1:-1;;;17074:18:1;;;17067:48;17132:19;;37730:101:0;16743:414:1;37730:101:0;37878:4;-1:-1:-1;;;;;37856:26:0;:13;:18;;;-1:-1:-1;;;;;37856:26:0;;37840:98;;;;-1:-1:-1;;;37840:98:0;;15406:2:1;37840:98:0;;;15388:21:1;15445:2;15425:18;;;15418:30;15484:34;15464:18;;;15457:62;-1:-1:-1;;;15535:18:1;;;15528:36;15581:19;;37840:98:0;15204:402:1;37840:98:0;-1:-1:-1;;;;;37953:16:0;;37945:66;;;;-1:-1:-1;;;37945:66:0;;11732:2:1;37945:66:0;;;11714:21:1;11771:2;11751:18;;;11744:30;11810:34;11790:18;;;11783:62;-1:-1:-1;;;11861:18:1;;;11854:35;11906:19;;37945:66:0;11530:401:1;37945:66:0;38120:49;38137:1;38141:7;38150:13;:18;;;38120:8;:49::i;:::-;-1:-1:-1;;;;;38178:18:0;;;;;;:12;:18;;;;;:31;;38208:1;;38178:18;:31;;38208:1;;-1:-1:-1;;;;;38178:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38178:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38216:16:0;;-1:-1:-1;38216:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38216:16:0;;:29;;-1:-1:-1;;38216:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38216:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38275:43:0;;;;;;;;-1:-1:-1;;;;;38275:43:0;;;;;;38301:15;38275:43;;;;;;;;;-1:-1:-1;38252:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38252:66:0;-1:-1:-1;;;;;;38252:66:0;;;;;;;;;;;38568:11;38264:7;-1:-1:-1;38568:11:0;:::i;:::-;38631:1;38590:24;;;:11;:24;;;;;:29;38546:33;;-1:-1:-1;;;;;;38590:29:0;38586:236;;38648:20;38656:11;35393:4;35423:12;-1:-1:-1;35413:22:0;35336:105;38648:20;38644:171;;;38708:97;;;;;;;;38735:18;;-1:-1:-1;;;;;38708:97:0;;;;;;38766:28;;;;38708:97;;;;;;;;;;-1:-1:-1;38681:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38681:124:0;-1:-1:-1;;;;;;38681:124:0;;;;;;;;;;;;38644:171;38854:7;38850:2;-1:-1:-1;;;;;38835:27:0;38844:4;-1:-1:-1;;;;;38835:27:0;;;;;;;;;;;38869:42;37478:1439;;;37388:1529;;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;;1220:190;-1:-1:-1;;;;1220:190:0:o;35447:98::-;35512:27;35522:2;35526:8;35512:27;;;;;;;;;;;;:9;:27::i;31149:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31266:16:0;31274:7;35393:4;35423:12;-1:-1:-1;35413:22:0;35336:105;31266:16;31258:71;;;;-1:-1:-1;;;31258:71:0;;10917:2:1;31258:71:0;;;10899:21:1;10956:2;10936:18;;;10929:30;10995:34;10975:18;;;10968:62;-1:-1:-1;;;11046:18:1;;;11039:40;11096:19;;31258:71:0;10715:406:1;31258:71:0;31338:26;31386:12;31375:7;:23;31371:93;;31430:22;31440:12;31430:7;:22;:::i;:::-;:26;;31455:1;31430:26;:::i;:::-;31409:47;;31371:93;31492:7;31472:212;31509:18;31501:4;:26;31472:212;;31546:31;31580:17;;;:11;:17;;;;;;;;;31546:51;;;;;;;;;-1:-1:-1;;;;;31546:51:0;;;;;-1:-1:-1;;;31546:51:0;;;;;;;;;;;;31610:28;31606:71;;31658:9;31149:606;-1:-1:-1;;;;31149:606:0:o;31606:71::-;-1:-1:-1;31529:6:0;;;;:::i;:::-;;;;31472:212;;;-1:-1:-1;31692:57:0;;-1:-1:-1;;;31692:57:0;;21405:2:1;31692:57:0;;;21387:21:1;21444:2;21424:18;;;21417:30;21483:34;21463:18;;;21456:62;-1:-1:-1;;;21534:18:1;;;21527:45;21589:19;;31692:57:0;21203:411:1;8034:191:0;8127:6;;;-1:-1:-1;;;;;8144:17:0;;;-1:-1:-1;;;;;;8144:17:0;;;;;;;8177:40;;8127:6;;;8144:17;8127:6;;8177:40;;8108:16;;8177:40;8097:128;8034:191;:::o;40738:690::-;40875:4;-1:-1:-1;;;;;40892:13:0;;9760:19;:23;40888:535;;40931:72;;-1:-1:-1;;;40931:72:0;;-1:-1:-1;;;;;40931:36:0;;;;;:72;;5568:10;;40982:4;;40988:7;;40997:5;;40931:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40931:72:0;;;;;;;;-1:-1:-1;;40931:72:0;;;;;;;;;;;;:::i;:::-;;;40918:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41162:13:0;;41158:215;;41195:61;;-1:-1:-1;;;41195:61:0;;;;;;;:::i;41158:215::-;41341:6;41335:13;41326:6;41322:2;41318:15;41311:38;40918:464;-1:-1:-1;;;;;;41053:55:0;-1:-1:-1;;;41053:55:0;;-1:-1:-1;41046:62:0;;40888:535;-1:-1:-1;41411:4:0;40888:535;40738:690;;;;;;:::o;3050:723::-;3106:13;3327:10;3323:53;;-1:-1:-1;;3354:10:0;;;;;;;;;;;;-1:-1:-1;;;3354:10:0;;;;;3050:723::o;3323:53::-;3401:5;3386:12;3442:78;3449:9;;3442:78;;3475:8;;;;:::i;:::-;;-1:-1:-1;3498:10:0;;-1:-1:-1;3506:2:0;3498:10;;:::i;:::-;;;3442:78;;;3530:19;3562:6;3552:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3552:17:0;;3530:39;;3580:154;3587:10;;3580:154;;3614:11;3624:1;3614:11;;:::i;:::-;;-1:-1:-1;3683:10:0;3691:2;3683:5;:10;:::i;:::-;3670:24;;:2;:24;:::i;:::-;3657:39;;3640:6;3647;3640:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3640:56:0;;;;;;;;-1:-1:-1;3711:11:0;3720:2;3711:11;;:::i;:::-;;;3580:154;;1771:675;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;35884:1272;35989:20;36012:12;-1:-1:-1;;;;;36039:16:0;;36031:62;;;;-1:-1:-1;;;36031:62:0;;20177:2:1;36031:62:0;;;20159:21:1;20216:2;20196:18;;;20189:30;20255:34;20235:18;;;20228:62;-1:-1:-1;;;20306:18:1;;;20299:31;20347:19;;36031:62:0;19975:397:1;36031:62:0;36230:21;36238:12;35393:4;35423:12;-1:-1:-1;35413:22:0;35336:105;36230:21;36229:22;36221:64;;;;-1:-1:-1;;;36221:64:0;;19819:2:1;36221:64:0;;;19801:21:1;19858:2;19838:18;;;19831:30;19897:31;19877:18;;;19870:59;19946:18;;36221:64:0;19617:353:1;36221:64:0;36312:12;36300:8;:24;;36292:71;;;;-1:-1:-1;;;36292:71:0;;22235:2:1;36292:71:0;;;22217:21:1;22274:2;22254:18;;;22247:30;22313:34;22293:18;;;22286:62;-1:-1:-1;;;22364:18:1;;;22357:32;22406:19;;36292:71:0;22033:398:1;36292:71:0;-1:-1:-1;;;;;36475:16:0;;36442:30;36475:16;;;:12;:16;;;;;;;;;36442:49;;;;;;;;;-1:-1:-1;;;;;36442:49:0;;;;;-1:-1:-1;;;36442:49:0;;;;;;;;;;;36517:119;;;;;;;;36537:19;;36442:49;;36517:119;;;36537:39;;36567:8;;36537:39;:::i;:::-;-1:-1:-1;;;;;36517:119:0;;;;;36620:8;36585:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36517:119:0;;;;;;-1:-1:-1;;;;;36498:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36498:138:0;;;;;;;;;;;;36671:43;;;;;;;;;;;36697:15;36671:43;;;;;;;;36643:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36643:71:0;-1:-1:-1;;;;;;36643:71:0;;;;;;;;;;;;;;;;;;36655:12;;36767:281;36791:8;36787:1;:12;36767:281;;;36820:38;;36845:12;;-1:-1:-1;;;;;36820:38:0;;;36837:1;;36820:38;;36837:1;;36820:38;36885:59;36916:1;36920:2;36924:12;36938:5;36885:22;:59::i;:::-;36867:150;;;;-1:-1:-1;;;36867:150:0;;;;;;;:::i;:::-;37026:14;;;;:::i;:::-;;;;36801:3;;;;;:::i;:::-;;;;36767:281;;;-1:-1:-1;37056:12:0;:27;;;37090:60;34786:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:257::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5157:63;5213:6;5206:4;5201:3;5197:14;5190:4;5183:5;5179:16;5157:63;:::i;:::-;5274:2;5253:15;-1:-1:-1;;5249:29:1;5240:39;;;;5281:4;5236:50;;5035:257;-1:-1:-1;;5035:257:1:o;5297:185::-;5339:3;5377:5;5371:12;5392:52;5437:6;5432:3;5425:4;5418:5;5414:16;5392:52;:::i;:::-;5460:16;;;;;5297:185;-1:-1:-1;;5297:185:1:o;5839:1301::-;6116:3;6145:1;6178:6;6172:13;6208:3;6230:1;6258:9;6254:2;6250:18;6240:28;;6318:2;6307:9;6303:18;6340;6330:61;;6384:4;6376:6;6372:17;6362:27;;6330:61;6410:2;6458;6450:6;6447:14;6427:18;6424:38;6421:165;;;-1:-1:-1;;;6485:33:1;;6541:4;6538:1;6531:15;6571:4;6492:3;6559:17;6421:165;6602:18;6629:104;;;;6747:1;6742:320;;;;6595:467;;6629:104;-1:-1:-1;;6662:24:1;;6650:37;;6707:16;;;;-1:-1:-1;6629:104:1;;6742:320;22971:1;22964:14;;;23008:4;22995:18;;6837:1;6851:165;6865:6;6862:1;6859:13;6851:165;;;6943:14;;6930:11;;;6923:35;6986:16;;;;6880:10;;6851:165;;;6855:3;;7045:6;7040:3;7036:16;7029:23;;6595:467;;;;;;;7078:56;7103:30;7129:3;7121:6;7103:30;:::i;:::-;-1:-1:-1;;;5547:20:1;;5592:1;5583:11;;5487:113;7078:56;7071:63;5839:1301;-1:-1:-1;;;;;5839:1301:1:o;7353:488::-;-1:-1:-1;;;;;7622:15:1;;;7604:34;;7674:15;;7669:2;7654:18;;7647:43;7721:2;7706:18;;7699:34;;;7769:3;7764:2;7749:18;;7742:31;;;7547:4;;7790:45;;7815:19;;7807:6;7790:45;:::i;:::-;7782:53;7353:488;-1:-1:-1;;;;;;7353:488:1:o;7846:632::-;8017:2;8069:21;;;8139:13;;8042:18;;;8161:22;;;7988:4;;8017:2;8240:15;;;;8214:2;8199:18;;;7988:4;8283:169;8297:6;8294:1;8291:13;8283:169;;;8358:13;;8346:26;;8427:15;;;;8392:12;;;;8319:1;8312:9;8283:169;;;-1:-1:-1;8469:3:1;;7846:632;-1:-1:-1;;;;;;7846:632:1:o;8857:219::-;9006:2;8995:9;8988:21;8969:4;9026:44;9066:2;9055:9;9051:18;9043:6;9026:44;:::i;13594:413::-;13796:2;13778:21;;;13835:2;13815:18;;;13808:30;13874:34;13869:2;13854:18;;13847:62;-1:-1:-1;;;13940:2:1;13925:18;;13918:47;13997:3;13982:19;;13594:413::o;15611:356::-;15813:2;15795:21;;;15832:18;;;15825:30;15891:34;15886:2;15871:18;;15864:62;15958:2;15943:18;;15611:356::o;19197:415::-;19399:2;19381:21;;;19438:2;19418:18;;;19411:30;19477:34;19472:2;19457:18;;19450:62;-1:-1:-1;;;19543:2:1;19528:18;;19521:49;19602:3;19587:19;;19197:415::o;22618:275::-;22689:2;22683:9;22754:2;22735:13;;-1:-1:-1;;22731:27:1;22719:40;;22789:18;22774:34;;22810:22;;;22771:62;22768:88;;;22836:18;;:::i;:::-;22872:2;22865:22;22618:275;;-1:-1:-1;22618:275:1:o;23024:253::-;23064:3;-1:-1:-1;;;;;23153:2:1;23150:1;23146:10;23183:2;23180:1;23176:10;23214:3;23210:2;23206:12;23201:3;23198:21;23195:47;;;23222:18;;:::i;:::-;23258:13;;23024:253;-1:-1:-1;;;;23024:253:1:o;23282:128::-;23322:3;23353:1;23349:6;23346:1;23343:13;23340:39;;;23359:18;;:::i;:::-;-1:-1:-1;23395:9:1;;23282:128::o;23415:120::-;23455:1;23481;23471:35;;23486:18;;:::i;:::-;-1:-1:-1;23520:9:1;;23415:120::o;23540:168::-;23580:7;23646:1;23642;23638:6;23634:14;23631:1;23628:21;23623:1;23616:9;23609:17;23605:45;23602:71;;;23653:18;;:::i;:::-;-1:-1:-1;23693:9:1;;23540:168::o;23713:246::-;23753:4;-1:-1:-1;;;;;23866:10:1;;;;23836;;23888:12;;;23885:38;;;23903:18;;:::i;:::-;23940:13;;23713:246;-1:-1:-1;;;23713:246:1:o;23964:125::-;24004:4;24032:1;24029;24026:8;24023:34;;;24037:18;;:::i;:::-;-1:-1:-1;24074:9:1;;23964:125::o;24094:258::-;24166:1;24176:113;24190:6;24187:1;24184:13;24176:113;;;24266:11;;;24260:18;24247:11;;;24240:39;24212:2;24205:10;24176:113;;;24307:6;24304:1;24301:13;24298:48;;;-1:-1:-1;;24342:1:1;24324:16;;24317:27;24094:258::o;24357:136::-;24396:3;24424:5;24414:39;;24433:18;;:::i;:::-;-1:-1:-1;;;24469:18:1;;24357:136::o;24498:380::-;24577:1;24573:12;;;;24620;;;24641:61;;24695:4;24687:6;24683:17;24673:27;;24641:61;24748:2;24740:6;24737:14;24717:18;24714:38;24711:161;;;24794:10;24789:3;24785:20;24782:1;24775:31;24829:4;24826:1;24819:15;24857:4;24854:1;24847:15;24711:161;;24498:380;;;:::o;24883:135::-;24922:3;-1:-1:-1;;24943:17:1;;24940:43;;;24963:18;;:::i;:::-;-1:-1:-1;25010:1:1;24999:13;;24883:135::o;25023:112::-;25055:1;25081;25071:35;;25086:18;;:::i;:::-;-1:-1:-1;25120:9:1;;25023:112::o;25140:127::-;25201:10;25196:3;25192:20;25189:1;25182:31;25232:4;25229:1;25222:15;25256:4;25253:1;25246:15;25272:127;25333:10;25328:3;25324:20;25321:1;25314:31;25364:4;25361:1;25354:15;25388:4;25385:1;25378:15;25404:127;25465:10;25460:3;25456:20;25453:1;25446:31;25496:4;25493:1;25486:15;25520:4;25517:1;25510:15;25536:127;25597:10;25592:3;25588:20;25585:1;25578:31;25628:4;25625:1;25618:15;25652:4;25649:1;25642:15;25668:131;-1:-1:-1;;;;;;25742:32:1;;25732:43;;25722:71;;25789:1;25786;25779:12

Swarm Source

ipfs://ae24b9a7386496f3d02c65cd4248448f7594f79f696c36e7cd2291debead2ac6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.