ETH Price: $2,383.26 (-1.09%)

Token

CoolPFPs (CoolPFP)
 

Overview

Max Total Supply

713 CoolPFP

Holders

412

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CoolPFP
0x3403638c12f69970f7f568d15618eeaefe6d42c2
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:
CoolPFPs

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

// SPDX-License-Identifier: MIT

// 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/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

pragma solidity ^0.8.0;

contract CoolPFPs is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;


  string  public  baseTokenURI = "";
  uint256 public  maxSupply = 2000;
  uint256 public  MAX_MINTS_PER_TX = 10;
  uint256 public  PUBLIC_SALE_PRICE = 0.001 ether;
  uint256 public  NUM_FREE_MINTS = 2000;
  uint256 public  MAX_FREE_PER_WALLET = 1;
  uint256 public freeAlreadyMinted = 0;
  bool public isPublicSaleActive = true;
  constructor() ERC721A("CoolPFPs", "CoolPFP") {
  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Not yet!");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "too late bro");

    if(freeAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

  function devMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90816200002491906200049b565b506107d0600b55600a600c5566038d7ea4c68000600d556107d0600e556001600f5560006010556001601160006101000a81548160ff0219169083151502179055503480156200007357600080fd5b506040518060400160405280600881526020017f436f6f6c504650730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f436f6f6c504650000000000000000000000000000000000000000000000000008152508160029081620000f191906200049b565b5080600390816200010391906200049b565b50620001146200014a60201b60201c565b60008190555050506200013c620001306200015360201b60201c565b6200015b60201b60201c565b600160098190555062000582565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a357607f821691505b602082108103620002b957620002b86200025b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002e4565b6200032f8683620002e4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200037c62000376620003708462000347565b62000351565b62000347565b9050919050565b6000819050919050565b62000398836200035b565b620003b0620003a78262000383565b848454620002f1565b825550505050565b600090565b620003c7620003b8565b620003d48184846200038d565b505050565b5b81811015620003fc57620003f0600082620003bd565b600181019050620003da565b5050565b601f8211156200044b576200041581620002bf565b6200042084620002d4565b8101602085101562000430578190505b620004486200043f85620002d4565b830182620003d9565b50505b505050565b600082821c905092915050565b6000620004706000198460080262000450565b1980831691505092915050565b60006200048b83836200045d565b9150826002028217905092915050565b620004a68262000221565b67ffffffffffffffff811115620004c257620004c16200022c565b5b620004ce82546200028a565b620004db82828562000400565b600060209050601f831160018114620005135760008415620004fe578287015190505b6200050a85826200047d565b8655506200057a565b601f1984166200052386620002bf565b60005b828110156200054d5784890151825560018201915060208501945060208101905062000526565b868310156200056d578489015162000569601f8916826200045d565b8355505b6001600288020188555050505b505050505050565b61317e80620005926000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106b4578063d5abeb01146106df578063dffe56b21461070a578063e985e9c514610735578063f2fde38b14610772576101f9565b8063a22cb46514610607578063b88d4fde14610630578063c6a91b421461064c578063c87b56dd14610677576101f9565b8063982d669e116100dc578063982d669e1461056c57806398710d1e146105975780639e9fcffc146105c2578063a0712d68146105eb576101f9565b806370a08231146104c2578063715018a6146104ff5780638da5cb5b1461051657806395d89b4114610541576101f9565b80631e84c41311610190578063375a069a1161015f578063375a069a146104005780633ccfd60b1461042957806342842e0e1461044057806355f804b31461045c5780636352211e14610485576101f9565b80631e84c41314610367578063202f298a1461039257806323b872dd146103bb57806328cad13d146103d7576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102ea57806318160ddd146103135780631919fed71461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906120c1565b61079b565b6040516102329190612109565b60405180910390f35b34801561024757600080fd5b5061025061082d565b60405161025d91906121b4565b60405180910390f35b34801561027257600080fd5b5061027b6108bf565b60405161028891906121ef565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612236565b6108c5565b6040516102c591906122a4565b60405180910390f35b6102e860048036038101906102e391906122eb565b610944565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612236565b610a88565b005b34801561031f57600080fd5b50610328610a9a565b60405161033591906121ef565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190612236565b610ab1565b005b34801561037357600080fd5b5061037c610ac3565b6040516103899190612109565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612236565b610ad6565b005b6103d560048036038101906103d0919061232b565b610ae8565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906123aa565b610e0a565b005b34801561040c57600080fd5b5061042760048036038101906104229190612236565b610e2f565b005b34801561043557600080fd5b5061043e610ede565b005b61045a6004803603810190610455919061232b565b610f47565b005b34801561046857600080fd5b50610483600480360381019061047e919061250c565b610f67565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612236565b610f82565b6040516104b991906122a4565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612555565b610f94565b6040516104f691906121ef565b60405180910390f35b34801561050b57600080fd5b5061051461104c565b005b34801561052257600080fd5b5061052b611060565b60405161053891906122a4565b60405180910390f35b34801561054d57600080fd5b5061055661108a565b60405161056391906121b4565b60405180910390f35b34801561057857600080fd5b5061058161111c565b60405161058e91906121ef565b60405180910390f35b3480156105a357600080fd5b506105ac611122565b6040516105b991906121ef565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190612236565b611128565b005b61060560048036038101906106009190612236565b61113a565b005b34801561061357600080fd5b5061062e60048036038101906106299190612582565b61137b565b005b61064a60048036038101906106459190612663565b611486565b005b34801561065857600080fd5b506106616114f9565b60405161066e91906121ef565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612236565b6114ff565b6040516106ab91906121b4565b60405180910390f35b3480156106c057600080fd5b506106c961159d565b6040516106d691906121b4565b60405180910390f35b3480156106eb57600080fd5b506106f461162b565b60405161070191906121ef565b60405180910390f35b34801561071657600080fd5b5061071f611631565b60405161072c91906121ef565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906126e6565b611637565b6040516107699190612109565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612555565b6116cb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083c90612755565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612755565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b600d5481565b60006108d08261174e565b610906576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610f82565b90508073ffffffffffffffffffffffffffffffffffffffff166109706117ad565b73ffffffffffffffffffffffffffffffffffffffff16146109d35761099c816109976117ad565b611637565b6109d2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a906117b5565b80600e8190555050565b6000610aa4611833565b6001546000540303905090565b610ab96117b5565b80600d8190555050565b601160009054906101000a900460ff1681565b610ade6117b5565b80600f8190555050565b6000610af38261183c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6684611908565b91509150610b7c8187610b776117ad565b61192f565b610bc857610b9186610b8c6117ad565b611637565b610bc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8686866001611973565b8015610c4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1485610cf0888887611979565b7c0200000000000000000000000000000000000000000000000000000000176119a1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9a5760006001850190506000600460008381526020019081526020016000205403610d98576000548114610d97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0286868660016119cc565b505050505050565b610e126117b5565b80601160006101000a81548160ff02191690831515021790555050565b610e376117b5565b60008111610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906127d2565b60405180910390fd5b600b5481610e86610a9a565b610e909190612821565b1115610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906128a1565b60405180910390fd5b610edb33826119d2565b50565b610ee66117b5565b600260095403610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f229061290d565b60405180910390fd5b6002600981905550610f3d33476119f0565b6001600981905550565b610f6283838360405180602001604052806000815250611486565b505050565b610f6f6117b5565b80600a9081610f7e9190612ad9565b5050565b6000610f8d8261183c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ffb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110546117b5565b61105e6000611ae4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109990612755565b80601f01602080910402602001604051908101604052809291908181526020018280546110c590612755565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b5050505050905090565b600e5481565b600f5481565b6111306117b5565b80600c8190555050565b601160009054906101000a900460ff16611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612bf7565b60405180910390fd5b6001600b546111989190612821565b816111a1610a9a565b6111ab9190612821565b106111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290612c63565b60405180910390fd5b600e54816010546111fc9190612821565b1115611257573481600d546112119190612c83565b1115611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612d11565b60405180910390fd5b61136e565b600f548161126433610f94565b61126e9190612821565b111561130e573481600d546112839190612c83565b11156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90612d11565b60405180910390fd5b600c54811115611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090612da3565b60405180910390fd5b61136d565b600f54811115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90612da3565b60405180910390fd5b80601060008282546113659190612821565b925050819055505b5b61137833826119d2565b50565b80600760006113886117ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114356117ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147a9190612109565b60405180910390a35050565b611491848484610ae8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f3576114bc84848484611baa565b6114f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061150a8261174e565b611540576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061154a611cfa565b9050600081510361156a5760405180602001604052806000815250611595565b8061157484611d8c565b604051602001611585929190612dff565b6040516020818303038152906040525b915050919050565b600a80546115aa90612755565b80601f01602080910402602001604051908101604052809291908181526020018280546115d690612755565b80156116235780601f106115f857610100808354040283529160200191611623565b820191906000526020600020905b81548152906001019060200180831161160657829003601f168201915b505050505081565b600b5481565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d36117b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990612e95565b60405180910390fd5b61174b81611ae4565b50565b600081611759611833565b11158015611768575060005482105b80156117a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117bd611ddc565b73ffffffffffffffffffffffffffffffffffffffff166117db611060565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612f01565b60405180910390fd5b565b60006001905090565b6000808290508061184b611833565b116118d1576000548110156118d05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118ce575b600081036118c457600460008360019003935083815260200190815260200160002054905061189a565b8092505050611903565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611990868684611de4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119ec828260405180602001604052806000815250611ded565b5050565b80471015611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90612f6d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a5990612fbe565b60006040518083038185875af1925050503d8060008114611a96576040519150601f19603f3d011682016040523d82523d6000602084013e611a9b565b606091505b5050905080611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613045565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd06117ad565b8786866040518563ffffffff1660e01b8152600401611bf294939291906130ba565b6020604051808303816000875af1925050508015611c2e57506040513d601f19601f82011682018060405250810190611c2b919061311b565b60015b611ca7573d8060008114611c5e576040519150601f19603f3d011682016040523d82523d6000602084013e611c63565b606091505b506000815103611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d0990612755565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3590612755565b8015611d825780601f10611d5757610100808354040283529160200191611d82565b820191906000526020600020905b815481529060010190602001808311611d6557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dc757600184039350600a81066030018453600a8104905080611da5575b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611df78383611e8a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8557600080549050600083820390505b611e376000868380600101945086611baa565b611e6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e24578160005414611e8257600080fd5b50505b505050565b60008054905060008203611eca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ed76000848385611973565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f4e83611f3f6000866000611979565b611f4885612045565b176119a1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fef57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fb4565b506000820361202a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061204060008483856119cc565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61209e81612069565b81146120a957600080fd5b50565b6000813590506120bb81612095565b92915050565b6000602082840312156120d7576120d661205f565b5b60006120e5848285016120ac565b91505092915050565b60008115159050919050565b612103816120ee565b82525050565b600060208201905061211e60008301846120fa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215e578082015181840152602081019050612143565b60008484015250505050565b6000601f19601f8301169050919050565b600061218682612124565b612190818561212f565b93506121a0818560208601612140565b6121a98161216a565b840191505092915050565b600060208201905081810360008301526121ce818461217b565b905092915050565b6000819050919050565b6121e9816121d6565b82525050565b600060208201905061220460008301846121e0565b92915050565b612213816121d6565b811461221e57600080fd5b50565b6000813590506122308161220a565b92915050565b60006020828403121561224c5761224b61205f565b5b600061225a84828501612221565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228e82612263565b9050919050565b61229e81612283565b82525050565b60006020820190506122b96000830184612295565b92915050565b6122c881612283565b81146122d357600080fd5b50565b6000813590506122e5816122bf565b92915050565b600080604083850312156123025761230161205f565b5b6000612310858286016122d6565b925050602061232185828601612221565b9150509250929050565b6000806000606084860312156123445761234361205f565b5b6000612352868287016122d6565b9350506020612363868287016122d6565b925050604061237486828701612221565b9150509250925092565b612387816120ee565b811461239257600080fd5b50565b6000813590506123a48161237e565b92915050565b6000602082840312156123c0576123bf61205f565b5b60006123ce84828501612395565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124198261216a565b810181811067ffffffffffffffff82111715612438576124376123e1565b5b80604052505050565b600061244b612055565b90506124578282612410565b919050565b600067ffffffffffffffff821115612477576124766123e1565b5b6124808261216a565b9050602081019050919050565b82818337600083830152505050565b60006124af6124aa8461245c565b612441565b9050828152602081018484840111156124cb576124ca6123dc565b5b6124d684828561248d565b509392505050565b600082601f8301126124f3576124f26123d7565b5b813561250384826020860161249c565b91505092915050565b6000602082840312156125225761252161205f565b5b600082013567ffffffffffffffff8111156125405761253f612064565b5b61254c848285016124de565b91505092915050565b60006020828403121561256b5761256a61205f565b5b6000612579848285016122d6565b91505092915050565b600080604083850312156125995761259861205f565b5b60006125a7858286016122d6565b92505060206125b885828601612395565b9150509250929050565b600067ffffffffffffffff8211156125dd576125dc6123e1565b5b6125e68261216a565b9050602081019050919050565b6000612606612601846125c2565b612441565b905082815260208101848484011115612622576126216123dc565b5b61262d84828561248d565b509392505050565b600082601f83011261264a576126496123d7565b5b813561265a8482602086016125f3565b91505092915050565b6000806000806080858703121561267d5761267c61205f565b5b600061268b878288016122d6565b945050602061269c878288016122d6565b93505060406126ad87828801612221565b925050606085013567ffffffffffffffff8111156126ce576126cd612064565b5b6126da87828801612635565b91505092959194509250565b600080604083850312156126fd576126fc61205f565b5b600061270b858286016122d6565b925050602061271c858286016122d6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061276d57607f821691505b6020821081036127805761277f612726565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006127bc60138361212f565b91506127c782612786565b602082019050919050565b600060208201905081810360008301526127eb816127af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061282c826121d6565b9150612837836121d6565b925082820190508082111561284f5761284e6127f2565b5b92915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b600061288b60178361212f565b915061289682612855565b602082019050919050565b600060208201905081810360008301526128ba8161287e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006128f7601f8361212f565b9150612902826128c1565b602082019050919050565b60006020820190508181036000830152612926816128ea565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261298f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612952565b6129998683612952565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129d66129d16129cc846121d6565b6129b1565b6121d6565b9050919050565b6000819050919050565b6129f0836129bb565b612a046129fc826129dd565b84845461295f565b825550505050565b600090565b612a19612a0c565b612a248184846129e7565b505050565b5b81811015612a4857612a3d600082612a11565b600181019050612a2a565b5050565b601f821115612a8d57612a5e8161292d565b612a6784612942565b81016020851015612a76578190505b612a8a612a8285612942565b830182612a29565b50505b505050565b600082821c905092915050565b6000612ab060001984600802612a92565b1980831691505092915050565b6000612ac98383612a9f565b9150826002028217905092915050565b612ae282612124565b67ffffffffffffffff811115612afb57612afa6123e1565b5b612b058254612755565b612b10828285612a4c565b600060209050601f831160018114612b435760008415612b31578287015190505b612b3b8582612abd565b865550612ba3565b601f198416612b518661292d565b60005b82811015612b7957848901518255600182019150602085019450602081019050612b54565b86831015612b965784890151612b92601f891682612a9f565b8355505b6001600288020188555050505b505050505050565b7f4e6f742079657421000000000000000000000000000000000000000000000000600082015250565b6000612be160088361212f565b9150612bec82612bab565b602082019050919050565b60006020820190508181036000830152612c1081612bd4565b9050919050565b7f746f6f206c6174652062726f0000000000000000000000000000000000000000600082015250565b6000612c4d600c8361212f565b9150612c5882612c17565b602082019050919050565b60006020820190508181036000830152612c7c81612c40565b9050919050565b6000612c8e826121d6565b9150612c99836121d6565b9250828202612ca7816121d6565b91508282048414831517612cbe57612cbd6127f2565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612cfb60188361212f565b9150612d0682612cc5565b602082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8d60228361212f565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b600081905092915050565b6000612dd982612124565b612de38185612dc3565b9350612df3818560208601612140565b80840191505092915050565b6000612e0b8285612dce565b9150612e178284612dce565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e7f60268361212f565b9150612e8a82612e23565b604082019050919050565b60006020820190508181036000830152612eae81612e72565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eeb60208361212f565b9150612ef682612eb5565b602082019050919050565b60006020820190508181036000830152612f1a81612ede565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612f57601d8361212f565b9150612f6282612f21565b602082019050919050565b60006020820190508181036000830152612f8681612f4a565b9050919050565b600081905092915050565b50565b6000612fa8600083612f8d565b9150612fb382612f98565b600082019050919050565b6000612fc982612f9b565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061302f603a8361212f565b915061303a82612fd3565b604082019050919050565b6000602082019050818103600083015261305e81613022565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061308c82613065565b6130968185613070565b93506130a6818560208601612140565b6130af8161216a565b840191505092915050565b60006080820190506130cf6000830187612295565b6130dc6020830186612295565b6130e960408301856121e0565b81810360608301526130fb8184613081565b905095945050505050565b60008151905061311581612095565b92915050565b6000602082840312156131315761313061205f565b5b600061313f84828501613106565b9150509291505056fea26469706673582212208d950468cc43169199deb5b029749e64a657df0089b684b587efc53a7ce679eb64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106b4578063d5abeb01146106df578063dffe56b21461070a578063e985e9c514610735578063f2fde38b14610772576101f9565b8063a22cb46514610607578063b88d4fde14610630578063c6a91b421461064c578063c87b56dd14610677576101f9565b8063982d669e116100dc578063982d669e1461056c57806398710d1e146105975780639e9fcffc146105c2578063a0712d68146105eb576101f9565b806370a08231146104c2578063715018a6146104ff5780638da5cb5b1461051657806395d89b4114610541576101f9565b80631e84c41311610190578063375a069a1161015f578063375a069a146104005780633ccfd60b1461042957806342842e0e1461044057806355f804b31461045c5780636352211e14610485576101f9565b80631e84c41314610367578063202f298a1461039257806323b872dd146103bb57806328cad13d146103d7576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102ea57806318160ddd146103135780631919fed71461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906120c1565b61079b565b6040516102329190612109565b60405180910390f35b34801561024757600080fd5b5061025061082d565b60405161025d91906121b4565b60405180910390f35b34801561027257600080fd5b5061027b6108bf565b60405161028891906121ef565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612236565b6108c5565b6040516102c591906122a4565b60405180910390f35b6102e860048036038101906102e391906122eb565b610944565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612236565b610a88565b005b34801561031f57600080fd5b50610328610a9a565b60405161033591906121ef565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190612236565b610ab1565b005b34801561037357600080fd5b5061037c610ac3565b6040516103899190612109565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612236565b610ad6565b005b6103d560048036038101906103d0919061232b565b610ae8565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906123aa565b610e0a565b005b34801561040c57600080fd5b5061042760048036038101906104229190612236565b610e2f565b005b34801561043557600080fd5b5061043e610ede565b005b61045a6004803603810190610455919061232b565b610f47565b005b34801561046857600080fd5b50610483600480360381019061047e919061250c565b610f67565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612236565b610f82565b6040516104b991906122a4565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612555565b610f94565b6040516104f691906121ef565b60405180910390f35b34801561050b57600080fd5b5061051461104c565b005b34801561052257600080fd5b5061052b611060565b60405161053891906122a4565b60405180910390f35b34801561054d57600080fd5b5061055661108a565b60405161056391906121b4565b60405180910390f35b34801561057857600080fd5b5061058161111c565b60405161058e91906121ef565b60405180910390f35b3480156105a357600080fd5b506105ac611122565b6040516105b991906121ef565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190612236565b611128565b005b61060560048036038101906106009190612236565b61113a565b005b34801561061357600080fd5b5061062e60048036038101906106299190612582565b61137b565b005b61064a60048036038101906106459190612663565b611486565b005b34801561065857600080fd5b506106616114f9565b60405161066e91906121ef565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612236565b6114ff565b6040516106ab91906121b4565b60405180910390f35b3480156106c057600080fd5b506106c961159d565b6040516106d691906121b4565b60405180910390f35b3480156106eb57600080fd5b506106f461162b565b60405161070191906121ef565b60405180910390f35b34801561071657600080fd5b5061071f611631565b60405161072c91906121ef565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906126e6565b611637565b6040516107699190612109565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612555565b6116cb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083c90612755565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612755565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b600d5481565b60006108d08261174e565b610906576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610f82565b90508073ffffffffffffffffffffffffffffffffffffffff166109706117ad565b73ffffffffffffffffffffffffffffffffffffffff16146109d35761099c816109976117ad565b611637565b6109d2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a906117b5565b80600e8190555050565b6000610aa4611833565b6001546000540303905090565b610ab96117b5565b80600d8190555050565b601160009054906101000a900460ff1681565b610ade6117b5565b80600f8190555050565b6000610af38261183c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6684611908565b91509150610b7c8187610b776117ad565b61192f565b610bc857610b9186610b8c6117ad565b611637565b610bc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8686866001611973565b8015610c4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1485610cf0888887611979565b7c0200000000000000000000000000000000000000000000000000000000176119a1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9a5760006001850190506000600460008381526020019081526020016000205403610d98576000548114610d97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0286868660016119cc565b505050505050565b610e126117b5565b80601160006101000a81548160ff02191690831515021790555050565b610e376117b5565b60008111610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906127d2565b60405180910390fd5b600b5481610e86610a9a565b610e909190612821565b1115610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906128a1565b60405180910390fd5b610edb33826119d2565b50565b610ee66117b5565b600260095403610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f229061290d565b60405180910390fd5b6002600981905550610f3d33476119f0565b6001600981905550565b610f6283838360405180602001604052806000815250611486565b505050565b610f6f6117b5565b80600a9081610f7e9190612ad9565b5050565b6000610f8d8261183c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ffb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110546117b5565b61105e6000611ae4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109990612755565b80601f01602080910402602001604051908101604052809291908181526020018280546110c590612755565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b5050505050905090565b600e5481565b600f5481565b6111306117b5565b80600c8190555050565b601160009054906101000a900460ff16611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612bf7565b60405180910390fd5b6001600b546111989190612821565b816111a1610a9a565b6111ab9190612821565b106111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290612c63565b60405180910390fd5b600e54816010546111fc9190612821565b1115611257573481600d546112119190612c83565b1115611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612d11565b60405180910390fd5b61136e565b600f548161126433610f94565b61126e9190612821565b111561130e573481600d546112839190612c83565b11156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90612d11565b60405180910390fd5b600c54811115611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090612da3565b60405180910390fd5b61136d565b600f54811115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90612da3565b60405180910390fd5b80601060008282546113659190612821565b925050819055505b5b61137833826119d2565b50565b80600760006113886117ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114356117ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147a9190612109565b60405180910390a35050565b611491848484610ae8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f3576114bc84848484611baa565b6114f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061150a8261174e565b611540576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061154a611cfa565b9050600081510361156a5760405180602001604052806000815250611595565b8061157484611d8c565b604051602001611585929190612dff565b6040516020818303038152906040525b915050919050565b600a80546115aa90612755565b80601f01602080910402602001604051908101604052809291908181526020018280546115d690612755565b80156116235780601f106115f857610100808354040283529160200191611623565b820191906000526020600020905b81548152906001019060200180831161160657829003601f168201915b505050505081565b600b5481565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d36117b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990612e95565b60405180910390fd5b61174b81611ae4565b50565b600081611759611833565b11158015611768575060005482105b80156117a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117bd611ddc565b73ffffffffffffffffffffffffffffffffffffffff166117db611060565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612f01565b60405180910390fd5b565b60006001905090565b6000808290508061184b611833565b116118d1576000548110156118d05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118ce575b600081036118c457600460008360019003935083815260200190815260200160002054905061189a565b8092505050611903565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611990868684611de4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119ec828260405180602001604052806000815250611ded565b5050565b80471015611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90612f6d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a5990612fbe565b60006040518083038185875af1925050503d8060008114611a96576040519150601f19603f3d011682016040523d82523d6000602084013e611a9b565b606091505b5050905080611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613045565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd06117ad565b8786866040518563ffffffff1660e01b8152600401611bf294939291906130ba565b6020604051808303816000875af1925050508015611c2e57506040513d601f19601f82011682018060405250810190611c2b919061311b565b60015b611ca7573d8060008114611c5e576040519150601f19603f3d011682016040523d82523d6000602084013e611c63565b606091505b506000815103611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d0990612755565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3590612755565b8015611d825780601f10611d5757610100808354040283529160200191611d82565b820191906000526020600020905b815481529060010190602001808311611d6557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dc757600184039350600a81066030018453600a8104905080611da5575b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611df78383611e8a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8557600080549050600083820390505b611e376000868380600101945086611baa565b611e6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e24578160005414611e8257600080fd5b50505b505050565b60008054905060008203611eca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ed76000848385611973565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f4e83611f3f6000866000611979565b611f4885612045565b176119a1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fef57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fb4565b506000820361202a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061204060008483856119cc565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61209e81612069565b81146120a957600080fd5b50565b6000813590506120bb81612095565b92915050565b6000602082840312156120d7576120d661205f565b5b60006120e5848285016120ac565b91505092915050565b60008115159050919050565b612103816120ee565b82525050565b600060208201905061211e60008301846120fa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215e578082015181840152602081019050612143565b60008484015250505050565b6000601f19601f8301169050919050565b600061218682612124565b612190818561212f565b93506121a0818560208601612140565b6121a98161216a565b840191505092915050565b600060208201905081810360008301526121ce818461217b565b905092915050565b6000819050919050565b6121e9816121d6565b82525050565b600060208201905061220460008301846121e0565b92915050565b612213816121d6565b811461221e57600080fd5b50565b6000813590506122308161220a565b92915050565b60006020828403121561224c5761224b61205f565b5b600061225a84828501612221565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228e82612263565b9050919050565b61229e81612283565b82525050565b60006020820190506122b96000830184612295565b92915050565b6122c881612283565b81146122d357600080fd5b50565b6000813590506122e5816122bf565b92915050565b600080604083850312156123025761230161205f565b5b6000612310858286016122d6565b925050602061232185828601612221565b9150509250929050565b6000806000606084860312156123445761234361205f565b5b6000612352868287016122d6565b9350506020612363868287016122d6565b925050604061237486828701612221565b9150509250925092565b612387816120ee565b811461239257600080fd5b50565b6000813590506123a48161237e565b92915050565b6000602082840312156123c0576123bf61205f565b5b60006123ce84828501612395565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124198261216a565b810181811067ffffffffffffffff82111715612438576124376123e1565b5b80604052505050565b600061244b612055565b90506124578282612410565b919050565b600067ffffffffffffffff821115612477576124766123e1565b5b6124808261216a565b9050602081019050919050565b82818337600083830152505050565b60006124af6124aa8461245c565b612441565b9050828152602081018484840111156124cb576124ca6123dc565b5b6124d684828561248d565b509392505050565b600082601f8301126124f3576124f26123d7565b5b813561250384826020860161249c565b91505092915050565b6000602082840312156125225761252161205f565b5b600082013567ffffffffffffffff8111156125405761253f612064565b5b61254c848285016124de565b91505092915050565b60006020828403121561256b5761256a61205f565b5b6000612579848285016122d6565b91505092915050565b600080604083850312156125995761259861205f565b5b60006125a7858286016122d6565b92505060206125b885828601612395565b9150509250929050565b600067ffffffffffffffff8211156125dd576125dc6123e1565b5b6125e68261216a565b9050602081019050919050565b6000612606612601846125c2565b612441565b905082815260208101848484011115612622576126216123dc565b5b61262d84828561248d565b509392505050565b600082601f83011261264a576126496123d7565b5b813561265a8482602086016125f3565b91505092915050565b6000806000806080858703121561267d5761267c61205f565b5b600061268b878288016122d6565b945050602061269c878288016122d6565b93505060406126ad87828801612221565b925050606085013567ffffffffffffffff8111156126ce576126cd612064565b5b6126da87828801612635565b91505092959194509250565b600080604083850312156126fd576126fc61205f565b5b600061270b858286016122d6565b925050602061271c858286016122d6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061276d57607f821691505b6020821081036127805761277f612726565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006127bc60138361212f565b91506127c782612786565b602082019050919050565b600060208201905081810360008301526127eb816127af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061282c826121d6565b9150612837836121d6565b925082820190508082111561284f5761284e6127f2565b5b92915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b600061288b60178361212f565b915061289682612855565b602082019050919050565b600060208201905081810360008301526128ba8161287e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006128f7601f8361212f565b9150612902826128c1565b602082019050919050565b60006020820190508181036000830152612926816128ea565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261298f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612952565b6129998683612952565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129d66129d16129cc846121d6565b6129b1565b6121d6565b9050919050565b6000819050919050565b6129f0836129bb565b612a046129fc826129dd565b84845461295f565b825550505050565b600090565b612a19612a0c565b612a248184846129e7565b505050565b5b81811015612a4857612a3d600082612a11565b600181019050612a2a565b5050565b601f821115612a8d57612a5e8161292d565b612a6784612942565b81016020851015612a76578190505b612a8a612a8285612942565b830182612a29565b50505b505050565b600082821c905092915050565b6000612ab060001984600802612a92565b1980831691505092915050565b6000612ac98383612a9f565b9150826002028217905092915050565b612ae282612124565b67ffffffffffffffff811115612afb57612afa6123e1565b5b612b058254612755565b612b10828285612a4c565b600060209050601f831160018114612b435760008415612b31578287015190505b612b3b8582612abd565b865550612ba3565b601f198416612b518661292d565b60005b82811015612b7957848901518255600182019150602085019450602081019050612b54565b86831015612b965784890151612b92601f891682612a9f565b8355505b6001600288020188555050505b505050505050565b7f4e6f742079657421000000000000000000000000000000000000000000000000600082015250565b6000612be160088361212f565b9150612bec82612bab565b602082019050919050565b60006020820190508181036000830152612c1081612bd4565b9050919050565b7f746f6f206c6174652062726f0000000000000000000000000000000000000000600082015250565b6000612c4d600c8361212f565b9150612c5882612c17565b602082019050919050565b60006020820190508181036000830152612c7c81612c40565b9050919050565b6000612c8e826121d6565b9150612c99836121d6565b9250828202612ca7816121d6565b91508282048414831517612cbe57612cbd6127f2565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612cfb60188361212f565b9150612d0682612cc5565b602082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8d60228361212f565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b600081905092915050565b6000612dd982612124565b612de38185612dc3565b9350612df3818560208601612140565b80840191505092915050565b6000612e0b8285612dce565b9150612e178284612dce565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e7f60268361212f565b9150612e8a82612e23565b604082019050919050565b60006020820190508181036000830152612eae81612e72565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eeb60208361212f565b9150612ef682612eb5565b602082019050919050565b60006020820190508181036000830152612f1a81612ede565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612f57601d8361212f565b9150612f6282612f21565b602082019050919050565b60006020820190508181036000830152612f8681612f4a565b9050919050565b600081905092915050565b50565b6000612fa8600083612f8d565b9150612fb382612f98565b600082019050919050565b6000612fc982612f9b565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061302f603a8361212f565b915061303a82612fd3565b604082019050919050565b6000602082019050818103600083015261305e81613022565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061308c82613065565b6130968185613070565b93506130a6818560208601612140565b6130af8161216a565b840191505092915050565b60006080820190506130cf6000830187612295565b6130dc6020830186612295565b6130e960408301856121e0565b81810360608301526130fb8184613081565b905095945050505050565b60008151905061311581612095565b92915050565b6000602082840312156131315761313061205f565b5b600061313f84828501613106565b9150509291505056fea26469706673582212208d950468cc43169199deb5b029749e64a657df0089b684b587efc53a7ce679eb64736f6c63430008110033

Deployed Bytecode Sourcemap

77584:2916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44526:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45428:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77822:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51919:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51352:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79982:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41179:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80117:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78001:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80371:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55558:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79828:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79254:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79539:142;;;;;;;;;;;;;:::i;:::-;;58479:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79140:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46821:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42363:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8065:103;;;;;;;;;;;;;:::i;:::-;;7417:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45604:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77874:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77916:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80238:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78102:1032;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52477:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59270:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77780:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45814:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77705:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77743:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77960:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8323:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44526:639;44611:4;44950:10;44935:25;;:11;:25;;;;:102;;;;45027:10;45012:25;;:11;:25;;;;44935:102;:179;;;;45104:10;45089:25;;:11;:25;;;;44935:179;44915:199;;44526:639;;;:::o;45428:100::-;45482:13;45515:5;45508:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45428:100;:::o;77822:47::-;;;;:::o;51919:218::-;51995:7;52020:16;52028:7;52020;:16::i;:::-;52015:64;;52045:34;;;;;;;;;;;;;;52015:64;52099:15;:24;52115:7;52099:24;;;;;;;;;;;:30;;;;;;;;;;;;52092:37;;51919:218;;;:::o;51352:408::-;51441:13;51457:16;51465:7;51457;:16::i;:::-;51441:32;;51513:5;51490:28;;:19;:17;:19::i;:::-;:28;;;51486:175;;51538:44;51555:5;51562:19;:17;:19::i;:::-;51538:16;:44::i;:::-;51533:128;;51610:35;;;;;;;;;;;;;;51533:128;51486:175;51706:2;51673:15;:24;51689:7;51673:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;51744:7;51740:2;51724:28;;51733:5;51724:28;;;;;;;;;;;;51430:330;51352:408;;:::o;79982:129::-;7303:13;:11;:13::i;:::-;80092::::1;80075:14;:30;;;;79982:129:::0;:::o;41179:323::-;41240:7;41468:15;:13;:15::i;:::-;41453:12;;41437:13;;:28;:46;41430:53;;41179:323;:::o;80117:115::-;7303:13;:11;:13::i;:::-;80220:6:::1;80200:17;:26;;;;80117:115:::0;:::o;78001:37::-;;;;;;;;;;;;;:::o;80371:126::-;7303:13;:11;:13::i;:::-;80485:6:::1;80463:19;:28;;;;80371:126:::0;:::o;55558:2825::-;55700:27;55730;55749:7;55730:18;:27::i;:::-;55700:57;;55815:4;55774:45;;55790:19;55774:45;;;55770:86;;55828:28;;;;;;;;;;;;;;55770:86;55870:27;55899:23;55926:35;55953:7;55926:26;:35::i;:::-;55869:92;;;;56061:68;56086:15;56103:4;56109:19;:17;:19::i;:::-;56061:24;:68::i;:::-;56056:180;;56149:43;56166:4;56172:19;:17;:19::i;:::-;56149:16;:43::i;:::-;56144:92;;56201:35;;;;;;;;;;;;;;56144:92;56056:180;56267:1;56253:16;;:2;:16;;;56249:52;;56278:23;;;;;;;;;;;;;;56249:52;56314:43;56336:4;56342:2;56346:7;56355:1;56314:21;:43::i;:::-;56450:15;56447:160;;;56590:1;56569:19;56562:30;56447:160;56987:18;:24;57006:4;56987:24;;;;;;;;;;;;;;;;56985:26;;;;;;;;;;;;57056:18;:22;57075:2;57056:22;;;;;;;;;;;;;;;;57054:24;;;;;;;;;;;57378:146;57415:2;57464:45;57479:4;57485:2;57489:19;57464:14;:45::i;:::-;37578:8;57436:73;57378:18;:146::i;:::-;57349:17;:26;57367:7;57349:26;;;;;;;;;;;:175;;;;57695:1;37578:8;57644:19;:47;:52;57640:627;;57717:19;57749:1;57739:7;:11;57717:33;;57906:1;57872:17;:30;57890:11;57872:30;;;;;;;;;;;;:35;57868:384;;58010:13;;57995:11;:28;57991:242;;58190:19;58157:17;:30;58175:11;58157:30;;;;;;;;;;;:52;;;;57991:242;57868:384;57698:569;57640:627;58314:7;58310:2;58295:27;;58304:4;58295:27;;;;;;;;;;;;58333:42;58354:4;58360:2;58364:7;58373:1;58333:20;:42::i;:::-;55689:2694;;;55558:2825;;;:::o;79828:148::-;7303:13;:11;:13::i;:::-;79951:19:::1;79930:18;;:40;;;;;;;;;;;;;;;;;;79828:148:::0;:::o;79254:279::-;7303:13;:11;:13::i;:::-;79350:1:::1;79339:8;:12;79323:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;79439:9;;79427:8;79411:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;79395:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;79496:31;79506:10;79518:8;79496:9;:31::i;:::-;79254:279:::0;:::o;79539:142::-;7303:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;79614:61:::2;79640:10;79653:21;79614:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;79539:142::o:0;58479:193::-;58625:39;58642:4;58648:2;58652:7;58625:39;;;;;;;;;;;;:16;:39::i;:::-;58479:193;;;:::o;79140:108::-;7303:13;:11;:13::i;:::-;79235:7:::1;79220:12;:22;;;;;;:::i;:::-;;79140:108:::0;:::o;46821:152::-;46893:7;46936:27;46955:7;46936:18;:27::i;:::-;46913:52;;46821:152;;;:::o;42363:233::-;42435:7;42476:1;42459:19;;:5;:19;;;42455:60;;42487:28;;;;;;;;;;;;;;42455:60;36522:13;42533:18;:25;42552:5;42533:25;;;;;;;;;;;;;;;;:55;42526:62;;42363:233;;;:::o;8065:103::-;7303:13;:11;:13::i;:::-;8130:30:::1;8157:1;8130:18;:30::i;:::-;8065:103::o:0;7417:87::-;7463:7;7490:6;;;;;;;;;;;7483:13;;7417:87;:::o;45604:104::-;45660:13;45693:7;45686:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45604:104;:::o;77874:37::-;;;;:::o;77916:39::-;;;;:::o;80238:127::-;7303:13;:11;:13::i;:::-;80353:6:::1;80334:16;:25;;;;80238:127:::0;:::o;78102:1032::-;78189:18;;;;;;;;;;;78181:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;78280:1;78268:9;;:13;;;;:::i;:::-;78251:14;78235:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;78227:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78347:14;;78330;78310:17;;:34;;;;:::i;:::-;:51;78307:778;;;78435:9;78416:14;78396:17;;:34;;;;:::i;:::-;78395:49;;78373:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;78307:778;;;78566:19;;78549:14;78525:21;78535:10;78525:9;:21::i;:::-;:38;;;;:::i;:::-;:60;78521:557;;;78660:9;78641:14;78621:17;;:34;;;;:::i;:::-;78620:49;;78598:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;78772:16;;78754:14;:34;;78732:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;78521:557;;;78927:19;;78909:14;:37;;78883:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;79052:14;79031:17;;:35;;;;;;;:::i;:::-;;;;;;;;78521:557;78307:778;79091:37;79101:10;79113:14;79091:9;:37::i;:::-;78102:1032;:::o;52477:234::-;52624:8;52572:18;:39;52591:19;:17;:19::i;:::-;52572:39;;;;;;;;;;;;;;;:49;52612:8;52572:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;52684:8;52648:55;;52663:19;:17;:19::i;:::-;52648:55;;;52694:8;52648:55;;;;;;:::i;:::-;;;;;;;;52477:234;;:::o;59270:407::-;59445:31;59458:4;59464:2;59468:7;59445:12;:31::i;:::-;59509:1;59491:2;:14;;;:19;59487:183;;59530:56;59561:4;59567:2;59571:7;59580:5;59530:30;:56::i;:::-;59525:145;;59614:40;;;;;;;;;;;;;;59525:145;59487:183;59270:407;;;;:::o;77780:37::-;;;;:::o;45814:318::-;45887:13;45918:16;45926:7;45918;:16::i;:::-;45913:59;;45943:29;;;;;;;;;;;;;;45913:59;45985:21;46009:10;:8;:10::i;:::-;45985:34;;46062:1;46043:7;46037:21;:26;:87;;;;;;;;;;;;;;;;;46090:7;46099:18;46109:7;46099:9;:18::i;:::-;46073:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46037:87;46030:94;;;45814:318;;;:::o;77705:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77743:32::-;;;;:::o;77960:36::-;;;;:::o;52868:164::-;52965:4;52989:18;:25;53008:5;52989:25;;;;;;;;;;;;;;;:35;53015:8;52989:35;;;;;;;;;;;;;;;;;;;;;;;;;52982:42;;52868:164;;;;:::o;8323:201::-;7303:13;:11;:13::i;:::-;8432:1:::1;8412:22;;:8;:22;;::::0;8404:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8488:28;8507:8;8488:18;:28::i;:::-;8323:201:::0;:::o;53290:282::-;53355:4;53411:7;53392:15;:13;:15::i;:::-;:26;;:66;;;;;53445:13;;53435:7;:23;53392:66;:153;;;;;53544:1;37298:8;53496:17;:26;53514:7;53496:26;;;;;;;;;;;;:44;:49;53392:153;53372:173;;53290:282;;;:::o;75598:105::-;75658:7;75685:10;75678:17;;75598:105;:::o;7582:132::-;7657:12;:10;:12::i;:::-;7646:23;;:7;:5;:7::i;:::-;:23;;;7638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7582:132::o;40695:92::-;40751:7;40778:1;40771:8;;40695:92;:::o;47976:1275::-;48043:7;48063:12;48078:7;48063:22;;48146:4;48127:15;:13;:15::i;:::-;:23;48123:1061;;48180:13;;48173:4;:20;48169:1015;;;48218:14;48235:17;:23;48253:4;48235:23;;;;;;;;;;;;48218:40;;48352:1;37298:8;48324:6;:24;:29;48320:845;;48989:113;49006:1;48996:6;:11;48989:113;;49049:17;:25;49067:6;;;;;;;49049:25;;;;;;;;;;;;49040:34;;48989:113;;;49135:6;49128:13;;;;;;48320:845;48195:989;48169:1015;48123:1061;49212:31;;;;;;;;;;;;;;47976:1275;;;;:::o;54453:485::-;54555:27;54584:23;54625:38;54666:15;:24;54682:7;54666:24;;;;;;;;;;;54625:65;;54843:18;54820:41;;54900:19;54894:26;54875:45;;54805:126;54453:485;;;:::o;53681:659::-;53830:11;53995:16;53988:5;53984:28;53975:37;;54155:16;54144:9;54140:32;54127:45;;54305:15;54294:9;54291:30;54283:5;54272:9;54269:20;54266:56;54256:66;;53681:659;;;;;:::o;60339:159::-;;;;;:::o;74907:311::-;75042:7;75062:16;37702:3;75088:19;:41;;75062:68;;37702:3;75156:31;75167:4;75173:2;75177:9;75156:10;:31::i;:::-;75148:40;;:62;;75141:69;;;74907:311;;;;;:::o;49799:450::-;49879:14;50047:16;50040:5;50036:28;50027:37;;50224:5;50210:11;50185:23;50181:41;50178:52;50171:5;50168:63;50158:73;;49799:450;;;;:::o;61163:158::-;;;;;:::o;69430:112::-;69507:27;69517:2;69521:8;69507:27;;;;;;;;;;;;:9;:27::i;:::-;69430:112;;:::o;11376:317::-;11491:6;11466:21;:31;;11458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11545:12;11563:9;:14;;11585:6;11563:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11544:52;;;11615:7;11607:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11447:246;11376:317;;:::o;8684:191::-;8758:16;8777:6;;;;;;;;;;;8758:25;;8803:8;8794:6;;:17;;;;;;;;;;;;;;;;;;8858:8;8827:40;;8848:8;8827:40;;;;;;;;;;;;8747:128;8684:191;:::o;61761:716::-;61924:4;61970:2;61945:45;;;61991:19;:17;:19::i;:::-;62012:4;62018:7;62027:5;61945:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61941:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62245:1;62228:6;:13;:18;62224:235;;62274:40;;;;;;;;;;;;;;62224:235;62417:6;62411:13;62402:6;62398:2;62394:15;62387:38;61941:529;62114:54;;;62104:64;;;:6;:64;;;;62097:71;;;61761:716;;;;;;:::o;79687:135::-;79772:13;79804:12;79797:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79687:135;:::o;75805:1745::-;75870:17;76304:4;76297;76291:11;76287:22;76396:1;76390:4;76383:15;76471:4;76468:1;76464:12;76457:19;;76553:1;76548:3;76541:14;76657:3;76896:5;76878:428;76904:1;76878:428;;;76944:1;76939:3;76935:11;76928:18;;77115:2;77109:4;77105:13;77101:2;77097:22;77092:3;77084:36;77209:2;77203:4;77199:13;77191:21;;77276:4;76878:428;77266:25;76878:428;76882:21;77345:3;77340;77336:13;77460:4;77455:3;77451:14;77444:21;;77525:6;77520:3;77513:19;75909:1634;;;75805:1745;;;:::o;5968:98::-;6021:7;6048:10;6041:17;;5968:98;:::o;74608:147::-;74745:6;74608:147;;;;;:::o;68657:689::-;68788:19;68794:2;68798:8;68788:5;:19::i;:::-;68867:1;68849:2;:14;;;:19;68845:483;;68889:11;68903:13;;68889:27;;68935:13;68957:8;68951:3;:14;68935:30;;68984:233;69015:62;69054:1;69058:2;69062:7;;;;;;69071:5;69015:30;:62::i;:::-;69010:167;;69113:40;;;;;;;;;;;;;;69010:167;69212:3;69204:5;:11;68984:233;;69299:3;69282:13;;:20;69278:34;;69304:8;;;69278:34;68870:458;;68845:483;68657:689;;;:::o;62939:2966::-;63012:20;63035:13;;63012:36;;63075:1;63063:8;:13;63059:44;;63085:18;;;;;;;;;;;;;;63059:44;63116:61;63146:1;63150:2;63154:12;63168:8;63116:21;:61::i;:::-;63660:1;36660:2;63630:1;:26;;63629:32;63617:8;:45;63591:18;:22;63610:2;63591:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;63939:139;63976:2;64030:33;64053:1;64057:2;64061:1;64030:14;:33::i;:::-;63997:30;64018:8;63997:20;:30::i;:::-;:66;63939:18;:139::i;:::-;63905:17;:31;63923:12;63905:31;;;;;;;;;;;:173;;;;64095:16;64126:11;64155:8;64140:12;:23;64126:37;;64676:16;64672:2;64668:25;64656:37;;65048:12;65008:8;64967:1;64905:25;64846:1;64785;64758:335;65419:1;65405:12;65401:20;65359:346;65460:3;65451:7;65448:16;65359:346;;65678:7;65668:8;65665:1;65638:25;65635:1;65632;65627:59;65513:1;65504:7;65500:15;65489:26;;65359:346;;;65363:77;65750:1;65738:8;:13;65734:45;;65760:19;;;;;;;;;;;;;;65734:45;65812:3;65796:13;:19;;;;63365:2462;;65837:60;65866:1;65870:2;65874:12;65888:8;65837:20;:60::i;:::-;63001:2904;62939:2966;;:::o;50351:324::-;50421:14;50654:1;50644:8;50641:15;50615:24;50611:46;50601:56;;50351:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:118::-;3030:24;3048:5;3030:24;:::i;:::-;3025:3;3018:37;2943:118;;:::o;3067:222::-;3160:4;3198:2;3187:9;3183:18;3175:26;;3211:71;3279:1;3268:9;3264:17;3255:6;3211:71;:::i;:::-;3067:222;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:169::-;13072:21;13068:1;13060:6;13056:14;13049:45;12932:169;:::o;13107:366::-;13249:3;13270:67;13334:2;13329:3;13270:67;:::i;:::-;13263:74;;13346:93;13435:3;13346:93;:::i;:::-;13464:2;13459:3;13455:12;13448:19;;13107:366;;;:::o;13479:419::-;13645:4;13683:2;13672:9;13668:18;13660:26;;13732:9;13726:4;13722:20;13718:1;13707:9;13703:17;13696:47;13760:131;13886:4;13760:131;:::i;:::-;13752:139;;13479:419;;;:::o;13904:180::-;13952:77;13949:1;13942:88;14049:4;14046:1;14039:15;14073:4;14070:1;14063:15;14090:191;14130:3;14149:20;14167:1;14149:20;:::i;:::-;14144:25;;14183:20;14201:1;14183:20;:::i;:::-;14178:25;;14226:1;14223;14219:9;14212:16;;14247:3;14244:1;14241:10;14238:36;;;14254:18;;:::i;:::-;14238:36;14090:191;;;;:::o;14287:173::-;14427:25;14423:1;14415:6;14411:14;14404:49;14287:173;:::o;14466:366::-;14608:3;14629:67;14693:2;14688:3;14629:67;:::i;:::-;14622:74;;14705:93;14794:3;14705:93;:::i;:::-;14823:2;14818:3;14814:12;14807:19;;14466:366;;;:::o;14838:419::-;15004:4;15042:2;15031:9;15027:18;15019:26;;15091:9;15085:4;15081:20;15077:1;15066:9;15062:17;15055:47;15119:131;15245:4;15119:131;:::i;:::-;15111:139;;14838:419;;;:::o;15263:181::-;15403:33;15399:1;15391:6;15387:14;15380:57;15263:181;:::o;15450:366::-;15592:3;15613:67;15677:2;15672:3;15613:67;:::i;:::-;15606:74;;15689:93;15778:3;15689:93;:::i;:::-;15807:2;15802:3;15798:12;15791:19;;15450:366;;;:::o;15822:419::-;15988:4;16026:2;16015:9;16011:18;16003:26;;16075:9;16069:4;16065:20;16061:1;16050:9;16046:17;16039:47;16103:131;16229:4;16103:131;:::i;:::-;16095:139;;15822:419;;;:::o;16247:141::-;16296:4;16319:3;16311:11;;16342:3;16339:1;16332:14;16376:4;16373:1;16363:18;16355:26;;16247:141;;;:::o;16394:93::-;16431:6;16478:2;16473;16466:5;16462:14;16458:23;16448:33;;16394:93;;;:::o;16493:107::-;16537:8;16587:5;16581:4;16577:16;16556:37;;16493:107;;;;:::o;16606:393::-;16675:6;16725:1;16713:10;16709:18;16748:97;16778:66;16767:9;16748:97;:::i;:::-;16866:39;16896:8;16885:9;16866:39;:::i;:::-;16854:51;;16938:4;16934:9;16927:5;16923:21;16914:30;;16987:4;16977:8;16973:19;16966:5;16963:30;16953:40;;16682:317;;16606:393;;;;;:::o;17005:60::-;17033:3;17054:5;17047:12;;17005:60;;;:::o;17071:142::-;17121:9;17154:53;17172:34;17181:24;17199:5;17181:24;:::i;:::-;17172:34;:::i;:::-;17154:53;:::i;:::-;17141:66;;17071:142;;;:::o;17219:75::-;17262:3;17283:5;17276:12;;17219:75;;;:::o;17300:269::-;17410:39;17441:7;17410:39;:::i;:::-;17471:91;17520:41;17544:16;17520:41;:::i;:::-;17512:6;17505:4;17499:11;17471:91;:::i;:::-;17465:4;17458:105;17376:193;17300:269;;;:::o;17575:73::-;17620:3;17575:73;:::o;17654:189::-;17731:32;;:::i;:::-;17772:65;17830:6;17822;17816:4;17772:65;:::i;:::-;17707:136;17654:189;;:::o;17849:186::-;17909:120;17926:3;17919:5;17916:14;17909:120;;;17980:39;18017:1;18010:5;17980:39;:::i;:::-;17953:1;17946:5;17942:13;17933:22;;17909:120;;;17849:186;;:::o;18041:543::-;18142:2;18137:3;18134:11;18131:446;;;18176:38;18208:5;18176:38;:::i;:::-;18260:29;18278:10;18260:29;:::i;:::-;18250:8;18246:44;18443:2;18431:10;18428:18;18425:49;;;18464:8;18449:23;;18425:49;18487:80;18543:22;18561:3;18543:22;:::i;:::-;18533:8;18529:37;18516:11;18487:80;:::i;:::-;18146:431;;18131:446;18041:543;;;:::o;18590:117::-;18644:8;18694:5;18688:4;18684:16;18663:37;;18590:117;;;;:::o;18713:169::-;18757:6;18790:51;18838:1;18834:6;18826:5;18823:1;18819:13;18790:51;:::i;:::-;18786:56;18871:4;18865;18861:15;18851:25;;18764:118;18713:169;;;;:::o;18887:295::-;18963:4;19109:29;19134:3;19128:4;19109:29;:::i;:::-;19101:37;;19171:3;19168:1;19164:11;19158:4;19155:21;19147:29;;18887:295;;;;:::o;19187:1395::-;19304:37;19337:3;19304:37;:::i;:::-;19406:18;19398:6;19395:30;19392:56;;;19428:18;;:::i;:::-;19392:56;19472:38;19504:4;19498:11;19472:38;:::i;:::-;19557:67;19617:6;19609;19603:4;19557:67;:::i;:::-;19651:1;19675:4;19662:17;;19707:2;19699:6;19696:14;19724:1;19719:618;;;;20381:1;20398:6;20395:77;;;20447:9;20442:3;20438:19;20432:26;20423:35;;20395:77;20498:67;20558:6;20551:5;20498:67;:::i;:::-;20492:4;20485:81;20354:222;19689:887;;19719:618;19771:4;19767:9;19759:6;19755:22;19805:37;19837:4;19805:37;:::i;:::-;19864:1;19878:208;19892:7;19889:1;19886:14;19878:208;;;19971:9;19966:3;19962:19;19956:26;19948:6;19941:42;20022:1;20014:6;20010:14;20000:24;;20069:2;20058:9;20054:18;20041:31;;19915:4;19912:1;19908:12;19903:17;;19878:208;;;20114:6;20105:7;20102:19;20099:179;;;20172:9;20167:3;20163:19;20157:26;20215:48;20257:4;20249:6;20245:17;20234:9;20215:48;:::i;:::-;20207:6;20200:64;20122:156;20099:179;20324:1;20320;20312:6;20308:14;20304:22;20298:4;20291:36;19726:611;;;19689:887;;19279:1303;;;19187:1395;;:::o;20588:158::-;20728:10;20724:1;20716:6;20712:14;20705:34;20588:158;:::o;20752:365::-;20894:3;20915:66;20979:1;20974:3;20915:66;:::i;:::-;20908:73;;20990:93;21079:3;20990:93;:::i;:::-;21108:2;21103:3;21099:12;21092:19;;20752:365;;;:::o;21123:419::-;21289:4;21327:2;21316:9;21312:18;21304:26;;21376:9;21370:4;21366:20;21362:1;21351:9;21347:17;21340:47;21404:131;21530:4;21404:131;:::i;:::-;21396:139;;21123:419;;;:::o;21548:162::-;21688:14;21684:1;21676:6;21672:14;21665:38;21548:162;:::o;21716:366::-;21858:3;21879:67;21943:2;21938:3;21879:67;:::i;:::-;21872:74;;21955:93;22044:3;21955:93;:::i;:::-;22073:2;22068:3;22064:12;22057:19;;21716:366;;;:::o;22088:419::-;22254:4;22292:2;22281:9;22277:18;22269:26;;22341:9;22335:4;22331:20;22327:1;22316:9;22312:17;22305:47;22369:131;22495:4;22369:131;:::i;:::-;22361:139;;22088:419;;;:::o;22513:410::-;22553:7;22576:20;22594:1;22576:20;:::i;:::-;22571:25;;22610:20;22628:1;22610:20;:::i;:::-;22605:25;;22665:1;22662;22658:9;22687:30;22705:11;22687:30;:::i;:::-;22676:41;;22866:1;22857:7;22853:15;22850:1;22847:22;22827:1;22820:9;22800:83;22777:139;;22896:18;;:::i;:::-;22777:139;22561:362;22513:410;;;;:::o;22929:174::-;23069:26;23065:1;23057:6;23053:14;23046:50;22929:174;:::o;23109:366::-;23251:3;23272:67;23336:2;23331:3;23272:67;:::i;:::-;23265:74;;23348:93;23437:3;23348:93;:::i;:::-;23466:2;23461:3;23457:12;23450:19;;23109:366;;;:::o;23481:419::-;23647:4;23685:2;23674:9;23670:18;23662:26;;23734:9;23728:4;23724:20;23720:1;23709:9;23705:17;23698:47;23762:131;23888:4;23762:131;:::i;:::-;23754:139;;23481:419;;;:::o;23906:221::-;24046:34;24042:1;24034:6;24030:14;24023:58;24115:4;24110:2;24102:6;24098:15;24091:29;23906:221;:::o;24133:366::-;24275:3;24296:67;24360:2;24355:3;24296:67;:::i;:::-;24289:74;;24372:93;24461:3;24372:93;:::i;:::-;24490:2;24485:3;24481:12;24474:19;;24133:366;;;:::o;24505:419::-;24671:4;24709:2;24698:9;24694:18;24686:26;;24758:9;24752:4;24748:20;24744:1;24733:9;24729:17;24722:47;24786:131;24912:4;24786:131;:::i;:::-;24778:139;;24505:419;;;:::o;24930:148::-;25032:11;25069:3;25054:18;;24930:148;;;;:::o;25084:390::-;25190:3;25218:39;25251:5;25218:39;:::i;:::-;25273:89;25355:6;25350:3;25273:89;:::i;:::-;25266:96;;25371:65;25429:6;25424:3;25417:4;25410:5;25406:16;25371:65;:::i;:::-;25461:6;25456:3;25452:16;25445:23;;25194:280;25084:390;;;;:::o;25480:435::-;25660:3;25682:95;25773:3;25764:6;25682:95;:::i;:::-;25675:102;;25794:95;25885:3;25876:6;25794:95;:::i;:::-;25787:102;;25906:3;25899:10;;25480:435;;;;;:::o;25921:225::-;26061:34;26057:1;26049:6;26045:14;26038:58;26130:8;26125:2;26117:6;26113:15;26106:33;25921:225;:::o;26152:366::-;26294:3;26315:67;26379:2;26374:3;26315:67;:::i;:::-;26308:74;;26391:93;26480:3;26391:93;:::i;:::-;26509:2;26504:3;26500:12;26493:19;;26152:366;;;:::o;26524:419::-;26690:4;26728:2;26717:9;26713:18;26705:26;;26777:9;26771:4;26767:20;26763:1;26752:9;26748:17;26741:47;26805:131;26931:4;26805:131;:::i;:::-;26797:139;;26524:419;;;:::o;26949:182::-;27089:34;27085:1;27077:6;27073:14;27066:58;26949:182;:::o;27137:366::-;27279:3;27300:67;27364:2;27359:3;27300:67;:::i;:::-;27293:74;;27376:93;27465:3;27376:93;:::i;:::-;27494:2;27489:3;27485:12;27478:19;;27137:366;;;:::o;27509:419::-;27675:4;27713:2;27702:9;27698:18;27690:26;;27762:9;27756:4;27752:20;27748:1;27737:9;27733:17;27726:47;27790:131;27916:4;27790:131;:::i;:::-;27782:139;;27509:419;;;:::o;27934:179::-;28074:31;28070:1;28062:6;28058:14;28051:55;27934:179;:::o;28119:366::-;28261:3;28282:67;28346:2;28341:3;28282:67;:::i;:::-;28275:74;;28358:93;28447:3;28358:93;:::i;:::-;28476:2;28471:3;28467:12;28460:19;;28119:366;;;:::o;28491:419::-;28657:4;28695:2;28684:9;28680:18;28672:26;;28744:9;28738:4;28734:20;28730:1;28719:9;28715:17;28708:47;28772:131;28898:4;28772:131;:::i;:::-;28764:139;;28491:419;;;:::o;28916:147::-;29017:11;29054:3;29039:18;;28916:147;;;;:::o;29069:114::-;;:::o;29189:398::-;29348:3;29369:83;29450:1;29445:3;29369:83;:::i;:::-;29362:90;;29461:93;29550:3;29461:93;:::i;:::-;29579:1;29574:3;29570:11;29563:18;;29189:398;;;:::o;29593:379::-;29777:3;29799:147;29942:3;29799:147;:::i;:::-;29792:154;;29963:3;29956:10;;29593:379;;;:::o;29978:245::-;30118:34;30114:1;30106:6;30102:14;30095:58;30187:28;30182:2;30174:6;30170:15;30163:53;29978:245;:::o;30229:366::-;30371:3;30392:67;30456:2;30451:3;30392:67;:::i;:::-;30385:74;;30468:93;30557:3;30468:93;:::i;:::-;30586:2;30581:3;30577:12;30570:19;;30229:366;;;:::o;30601:419::-;30767:4;30805:2;30794:9;30790:18;30782:26;;30854:9;30848:4;30844:20;30840:1;30829:9;30825:17;30818:47;30882:131;31008:4;30882:131;:::i;:::-;30874:139;;30601:419;;;:::o;31026:98::-;31077:6;31111:5;31105:12;31095:22;;31026:98;;;:::o;31130:168::-;31213:11;31247:6;31242:3;31235:19;31287:4;31282:3;31278:14;31263:29;;31130:168;;;;:::o;31304:373::-;31390:3;31418:38;31450:5;31418:38;:::i;:::-;31472:70;31535:6;31530:3;31472:70;:::i;:::-;31465:77;;31551:65;31609:6;31604:3;31597:4;31590:5;31586:16;31551:65;:::i;:::-;31641:29;31663:6;31641:29;:::i;:::-;31636:3;31632:39;31625:46;;31394:283;31304:373;;;;:::o;31683:640::-;31878:4;31916:3;31905:9;31901:19;31893:27;;31930:71;31998:1;31987:9;31983:17;31974:6;31930:71;:::i;:::-;32011:72;32079:2;32068:9;32064:18;32055:6;32011:72;:::i;:::-;32093;32161:2;32150:9;32146:18;32137:6;32093:72;:::i;:::-;32212:9;32206:4;32202:20;32197:2;32186:9;32182:18;32175:48;32240:76;32311:4;32302:6;32240:76;:::i;:::-;32232:84;;31683:640;;;;;;;:::o;32329:141::-;32385:5;32416:6;32410:13;32401:22;;32432:32;32458:5;32432:32;:::i;:::-;32329:141;;;;:::o;32476:349::-;32545:6;32594:2;32582:9;32573:7;32569:23;32565:32;32562:119;;;32600:79;;:::i;:::-;32562:119;32720:1;32745:63;32800:7;32791:6;32780:9;32776:22;32745:63;:::i;:::-;32735:73;;32691:127;32476:349;;;;:::o

Swarm Source

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