ETH Price: $2,295.94 (-2.04%)

Token

TiptoePunks (TIPTOE)
 

Overview

Max Total Supply

5,000 TIPTOE

Holders

500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
19 TIPTOE
0x283e549a5728bbd0e65f30a7fa043b85aef90fa9
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:
TiptoePunks

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

// File: interfaces/IToeken.sol


pragma solidity ^0.8.12;

interface IToeken {
    function update(address from, address to) external;
}
// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/v2.2.0/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: TiptoePunks.sol


pragma solidity ^0.8.12;








contract TiptoePunks is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using Strings for uint256;

    IToeken public Toeken;

    string internal _baseTokenURI;
    string internal _unrevealedURI;

    uint256 internal reserved;

    bool public revealed;
    bool public presaleActive;
    bool public saleActive;

    uint256 public presaleMintPrice = 0.04 ether;
    uint256 public publicMintPrice = 0.06 ether;
    uint256 public currentSupplyCap = 2_500;

    // presale info
    bytes32 public merkleRoot;
    mapping(address => bool) public whitelistUsed;

    uint256 public constant AMOUNT_PER_DROP = 2_500;
    uint256 public constant MAX_TOTAL_SUPPLY = 10_000;
    uint256 public constant MAX_RESERVED_AMOUNT = 250;
    uint256 public constant MAX_AMOUNT_PER_MINT = 20;
    uint96 public constant ROYALTY_BPS = 1_000; // 10%

    event Mint(address indexed owner, uint256 indexed amountMinted);

    constructor(string memory URI, bytes32 root) ERC721A("TiptoePunks", "TIPTOE") {
        _unrevealedURI = URI;
        merkleRoot = root;
        _setDefaultRoyalty(msg.sender, ROYALTY_BPS);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC2981, ERC721A) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    // URI FUNCTIONS

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!revealed) {
            return _unrevealedURI;
        }
        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    // OWNER FUNCTIONS

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

    function setUnrevealedURI(string calldata unrevealedURI) external onlyOwner {
        _unrevealedURI = unrevealedURI;
    }

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

    function setToekenAddress(address toeken) public onlyOwner {
        Toeken = IToeken(toeken);
    }

    function setPresaleMintPrice(uint256 price) public onlyOwner {
        presaleMintPrice = price;
    }

    function setPublicMintPrice(uint256 price) public onlyOwner {
        publicMintPrice = price;
    }

    function increaseSupplyCap() public onlyOwner {
        require(currentSupplyCap < MAX_TOTAL_SUPPLY, "Supply cap already maxed out");
        currentSupplyCap += AMOUNT_PER_DROP;
    }

    function flipPresaleStatus() public onlyOwner {
        presaleActive = !presaleActive;
    }

    function flipSaleStatus() public onlyOwner {
        saleActive = !saleActive;
    }

    function reveal() public onlyOwner {
        require(!revealed, "Already revealed");
        revealed = true;
    }

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

    // MINTING FUNCTIONS

    // verifies a merkle proof for whitelist checking
    function verify(
        bytes32 root,
        bytes32 leaf,
        bytes32[] memory proof
    ) public pure returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    // function to mint based off of whitelist allocation
    function presaleMint(
        uint256 amount,
        bytes32 leaf,
        bytes32[] memory proof
    ) external payable {
        require(presaleActive, "Presale not active");

        // create storage element tracking user mints if this is the first mint for them
        if (!whitelistUsed[msg.sender]) {
            // verify that msg.sender corresponds to Merkle leaf
            require(keccak256(abi.encodePacked(msg.sender)) == leaf, "Sender doesn't match Merkle leaf");

            // verify that (leaf, proof) matches the Merkle root
            require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree");

            whitelistUsed[msg.sender] = true;
        }

        require(amount <= MAX_AMOUNT_PER_MINT, "Minting too many at a time");
        require(msg.value == amount * presaleMintPrice, "Not enough ETH sent");
        require(amount + totalSupply() <= currentSupplyCap, "Would exceed max supply");

        _safeMint(msg.sender, amount);

        emit Mint(msg.sender, amount);
    }

    // function to mint in public sale
    function publicMint(uint256 amount) external payable {
        require(saleActive, "Public sale not active");
        require(amount <= MAX_AMOUNT_PER_MINT, "Minting too many at a time");
        require(msg.value == amount * publicMintPrice, "Not enough ETH sent");
        require(amount + totalSupply() <= currentSupplyCap, "Would exceed max supply");

        // _safeMint(msg.sender, amount);
        _mint(msg.sender, amount, "", false);

        emit Mint(msg.sender, amount);
    }

    // reserves 'amount' NFTs minted direct to a specified wallet
    function reserve(address to, uint256 amount) external onlyOwner {
        require(amount + totalSupply() < currentSupplyCap, "Would exceed max supply");
        require(reserved + amount <= MAX_RESERVED_AMOUNT, "Would exceed max reserved amount");

        _safeMint(to, amount);
        reserved += amount;

        emit Mint(to, amount);
    }

    // OVERRIDES

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        if (address(Toeken) != address(0)) {
            Toeken.update(from, to);
        }

        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        if (address(Toeken) != address(0)) {
            Toeken.update(from, to);
        }

        super.safeTransferFrom(from, to, tokenId, '');
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override {
        if (address(Toeken) != address(0)) {
            Toeken.update(from, to);
        }

        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"URI","type":"string"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"Mint","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":"AMOUNT_PER_DROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AMOUNT_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_BPS","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Toeken","outputs":[{"internalType":"contract IToeken","name":"","type":"address"}],"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":"currentSupplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"increaseSupplyCap","outputs":[],"stateMutability":"nonpayable","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPresaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toeken","type":"address"}],"name":"setToekenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf04000060105566d529ae9e8600006011556109c46012553480156200002d57600080fd5b5060405162002ea838038062002ea8833981016040819052620000509162000321565b604080518082018252600b81526a546970746f6550756e6b7360a81b602080830191825283518085019094526006845265544950544f4560d01b908401528151919291620000a19160019162000265565b508051620000b790600290602084019062000265565b505050620000d4620000ce6200010a60201b60201c565b6200010e565b6001600a558151620000ee90600d90602085019062000265565b50601381905562000102336103e862000160565b505062000443565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001d45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200022c5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001cb565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b828054620002739062000406565b90600052602060002090601f016020900481019282620002975760008555620002e2565b82601f10620002b257805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e2578251825591602001919060010190620002c5565b50620002f0929150620002f4565b5090565b5b80821115620002f05760008155600101620002f5565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200033557600080fd5b82516001600160401b03808211156200034d57600080fd5b818501915085601f8301126200036257600080fd5b8151818111156200037757620003776200030b565b604051601f8201601f19908116603f01168101908382118183101715620003a257620003a26200030b565b81604052828152602093508884848701011115620003bf57600080fd5b600091505b82821015620003e35784820184015181830185015290830190620003c4565b82821115620003f55760008484830101525b969092015195979596505050505050565b600181811c908216806200041b57607f821691505b602082108114156200043d57634e487b7160e01b600052602260045260246000fd5b50919050565b612a5580620004536000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063b575642b116100dc578063ce03ec9311610095578063f09f18e31161006f578063f09f18e314610841578063f2fde38b14610856578063f413889714610876578063fe2c7fee1461088b57600080fd5b8063ce03ec93146107cd578063dc53fd92146107e2578063e985e9c5146107f857600080fd5b8063b575642b1461071a578063b69c9e781461073a578063b88d4fde1461074d578063c7e917df1461076d578063c87b56dd1461078d578063cc47a40b146107ad57600080fd5b80638da5cb5b1161012e5780638da5cb5b1461068757806395d89b41146106a5578063969a5c8a146106ba578063a22cb465146106d0578063a475b5dd146106f0578063b2e232531461070557600080fd5b80636352211e146105dc57806368428a1b146105fc57806370a082311461061c578063715018a61461063c578063781c34ed146106515780637cb647591461066757600080fd5b806333039d3d116102195780634f6ccce7116101d25780634f6ccce71461052d578063518302271461054d57806353135ca01461056757806355f804b3146105865780635be50521146105a65780635d82cf6e146105bc57600080fd5b806333039d3d146104745780633423e5481461048a57806337a13193146104aa5780633ccfd60b146104ca57806342842e0e146104df57806349c657db146104ff57600080fd5b806321328f9e1161026b57806321328f9e1461039c57806323b872dd146103cc5780632a55205a146103ec5780632db115441461042b5780632eb4a7ab1461043e5780632f745c591461045457600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780631725051f1461036457806318160ddd14610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612409565b6108ab565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108bc565b6040516102df919061247e565b34801561031657600080fd5b5061032a610325366004612491565b61094e565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046124c6565b610992565b005b34801561037057600080fd5b50610362610a20565b34801561038557600080fd5b5061038e610a70565b6040519081526020016102df565b3480156103a857600080fd5b506102d36103b73660046124f0565b60146020526000908152604090205460ff1681565b3480156103d857600080fd5b506103626103e736600461250b565b610a8f565b3480156103f857600080fd5b5061040c610407366004612547565b610b13565b604080516001600160a01b0390931683526020830191909152016102df565b610362610439366004612491565b610bbf565b34801561044a57600080fd5b5061038e60135481565b34801561046057600080fd5b5061038e61046f3660046124c6565b610d31565b34801561048057600080fd5b5061038e61271081565b34801561049657600080fd5b506102d36104a536600461262e565b610e2d565b3480156104b657600080fd5b506103626104c5366004612491565b610e42565b3480156104d657600080fd5b50610362610e71565b3480156104eb57600080fd5b506103626104fa36600461250b565b610f85565b34801561050b57600080fd5b506105156103e881565b6040516001600160601b0390911681526020016102df565b34801561053957600080fd5b5061038e610548366004612491565b611019565b34801561055957600080fd5b50600f546102d39060ff1681565b34801561057357600080fd5b50600f546102d390610100900460ff1681565b34801561059257600080fd5b506103626105a136600461267d565b6110c3565b3480156105b257600080fd5b5061038e60105481565b3480156105c857600080fd5b506103626105d7366004612491565b6110f9565b3480156105e857600080fd5b5061032a6105f7366004612491565b611128565b34801561060857600080fd5b50600f546102d39062010000900460ff1681565b34801561062857600080fd5b5061038e6106373660046124f0565b61113a565b34801561064857600080fd5b50610362611188565b34801561065d57600080fd5b5061038e60125481565b34801561067357600080fd5b50610362610682366004612491565b6111be565b34801561069357600080fd5b506009546001600160a01b031661032a565b3480156106b157600080fd5b506102fd6111ed565b3480156106c657600080fd5b5061038e6109c481565b3480156106dc57600080fd5b506103626106eb3660046126ee565b6111fc565b3480156106fc57600080fd5b50610362611292565b34801561071157600080fd5b50610362611311565b34801561072657600080fd5b50600b5461032a906001600160a01b031681565b61036261074836600461262e565b6113a9565b34801561075957600080fd5b5061036261076836600461272a565b611620565b34801561077957600080fd5b506103626107883660046124f0565b6116ab565b34801561079957600080fd5b506102fd6107a8366004612491565b6116f7565b3480156107b957600080fd5b506103626107c83660046124c6565b6117f3565b3480156107d957600080fd5b50610362611908565b3480156107ee57600080fd5b5061038e60115481565b34801561080457600080fd5b506102d36108133660046127e9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561084d57600080fd5b5061038e60fa81565b34801561086257600080fd5b506103626108713660046124f0565b611951565b34801561088257600080fd5b5061038e601481565b34801561089757600080fd5b506103626108a636600461267d565b6119ec565b60006108b682611a22565b92915050565b6060600180546108cb9061281c565b80601f01602080910402602001604051908101604052809291908181526020018280546108f79061281c565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061095982611a47565b610976576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061099d82611128565b9050806001600160a01b0316836001600160a01b031614156109d25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109f257506109f08133610813565b155b15610a10576040516367d9dca160e11b815260040160405180910390fd5b610a1b838383611a7b565b505050565b6009546001600160a01b03163314610a535760405162461bcd60e51b8152600401610a4a90612857565b60405180910390fd5b600f805461ff001981166101009182900460ff1615909102179055565b6000546001600160801b03600160801b82048116918116919091031690565b600b546001600160a01b031615610b0857600b5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b158015610aef57600080fd5b505af1158015610b03573d6000803e3d6000fd5b505050505b610a1b838383611ad7565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b885750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba7906001600160601b0316876128a2565b610bb191906128d7565b915196919550909350505050565b600f5462010000900460ff16610c105760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610a4a565b6014811115610c615760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e6720746f6f206d616e7920617420612074696d650000000000006044820152606401610a4a565b601154610c6e90826128a2565b3414610cb25760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a4a565b601254610cbd610a70565b610cc790836128eb565b1115610ce55760405162461bcd60e51b8152600401610a4a90612903565b610d013382604051806020016040528060008152506000611ae2565b604051819033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a350565b6000610d3c8361113a565b8210610d5b576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610e2757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610dd35750610e1f565b80516001600160a01b031615610de857805192505b876001600160a01b0316836001600160a01b03161415610e1d5786841415610e16575093506108b692505050565b6001909301925b505b600101610d6c565b50600080fd5b6000610e3a828585611c6d565b949350505050565b6009546001600160a01b03163314610e6c5760405162461bcd60e51b8152600401610a4a90612857565b601055565b6009546001600160a01b03163314610e9b5760405162461bcd60e51b8152600401610a4a90612857565b6002600a541415610eee5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a4a565b6002600a55604051600090339047908381818185875af1925050503d8060008114610f35576040519150601f19603f3d011682016040523d82523d6000602084013e610f3a565b606091505b5050905080610f7d5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610a4a565b506001600a55565b600b546001600160a01b031615610ffe57600b5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b158015610fe557600080fd5b505af1158015610ff9573d6000803e3d6000fd5b505050505b610a1b83838360405180602001604052806000815250611c83565b600080546001600160801b031681805b828110156110a957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906110a057858314156110995750949350505050565b6001909201915b50600101611029565b506040516329c8c00760e21b815260040160405180910390fd5b6009546001600160a01b031633146110ed5760405162461bcd60e51b8152600401610a4a90612857565b610a1b600c838361235a565b6009546001600160a01b031633146111235760405162461bcd60e51b8152600401610a4a90612857565b601155565b600061113382611cb7565b5192915050565b60006001600160a01b038216611163576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6009546001600160a01b031633146111b25760405162461bcd60e51b8152600401610a4a90612857565b6111bc6000611dd9565b565b6009546001600160a01b031633146111e85760405162461bcd60e51b8152600401610a4a90612857565b601355565b6060600280546108cb9061281c565b6001600160a01b0382163314156112265760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146112bc5760405162461bcd60e51b8152600401610a4a90612857565b600f5460ff16156113025760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b6044820152606401610a4a565b600f805460ff19166001179055565b6009546001600160a01b0316331461133b5760405162461bcd60e51b8152600401610a4a90612857565b6127106012541061138e5760405162461bcd60e51b815260206004820152601c60248201527f537570706c792063617020616c7265616479206d61786564206f7574000000006044820152606401610a4a565b6109c4601260008282546113a291906128eb565b9091555050565b600f54610100900460ff166113f55760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610a4a565b3360009081526014602052604090205460ff1661150f576040516bffffffffffffffffffffffff193360601b1660208201528290603401604051602081830303815290604052805190602001201461148f5760405162461bcd60e51b815260206004820181905260248201527f53656e64657220646f65736e2774206d61746368204d65726b6c65206c6561666044820152606401610a4a565b61149c6013548383610e2d565b6114f45760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610a4a565b336000908152601460205260409020805460ff191660011790555b60148311156115605760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e6720746f6f206d616e7920617420612074696d650000000000006044820152606401610a4a565b60105461156d90846128a2565b34146115b15760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a4a565b6012546115bc610a70565b6115c690856128eb565b11156115e45760405162461bcd60e51b8152600401610a4a90612903565b6115ee3384611e2b565b604051839033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a3505050565b600b546001600160a01b03161561169957600b5460405163c640752d60e01b81526001600160a01b03868116600483015285811660248301529091169063c640752d90604401600060405180830381600087803b15801561168057600080fd5b505af1158015611694573d6000803e3d6000fd5b505050505b6116a584848484611c83565b50505050565b6009546001600160a01b031633146116d55760405162461bcd60e51b8152600401610a4a90612857565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600f5460609060ff1661179657600d80546117119061281c565b80601f016020809104026020016040519081016040528092919081815260200182805461173d9061281c565b801561178a5780601f1061175f5761010080835404028352916020019161178a565b820191906000526020600020905b81548152906001019060200180831161176d57829003601f168201915b50505050509050919050565b60006117a0611e49565b90508051600014156117c157604051806020016040528060008152506117ec565b806117cb84611e58565b6040516020016117dc92919061293a565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461181d5760405162461bcd60e51b8152600401610a4a90612857565b601254611828610a70565b61183290836128eb565b1061184f5760405162461bcd60e51b8152600401610a4a90612903565b60fa81600e5461185f91906128eb565b11156118ad5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e746044820152606401610a4a565b6118b78282611e2b565b80600e60008282546118c991906128eb565b909155505060405181906001600160a01b038416907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a35050565b6009546001600160a01b031633146119325760405162461bcd60e51b8152600401610a4a90612857565b600f805462ff0000198116620100009182900460ff1615909102179055565b6009546001600160a01b0316331461197b5760405162461bcd60e51b8152600401610a4a90612857565b6001600160a01b0381166119e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4a565b6119e981611dd9565b50565b6009546001600160a01b03163314611a165760405162461bcd60e51b8152600401610a4a90612857565b610a1b600d838361235a565b60006001600160e01b0319821663152a902d60e11b14806108b657506108b682611f55565b600080546001600160801b0316821080156108b6575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a1b838383611fc0565b6000546001600160801b03166001600160a01b038516611b1457604051622e076360e81b815260040160405180910390fd5b83611b325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611c445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611c1a5750611c1860008884886121da565b155b15611c38576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611bc3565b50600080546001600160801b0319166001600160801b03929092169190911790555b5050505050565b600082611c7a85846122d9565b14949350505050565b611c8e848484611fc0565b611c9a848484846121da565b6116a5576040516368d2bf6b60e11b815260040160405180910390fd5b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611dc057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611dbe5780516001600160a01b031615611d55579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611db9579392505050565b611d55565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e4582826040518060200160405280600081525061234d565b5050565b6060600c80546108cb9061281c565b606081611e7c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ea65780611e9081612969565b9150611e9f9050600a836128d7565b9150611e80565b6000816001600160401b03811115611ec057611ec0612569565b6040519080825280601f01601f191660200182016040528015611eea576020820181803683370190505b5090505b8415610e3a57611eff600183612984565b9150611f0c600a8661299b565b611f179060306128eb565b60f81b818381518110611f2c57611f2c6129af565b60200101906001600160f81b031916908160001a905350611f4e600a866128d7565b9450611eee565b60006001600160e01b031982166380ac58cd60e01b1480611f8657506001600160e01b03198216635b5e139f60e01b145b80611fa157506001600160e01b0319821663780e9d6360e01b145b806108b657506301ffc9a760e01b6001600160e01b03198316146108b6565b6000611fcb82611cb7565b80519091506000906001600160a01b0316336001600160a01b03161480611ff957508151611ff99033610813565b806120145750336120098461094e565b6001600160a01b0316145b90508061203457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146120695760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661209057604051633a954ecd60e21b815260040160405180910390fd5b6120a06000848460000151611a7b565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116612193576000546001600160801b031681101561219357825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c66565b60006001600160a01b0384163b156122ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061221e9033908990889088906004016129c5565b6020604051808303816000875af1925050508015612259575060408051601f3d908101601f1916820190925261225691810190612a02565b60015b6122b4573d808015612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b5080516122ac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e3a565b506001949350505050565b600081815b84518110156123455760008582815181106122fb576122fb6129af565b602002602001015190508083116123215760008381526020829052604090209250612332565b600081815260208490526040902092505b508061233d81612969565b9150506122de565b509392505050565b610a1b8383836001611ae2565b8280546123669061281c565b90600052602060002090601f01602090048101928261238857600085556123ce565b82601f106123a15782800160ff198235161785556123ce565b828001600101855582156123ce579182015b828111156123ce5782358255916020019190600101906123b3565b506123da9291506123de565b5090565b5b808211156123da57600081556001016123df565b6001600160e01b0319811681146119e957600080fd5b60006020828403121561241b57600080fd5b81356117ec816123f3565b60005b83811015612441578181015183820152602001612429565b838111156116a55750506000910152565b6000815180845261246a816020860160208601612426565b601f01601f19169290920160200192915050565b6020815260006117ec6020830184612452565b6000602082840312156124a357600080fd5b5035919050565b80356001600160a01b03811681146124c157600080fd5b919050565b600080604083850312156124d957600080fd5b6124e2836124aa565b946020939093013593505050565b60006020828403121561250257600080fd5b6117ec826124aa565b60008060006060848603121561252057600080fd5b612529846124aa565b9250612537602085016124aa565b9150604084013590509250925092565b6000806040838503121561255a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125a7576125a7612569565b604052919050565b600082601f8301126125c057600080fd5b813560206001600160401b038211156125db576125db612569565b8160051b6125ea82820161257f565b928352848101820192828101908785111561260457600080fd5b83870192505b848310156126235782358252918301919083019061260a565b979650505050505050565b60008060006060848603121561264357600080fd5b833592506020840135915060408401356001600160401b0381111561266757600080fd5b612673868287016125af565b9150509250925092565b6000806020838503121561269057600080fd5b82356001600160401b03808211156126a757600080fd5b818501915085601f8301126126bb57600080fd5b8135818111156126ca57600080fd5b8660208285010111156126dc57600080fd5b60209290920196919550909350505050565b6000806040838503121561270157600080fd5b61270a836124aa565b91506020830135801515811461271f57600080fd5b809150509250929050565b6000806000806080858703121561274057600080fd5b612749856124aa565b935060206127588187016124aa565b93506040860135925060608601356001600160401b038082111561277b57600080fd5b818801915088601f83011261278f57600080fd5b8135818111156127a1576127a1612569565b6127b3601f8201601f1916850161257f565b915080825289848285010111156127c957600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156127fc57600080fd5b612805836124aa565b9150612813602084016124aa565b90509250929050565b600181811c9082168061283057607f821691505b6020821081141561285157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128bc576128bc61288c565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826128e6576128e66128c1565b500490565b600082198211156128fe576128fe61288c565b500190565b60208082526017908201527f576f756c6420657863656564206d617820737570706c79000000000000000000604082015260600190565b6000835161294c818460208801612426565b835190830190612960818360208801612426565b01949350505050565b600060001982141561297d5761297d61288c565b5060010190565b6000828210156129965761299661288c565b500390565b6000826129aa576129aa6128c1565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f890830184612452565b9695505050505050565b600060208284031215612a1457600080fd5b81516117ec816123f356fea26469706673582212209bf41247c304ca4cdf63c4020082d7e5390835f1edecedaf25f9a8a02ade92d164736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000405bae14ca969653b83cbc2d72a94a4f50c825407c25b724ef8388da02881c0ec90000000000000000000000000000000000000000000000000000000000000044697066733a2f2f62616679626569676d6d33367374337a687778696f78717236796a7068716b73326d6e65337a6a636c66363365326f6c656e68757779777a7475712f3000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e11610175578063b575642b116100dc578063ce03ec9311610095578063f09f18e31161006f578063f09f18e314610841578063f2fde38b14610856578063f413889714610876578063fe2c7fee1461088b57600080fd5b8063ce03ec93146107cd578063dc53fd92146107e2578063e985e9c5146107f857600080fd5b8063b575642b1461071a578063b69c9e781461073a578063b88d4fde1461074d578063c7e917df1461076d578063c87b56dd1461078d578063cc47a40b146107ad57600080fd5b80638da5cb5b1161012e5780638da5cb5b1461068757806395d89b41146106a5578063969a5c8a146106ba578063a22cb465146106d0578063a475b5dd146106f0578063b2e232531461070557600080fd5b80636352211e146105dc57806368428a1b146105fc57806370a082311461061c578063715018a61461063c578063781c34ed146106515780637cb647591461066757600080fd5b806333039d3d116102195780634f6ccce7116101d25780634f6ccce71461052d578063518302271461054d57806353135ca01461056757806355f804b3146105865780635be50521146105a65780635d82cf6e146105bc57600080fd5b806333039d3d146104745780633423e5481461048a57806337a13193146104aa5780633ccfd60b146104ca57806342842e0e146104df57806349c657db146104ff57600080fd5b806321328f9e1161026b57806321328f9e1461039c57806323b872dd146103cc5780632a55205a146103ec5780632db115441461042b5780632eb4a7ab1461043e5780632f745c591461045457600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780631725051f1461036457806318160ddd14610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612409565b6108ab565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108bc565b6040516102df919061247e565b34801561031657600080fd5b5061032a610325366004612491565b61094e565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046124c6565b610992565b005b34801561037057600080fd5b50610362610a20565b34801561038557600080fd5b5061038e610a70565b6040519081526020016102df565b3480156103a857600080fd5b506102d36103b73660046124f0565b60146020526000908152604090205460ff1681565b3480156103d857600080fd5b506103626103e736600461250b565b610a8f565b3480156103f857600080fd5b5061040c610407366004612547565b610b13565b604080516001600160a01b0390931683526020830191909152016102df565b610362610439366004612491565b610bbf565b34801561044a57600080fd5b5061038e60135481565b34801561046057600080fd5b5061038e61046f3660046124c6565b610d31565b34801561048057600080fd5b5061038e61271081565b34801561049657600080fd5b506102d36104a536600461262e565b610e2d565b3480156104b657600080fd5b506103626104c5366004612491565b610e42565b3480156104d657600080fd5b50610362610e71565b3480156104eb57600080fd5b506103626104fa36600461250b565b610f85565b34801561050b57600080fd5b506105156103e881565b6040516001600160601b0390911681526020016102df565b34801561053957600080fd5b5061038e610548366004612491565b611019565b34801561055957600080fd5b50600f546102d39060ff1681565b34801561057357600080fd5b50600f546102d390610100900460ff1681565b34801561059257600080fd5b506103626105a136600461267d565b6110c3565b3480156105b257600080fd5b5061038e60105481565b3480156105c857600080fd5b506103626105d7366004612491565b6110f9565b3480156105e857600080fd5b5061032a6105f7366004612491565b611128565b34801561060857600080fd5b50600f546102d39062010000900460ff1681565b34801561062857600080fd5b5061038e6106373660046124f0565b61113a565b34801561064857600080fd5b50610362611188565b34801561065d57600080fd5b5061038e60125481565b34801561067357600080fd5b50610362610682366004612491565b6111be565b34801561069357600080fd5b506009546001600160a01b031661032a565b3480156106b157600080fd5b506102fd6111ed565b3480156106c657600080fd5b5061038e6109c481565b3480156106dc57600080fd5b506103626106eb3660046126ee565b6111fc565b3480156106fc57600080fd5b50610362611292565b34801561071157600080fd5b50610362611311565b34801561072657600080fd5b50600b5461032a906001600160a01b031681565b61036261074836600461262e565b6113a9565b34801561075957600080fd5b5061036261076836600461272a565b611620565b34801561077957600080fd5b506103626107883660046124f0565b6116ab565b34801561079957600080fd5b506102fd6107a8366004612491565b6116f7565b3480156107b957600080fd5b506103626107c83660046124c6565b6117f3565b3480156107d957600080fd5b50610362611908565b3480156107ee57600080fd5b5061038e60115481565b34801561080457600080fd5b506102d36108133660046127e9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561084d57600080fd5b5061038e60fa81565b34801561086257600080fd5b506103626108713660046124f0565b611951565b34801561088257600080fd5b5061038e601481565b34801561089757600080fd5b506103626108a636600461267d565b6119ec565b60006108b682611a22565b92915050565b6060600180546108cb9061281c565b80601f01602080910402602001604051908101604052809291908181526020018280546108f79061281c565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061095982611a47565b610976576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061099d82611128565b9050806001600160a01b0316836001600160a01b031614156109d25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109f257506109f08133610813565b155b15610a10576040516367d9dca160e11b815260040160405180910390fd5b610a1b838383611a7b565b505050565b6009546001600160a01b03163314610a535760405162461bcd60e51b8152600401610a4a90612857565b60405180910390fd5b600f805461ff001981166101009182900460ff1615909102179055565b6000546001600160801b03600160801b82048116918116919091031690565b600b546001600160a01b031615610b0857600b5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b158015610aef57600080fd5b505af1158015610b03573d6000803e3d6000fd5b505050505b610a1b838383611ad7565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b885750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba7906001600160601b0316876128a2565b610bb191906128d7565b915196919550909350505050565b600f5462010000900460ff16610c105760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610a4a565b6014811115610c615760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e6720746f6f206d616e7920617420612074696d650000000000006044820152606401610a4a565b601154610c6e90826128a2565b3414610cb25760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a4a565b601254610cbd610a70565b610cc790836128eb565b1115610ce55760405162461bcd60e51b8152600401610a4a90612903565b610d013382604051806020016040528060008152506000611ae2565b604051819033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a350565b6000610d3c8361113a565b8210610d5b576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610e2757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610dd35750610e1f565b80516001600160a01b031615610de857805192505b876001600160a01b0316836001600160a01b03161415610e1d5786841415610e16575093506108b692505050565b6001909301925b505b600101610d6c565b50600080fd5b6000610e3a828585611c6d565b949350505050565b6009546001600160a01b03163314610e6c5760405162461bcd60e51b8152600401610a4a90612857565b601055565b6009546001600160a01b03163314610e9b5760405162461bcd60e51b8152600401610a4a90612857565b6002600a541415610eee5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a4a565b6002600a55604051600090339047908381818185875af1925050503d8060008114610f35576040519150601f19603f3d011682016040523d82523d6000602084013e610f3a565b606091505b5050905080610f7d5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610a4a565b506001600a55565b600b546001600160a01b031615610ffe57600b5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b158015610fe557600080fd5b505af1158015610ff9573d6000803e3d6000fd5b505050505b610a1b83838360405180602001604052806000815250611c83565b600080546001600160801b031681805b828110156110a957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906110a057858314156110995750949350505050565b6001909201915b50600101611029565b506040516329c8c00760e21b815260040160405180910390fd5b6009546001600160a01b031633146110ed5760405162461bcd60e51b8152600401610a4a90612857565b610a1b600c838361235a565b6009546001600160a01b031633146111235760405162461bcd60e51b8152600401610a4a90612857565b601155565b600061113382611cb7565b5192915050565b60006001600160a01b038216611163576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6009546001600160a01b031633146111b25760405162461bcd60e51b8152600401610a4a90612857565b6111bc6000611dd9565b565b6009546001600160a01b031633146111e85760405162461bcd60e51b8152600401610a4a90612857565b601355565b6060600280546108cb9061281c565b6001600160a01b0382163314156112265760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146112bc5760405162461bcd60e51b8152600401610a4a90612857565b600f5460ff16156113025760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b6044820152606401610a4a565b600f805460ff19166001179055565b6009546001600160a01b0316331461133b5760405162461bcd60e51b8152600401610a4a90612857565b6127106012541061138e5760405162461bcd60e51b815260206004820152601c60248201527f537570706c792063617020616c7265616479206d61786564206f7574000000006044820152606401610a4a565b6109c4601260008282546113a291906128eb565b9091555050565b600f54610100900460ff166113f55760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610a4a565b3360009081526014602052604090205460ff1661150f576040516bffffffffffffffffffffffff193360601b1660208201528290603401604051602081830303815290604052805190602001201461148f5760405162461bcd60e51b815260206004820181905260248201527f53656e64657220646f65736e2774206d61746368204d65726b6c65206c6561666044820152606401610a4a565b61149c6013548383610e2d565b6114f45760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610a4a565b336000908152601460205260409020805460ff191660011790555b60148311156115605760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e6720746f6f206d616e7920617420612074696d650000000000006044820152606401610a4a565b60105461156d90846128a2565b34146115b15760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a4a565b6012546115bc610a70565b6115c690856128eb565b11156115e45760405162461bcd60e51b8152600401610a4a90612903565b6115ee3384611e2b565b604051839033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a3505050565b600b546001600160a01b03161561169957600b5460405163c640752d60e01b81526001600160a01b03868116600483015285811660248301529091169063c640752d90604401600060405180830381600087803b15801561168057600080fd5b505af1158015611694573d6000803e3d6000fd5b505050505b6116a584848484611c83565b50505050565b6009546001600160a01b031633146116d55760405162461bcd60e51b8152600401610a4a90612857565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600f5460609060ff1661179657600d80546117119061281c565b80601f016020809104026020016040519081016040528092919081815260200182805461173d9061281c565b801561178a5780601f1061175f5761010080835404028352916020019161178a565b820191906000526020600020905b81548152906001019060200180831161176d57829003601f168201915b50505050509050919050565b60006117a0611e49565b90508051600014156117c157604051806020016040528060008152506117ec565b806117cb84611e58565b6040516020016117dc92919061293a565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461181d5760405162461bcd60e51b8152600401610a4a90612857565b601254611828610a70565b61183290836128eb565b1061184f5760405162461bcd60e51b8152600401610a4a90612903565b60fa81600e5461185f91906128eb565b11156118ad5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e746044820152606401610a4a565b6118b78282611e2b565b80600e60008282546118c991906128eb565b909155505060405181906001600160a01b038416907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a35050565b6009546001600160a01b031633146119325760405162461bcd60e51b8152600401610a4a90612857565b600f805462ff0000198116620100009182900460ff1615909102179055565b6009546001600160a01b0316331461197b5760405162461bcd60e51b8152600401610a4a90612857565b6001600160a01b0381166119e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4a565b6119e981611dd9565b50565b6009546001600160a01b03163314611a165760405162461bcd60e51b8152600401610a4a90612857565b610a1b600d838361235a565b60006001600160e01b0319821663152a902d60e11b14806108b657506108b682611f55565b600080546001600160801b0316821080156108b6575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a1b838383611fc0565b6000546001600160801b03166001600160a01b038516611b1457604051622e076360e81b815260040160405180910390fd5b83611b325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611c445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611c1a5750611c1860008884886121da565b155b15611c38576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611bc3565b50600080546001600160801b0319166001600160801b03929092169190911790555b5050505050565b600082611c7a85846122d9565b14949350505050565b611c8e848484611fc0565b611c9a848484846121da565b6116a5576040516368d2bf6b60e11b815260040160405180910390fd5b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611dc057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611dbe5780516001600160a01b031615611d55579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611db9579392505050565b611d55565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e4582826040518060200160405280600081525061234d565b5050565b6060600c80546108cb9061281c565b606081611e7c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ea65780611e9081612969565b9150611e9f9050600a836128d7565b9150611e80565b6000816001600160401b03811115611ec057611ec0612569565b6040519080825280601f01601f191660200182016040528015611eea576020820181803683370190505b5090505b8415610e3a57611eff600183612984565b9150611f0c600a8661299b565b611f179060306128eb565b60f81b818381518110611f2c57611f2c6129af565b60200101906001600160f81b031916908160001a905350611f4e600a866128d7565b9450611eee565b60006001600160e01b031982166380ac58cd60e01b1480611f8657506001600160e01b03198216635b5e139f60e01b145b80611fa157506001600160e01b0319821663780e9d6360e01b145b806108b657506301ffc9a760e01b6001600160e01b03198316146108b6565b6000611fcb82611cb7565b80519091506000906001600160a01b0316336001600160a01b03161480611ff957508151611ff99033610813565b806120145750336120098461094e565b6001600160a01b0316145b90508061203457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146120695760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661209057604051633a954ecd60e21b815260040160405180910390fd5b6120a06000848460000151611a7b565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116612193576000546001600160801b031681101561219357825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c66565b60006001600160a01b0384163b156122ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061221e9033908990889088906004016129c5565b6020604051808303816000875af1925050508015612259575060408051601f3d908101601f1916820190925261225691810190612a02565b60015b6122b4573d808015612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b5080516122ac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e3a565b506001949350505050565b600081815b84518110156123455760008582815181106122fb576122fb6129af565b602002602001015190508083116123215760008381526020829052604090209250612332565b600081815260208490526040902092505b508061233d81612969565b9150506122de565b509392505050565b610a1b8383836001611ae2565b8280546123669061281c565b90600052602060002090601f01602090048101928261238857600085556123ce565b82601f106123a15782800160ff198235161785556123ce565b828001600101855582156123ce579182015b828111156123ce5782358255916020019190600101906123b3565b506123da9291506123de565b5090565b5b808211156123da57600081556001016123df565b6001600160e01b0319811681146119e957600080fd5b60006020828403121561241b57600080fd5b81356117ec816123f3565b60005b83811015612441578181015183820152602001612429565b838111156116a55750506000910152565b6000815180845261246a816020860160208601612426565b601f01601f19169290920160200192915050565b6020815260006117ec6020830184612452565b6000602082840312156124a357600080fd5b5035919050565b80356001600160a01b03811681146124c157600080fd5b919050565b600080604083850312156124d957600080fd5b6124e2836124aa565b946020939093013593505050565b60006020828403121561250257600080fd5b6117ec826124aa565b60008060006060848603121561252057600080fd5b612529846124aa565b9250612537602085016124aa565b9150604084013590509250925092565b6000806040838503121561255a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125a7576125a7612569565b604052919050565b600082601f8301126125c057600080fd5b813560206001600160401b038211156125db576125db612569565b8160051b6125ea82820161257f565b928352848101820192828101908785111561260457600080fd5b83870192505b848310156126235782358252918301919083019061260a565b979650505050505050565b60008060006060848603121561264357600080fd5b833592506020840135915060408401356001600160401b0381111561266757600080fd5b612673868287016125af565b9150509250925092565b6000806020838503121561269057600080fd5b82356001600160401b03808211156126a757600080fd5b818501915085601f8301126126bb57600080fd5b8135818111156126ca57600080fd5b8660208285010111156126dc57600080fd5b60209290920196919550909350505050565b6000806040838503121561270157600080fd5b61270a836124aa565b91506020830135801515811461271f57600080fd5b809150509250929050565b6000806000806080858703121561274057600080fd5b612749856124aa565b935060206127588187016124aa565b93506040860135925060608601356001600160401b038082111561277b57600080fd5b818801915088601f83011261278f57600080fd5b8135818111156127a1576127a1612569565b6127b3601f8201601f1916850161257f565b915080825289848285010111156127c957600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156127fc57600080fd5b612805836124aa565b9150612813602084016124aa565b90509250929050565b600181811c9082168061283057607f821691505b6020821081141561285157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128bc576128bc61288c565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826128e6576128e66128c1565b500490565b600082198211156128fe576128fe61288c565b500190565b60208082526017908201527f576f756c6420657863656564206d617820737570706c79000000000000000000604082015260600190565b6000835161294c818460208801612426565b835190830190612960818360208801612426565b01949350505050565b600060001982141561297d5761297d61288c565b5060010190565b6000828210156129965761299661288c565b500390565b6000826129aa576129aa6128c1565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f890830184612452565b9695505050505050565b600060208284031215612a1457600080fd5b81516117ec816123f356fea26469706673582212209bf41247c304ca4cdf63c4020082d7e5390835f1edecedaf25f9a8a02ade92d164736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000405bae14ca969653b83cbc2d72a94a4f50c825407c25b724ef8388da02881c0ec90000000000000000000000000000000000000000000000000000000000000044697066733a2f2f62616679626569676d6d33367374337a687778696f78717236796a7068716b73326d6e65337a6a636c66363365326f6c656e68757779777a7475712f3000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : URI (string): ipfs://bafybeigmm36st3zhwxioxqr6yjphqks2mne3zjclf63e2olenhuwywztuq/0
Arg [1] : root (bytes32): 0x5bae14ca969653b83cbc2d72a94a4f50c825407c25b724ef8388da02881c0ec9

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 5bae14ca969653b83cbc2d72a94a4f50c825407c25b724ef8388da02881c0ec9
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 697066733a2f2f62616679626569676d6d33367374337a687778696f78717236
Arg [4] : 796a7068716b73326d6e65337a6a636c66363365326f6c656e68757779777a74
Arg [5] : 75712f3000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56978:6499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58129:163;;;;;;;;;;-1:-1:-1;58129:163:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;58129:163:0;;;;;;;;40524:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42027:204::-;;;;;;;;;;-1:-1:-1;42027:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;42027:204:0;1528:203:1;41590:371:0;;;;;;;;;;-1:-1:-1;41590:371:0;;;;;:::i;:::-;;:::i;:::-;;59685:95;;;;;;;;;;;;;:::i;35151:280::-;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;35151:280:0;2173:177:1;57517:45:0;;;;;;;;;;-1:-1:-1;57517:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;62600:268;;;;;;;;;;-1:-1:-1;62600:268:0;;;;;:::i;:::-;;:::i;21087:494::-;;;;;;;;;;-1:-1:-1;21087:494:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3324:32:1;;;3306:51;;3388:2;3373:18;;3366:34;;;;3279:18;21087:494:0;3132:274:1;61645:499:0;;;;;;:::i;:::-;;:::i;57485:25::-;;;;;;;;;;;;;;;;36737:1105;;;;;;;;;;-1:-1:-1;36737:1105:0;;;;;:::i;:::-;;:::i;57625:49::-;;;;;;;;;;;;57668:6;57625:49;;60284:192;;;;;;;;;;-1:-1:-1;60284:192:0;;;;;:::i;:::-;;:::i;59268:104::-;;;;;;;;;;-1:-1:-1;59268:104:0;;;;;:::i;:::-;;:::i;60008:185::-;;;;;;;;;;;;;:::i;62876:280::-;;;;;;;;;;-1:-1:-1;62876:280:0;;;;;:::i;:::-;;:::i;57792:42::-;;;;;;;;;;;;57829:5;57792:42;;;;;-1:-1:-1;;;;;5373:39:1;;;5355:58;;5343:2;5328:18;57792:42:0;5211:208:1;35724:713:0;;;;;;;;;;-1:-1:-1;35724:713:0;;;;;:::i;:::-;;:::i;57225:20::-;;;;;;;;;;-1:-1:-1;57225:20:0;;;;;;;;57252:25;;;;;;;;;;-1:-1:-1;57252:25:0;;;;;;;;;;;58799:106;;;;;;;;;;-1:-1:-1;58799:106:0;;;;;:::i;:::-;;:::i;57315:44::-;;;;;;;;;;;;;;;;59380:102;;;;;;;;;;-1:-1:-1;59380:102:0;;;;;:::i;:::-;;:::i;40333:124::-;;;;;;;;;;-1:-1:-1;40333:124:0;;;;;:::i;:::-;;:::i;57284:22::-;;;;;;;;;;-1:-1:-1;57284:22:0;;;;;;;;;;;38350:206;;;;;;;;;;-1:-1:-1;38350:206:0;;;;;:::i;:::-;;:::i;56089:103::-;;;;;;;;;;;;;:::i;57416:39::-;;;;;;;;;;;;;;;;59046:104;;;;;;;;;;-1:-1:-1;59046:104:0;;;;;:::i;:::-;;:::i;55438:87::-;;;;;;;;;;-1:-1:-1;55511:6:0;;-1:-1:-1;;;;;55511:6:0;55438:87;;40693:104;;;;;;;;;;;;;:::i;57571:47::-;;;;;;;;;;;;57613:5;57571:47;;42303:279;;;;;;;;;;-1:-1:-1;42303:279:0;;;;;:::i;:::-;;:::i;59882:118::-;;;;;;;;;;;;;:::i;59490:187::-;;;;;;;;;;;;;:::i;57086:21::-;;;;;;;;;;-1:-1:-1;57086:21:0;;;;-1:-1:-1;;;;;57086:21:0;;;60543:1054;;;;;;:::i;:::-;;:::i;63164:310::-;;;;;;;;;;-1:-1:-1;63164:310:0;;;;;:::i;:::-;;:::i;59158:102::-;;;;;;;;;;-1:-1:-1;59158:102:0;;;;;:::i;:::-;;:::i;58446:319::-;;;;;;;;;;-1:-1:-1;58446:319:0;;;;;:::i;:::-;;:::i;62219:353::-;;;;;;;;;;-1:-1:-1;62219:353:0;;;;;:::i;:::-;;:::i;59788:86::-;;;;;;;;;;;;;:::i;57366:43::-;;;;;;;;;;;;;;;;42653:164;;;;;;;;;;-1:-1:-1;42653:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42774:25:0;;;42750:4;42774:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42653:164;57681:49;;;;;;;;;;;;57727:3;57681:49;;56347:201;;;;;;;;;;-1:-1:-1;56347:201:0;;;;;:::i;:::-;;:::i;57737:48::-;;;;;;;;;;;;57783:2;57737:48;;58913:125;;;;;;;;;;-1:-1:-1;58913:125:0;;;;;:::i;:::-;;:::i;58129:163::-;58224:4;58248:36;58272:11;58248:23;:36::i;:::-;58241:43;58129:163;-1:-1:-1;;58129:163:0:o;40524:100::-;40578:13;40611:5;40604:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40524:100;:::o;42027:204::-;42095:7;42120:16;42128:7;42120;:16::i;:::-;42115:64;;42145:34;;-1:-1:-1;;;42145:34:0;;;;;;;;;;;42115:64;-1:-1:-1;42199:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42199:24:0;;42027:204::o;41590:371::-;41663:13;41679:24;41695:7;41679:15;:24::i;:::-;41663:40;;41724:5;-1:-1:-1;;;;;41718:11:0;:2;-1:-1:-1;;;;;41718:11:0;;41714:48;;;41738:24;;-1:-1:-1;;;41738:24:0;;;;;;;;;;;41714:48;31711:10;-1:-1:-1;;;;;41779:21:0;;;;;;:63;;-1:-1:-1;41805:37:0;41822:5;31711:10;42653:164;:::i;41805:37::-;41804:38;41779:63;41775:138;;;41866:35;;-1:-1:-1;;;41866:35:0;;;;;;;;;;;41775:138;41925:28;41934:2;41938:7;41947:5;41925:8;:28::i;:::-;41652:309;41590:371;;:::o;59685:95::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;;;;;;;;;59759:13:::1;::::0;;-1:-1:-1;;59742:30:0;::::1;59759:13;::::0;;;::::1;;;59758:14;59742:30:::0;;::::1;;::::0;;59685:95::o;35151:280::-;35204:7;35396:12;-1:-1:-1;;;;;;;;35396:12:0;;;;35380:13;;;:28;;;;35373:35;;35151:280::o;62600:268::-;62738:6;;-1:-1:-1;;;;;62738:6:0;62730:29;62726:85;;62776:6;;:23;;-1:-1:-1;;;62776:23:0;;-1:-1:-1;;;;;9494:15:1;;;62776:23:0;;;9476:34:1;9546:15;;;9526:18;;;9519:43;62776:6:0;;;;:13;;9411:18:1;;62776:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62726:85;62823:37;62842:4;62848:2;62852:7;62823:18;:37::i;21087:494::-;21231:7;21294:27;;;:17;:27;;;;;;;;21265:56;;;;;;;;;-1:-1:-1;;;;;21265:56:0;;;;;-1:-1:-1;;;21265:56:0;;;-1:-1:-1;;;;;21265:56:0;;;;;;;;21231:7;;21334:92;;-1:-1:-1;21385:29:0;;;;;;;;;21395:19;21385:29;-1:-1:-1;;;;;21385:29:0;;;;-1:-1:-1;;;21385:29:0;;-1:-1:-1;;;;;21385:29:0;;;;;21334:92;21476:23;;;;21438:21;;21947:5;;21463:36;;-1:-1:-1;;;;;21463:36:0;:10;:36;:::i;:::-;21462:58;;;;:::i;:::-;21541:16;;;;;-1:-1:-1;21087:494:0;;-1:-1:-1;;;;21087:494:0:o;61645:499::-;61717:10;;;;;;;61709:45;;;;-1:-1:-1;;;61709:45:0;;10337:2:1;61709:45:0;;;10319:21:1;10376:2;10356:18;;;10349:30;-1:-1:-1;;;10395:18:1;;;10388:52;10457:18;;61709:45:0;10135:346:1;61709:45:0;57783:2;61773:6;:29;;61765:68;;;;-1:-1:-1;;;61765:68:0;;10688:2:1;61765:68:0;;;10670:21:1;10727:2;10707:18;;;10700:30;10766:28;10746:18;;;10739:56;10812:18;;61765:68:0;10486:350:1;61765:68:0;61874:15;;61865:24;;:6;:24;:::i;:::-;61852:9;:37;61844:69;;;;-1:-1:-1;;;61844:69:0;;11043:2:1;61844:69:0;;;11025:21:1;11082:2;11062:18;;;11055:30;-1:-1:-1;;;11101:18:1;;;11094:49;11160:18;;61844:69:0;10841:343:1;61844:69:0;61958:16;;61941:13;:11;:13::i;:::-;61932:22;;:6;:22;:::i;:::-;:42;;61924:78;;;;-1:-1:-1;;;61924:78:0;;;;;;;:::i;:::-;62058:36;62064:10;62076:6;62058:36;;;;;;;;;;;;62088:5;62058;:36::i;:::-;62112:24;;62129:6;;62117:10;;62112:24;;;;;61645:499;:::o;36737:1105::-;36826:7;36859:16;36869:5;36859:9;:16::i;:::-;36850:5;:25;36846:61;;36884:23;;-1:-1:-1;;;36884:23:0;;;;;;;;;;;36846:61;36918:22;36943:13;;-1:-1:-1;;;;;36943:13:0;;36918:22;;37193:557;37213:14;37209:1;:18;37193:557;;;37253:31;37287:14;;;:11;:14;;;;;;;;;37253:48;;;;;;;;;-1:-1:-1;;;;;37253:48:0;;;;-1:-1:-1;;;37253:48:0;;-1:-1:-1;;;;;37253:48:0;;;;;;;;-1:-1:-1;;;37253:48:0;;;;;;;;;;;;;;;;37320:73;;37365:8;;;37320:73;37415:14;;-1:-1:-1;;;;;37415:28:0;;37411:111;;37488:14;;;-1:-1:-1;37411:111:0;37565:5;-1:-1:-1;;;;;37544:26:0;:17;-1:-1:-1;;;;;37544:26:0;;37540:195;;;37614:5;37599:11;:20;37595:85;;;-1:-1:-1;37655:1:0;-1:-1:-1;37648:8:0;;-1:-1:-1;;;37648:8:0;37595:85;37702:13;;;;;37540:195;37234:516;37193:557;37229:3;;37193:557;;;;37826:8;;;60284:192;60407:4;60431:37;60450:5;60457:4;60463;60431:18;:37::i;:::-;60424:44;60284:192;-1:-1:-1;;;;60284:192:0:o;59268:104::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59340:16:::1;:24:::0;59268:104::o;60008:185::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;30005:1:::1;30603:7;;:19;;30595:63;;;::::0;-1:-1:-1;;;30595:63:0;;11876:2:1;30595:63:0::1;::::0;::::1;11858:21:1::0;11915:2;11895:18;;;11888:30;11954:33;11934:18;;;11927:61;12005:18;;30595:63:0::1;11674:355:1::0;30595:63:0::1;30005:1;30736:7;:18:::0;60090:49:::2;::::0;60072:12:::2;::::0;60090:10:::2;::::0;60113:21:::2;::::0;60072:12;60090:49;60072:12;60090:49;60113:21;60090:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60071:68;;;60158:7;60150:35;;;::::0;-1:-1:-1;;;60150:35:0;;12446:2:1;60150:35:0::2;::::0;::::2;12428:21:1::0;12485:2;12465:18;;;12458:30;-1:-1:-1;;;12504:18:1;;;12497:45;12559:18;;60150:35:0::2;12244:339:1::0;60150:35:0::2;-1:-1:-1::0;29961:1:0::1;30915:7;:22:::0;60008:185::o;62876:280::-;63018:6;;-1:-1:-1;;;;;63018:6:0;63010:29;63006:85;;63056:6;;:23;;-1:-1:-1;;;63056:23:0;;-1:-1:-1;;;;;9494:15:1;;;63056:23:0;;;9476:34:1;9546:15;;;9526:18;;;9519:43;63056:6:0;;;;:13;;9411:18:1;;63056:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63006:85;63103:45;63126:4;63132:2;63136:7;63103:45;;;;;;;;;;;;:22;:45::i;35724:713::-;35791:7;35836:13;;-1:-1:-1;;;;;35836:13:0;35791:7;;36050:328;36070:14;36066:1;:18;36050:328;;;36110:31;36144:14;;;:11;:14;;;;;;;;;36110:48;;;;;;;;;-1:-1:-1;;;;;36110:48:0;;;;-1:-1:-1;;;36110:48:0;;-1:-1:-1;;;;;36110:48:0;;;;;;;;-1:-1:-1;;;36110:48:0;;;;;;;;;;;;;;36177:186;;36242:5;36227:11;:20;36223:85;;;-1:-1:-1;36283:1:0;35724:713;-1:-1:-1;;;;35724:713:0:o;36223:85::-;36330:13;;;;;36177:186;-1:-1:-1;36086:3:0;;36050:328;;;;36406:23;;-1:-1:-1;;;36406:23:0;;;;;;;;;;;58799:106;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;58874:23:::1;:13;58890:7:::0;;58874:23:::1;:::i;59380:102::-:0;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59451:15:::1;:23:::0;59380:102::o;40333:124::-;40397:7;40424:20;40436:7;40424:11;:20::i;:::-;:25;;40333:124;-1:-1:-1;;40333:124:0:o;38350:206::-;38414:7;-1:-1:-1;;;;;38438:19:0;;38434:60;;38466:28;;-1:-1:-1;;;38466:28:0;;;;;;;;;;;38434:60;-1:-1:-1;;;;;;38520:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38520:27:0;;38350:206::o;56089:103::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;56154:30:::1;56181:1;56154:18;:30::i;:::-;56089:103::o:0;59046:104::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59118:10:::1;:24:::0;59046:104::o;40693:::-;40749:13;40782:7;40775:14;;;;;:::i;42303:279::-;-1:-1:-1;;;;;42394:24:0;;31711:10;42394:24;42390:54;;;42427:17;;-1:-1:-1;;;42427:17:0;;;;;;;;;;;42390:54;31711:10;42457:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42457:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42457:53:0;;;;;;;;;;42526:48;;540:41:1;;;42457:42:0;;31711:10;42526:48;;513:18:1;42526:48:0;;;;;;;42303:279;;:::o;59882:118::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59937:8:::1;::::0;::::1;;59936:9;59928:38;;;::::0;-1:-1:-1;;;59928:38:0;;12790:2:1;59928:38:0::1;::::0;::::1;12772:21:1::0;12829:2;12809:18;;;12802:30;-1:-1:-1;;;12848:18:1;;;12841:46;12904:18;;59928:38:0::1;12588:340:1::0;59928:38:0::1;59977:8;:15:::0;;-1:-1:-1;;59977:15:0::1;59988:4;59977:15;::::0;;59882:118::o;59490:187::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;57668:6:::1;59555:16;;:35;59547:76;;;::::0;-1:-1:-1;;;59547:76:0;;13135:2:1;59547:76:0::1;::::0;::::1;13117:21:1::0;13174:2;13154:18;;;13147:30;13213;13193:18;;;13186:58;13261:18;;59547:76:0::1;12933:352:1::0;59547:76:0::1;57613:5;59634:16;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;59490:187:0:o;60543:1054::-;60688:13;;;;;;;60680:44;;;;-1:-1:-1;;;60680:44:0;;13492:2:1;60680:44:0;;;13474:21:1;13531:2;13511:18;;;13504:30;-1:-1:-1;;;13550:18:1;;;13543:48;13608:18;;60680:44:0;13290:342:1;60680:44:0;60846:10;60832:25;;;;:13;:25;;;;;;;;60827:428;;60958:28;;-1:-1:-1;;60975:10:0;13786:2:1;13782:15;13778:53;60958:28:0;;;13766:66:1;60991:4:0;;13848:12:1;;60958:28:0;;;;;;;;;;;;60948:39;;;;;;:47;60940:92;;;;-1:-1:-1;;;60940:92:0;;14073:2:1;60940:92:0;;;14055:21:1;;;14092:18;;;14085:30;14151:34;14131:18;;;14124:62;14203:18;;60940:92:0;13871:356:1;60940:92:0;61123:31;61130:10;;61142:4;61148:5;61123:6;:31::i;:::-;61115:79;;;;-1:-1:-1;;;61115:79:0;;14434:2:1;61115:79:0;;;14416:21:1;14473:2;14453:18;;;14446:30;14512:34;14492:18;;;14485:62;-1:-1:-1;;;14563:18:1;;;14556:33;14606:19;;61115:79:0;14232:399:1;61115:79:0;61225:10;61211:25;;;;:13;:25;;;;;:32;;-1:-1:-1;;61211:32:0;61239:4;61211:32;;;60827:428;57783:2;61275:6;:29;;61267:68;;;;-1:-1:-1;;;61267:68:0;;10688:2:1;61267:68:0;;;10670:21:1;10727:2;10707:18;;;10700:30;10766:28;10746:18;;;10739:56;10812:18;;61267:68:0;10486:350:1;61267:68:0;61376:16;;61367:25;;:6;:25;:::i;:::-;61354:9;:38;61346:70;;;;-1:-1:-1;;;61346:70:0;;11043:2:1;61346:70:0;;;11025:21:1;11082:2;11062:18;;;11055:30;-1:-1:-1;;;11101:18:1;;;11094:49;11160:18;;61346:70:0;10841:343:1;61346:70:0;61461:16;;61444:13;:11;:13::i;:::-;61435:22;;:6;:22;:::i;:::-;:42;;61427:78;;;;-1:-1:-1;;;61427:78:0;;;;;;;:::i;:::-;61518:29;61528:10;61540:6;61518:9;:29::i;:::-;61565:24;;61582:6;;61570:10;;61565:24;;;;;60543:1054;;;:::o;63164:310::-;63334:6;;-1:-1:-1;;;;;63334:6:0;63326:29;63322:85;;63372:6;;:23;;-1:-1:-1;;;63372:23:0;;-1:-1:-1;;;;;9494:15:1;;;63372:23:0;;;9476:34:1;9546:15;;;9526:18;;;9519:43;63372:6:0;;;;:13;;9411:18:1;;63372:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63322:85;63419:47;63442:4;63448:2;63452:7;63461:4;63419:22;:47::i;:::-;63164:310;;;;:::o;59158:102::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59228:6:::1;:24:::0;;-1:-1:-1;;;;;;59228:24:0::1;-1:-1:-1::0;;;;;59228:24:0;;;::::1;::::0;;;::::1;::::0;;59158:102::o;58446:319::-;58550:8;;58519:13;;58550:8;;58545:63;;58582:14;58575:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58446:319;;;:::o;58545:63::-;58618:21;58642:10;:8;:10::i;:::-;58618:34;;58676:7;58670:21;58695:1;58670:26;;:87;;;;;;;;;;;;;;;;;58723:7;58732:18;:7;:16;:18::i;:::-;58706:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58670:87;58663:94;58446:319;-1:-1:-1;;;58446:319:0:o;62219:353::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;62327:16:::1;;62311:13;:11;:13::i;:::-;62302:22;::::0;:6;:22:::1;:::i;:::-;:41;62294:77;;;;-1:-1:-1::0;;;62294:77:0::1;;;;;;;:::i;:::-;57727:3;62401:6;62390:8;;:17;;;;:::i;:::-;:40;;62382:85;;;::::0;-1:-1:-1;;;62382:85:0;;15313:2:1;62382:85:0::1;::::0;::::1;15295:21:1::0;;;15332:18;;;15325:30;15391:34;15371:18;;;15364:62;15443:18;;62382:85:0::1;15111:356:1::0;62382:85:0::1;62480:21;62490:2;62494:6;62480:9;:21::i;:::-;62524:6;62512:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;62548:16:0::1;::::0;62557:6;;-1:-1:-1;;;;;62548:16:0;::::1;::::0;::::1;::::0;;;::::1;62219:353:::0;;:::o;59788:86::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59856:10:::1;::::0;;-1:-1:-1;;59842:24:0;::::1;59856:10:::0;;;;::::1;;;59855:11;59842:24:::0;;::::1;;::::0;;59788:86::o;56347:201::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56436:22:0;::::1;56428:73;;;::::0;-1:-1:-1;;;56428:73:0;;15674:2:1;56428:73:0::1;::::0;::::1;15656:21:1::0;15713:2;15693:18;;;15686:30;15752:34;15732:18;;;15725:62;-1:-1:-1;;;15803:18:1;;;15796:36;15849:19;;56428:73:0::1;15472:402:1::0;56428:73:0::1;56512:28;56531:8;56512:18;:28::i;:::-;56347:201:::0;:::o;58913:125::-;55511:6;;-1:-1:-1;;;;;55511:6:0;31711:10;55658:23;55650:68;;;;-1:-1:-1;;;55650:68:0;;;;;;;:::i;:::-;59000:30:::1;:14;59017:13:::0;;59000:30:::1;:::i;20817:215::-:0;20919:4;-1:-1:-1;;;;;;20943:41:0;;-1:-1:-1;;;20943:41:0;;:81;;;20988:36;21012:11;20988:23;:36::i;43978:144::-;44035:4;44069:13;;-1:-1:-1;;;;;44069:13:0;44059:23;;:55;;;;-1:-1:-1;;44087:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44087:27:0;;;;44086:28;;43978:144::o;51194:196::-;51309:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51309:29:0;-1:-1:-1;;;;;51309:29:0;;;;;;;;;51354:28;;51309:24;;51354:28;;;;;;;51194:196;;;:::o;42884:170::-;43018:28;43028:4;43034:2;43038:7;43018:9;:28::i;45019:1422::-;45158:20;45181:13;-1:-1:-1;;;;;45181:13:0;-1:-1:-1;;;;;45209:16:0;;45205:48;;45234:19;;-1:-1:-1;;;45234:19:0;;;;;;;;;;;45205:48;45268:13;45264:44;;45290:18;;-1:-1:-1;;;45290:18:0;;;;;;;;;;;45264:44;-1:-1:-1;;;;;45660:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;45719:49:0;;-1:-1:-1;;;;;45660:44:0;;;;;;;45719:49;;;;-1:-1:-1;;45660:44:0;;;;;;45719:49;;;;;;;;;;;;;;;;45785:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;45835:66:0;;;;-1:-1:-1;;;45885:15:0;45835:66;;;;;;;;;;;45785:25;;45970:328;45990:8;45986:1;:12;45970:328;;;46029:38;;46054:12;;-1:-1:-1;;;;;46029:38:0;;;46046:1;;46029:38;;46046:1;;46029:38;46090:4;:68;;;;;46099:59;46130:1;46134:2;46138:12;46152:5;46099:22;:59::i;:::-;46098:60;46090:68;46086:164;;;46190:40;;-1:-1:-1;;;46190:40:0;;;;;;;;;;;46086:164;46268:14;;;;;46000:3;45970:328;;;-1:-1:-1;46314:13:0;:37;;-1:-1:-1;;;;;;46314:37:0;-1:-1:-1;;;;;46314:37:0;;;;;;;;;;46373:60;45147:1294;45019:1422;;;;:::o;26727:190::-;26852:4;26905;26876:25;26889:5;26896:4;26876:12;:25::i;:::-;:33;;26727:190;-1:-1:-1;;;;26727:190:0:o;43381:342::-;43548:28;43558:4;43564:2;43568:7;43548:9;:28::i;:::-;43592:48;43615:4;43621:2;43625:7;43634:5;43592:22;:48::i;:::-;43587:129;;43664:40;;-1:-1:-1;;;43664:40:0;;;;;;;;;;;39188:1083;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;39354:13:0;;39298:7;;-1:-1:-1;;;;;39354:13:0;39347:20;;39343:861;;;39388:31;39422:17;;;:11;:17;;;;;;;;;39388:51;;;;;;;;;-1:-1:-1;;;;;39388:51:0;;;;-1:-1:-1;;;39388:51:0;;-1:-1:-1;;;;;39388:51:0;;;;;;;;-1:-1:-1;;;39388:51:0;;;;;;;;;;;;;;39458:731;;39508:14;;-1:-1:-1;;;;;39508:28:0;;39504:101;;39572:9;39188:1083;-1:-1:-1;;;39188:1083:0:o;39504:101::-;-1:-1:-1;;;39949:6:0;39994:17;;;;:11;:17;;;;;;;;;39982:29;;;;;;;;;-1:-1:-1;;;;;39982:29:0;;;;;-1:-1:-1;;;39982:29:0;;-1:-1:-1;;;;;39982:29:0;;;;;;;;-1:-1:-1;;;39982:29:0;;;;;;;;;;;;;40042:28;40038:109;;40110:9;39188:1083;-1:-1:-1;;;39188:1083:0:o;40038:109::-;39909:261;;;39369:835;39343:861;40232:31;;-1:-1:-1;;;40232:31:0;;;;;;;;;;;56708:191;56801:6;;;-1:-1:-1;;;;;56818:17:0;;;-1:-1:-1;;;;;;56818:17:0;;;;;;;56851:40;;56801:6;;;56818:17;56801:6;;56851:40;;56782:16;;56851:40;56771:128;56708:191;:::o;44130:104::-;44199:27;44209:2;44213:8;44199:27;;;;;;;;;;;;:9;:27::i;:::-;44130:104;;:::o;58324:114::-;58384:13;58417;58410:20;;;;;:::i;24045:723::-;24101:13;24322:10;24318:53;;-1:-1:-1;;24349:10:0;;;;;;;;;;;;-1:-1:-1;;;24349:10:0;;;;;24045:723::o;24318:53::-;24396:5;24381:12;24437:78;24444:9;;24437:78;;24470:8;;;;:::i;:::-;;-1:-1:-1;24493:10:0;;-1:-1:-1;24501:2:0;24493:10;;:::i;:::-;;;24437:78;;;24525:19;24557:6;-1:-1:-1;;;;;24547:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24547:17:0;;24525:39;;24575:154;24582:10;;24575:154;;24609:11;24619:1;24609:11;;:::i;:::-;;-1:-1:-1;24678:10:0;24686:2;24678:5;:10;:::i;:::-;24665:24;;:2;:24;:::i;:::-;24652:39;;24635:6;24642;24635:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24635:56:0;;;;;;;;-1:-1:-1;24706:11:0;24715:2;24706:11;;:::i;:::-;;;24575:154;;37914:372;38016:4;-1:-1:-1;;;;;;38053:40:0;;-1:-1:-1;;;38053:40:0;;:105;;-1:-1:-1;;;;;;;38110:48:0;;-1:-1:-1;;;38110:48:0;38053:105;:172;;;-1:-1:-1;;;;;;;38175:50:0;;-1:-1:-1;;;38175:50:0;38053:172;:225;;;-1:-1:-1;;;;;;;;;;18326:40:0;;;38242:36;18217:157;46695:2112;46810:35;46848:20;46860:7;46848:11;:20::i;:::-;46923:18;;46810:58;;-1:-1:-1;46881:22:0;;-1:-1:-1;;;;;46907:34:0;31711:10;-1:-1:-1;;;;;46907:34:0;;:101;;;-1:-1:-1;46975:18:0;;46958:50;;31711:10;42653:164;:::i;46958:50::-;46907:154;;;-1:-1:-1;31711:10:0;47025:20;47037:7;47025:11;:20::i;:::-;-1:-1:-1;;;;;47025:36:0;;46907:154;46881:181;;47080:17;47075:66;;47106:35;;-1:-1:-1;;;47106:35:0;;;;;;;;;;;47075:66;47178:4;-1:-1:-1;;;;;47156:26:0;:13;:18;;;-1:-1:-1;;;;;47156:26:0;;47152:67;;47191:28;;-1:-1:-1;;;47191:28:0;;;;;;;;;;;47152:67;-1:-1:-1;;;;;47234:16:0;;47230:52;;47259:23;;-1:-1:-1;;;47259:23:0;;;;;;;;;;;47230:52;47403:49;47420:1;47424:7;47433:13;:18;;;47403:8;:49::i;:::-;-1:-1:-1;;;;;47748:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47748:31:0;;;-1:-1:-1;;;;;47748:31:0;;;-1:-1:-1;;47748:31:0;;;;;;;47794:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47794:29:0;;;;;;;;;;;47840:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47885:61:0;;;;-1:-1:-1;;;47930:15:0;47885:61;;;;;;;;;;;48220:11;;;48250:24;;;;;:29;48220:11;;48250:29;48246:445;;48475:13;;-1:-1:-1;;;;;48475:13:0;48461:27;;48457:219;;;48545:18;;;48513:24;;;:11;:24;;;;;;;;:50;;48628:28;;;;-1:-1:-1;;;;;48586:70:0;-1:-1:-1;;;48586:70:0;-1:-1:-1;;;;;;48586:70:0;;;-1:-1:-1;;;;;48513:50:0;;;48586:70;;;;;;;48457:219;47723:979;48738:7;48734:2;-1:-1:-1;;;;;48719:27:0;48728:4;-1:-1:-1;;;;;48719:27:0;;;;;;;;;;;48757:42;63164:310;51955:790;52110:4;-1:-1:-1;;;;;52131:13:0;;1674:19;:23;52127:611;;52167:72;;-1:-1:-1;;;52167:72:0;;-1:-1:-1;;;;;52167:36:0;;;;;:72;;31711:10;;52218:4;;52224:7;;52233:5;;52167:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52167:72:0;;;;;;;;-1:-1:-1;;52167:72:0;;;;;;;;;;;;:::i;:::-;;;52163:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52413:13:0;;52409:259;;52463:40;;-1:-1:-1;;;52463:40:0;;;;;;;;;;;52409:259;52618:6;52612:13;52603:6;52599:2;52595:15;52588:38;52163:520;-1:-1:-1;;;;;;52290:55:0;-1:-1:-1;;;52290:55:0;;-1:-1:-1;52283:62:0;;52127:611;-1:-1:-1;52722:4:0;51955:790;;;;;;:::o;27279:675::-;27362:7;27405:4;27362:7;27420:497;27444:5;:12;27440:1;:16;27420:497;;;27478:20;27501:5;27507:1;27501:8;;;;;;;;:::i;:::-;;;;;;;27478:31;;27544:12;27528;:28;27524:382;;28030:13;28080:15;;;28116:4;28109:15;;;28163:4;28147:21;;27656:57;;27524:382;;;28030:13;28080:15;;;28116:4;28109:15;;;28163:4;28147:21;;27833:57;;27524:382;-1:-1:-1;27458:3:0;;;;:::i;:::-;;;;27420:497;;;-1:-1:-1;27934:12:0;27279:675;-1:-1:-1;;;27279:675:0:o;44597:163::-;44720:32;44726:2;44730:8;44740:5;44747:4;44720:5;:32::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:248::-;2947:6;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;-1:-1:-1;;3047:23:1;;;3117:2;3102:18;;;3089:32;;-1:-1:-1;2879:248:1:o;3593:127::-;3654:10;3649:3;3645:20;3642:1;3635:31;3685:4;3682:1;3675:15;3709:4;3706:1;3699:15;3725:275;3796:2;3790:9;3861:2;3842:13;;-1:-1:-1;;3838:27:1;3826:40;;-1:-1:-1;;;;;3881:34:1;;3917:22;;;3878:62;3875:88;;;3943:18;;:::i;:::-;3979:2;3972:22;3725:275;;-1:-1:-1;3725:275:1:o;4005:712::-;4059:5;4112:3;4105:4;4097:6;4093:17;4089:27;4079:55;;4130:1;4127;4120:12;4079:55;4166:6;4153:20;4192:4;-1:-1:-1;;;;;4211:2:1;4208:26;4205:52;;;4237:18;;:::i;:::-;4283:2;4280:1;4276:10;4306:28;4330:2;4326;4322:11;4306:28;:::i;:::-;4368:15;;;4438;;;4434:24;;;4399:12;;;;4470:15;;;4467:35;;;4498:1;4495;4488:12;4467:35;4534:2;4526:6;4522:15;4511:26;;4546:142;4562:6;4557:3;4554:15;4546:142;;;4628:17;;4616:30;;4579:12;;;;4666;;;;4546:142;;;4706:5;4005:712;-1:-1:-1;;;;;;;4005:712:1:o;4722:484::-;4824:6;4832;4840;4893:2;4881:9;4872:7;4868:23;4864:32;4861:52;;;4909:1;4906;4899:12;4861:52;4945:9;4932:23;4922:33;;5002:2;4991:9;4987:18;4974:32;4964:42;;5057:2;5046:9;5042:18;5029:32;-1:-1:-1;;;;;5076:6:1;5073:30;5070:50;;;5116:1;5113;5106:12;5070:50;5139:61;5192:7;5183:6;5172:9;5168:22;5139:61;:::i;:::-;5129:71;;;4722:484;;;;;:::o;5424:592::-;5495:6;5503;5556:2;5544:9;5535:7;5531:23;5527:32;5524:52;;;5572:1;5569;5562:12;5524:52;5612:9;5599:23;-1:-1:-1;;;;;5682:2:1;5674:6;5671:14;5668:34;;;5698:1;5695;5688:12;5668:34;5736:6;5725:9;5721:22;5711:32;;5781:7;5774:4;5770:2;5766:13;5762:27;5752:55;;5803:1;5800;5793:12;5752:55;5843:2;5830:16;5869:2;5861:6;5858:14;5855:34;;;5885:1;5882;5875:12;5855:34;5930:7;5925:2;5916:6;5912:2;5908:15;5904:24;5901:37;5898:57;;;5951:1;5948;5941:12;5898:57;5982:2;5974:11;;;;;6004:6;;-1:-1:-1;5424:592:1;;-1:-1:-1;;;;5424:592:1:o;6206:347::-;6271:6;6279;6332:2;6320:9;6311:7;6307:23;6303:32;6300:52;;;6348:1;6345;6338:12;6300:52;6371:29;6390:9;6371:29;:::i;:::-;6361:39;;6450:2;6439:9;6435:18;6422:32;6497:5;6490:13;6483:21;6476:5;6473:32;6463:60;;6519:1;6516;6509:12;6463:60;6542:5;6532:15;;;6206:347;;;;;:::o;7268:980::-;7363:6;7371;7379;7387;7440:3;7428:9;7419:7;7415:23;7411:33;7408:53;;;7457:1;7454;7447:12;7408:53;7480:29;7499:9;7480:29;:::i;:::-;7470:39;;7528:2;7549:38;7583:2;7572:9;7568:18;7549:38;:::i;:::-;7539:48;;7634:2;7623:9;7619:18;7606:32;7596:42;;7689:2;7678:9;7674:18;7661:32;-1:-1:-1;;;;;7753:2:1;7745:6;7742:14;7739:34;;;7769:1;7766;7759:12;7739:34;7807:6;7796:9;7792:22;7782:32;;7852:7;7845:4;7841:2;7837:13;7833:27;7823:55;;7874:1;7871;7864:12;7823:55;7910:2;7897:16;7932:2;7928;7925:10;7922:36;;;7938:18;;:::i;:::-;7980:53;8023:2;8004:13;;-1:-1:-1;;8000:27:1;7996:36;;7980:53;:::i;:::-;7967:66;;8056:2;8049:5;8042:17;8096:7;8091:2;8086;8082;8078:11;8074:20;8071:33;8068:53;;;8117:1;8114;8107:12;8068:53;8172:2;8167;8163;8159:11;8154:2;8147:5;8143:14;8130:45;8216:1;8211:2;8206;8199:5;8195:14;8191:23;8184:34;;8237:5;8227:15;;;;;7268:980;;;;;;;:::o;8253:260::-;8321:6;8329;8382:2;8370:9;8361:7;8357:23;8353:32;8350:52;;;8398:1;8395;8388:12;8350:52;8421:29;8440:9;8421:29;:::i;:::-;8411:39;;8469:38;8503:2;8492:9;8488:18;8469:38;:::i;:::-;8459:48;;8253:260;;;;;:::o;8518:380::-;8597:1;8593:12;;;;8640;;;8661:61;;8715:4;8707:6;8703:17;8693:27;;8661:61;8768:2;8760:6;8757:14;8737:18;8734:38;8731:161;;;8814:10;8809:3;8805:20;8802:1;8795:31;8849:4;8846:1;8839:15;8877:4;8874:1;8867:15;8731:161;;8518:380;;;:::o;8903:356::-;9105:2;9087:21;;;9124:18;;;9117:30;9183:34;9178:2;9163:18;;9156:62;9250:2;9235:18;;8903:356::o;9573:127::-;9634:10;9629:3;9625:20;9622:1;9615:31;9665:4;9662:1;9655:15;9689:4;9686:1;9679:15;9705:168;9745:7;9811:1;9807;9803:6;9799:14;9796:1;9793:21;9788:1;9781:9;9774:17;9770:45;9767:71;;;9818:18;;:::i;:::-;-1:-1:-1;9858:9:1;;9705:168::o;9878:127::-;9939:10;9934:3;9930:20;9927:1;9920:31;9970:4;9967:1;9960:15;9994:4;9991:1;9984:15;10010:120;10050:1;10076;10066:35;;10081:18;;:::i;:::-;-1:-1:-1;10115:9:1;;10010:120::o;11189:128::-;11229:3;11260:1;11256:6;11253:1;11250:13;11247:39;;;11266:18;;:::i;:::-;-1:-1:-1;11302:9:1;;11189:128::o;11322:347::-;11524:2;11506:21;;;11563:2;11543:18;;;11536:30;11602:25;11597:2;11582:18;;11575:53;11660:2;11645:18;;11322:347::o;14636:470::-;14815:3;14853:6;14847:13;14869:53;14915:6;14910:3;14903:4;14895:6;14891:17;14869:53;:::i;:::-;14985:13;;14944:16;;;;15007:57;14985:13;14944:16;15041:4;15029:17;;15007:57;:::i;:::-;15080:20;;14636:470;-1:-1:-1;;;;14636:470:1:o;15879:135::-;15918:3;-1:-1:-1;;15939:17:1;;15936:43;;;15959:18;;:::i;:::-;-1:-1:-1;16006:1:1;15995:13;;15879:135::o;16019:125::-;16059:4;16087:1;16084;16081:8;16078:34;;;16092:18;;:::i;:::-;-1:-1:-1;16129:9:1;;16019:125::o;16149:112::-;16181:1;16207;16197:35;;16212:18;;:::i;:::-;-1:-1:-1;16246:9:1;;16149:112::o;16266:127::-;16327:10;16322:3;16318:20;16315:1;16308:31;16358:4;16355:1;16348:15;16382:4;16379:1;16372:15;16398:489;-1:-1:-1;;;;;16667:15:1;;;16649:34;;16719:15;;16714:2;16699:18;;16692:43;16766:2;16751:18;;16744:34;;;16814:3;16809:2;16794:18;;16787:31;;;16592:4;;16835:46;;16861:19;;16853:6;16835:46;:::i;:::-;16827:54;16398:489;-1:-1:-1;;;;;;16398:489:1:o;16892:249::-;16961:6;17014:2;17002:9;16993:7;16989:23;16985:32;16982:52;;;17030:1;17027;17020:12;16982:52;17062:9;17056:16;17081:30;17105:5;17081:30;:::i

Swarm Source

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