ETH Price: $3,507.95 (+3.17%)
Gas: 11 Gwei

Token

bubblepoppersxyz (BUBBLEPOPPER)
 

Overview

Max Total Supply

3,333 BUBBLEPOPPER

Holders

243

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 BUBBLEPOPPER
0xf2aa614e6ed9fcef1a86fae6bb8f9cb67bf50f03
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:
bubblepoppersxyz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*

░█▀▄░█░█░█▀▄░█▀▄░█░░░█▀▀░█▀█░█▀█░█▀█░█▀█░█▀▀░█▀▄░█▀▀
░█▀▄░█░█░█▀▄░█▀▄░█░░░█▀▀░█▀▀░█░█░█▀▀░█▀▀░█▀▀░█▀▄░▀▀█
░▀▀░░▀▀▀░▀▀░░▀▀░░▀▀▀░▀▀▀░▀░░░▀▀▀░▀░░░▀░░░▀▀▀░▀░▀░▀▀▀

*/

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

// SPDX-License-Identifier: MIT

// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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



pragma solidity ^0.8.0;





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


  string  public  baseTokenURI = "";
  uint256 public  maxSupply = 3333;
  uint256 public  MAX_MINTS_PER_TX = 10;
  uint256 public  PUBLIC_SALE_PRICE = 0.005 ether;
  uint256 public  NUM_FREE_MINTS = 3333;
  uint256 public  MAX_FREE_PER_WALLET = 10;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = false;

  constructor(

  ) ERC721A("bubblepoppersxyz", "BUBBLEPOPPER") {

  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + 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"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

  function treasuryMint(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 tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

  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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"nonpayable","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":[],"name":"freeNFTAlreadyMinted","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000236565b50610d05600b55600a600c556611c37937e08000600d55610d05600e55600a600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200007a57600080fd5b506040518060400160405280601081526020017f627562626c65706f707065727378797a000000000000000000000000000000008152506040518060400160405280600c81526020017f425542424c45504f5050455200000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000236565b5080600390805190602001906200011892919062000236565b50620001296200015f60201b60201c565b600081905550505062000151620001456200016860201b60201c565b6200017060201b60201c565b60016009819055506200034b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024490620002e6565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b60006002820490506001821680620002ff57607f821691505b602082108114156200031657620003156200031c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d7c806200035b6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f0c565b6107cf565b60405161023291906133da565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d91906133f5565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190613597565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612f9f565b610949565b6040516102c59190613373565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612ea7565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612f9f565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190613597565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612f9f565b610b6d565b005b34801561038057600080fd5b50610389610bf3565b6040516103969190613597565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf9565b6040516103c191906133da565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612f9f565b610c0c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612da1565b610c92565b005b34801561042857600080fd5b50610443600480360381019061043e9190612ee3565b610ca2565b005b34801561045157600080fd5b5061045a610d3b565b005b34801561046857600080fd5b50610483600480360381019061047e9190612da1565b610e19565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612f5e565b610e39565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612f9f565b610ecf565b6040516104e29190613373565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612d3c565b610ee5565b60405161051f9190613597565b60405180910390f35b34801561053457600080fd5b5061053d610fb5565b005b34801561054b57600080fd5b5061055461103d565b6040516105619190613373565b60405180910390f35b34801561057657600080fd5b5061057f611067565b60405161058c91906133f5565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190613597565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190613597565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612f9f565b611105565b005b61062e60048036038101906106299190612f9f565b61118b565b005b34801561063c57600080fd5b5061065760048036038101906106529190612e6b565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b9190612df0565b611544565b005b34801561068e57600080fd5b506106976115c0565b6040516106a49190613597565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612f9f565b6115c6565b6040516106e191906133f5565b60405180910390f35b3480156106f657600080fd5b506106ff611642565b60405161070c91906133f5565b60405180910390f35b34801561072157600080fd5b5061072a6116d0565b6040516107379190613597565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612d65565b6116d6565b60405161077491906133da565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612f9f565b61176a565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190612d3c565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c090613867565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90613867565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6116d6565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af661103d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b43906134d7565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b610b75611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b9361103d565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be0906134d7565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c14611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c3261103d565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906134d7565b60405180910390fd5b80600f8190555050565b610c9d838383611b00565b505050565b610caa611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610cc861103d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906134d7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d43611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d6161103d565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906134d7565b60405180910390fd5b60026009541415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613557565b60405180910390fd5b6002600981905550610e0f3347611fb6565b6001600981905550565b610e3483838360405180602001604052806000815250611544565b505050565b610e41611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e5f61103d565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906134d7565b60405180910390fd5b80600a9080519060200190610ecb929190612b1d565b5050565b6000610eda826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbd611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fdb61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611028906134d7565b60405180910390fd5b61103b6000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461107690613867565b80601f01602080910402602001604051908101604052809291908181526020018280546110a290613867565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906134d7565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613577565b60405180910390fd5b6001600b546111e9919061369c565b816111f2610b56565b6111fc919061369c565b1061123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613417565b60405180910390fd5b600e548160105461124d919061369c565b11156112a8573481600d546112629190613723565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90613537565b60405180910390fd5b6113bf565b600f54816112b533610ee5565b6112bf919061369c565b111561135f573481600d546112d49190613723565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613537565b60405180910390fd5b600c5481111561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613497565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613497565b60405180910390fd5b80601060008282546113b6919061369c565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153891906133da565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115d1826119ef565b611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906134f7565b60405180910390fd5b600a61161b836125a0565b60405160200161162c929190613324565b6040516020818303038152906040529050919050565b600a805461164f90613867565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90613867565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611772611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661179061103d565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906134d7565b60405180910390fd5b60008111611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613517565b60405180910390fd5b600b5481611835610b56565b61183f919061369c565b1115611880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611877906134b7565b60405180910390fd5b61188a33826123ff565b50565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b361103d565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611900906134d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613437565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6116d6565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb8858585600161274d565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf8585856001612753565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613477565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f9061335e565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613457565b60405180910390fd5b505050565b6120b2612ba3565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612419828260405180602001604052806000815250612759565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b8152600401612488949392919061338e565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d09190612f35565b60015b61254d573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b50600081511415612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125e8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612748565b600082905060005b6000821461261a578080612603906138ca565b915050600a8261261391906136f2565b91506125f0565b60008167ffffffffffffffff81111561265c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561268e5781602001600182028036833780820191505090505b5090505b60008514612741576001826126a7919061377d565b9150600a856126b69190613913565b60306126c2919061369c565b60f81b8183815181106126fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273a91906136f2565b9450612692565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612801576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61280e600085838661274d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129cf8673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a95575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a446000878480600101955087612440565b612a7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d5578260005414612a9057600080fd5b612b01565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a96575b816000819055505050612b176000858386612753565b50505050565b828054612b2990613867565b90600052602060002090601f016020900481019282612b4b5760008555612b92565b82601f10612b6457805160ff1916838001178555612b92565b82800160010185558215612b92579182015b82811115612b91578251825591602001919060010190612b76565b5b509050612b9f9190612be6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bff576000816000905550600101612be7565b5090565b6000612c16612c11846135d7565b6135b2565b905082815260208101848484011115612c2e57600080fd5b612c39848285613825565b509392505050565b6000612c54612c4f84613608565b6135b2565b905082815260208101848484011115612c6c57600080fd5b612c77848285613825565b509392505050565b600081359050612c8e81613cea565b92915050565b600081359050612ca381613d01565b92915050565b600081359050612cb881613d18565b92915050565b600081519050612ccd81613d18565b92915050565b600082601f830112612ce457600080fd5b8135612cf4848260208601612c03565b91505092915050565b600082601f830112612d0e57600080fd5b8135612d1e848260208601612c41565b91505092915050565b600081359050612d3681613d2f565b92915050565b600060208284031215612d4e57600080fd5b6000612d5c84828501612c7f565b91505092915050565b60008060408385031215612d7857600080fd5b6000612d8685828601612c7f565b9250506020612d9785828601612c7f565b9150509250929050565b600080600060608486031215612db657600080fd5b6000612dc486828701612c7f565b9350506020612dd586828701612c7f565b9250506040612de686828701612d27565b9150509250925092565b60008060008060808587031215612e0657600080fd5b6000612e1487828801612c7f565b9450506020612e2587828801612c7f565b9350506040612e3687828801612d27565b925050606085013567ffffffffffffffff811115612e5357600080fd5b612e5f87828801612cd3565b91505092959194509250565b60008060408385031215612e7e57600080fd5b6000612e8c85828601612c7f565b9250506020612e9d85828601612c94565b9150509250929050565b60008060408385031215612eba57600080fd5b6000612ec885828601612c7f565b9250506020612ed985828601612d27565b9150509250929050565b600060208284031215612ef557600080fd5b6000612f0384828501612c94565b91505092915050565b600060208284031215612f1e57600080fd5b6000612f2c84828501612ca9565b91505092915050565b600060208284031215612f4757600080fd5b6000612f5584828501612cbe565b91505092915050565b600060208284031215612f7057600080fd5b600082013567ffffffffffffffff811115612f8a57600080fd5b612f9684828501612cfd565b91505092915050565b600060208284031215612fb157600080fd5b6000612fbf84828501612d27565b91505092915050565b612fd1816137b1565b82525050565b612fe0816137c3565b82525050565b6000612ff18261364e565b612ffb8185613664565b935061300b818560208601613834565b61301481613a00565b840191505092915050565b600061302a82613659565b6130348185613680565b9350613044818560208601613834565b61304d81613a00565b840191505092915050565b600061306382613659565b61306d8185613691565b935061307d818560208601613834565b80840191505092915050565b6000815461309681613867565b6130a08186613691565b945060018216600081146130bb57600181146130cc576130ff565b60ff198316865281860193506130ff565b6130d585613639565b60005b838110156130f7578154818901526001820191506020810190506130d8565b838801955050505b50505092915050565b6000613115600783613680565b915061312082613a11565b602082019050919050565b6000613138602683613680565b915061314382613a3a565b604082019050919050565b600061315b603a83613680565b915061316682613a89565b604082019050919050565b600061317e601d83613680565b915061318982613ad8565b602082019050919050565b60006131a1602283613680565b91506131ac82613b01565b604082019050919050565b60006131c4601783613680565b91506131cf82613b50565b602082019050919050565b60006131e7600583613691565b91506131f282613b79565b600582019050919050565b600061320a602083613680565b915061321582613ba2565b602082019050919050565b600061322d602f83613680565b915061323882613bcb565b604082019050919050565b6000613250600083613675565b915061325b82613c1a565b600082019050919050565b6000613273601383613680565b915061327e82613c1d565b602082019050919050565b6000613296601883613680565b91506132a182613c46565b602082019050919050565b60006132b9601f83613680565b91506132c482613c6f565b602082019050919050565b60006132dc601783613680565b91506132e782613c98565b602082019050919050565b60006132ff600183613691565b915061330a82613cc1565b600182019050919050565b61331e8161381b565b82525050565b60006133308285613089565b915061333b826132f2565b91506133478284613058565b9150613352826131da565b91508190509392505050565b600061336982613243565b9150819050919050565b60006020820190506133886000830184612fc8565b92915050565b60006080820190506133a36000830187612fc8565b6133b06020830186612fc8565b6133bd6040830185613315565b81810360608301526133cf8184612fe6565b905095945050505050565b60006020820190506133ef6000830184612fd7565b92915050565b6000602082019050818103600083015261340f818461301f565b905092915050565b6000602082019050818103600083015261343081613108565b9050919050565b600060208201905081810360008301526134508161312b565b9050919050565b600060208201905081810360008301526134708161314e565b9050919050565b6000602082019050818103600083015261349081613171565b9050919050565b600060208201905081810360008301526134b081613194565b9050919050565b600060208201905081810360008301526134d0816131b7565b9050919050565b600060208201905081810360008301526134f0816131fd565b9050919050565b6000602082019050818103600083015261351081613220565b9050919050565b6000602082019050818103600083015261353081613266565b9050919050565b6000602082019050818103600083015261355081613289565b9050919050565b60006020820190508181036000830152613570816132ac565b9050919050565b60006020820190508181036000830152613590816132cf565b9050919050565b60006020820190506135ac6000830184613315565b92915050565b60006135bc6135cd565b90506135c88282613899565b919050565b6000604051905090565b600067ffffffffffffffff8211156135f2576135f16139d1565b5b6135fb82613a00565b9050602081019050919050565b600067ffffffffffffffff821115613623576136226139d1565b5b61362c82613a00565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136a78261381b565b91506136b28361381b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e7576136e6613944565b5b828201905092915050565b60006136fd8261381b565b91506137088361381b565b92508261371857613717613973565b5b828204905092915050565b600061372e8261381b565b91506137398361381b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377257613771613944565b5b828202905092915050565b60006137888261381b565b91506137938361381b565b9250828210156137a6576137a5613944565b5b828203905092915050565b60006137bc826137fb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613852578082015181840152602081019050613837565b83811115613861576000848401525b50505050565b6000600282049050600182168061387f57607f821691505b60208210811415613893576138926139a2565b5b50919050565b6138a282613a00565b810181811067ffffffffffffffff821117156138c1576138c06139d1565b5b80604052505050565b60006138d58261381b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390857613907613944565b5b600182019050919050565b600061391e8261381b565b91506139298361381b565b92508261393957613938613973565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613cf3816137b1565b8114613cfe57600080fd5b50565b613d0a816137c3565b8114613d1557600080fd5b50565b613d21816137cf565b8114613d2c57600080fd5b50565b613d388161381b565b8114613d4357600080fd5b5056fea26469706673582212200b653c0b94ef33749131b62a732f98cf127b288c88ded76ae54e256d0bcfcac864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f0c565b6107cf565b60405161023291906133da565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d91906133f5565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190613597565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612f9f565b610949565b6040516102c59190613373565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612ea7565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612f9f565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190613597565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612f9f565b610b6d565b005b34801561038057600080fd5b50610389610bf3565b6040516103969190613597565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf9565b6040516103c191906133da565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612f9f565b610c0c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612da1565b610c92565b005b34801561042857600080fd5b50610443600480360381019061043e9190612ee3565b610ca2565b005b34801561045157600080fd5b5061045a610d3b565b005b34801561046857600080fd5b50610483600480360381019061047e9190612da1565b610e19565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612f5e565b610e39565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612f9f565b610ecf565b6040516104e29190613373565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612d3c565b610ee5565b60405161051f9190613597565b60405180910390f35b34801561053457600080fd5b5061053d610fb5565b005b34801561054b57600080fd5b5061055461103d565b6040516105619190613373565b60405180910390f35b34801561057657600080fd5b5061057f611067565b60405161058c91906133f5565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190613597565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190613597565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612f9f565b611105565b005b61062e60048036038101906106299190612f9f565b61118b565b005b34801561063c57600080fd5b5061065760048036038101906106529190612e6b565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b9190612df0565b611544565b005b34801561068e57600080fd5b506106976115c0565b6040516106a49190613597565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612f9f565b6115c6565b6040516106e191906133f5565b60405180910390f35b3480156106f657600080fd5b506106ff611642565b60405161070c91906133f5565b60405180910390f35b34801561072157600080fd5b5061072a6116d0565b6040516107379190613597565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612d65565b6116d6565b60405161077491906133da565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612f9f565b61176a565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190612d3c565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c090613867565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90613867565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6116d6565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af661103d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b43906134d7565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b610b75611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b9361103d565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be0906134d7565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c14611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c3261103d565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906134d7565b60405180910390fd5b80600f8190555050565b610c9d838383611b00565b505050565b610caa611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610cc861103d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906134d7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d43611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d6161103d565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906134d7565b60405180910390fd5b60026009541415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613557565b60405180910390fd5b6002600981905550610e0f3347611fb6565b6001600981905550565b610e3483838360405180602001604052806000815250611544565b505050565b610e41611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e5f61103d565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906134d7565b60405180910390fd5b80600a9080519060200190610ecb929190612b1d565b5050565b6000610eda826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbd611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fdb61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611028906134d7565b60405180910390fd5b61103b6000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461107690613867565b80601f01602080910402602001604051908101604052809291908181526020018280546110a290613867565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906134d7565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613577565b60405180910390fd5b6001600b546111e9919061369c565b816111f2610b56565b6111fc919061369c565b1061123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613417565b60405180910390fd5b600e548160105461124d919061369c565b11156112a8573481600d546112629190613723565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90613537565b60405180910390fd5b6113bf565b600f54816112b533610ee5565b6112bf919061369c565b111561135f573481600d546112d49190613723565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613537565b60405180910390fd5b600c5481111561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613497565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613497565b60405180910390fd5b80601060008282546113b6919061369c565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153891906133da565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115d1826119ef565b611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906134f7565b60405180910390fd5b600a61161b836125a0565b60405160200161162c929190613324565b6040516020818303038152906040529050919050565b600a805461164f90613867565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90613867565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611772611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661179061103d565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906134d7565b60405180910390fd5b60008111611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613517565b60405180910390fd5b600b5481611835610b56565b61183f919061369c565b1115611880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611877906134b7565b60405180910390fd5b61188a33826123ff565b50565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b361103d565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611900906134d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613437565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6116d6565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb8858585600161274d565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf8585856001612753565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613477565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f9061335e565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613457565b60405180910390fd5b505050565b6120b2612ba3565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612419828260405180602001604052806000815250612759565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b8152600401612488949392919061338e565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d09190612f35565b60015b61254d573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b50600081511415612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125e8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612748565b600082905060005b6000821461261a578080612603906138ca565b915050600a8261261391906136f2565b91506125f0565b60008167ffffffffffffffff81111561265c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561268e5781602001600182028036833780820191505090505b5090505b60008514612741576001826126a7919061377d565b9150600a856126b69190613913565b60306126c2919061369c565b60f81b8183815181106126fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273a91906136f2565b9450612692565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612801576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61280e600085838661274d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129cf8673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a95575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a446000878480600101955087612440565b612a7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d5578260005414612a9057600080fd5b612b01565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a96575b816000819055505050612b176000858386612753565b50505050565b828054612b2990613867565b90600052602060002090601f016020900481019282612b4b5760008555612b92565b82601f10612b6457805160ff1916838001178555612b92565b82800160010185558215612b92579182015b82811115612b91578251825591602001919060010190612b76565b5b509050612b9f9190612be6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bff576000816000905550600101612be7565b5090565b6000612c16612c11846135d7565b6135b2565b905082815260208101848484011115612c2e57600080fd5b612c39848285613825565b509392505050565b6000612c54612c4f84613608565b6135b2565b905082815260208101848484011115612c6c57600080fd5b612c77848285613825565b509392505050565b600081359050612c8e81613cea565b92915050565b600081359050612ca381613d01565b92915050565b600081359050612cb881613d18565b92915050565b600081519050612ccd81613d18565b92915050565b600082601f830112612ce457600080fd5b8135612cf4848260208601612c03565b91505092915050565b600082601f830112612d0e57600080fd5b8135612d1e848260208601612c41565b91505092915050565b600081359050612d3681613d2f565b92915050565b600060208284031215612d4e57600080fd5b6000612d5c84828501612c7f565b91505092915050565b60008060408385031215612d7857600080fd5b6000612d8685828601612c7f565b9250506020612d9785828601612c7f565b9150509250929050565b600080600060608486031215612db657600080fd5b6000612dc486828701612c7f565b9350506020612dd586828701612c7f565b9250506040612de686828701612d27565b9150509250925092565b60008060008060808587031215612e0657600080fd5b6000612e1487828801612c7f565b9450506020612e2587828801612c7f565b9350506040612e3687828801612d27565b925050606085013567ffffffffffffffff811115612e5357600080fd5b612e5f87828801612cd3565b91505092959194509250565b60008060408385031215612e7e57600080fd5b6000612e8c85828601612c7f565b9250506020612e9d85828601612c94565b9150509250929050565b60008060408385031215612eba57600080fd5b6000612ec885828601612c7f565b9250506020612ed985828601612d27565b9150509250929050565b600060208284031215612ef557600080fd5b6000612f0384828501612c94565b91505092915050565b600060208284031215612f1e57600080fd5b6000612f2c84828501612ca9565b91505092915050565b600060208284031215612f4757600080fd5b6000612f5584828501612cbe565b91505092915050565b600060208284031215612f7057600080fd5b600082013567ffffffffffffffff811115612f8a57600080fd5b612f9684828501612cfd565b91505092915050565b600060208284031215612fb157600080fd5b6000612fbf84828501612d27565b91505092915050565b612fd1816137b1565b82525050565b612fe0816137c3565b82525050565b6000612ff18261364e565b612ffb8185613664565b935061300b818560208601613834565b61301481613a00565b840191505092915050565b600061302a82613659565b6130348185613680565b9350613044818560208601613834565b61304d81613a00565b840191505092915050565b600061306382613659565b61306d8185613691565b935061307d818560208601613834565b80840191505092915050565b6000815461309681613867565b6130a08186613691565b945060018216600081146130bb57600181146130cc576130ff565b60ff198316865281860193506130ff565b6130d585613639565b60005b838110156130f7578154818901526001820191506020810190506130d8565b838801955050505b50505092915050565b6000613115600783613680565b915061312082613a11565b602082019050919050565b6000613138602683613680565b915061314382613a3a565b604082019050919050565b600061315b603a83613680565b915061316682613a89565b604082019050919050565b600061317e601d83613680565b915061318982613ad8565b602082019050919050565b60006131a1602283613680565b91506131ac82613b01565b604082019050919050565b60006131c4601783613680565b91506131cf82613b50565b602082019050919050565b60006131e7600583613691565b91506131f282613b79565b600582019050919050565b600061320a602083613680565b915061321582613ba2565b602082019050919050565b600061322d602f83613680565b915061323882613bcb565b604082019050919050565b6000613250600083613675565b915061325b82613c1a565b600082019050919050565b6000613273601383613680565b915061327e82613c1d565b602082019050919050565b6000613296601883613680565b91506132a182613c46565b602082019050919050565b60006132b9601f83613680565b91506132c482613c6f565b602082019050919050565b60006132dc601783613680565b91506132e782613c98565b602082019050919050565b60006132ff600183613691565b915061330a82613cc1565b600182019050919050565b61331e8161381b565b82525050565b60006133308285613089565b915061333b826132f2565b91506133478284613058565b9150613352826131da565b91508190509392505050565b600061336982613243565b9150819050919050565b60006020820190506133886000830184612fc8565b92915050565b60006080820190506133a36000830187612fc8565b6133b06020830186612fc8565b6133bd6040830185613315565b81810360608301526133cf8184612fe6565b905095945050505050565b60006020820190506133ef6000830184612fd7565b92915050565b6000602082019050818103600083015261340f818461301f565b905092915050565b6000602082019050818103600083015261343081613108565b9050919050565b600060208201905081810360008301526134508161312b565b9050919050565b600060208201905081810360008301526134708161314e565b9050919050565b6000602082019050818103600083015261349081613171565b9050919050565b600060208201905081810360008301526134b081613194565b9050919050565b600060208201905081810360008301526134d0816131b7565b9050919050565b600060208201905081810360008301526134f0816131fd565b9050919050565b6000602082019050818103600083015261351081613220565b9050919050565b6000602082019050818103600083015261353081613266565b9050919050565b6000602082019050818103600083015261355081613289565b9050919050565b60006020820190508181036000830152613570816132ac565b9050919050565b60006020820190508181036000830152613590816132cf565b9050919050565b60006020820190506135ac6000830184613315565b92915050565b60006135bc6135cd565b90506135c88282613899565b919050565b6000604051905090565b600067ffffffffffffffff8211156135f2576135f16139d1565b5b6135fb82613a00565b9050602081019050919050565b600067ffffffffffffffff821115613623576136226139d1565b5b61362c82613a00565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136a78261381b565b91506136b28361381b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e7576136e6613944565b5b828201905092915050565b60006136fd8261381b565b91506137088361381b565b92508261371857613717613973565b5b828204905092915050565b600061372e8261381b565b91506137398361381b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377257613771613944565b5b828202905092915050565b60006137888261381b565b91506137938361381b565b9250828210156137a6576137a5613944565b5b828203905092915050565b60006137bc826137fb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613852578082015181840152602081019050613837565b83811115613861576000848401525b50505050565b6000600282049050600182168061387f57607f821691505b60208210811415613893576138926139a2565b5b50919050565b6138a282613a00565b810181811067ffffffffffffffff821117156138c1576138c06139d1565b5b80604052505050565b60006138d58261381b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390857613907613944565b5b600182019050919050565b600061391e8261381b565b91506139298361381b565b92508261393957613938613973565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613cf3816137b1565b8114613cfe57600080fd5b50565b613d0a816137c3565b8114613d1557600080fd5b50565b613d21816137cf565b8114613d2c57600080fd5b50565b613d388161381b565b8114613d4357600080fd5b5056fea26469706673582212200b653c0b94ef33749131b62a732f98cf127b288c88ded76ae54e256d0bcfcac864736f6c63430008040033

Deployed Bytecode Sourcemap

49097:3291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30244:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33357:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49343:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34860:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34423:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51870:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29493:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52005:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49482:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49526:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52259:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35725:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51716:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51109:142;;;;;;;;;;;;;:::i;:::-;;35966:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50705:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33165:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30613:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8010:103;;;;;;;;;;;;;:::i;:::-;;7359:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33526:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49395:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49437:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52126:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49651:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35136:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36222:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49301:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51257:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49226:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49264:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35494:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50819:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8268:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30244:305;30346:4;30398:25;30383:40;;;:11;:40;;;;:105;;;;30455:33;30440:48;;;:11;:48;;;;30383:105;:158;;;;30505:36;30529:11;30505:23;:36::i;:::-;30383:158;30363:178;;30244:305;;;:::o;33357:100::-;33411:13;33444:5;33437:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33357:100;:::o;49343:47::-;;;;:::o;34860:204::-;34928:7;34953:16;34961:7;34953;:16::i;:::-;34948:64;;34978:34;;;;;;;;;;;;;;34948:64;35032:15;:24;35048:7;35032:24;;;;;;;;;;;;;;;;;;;;;35025:31;;34860:204;;;:::o;34423:371::-;34496:13;34512:24;34528:7;34512:15;:24::i;:::-;34496:40;;34557:5;34551:11;;:2;:11;;;34547:48;;;34571:24;;;;;;;;;;;;;;34547:48;34628:5;34612:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34638:37;34655:5;34662:12;:10;:12::i;:::-;34638:16;:37::i;:::-;34637:38;34612:63;34608:138;;;34699:35;;;;;;;;;;;;;;34608:138;34758:28;34767:2;34771:7;34780:5;34758:8;:28::i;:::-;34423:371;;;:::o;51870:129::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51980:13:::1;51963:14;:30;;;;51870:129:::0;:::o;29493:303::-;29537:7;29762:15;:13;:15::i;:::-;29747:12;;29731:13;;:28;:46;29724:53;;29493:303;:::o;52005:115::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52108:6:::1;52088:17;:26;;;;52005:115:::0;:::o;49482:39::-;;;;:::o;49526:38::-;;;;;;;;;;;;;:::o;52259:126::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52373:6:::1;52351:19;:28;;;;52259:126:::0;:::o;35725:170::-;35859:28;35869:4;35875:2;35879:7;35859:9;:28::i;:::-;35725:170;;;:::o;51716:148::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51839:19:::1;51818:18;;:40;;;;;;;;;;;;;;;;;;51716:148:::0;:::o;51109:142::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:1:::1;2931:7;;:19;;2923:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:1;3064:7;:18;;;;51184:61:::2;51210:10;51223:21;51184:17;:61::i;:::-;2289:1:::1;3243:7;:22;;;;51109:142::o:0;35966:185::-;36104:39;36121:4;36127:2;36131:7;36104:39;;;;;;;;;;;;:16;:39::i;:::-;35966:185;;;:::o;50705:108::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50800:7:::1;50785:12;:22;;;;;;;;;;;;:::i;:::-;;50705:108:::0;:::o;33165:125::-;33229:7;33256:21;33269:7;33256:12;:21::i;:::-;:26;;;33249:33;;33165:125;;;:::o;30613:206::-;30677:7;30718:1;30701:19;;:5;:19;;;30697:60;;;30729:28;;;;;;;;;;;;;;30697:60;30783:12;:19;30796:5;30783:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30775:36;;30768:43;;30613:206;;;:::o;8010:103::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8075:30:::1;8102:1;8075:18;:30::i;:::-;8010:103::o:0;7359:87::-;7405:7;7432:6;;;;;;;;;;;7425:13;;7359:87;:::o;33526:104::-;33582:13;33615:7;33608:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33526:104;:::o;49395:37::-;;;;:::o;49437:40::-;;;;:::o;52126:127::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52241:6:::1;52222:16;:25;;;;52126:127:::0;:::o;49651:1048::-;49738:18;;;;;;;;;;;49730:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49844:1;49832:9;;:13;;;;:::i;:::-;49815:14;49799:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49791:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49909:14;;49892;49869:20;;:37;;;;:::i;:::-;:54;49866:784;;;49997:9;49978:14;49958:17;;:34;;;;:::i;:::-;49957:49;;49935:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49866:784;;;50128:19;;50111:14;50087:21;50097:10;50087:9;:21::i;:::-;:38;;;;:::i;:::-;:60;50083:560;;;50222:9;50203:14;50183:17;;:34;;;;:::i;:::-;50182:49;;50160:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;50334:16;;50316:14;:34;;50294:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;50083:560;;;50489:19;;50471:14;:37;;50445:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50617:14;50593:20;;:38;;;;;;;:::i;:::-;;;;;;;;50083:560;49866:784;50656:37;50666:10;50678:14;50656:9;:37::i;:::-;49651:1048;:::o;35136:287::-;35247:12;:10;:12::i;:::-;35235:24;;:8;:24;;;35231:54;;;35268:17;;;;;;;;;;;;;;35231:54;35343:8;35298:18;:32;35317:12;:10;:12::i;:::-;35298:32;;;;;;;;;;;;;;;:42;35331:8;35298:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35396:8;35367:48;;35382:12;:10;:12::i;:::-;35367:48;;;35406:8;35367:48;;;;;;:::i;:::-;;;;;;;;35136:287;;:::o;36222:369::-;36389:28;36399:4;36405:2;36409:7;36389:9;:28::i;:::-;36432:15;:2;:13;;;:15::i;:::-;:76;;;;;36452:56;36483:4;36489:2;36493:7;36502:5;36452:30;:56::i;:::-;36451:57;36432:76;36428:156;;;36532:40;;;;;;;;;;;;;;36428:156;36222:369;;;;:::o;49301:37::-;;;;:::o;51257:312::-;51353:13;51394:17;51402:8;51394:7;:17::i;:::-;51378:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51514:12;51533:19;:8;:17;:19::i;:::-;51497:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51483:80;;51257:312;;;:::o;49226:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49264:32::-;;;;:::o;35494:164::-;35591:4;35615:18;:25;35634:5;35615:25;;;;;;;;;;;;;;;:35;35641:8;35615:35;;;;;;;;;;;;;;;;;;;;;;;;;35608:42;;35494:164;;;;:::o;50819:284::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50920:1:::1;50909:8;:12;50893:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51009:9;;50997:8;50981:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50965:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51066:31;51076:10;51088:8;51066:9;:31::i;:::-;50819:284:::0;:::o;8268:201::-;7590:12;:10;:12::i;:::-;7579:23;;:7;:5;:7::i;:::-;:23;;;7571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8377:1:::1;8357:22;;:8;:22;;;;8349:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8433:28;8452:8;8433:18;:28::i;:::-;8268:201:::0;:::o;20143:157::-;20228:4;20267:25;20252:40;;;:11;:40;;;;20245:47;;20143:157;;;:::o;36846:174::-;36903:4;36946:7;36927:15;:13;:15::i;:::-;:26;;:53;;;;;36967:13;;36957:7;:23;36927:53;:85;;;;;36985:11;:20;36997:7;36985:20;;;;;;;;;;;:27;;;;;;;;;;;;36984:28;36927:85;36920:92;;36846:174;;;:::o;6083:98::-;6136:7;6163:10;6156:17;;6083:98;:::o;46072:196::-;46214:2;46187:15;:24;46203:7;46187:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46252:7;46248:2;46232:28;;46241:5;46232:28;;;;;;;;;;;;46072:196;;;:::o;29267:92::-;29323:7;29350:1;29343:8;;29267:92;:::o;41020:2130::-;41135:35;41173:21;41186:7;41173:12;:21::i;:::-;41135:59;;41233:4;41211:26;;:13;:18;;;:26;;;41207:67;;41246:28;;;;;;;;;;;;;;41207:67;41287:22;41329:4;41313:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41350:36;41367:4;41373:12;:10;:12::i;:::-;41350:16;:36::i;:::-;41313:73;:126;;;;41427:12;:10;:12::i;:::-;41403:36;;:20;41415:7;41403:11;:20::i;:::-;:36;;;41313:126;41287:153;;41458:17;41453:66;;41484:35;;;;;;;;;;;;;;41453:66;41548:1;41534:16;;:2;:16;;;41530:52;;;41559:23;;;;;;;;;;;;;;41530:52;41595:43;41617:4;41623:2;41627:7;41636:1;41595:21;:43::i;:::-;41703:35;41720:1;41724:7;41733:4;41703:8;:35::i;:::-;42064:1;42034:12;:18;42047:4;42034:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42080:12;:16;42093:2;42080:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42126:31;42160:11;:20;42172:7;42160:20;;;;;;;;;;;42126:54;;42211:2;42195:8;:13;;;:18;;;;;;;;;;;;;;;;;;42261:15;42228:8;:23;;;:49;;;;;;;;;;;;;;;;;;42529:19;42561:1;42551:7;:11;42529:33;;42577:31;42611:11;:24;42623:11;42611:24;;;;;;;;;;;42577:58;;42679:1;42654:27;;:8;:13;;;;;;;;;;;;:27;;;42650:384;;;42864:13;;42849:11;:28;42845:174;;42918:4;42902:8;:13;;;:20;;;;;;;;;;;;;;;;;;42971:13;:28;;;42945:8;:23;;;:54;;;;;;;;;;;;;;;;;;42845:174;42650:384;41020:2130;;;43081:7;43077:2;43062:27;;43071:4;43062:27;;;;;;;;;;;;43100:42;43121:4;43127:2;43131:7;43140:1;43100:20;:42::i;:::-;41020:2130;;;;;:::o;11321:317::-;11436:6;11411:21;:31;;11403:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11490:12;11508:9;:14;;11530:6;11508:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11489:52;;;11560:7;11552:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11321:317;;;:::o;31994:1109::-;32056:21;;:::i;:::-;32090:12;32105:7;32090:22;;32173:4;32154:15;:13;:15::i;:::-;:23;;:47;;;;;32188:13;;32181:4;:20;32154:47;32150:886;;;32222:31;32256:11;:17;32268:4;32256:17;;;;;;;;;;;32222:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32297:9;:16;;;32292:729;;32368:1;32342:28;;:9;:14;;;:28;;;32338:101;;32406:9;32399:16;;;;;;32338:101;32741:261;32748:4;32741:261;;;32781:6;;;;;;;;32826:11;:17;32838:4;32826:17;;;;;;;;;;;32814:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32900:1;32874:28;;:9;:14;;;:28;;;32870:109;;32942:9;32935:16;;;;;;32870:109;32741:261;;;32292:729;32150:886;;33064:31;;;;;;;;;;;;;;31994:1109;;;;:::o;8629:191::-;8703:16;8722:6;;;;;;;;;;;8703:25;;8748:8;8739:6;;:17;;;;;;;;;;;;;;;;;;8803:8;8772:40;;8793:8;8772:40;;;;;;;;;;;;8629:191;;:::o;37104:104::-;37173:27;37183:2;37187:8;37173:27;;;;;;;;;;;;:9;:27::i;:::-;37104:104;;:::o;10060:326::-;10120:4;10377:1;10355:7;:19;;;:23;10348:30;;10060:326;;;:::o;46760:667::-;46923:4;46960:2;46944:36;;;46981:12;:10;:12::i;:::-;46995:4;47001:7;47010:5;46944:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46940:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47195:1;47178:6;:13;:18;47174:235;;;47224:40;;;;;;;;;;;;;;47174:235;47367:6;47361:13;47352:6;47348:2;47344:15;47337:38;46940:480;47073:45;;;47063:55;;;:6;:55;;;;47056:62;;;46760:667;;;;;;:::o;3645:723::-;3701:13;3931:1;3922:5;:10;3918:53;;;3949:10;;;;;;;;;;;;;;;;;;;;;3918:53;3981:12;3996:5;3981:20;;4012:14;4037:78;4052:1;4044:4;:9;4037:78;;4070:8;;;;;:::i;:::-;;;;4101:2;4093:10;;;;;:::i;:::-;;;4037:78;;;4125:19;4157:6;4147:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4125:39;;4175:154;4191:1;4182:5;:10;4175:154;;4219:1;4209:11;;;;;:::i;:::-;;;4286:2;4278:5;:10;;;;:::i;:::-;4265:2;:24;;;;:::i;:::-;4252:39;;4235:6;4242;4235:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;4315:2;4306:11;;;;;:::i;:::-;;;4175:154;;;4353:6;4339:21;;;;;3645:723;;;;:::o;48075:159::-;;;;;:::o;48893:158::-;;;;;:::o;37582:1751::-;37705:20;37728:13;;37705:36;;37770:1;37756:16;;:2;:16;;;37752:48;;;37781:19;;;;;;;;;;;;;;37752:48;37827:1;37815:8;:13;37811:44;;;37837:18;;;;;;;;;;;;;;37811:44;37868:61;37898:1;37902:2;37906:12;37920:8;37868:21;:61::i;:::-;38241:8;38206:12;:16;38219:2;38206:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38305:8;38265:12;:16;38278:2;38265:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38364:2;38331:11;:25;38343:12;38331:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38431:15;38381:11;:25;38393:12;38381:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38464:20;38487:12;38464:35;;38514:11;38543:8;38528:12;:23;38514:37;;38572:15;:2;:13;;;:15::i;:::-;38568:633;;;38608:314;38664:12;38660:2;38639:38;;38656:1;38639:38;;;;;;;;;;;;38705:69;38744:1;38748:2;38752:14;;;;;;38768:5;38705:30;:69::i;:::-;38700:174;;38810:40;;;;;;;;;;;;;;38700:174;38917:3;38901:12;:19;;38608:314;;39003:12;38986:13;;:29;38982:43;;39017:8;;;38982:43;38568:633;;;39066:120;39122:14;;;;;;39118:2;39097:40;;39114:1;39097:40;;;;;;;;;;;;39181:3;39165:12;:19;;39066:120;;38568:633;39231:12;39215:13;:28;;;;37582:1751;;39265:60;39294:1;39298:2;39302:12;39316:8;39265:20;:60::i;:::-;37582:1751;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7730:845::-;7833:3;7870:5;7864:12;7899:36;7925:9;7899:36;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8071:1;8060:9;8056:17;8087:1;8082:137;;;;8233:1;8228:341;;;;8049:520;;8082:137;8166:4;8162:9;8151;8147:25;8142:3;8135:38;8202:6;8197:3;8193:16;8186:23;;8082:137;;8228:341;8295:38;8327:5;8295:38;:::i;:::-;8355:1;8369:154;8383:6;8380:1;8377:13;8369:154;;;8457:7;8451:14;8447:1;8442:3;8438:11;8431:35;8507:1;8498:7;8494:15;8483:26;;8405:4;8402:1;8398:12;8393:17;;8369:154;;;8552:6;8547:3;8543:16;8536:23;;8235:334;;8049:520;;7837:738;;;;;;:::o;8581:365::-;8723:3;8744:66;8808:1;8803:3;8744:66;:::i;:::-;8737:73;;8819:93;8908:3;8819:93;:::i;:::-;8937:2;8932:3;8928:12;8921:19;;8727:219;;;:::o;8952:366::-;9094:3;9115:67;9179:2;9174:3;9115:67;:::i;:::-;9108:74;;9191:93;9280:3;9191:93;:::i;:::-;9309:2;9304:3;9300:12;9293:19;;9098:220;;;:::o;9324:366::-;9466:3;9487:67;9551:2;9546:3;9487:67;:::i;:::-;9480:74;;9563:93;9652:3;9563:93;:::i;:::-;9681:2;9676:3;9672:12;9665:19;;9470:220;;;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9842:220;;;:::o;10068:366::-;10210:3;10231:67;10295:2;10290:3;10231:67;:::i;:::-;10224:74;;10307:93;10396:3;10307:93;:::i;:::-;10425:2;10420:3;10416:12;10409:19;;10214:220;;;:::o;10440:366::-;10582:3;10603:67;10667:2;10662:3;10603:67;:::i;:::-;10596:74;;10679:93;10768:3;10679:93;:::i;:::-;10797:2;10792:3;10788:12;10781:19;;10586:220;;;:::o;10812:400::-;10972:3;10993:84;11075:1;11070:3;10993:84;:::i;:::-;10986:91;;11086:93;11175:3;11086:93;:::i;:::-;11204:1;11199:3;11195:11;11188:18;;10976:236;;;:::o;11218:366::-;11360:3;11381:67;11445:2;11440:3;11381:67;:::i;:::-;11374:74;;11457:93;11546:3;11457:93;:::i;:::-;11575:2;11570:3;11566:12;11559:19;;11364:220;;;:::o;11590:366::-;11732:3;11753:67;11817:2;11812:3;11753:67;:::i;:::-;11746:74;;11829:93;11918:3;11829:93;:::i;:::-;11947:2;11942:3;11938:12;11931:19;;11736:220;;;:::o;11962:398::-;12121:3;12142:83;12223:1;12218:3;12142:83;:::i;:::-;12135:90;;12234:93;12323:3;12234:93;:::i;:::-;12352:1;12347:3;12343:11;12336:18;;12125:235;;;:::o;12366:366::-;12508:3;12529:67;12593:2;12588:3;12529:67;:::i;:::-;12522:74;;12605:93;12694:3;12605:93;:::i;:::-;12723:2;12718:3;12714:12;12707:19;;12512:220;;;:::o;12738:366::-;12880:3;12901:67;12965:2;12960:3;12901:67;:::i;:::-;12894:74;;12977:93;13066:3;12977:93;:::i;:::-;13095:2;13090:3;13086:12;13079:19;;12884:220;;;:::o;13110:366::-;13252:3;13273:67;13337:2;13332:3;13273:67;:::i;:::-;13266:74;;13349:93;13438:3;13349:93;:::i;:::-;13467:2;13462:3;13458:12;13451:19;;13256:220;;;:::o;13482:366::-;13624:3;13645:67;13709:2;13704:3;13645:67;:::i;:::-;13638:74;;13721:93;13810:3;13721:93;:::i;:::-;13839:2;13834:3;13830:12;13823:19;;13628:220;;;:::o;13854:400::-;14014:3;14035:84;14117:1;14112:3;14035:84;:::i;:::-;14028:91;;14128:93;14217:3;14128:93;:::i;:::-;14246:1;14241:3;14237:11;14230:18;;14018:236;;;:::o;14260:118::-;14347:24;14365:5;14347:24;:::i;:::-;14342:3;14335:37;14325:53;;:::o;14384:961::-;14763:3;14785:92;14873:3;14864:6;14785:92;:::i;:::-;14778:99;;14894:148;15038:3;14894:148;:::i;:::-;14887:155;;15059:95;15150:3;15141:6;15059:95;:::i;:::-;15052:102;;15171:148;15315:3;15171:148;:::i;:::-;15164:155;;15336:3;15329:10;;14767:578;;;;;:::o;15351:379::-;15535:3;15557:147;15700:3;15557:147;:::i;:::-;15550:154;;15721:3;15714:10;;15539:191;;;:::o;15736:222::-;15829:4;15867:2;15856:9;15852:18;15844:26;;15880:71;15948:1;15937:9;15933:17;15924:6;15880:71;:::i;:::-;15834:124;;;;:::o;15964:640::-;16159:4;16197:3;16186:9;16182:19;16174:27;;16211:71;16279:1;16268:9;16264:17;16255:6;16211:71;:::i;:::-;16292:72;16360:2;16349:9;16345:18;16336:6;16292:72;:::i;:::-;16374;16442:2;16431:9;16427:18;16418:6;16374:72;:::i;:::-;16493:9;16487:4;16483:20;16478:2;16467:9;16463:18;16456:48;16521:76;16592:4;16583:6;16521:76;:::i;:::-;16513:84;;16164:440;;;;;;;:::o;16610:210::-;16697:4;16735:2;16724:9;16720:18;16712:26;;16748:65;16810:1;16799:9;16795:17;16786:6;16748:65;:::i;:::-;16702:118;;;;:::o;16826:313::-;16939:4;16977:2;16966:9;16962:18;16954:26;;17026:9;17020:4;17016:20;17012:1;17001:9;16997:17;16990:47;17054:78;17127:4;17118:6;17054:78;:::i;:::-;17046:86;;16944:195;;;;:::o;17145:419::-;17311:4;17349:2;17338:9;17334:18;17326:26;;17398:9;17392:4;17388:20;17384:1;17373:9;17369:17;17362:47;17426:131;17552:4;17426:131;:::i;:::-;17418:139;;17316:248;;;:::o;17570:419::-;17736:4;17774:2;17763:9;17759:18;17751:26;;17823:9;17817:4;17813:20;17809:1;17798:9;17794:17;17787:47;17851:131;17977:4;17851:131;:::i;:::-;17843:139;;17741:248;;;:::o;17995:419::-;18161:4;18199:2;18188:9;18184:18;18176:26;;18248:9;18242:4;18238:20;18234:1;18223:9;18219:17;18212:47;18276:131;18402:4;18276:131;:::i;:::-;18268:139;;18166:248;;;:::o;18420:419::-;18586:4;18624:2;18613:9;18609:18;18601:26;;18673:9;18667:4;18663:20;18659:1;18648:9;18644:17;18637:47;18701:131;18827:4;18701:131;:::i;:::-;18693:139;;18591:248;;;:::o;18845:419::-;19011:4;19049:2;19038:9;19034:18;19026:26;;19098:9;19092:4;19088:20;19084:1;19073:9;19069:17;19062:47;19126:131;19252:4;19126:131;:::i;:::-;19118:139;;19016:248;;;:::o;19270:419::-;19436:4;19474:2;19463:9;19459:18;19451:26;;19523:9;19517:4;19513:20;19509:1;19498:9;19494:17;19487:47;19551:131;19677:4;19551:131;:::i;:::-;19543:139;;19441:248;;;:::o;19695:419::-;19861:4;19899:2;19888:9;19884:18;19876:26;;19948:9;19942:4;19938:20;19934:1;19923:9;19919:17;19912:47;19976:131;20102:4;19976:131;:::i;:::-;19968:139;;19866:248;;;:::o;20120:419::-;20286:4;20324:2;20313:9;20309:18;20301:26;;20373:9;20367:4;20363:20;20359:1;20348:9;20344:17;20337:47;20401:131;20527:4;20401:131;:::i;:::-;20393:139;;20291:248;;;:::o;20545:419::-;20711:4;20749:2;20738:9;20734:18;20726:26;;20798:9;20792:4;20788:20;20784:1;20773:9;20769:17;20762:47;20826:131;20952:4;20826:131;:::i;:::-;20818:139;;20716:248;;;:::o;20970:419::-;21136:4;21174:2;21163:9;21159:18;21151:26;;21223:9;21217:4;21213:20;21209:1;21198:9;21194:17;21187:47;21251:131;21377:4;21251:131;:::i;:::-;21243:139;;21141:248;;;:::o;21395:419::-;21561:4;21599:2;21588:9;21584:18;21576:26;;21648:9;21642:4;21638:20;21634:1;21623:9;21619:17;21612:47;21676:131;21802:4;21676:131;:::i;:::-;21668:139;;21566:248;;;:::o;21820:419::-;21986:4;22024:2;22013:9;22009:18;22001:26;;22073:9;22067:4;22063:20;22059:1;22048:9;22044:17;22037:47;22101:131;22227:4;22101:131;:::i;:::-;22093:139;;21991:248;;;:::o;22245:222::-;22338:4;22376:2;22365:9;22361:18;22353:26;;22389:71;22457:1;22446:9;22442:17;22433:6;22389:71;:::i;:::-;22343:124;;;;:::o;22473:129::-;22507:6;22534:20;;:::i;:::-;22524:30;;22563:33;22591:4;22583:6;22563:33;:::i;:::-;22514:88;;;:::o;22608:75::-;22641:6;22674:2;22668:9;22658:19;;22648:35;:::o;22689:307::-;22750:4;22840:18;22832:6;22829:30;22826:2;;;22862:18;;:::i;:::-;22826:2;22900:29;22922:6;22900:29;:::i;:::-;22892:37;;22984:4;22978;22974:15;22966:23;;22755:241;;;:::o;23002:308::-;23064:4;23154:18;23146:6;23143:30;23140:2;;;23176:18;;:::i;:::-;23140:2;23214:29;23236:6;23214:29;:::i;:::-;23206:37;;23298:4;23292;23288:15;23280:23;;23069:241;;;:::o;23316:141::-;23365:4;23388:3;23380:11;;23411:3;23408:1;23401:14;23445:4;23442:1;23432:18;23424:26;;23370:87;;;:::o;23463:98::-;23514:6;23548:5;23542:12;23532:22;;23521:40;;;:::o;23567:99::-;23619:6;23653:5;23647:12;23637:22;;23626:40;;;:::o;23672:168::-;23755:11;23789:6;23784:3;23777:19;23829:4;23824:3;23820:14;23805:29;;23767:73;;;;:::o;23846:147::-;23947:11;23984:3;23969:18;;23959:34;;;;:::o;23999:169::-;24083:11;24117:6;24112:3;24105:19;24157:4;24152:3;24148:14;24133:29;;24095:73;;;;:::o;24174:148::-;24276:11;24313:3;24298:18;;24288:34;;;;:::o;24328:305::-;24368:3;24387:20;24405:1;24387:20;:::i;:::-;24382:25;;24421:20;24439:1;24421:20;:::i;:::-;24416:25;;24575:1;24507:66;24503:74;24500:1;24497:81;24494:2;;;24581:18;;:::i;:::-;24494:2;24625:1;24622;24618:9;24611:16;;24372:261;;;;:::o;24639:185::-;24679:1;24696:20;24714:1;24696:20;:::i;:::-;24691:25;;24730:20;24748:1;24730:20;:::i;:::-;24725:25;;24769:1;24759:2;;24774:18;;:::i;:::-;24759:2;24816:1;24813;24809:9;24804:14;;24681:143;;;;:::o;24830:348::-;24870:7;24893:20;24911:1;24893:20;:::i;:::-;24888:25;;24927:20;24945:1;24927:20;:::i;:::-;24922:25;;25115:1;25047:66;25043:74;25040:1;25037:81;25032:1;25025:9;25018:17;25014:105;25011:2;;;25122:18;;:::i;:::-;25011:2;25170:1;25167;25163:9;25152:20;;24878:300;;;;:::o;25184:191::-;25224:4;25244:20;25262:1;25244:20;:::i;:::-;25239:25;;25278:20;25296:1;25278:20;:::i;:::-;25273:25;;25317:1;25314;25311:8;25308:2;;;25322:18;;:::i;:::-;25308:2;25367:1;25364;25360:9;25352:17;;25229:146;;;;:::o;25381:96::-;25418:7;25447:24;25465:5;25447:24;:::i;:::-;25436:35;;25426:51;;;:::o;25483:90::-;25517:7;25560:5;25553:13;25546:21;25535:32;;25525:48;;;:::o;25579:149::-;25615:7;25655:66;25648:5;25644:78;25633:89;;25623:105;;;:::o;25734:126::-;25771:7;25811:42;25804:5;25800:54;25789:65;;25779:81;;;:::o;25866:77::-;25903:7;25932:5;25921:16;;25911:32;;;:::o;25949:154::-;26033:6;26028:3;26023;26010:30;26095:1;26086:6;26081:3;26077:16;26070:27;26000:103;;;:::o;26109:307::-;26177:1;26187:113;26201:6;26198:1;26195:13;26187:113;;;26286:1;26281:3;26277:11;26271:18;26267:1;26262:3;26258:11;26251:39;26223:2;26220:1;26216:10;26211:15;;26187:113;;;26318:6;26315:1;26312:13;26309:2;;;26398:1;26389:6;26384:3;26380:16;26373:27;26309:2;26158:258;;;;:::o;26422:320::-;26466:6;26503:1;26497:4;26493:12;26483:22;;26550:1;26544:4;26540:12;26571:18;26561:2;;26627:4;26619:6;26615:17;26605:27;;26561:2;26689;26681:6;26678:14;26658:18;26655:38;26652:2;;;26708:18;;:::i;:::-;26652:2;26473:269;;;;:::o;26748:281::-;26831:27;26853:4;26831:27;:::i;:::-;26823:6;26819:40;26961:6;26949:10;26946:22;26925:18;26913:10;26910:34;26907:62;26904:2;;;26972:18;;:::i;:::-;26904:2;27012:10;27008:2;27001:22;26791:238;;;:::o;27035:233::-;27074:3;27097:24;27115:5;27097:24;:::i;:::-;27088:33;;27143:66;27136:5;27133:77;27130:2;;;27213:18;;:::i;:::-;27130:2;27260:1;27253:5;27249:13;27242:20;;27078:190;;;:::o;27274:176::-;27306:1;27323:20;27341:1;27323:20;:::i;:::-;27318:25;;27357:20;27375:1;27357:20;:::i;:::-;27352:25;;27396:1;27386:2;;27401:18;;:::i;:::-;27386:2;27442:1;27439;27435:9;27430:14;;27308:142;;;;:::o;27456:180::-;27504:77;27501:1;27494:88;27601:4;27598:1;27591:15;27625:4;27622:1;27615:15;27642:180;27690:77;27687:1;27680:88;27787:4;27784:1;27777:15;27811:4;27808:1;27801:15;27828:180;27876:77;27873:1;27866:88;27973:4;27970:1;27963:15;27997:4;27994:1;27987:15;28014:180;28062:77;28059:1;28052:88;28159:4;28156:1;28149:15;28183:4;28180:1;28173:15;28200:102;28241:6;28292:2;28288:7;28283:2;28276:5;28272:14;28268:28;28258:38;;28248:54;;;:::o;28308:157::-;28448:9;28444:1;28436:6;28432:14;28425:33;28414:51;:::o;28471:225::-;28611:34;28607:1;28599:6;28595:14;28588:58;28680:8;28675:2;28667:6;28663:15;28656:33;28577:119;:::o;28702:245::-;28842:34;28838:1;28830:6;28826:14;28819:58;28911:28;28906:2;28898:6;28894:15;28887:53;28808:139;:::o;28953:179::-;29093:31;29089:1;29081:6;29077:14;29070:55;29059:73;:::o;29138:221::-;29278:34;29274:1;29266:6;29262:14;29255:58;29347:4;29342:2;29334:6;29330:15;29323:29;29244:115;:::o;29365:173::-;29505:25;29501:1;29493:6;29489:14;29482:49;29471:67;:::o;29544:155::-;29684:7;29680:1;29672:6;29668:14;29661:31;29650:49;:::o;29705:182::-;29845:34;29841:1;29833:6;29829:14;29822:58;29811:76;:::o;29893:234::-;30033:34;30029:1;30021:6;30017:14;30010:58;30102:17;30097:2;30089:6;30085:15;30078:42;29999:128;:::o;30133:114::-;30239:8;:::o;30253:169::-;30393:21;30389:1;30381:6;30377:14;30370:45;30359:63;:::o;30428:174::-;30568:26;30564:1;30556:6;30552:14;30545:50;30534:68;:::o;30608:181::-;30748:33;30744:1;30736:6;30732:14;30725:57;30714:75;:::o;30795:173::-;30935:25;30931:1;30923:6;30919:14;30912:49;30901:67;:::o;30974:151::-;31114:3;31110:1;31102:6;31098:14;31091:27;31080:45;:::o;31131:122::-;31204:24;31222:5;31204:24;:::i;:::-;31197:5;31194:35;31184:2;;31243:1;31240;31233:12;31184:2;31174:79;:::o;31259:116::-;31329:21;31344:5;31329:21;:::i;:::-;31322:5;31319:32;31309:2;;31365:1;31362;31355:12;31309:2;31299:76;:::o;31381:120::-;31453:23;31470:5;31453:23;:::i;:::-;31446:5;31443:34;31433:2;;31491:1;31488;31481:12;31433:2;31423:78;:::o;31507:122::-;31580:24;31598:5;31580:24;:::i;:::-;31573:5;31570:35;31560:2;;31619:1;31616;31609:12;31560:2;31550:79;:::o

Swarm Source

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