ETH Price: $2,693.28 (-2.68%)

upupupupupup (UP)
 

Overview

TokenID

1014

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
upupupupupup

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // 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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

        if (_msgSender() != owner) if(!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()) if(!_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 {}
}

// File: contracts/Un.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;




contract upupupupupup is ERC721A, ReentrancyGuard, Ownable {
    string private baseURI;
    uint256 public maxSupply = 3333;
    uint256 public maxPerWallet = 3;
    uint256 public maxPerTx = 3;
    uint256 public maxPerFree = 3;
    uint256 public totalFree = 1000;
    uint256 public price = 0.005 ether;
    
    bool private saleStatus;
    bool private revealStatus;

    mapping(address => uint256) private mintOG;

    constructor() ERC721A("upupupupupup", "UP") {}

    function setBaseURI(string memory _URI) external onlyOwner {
        baseURI = _URI;
    }

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

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }




    // Mint Function


    function mint(uint256 amt) external payable {
        uint256 cost = price;
        if (totalSupply() + amt < totalFree + 1) {
            cost = 0;
        }
        
        require(msg.value >= amt * cost, "Please send the exact amount.");
        require(totalSupply() + amt < maxSupply + 1, "No more available");
        require(saleStatus, "Minting is not live yet, hold on.");
        require(amt < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + amt <= maxPerWallet,
            "Too many per wallet!"
        );

        _safeMint(msg.sender, amt);

    
    }

    // Reveal Mechanism

    function setReveal() external onlyOwner {
        revealStatus = !revealStatus;
    }

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

        if (!revealStatus) {
            return baseURI;
        }
        return super.tokenURI(tokenId);
    }

    // Withdraw Balance

    address private payoutAddress = 0xe8D33672a077B238578037CcE95a3b73095D1211;

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(payoutAddress).transfer(balance);
    }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600b556003600c556003600d556003600e556103e8600f556611c37937e0800060105573e8d33672a077b238578037cce95a3b73095d1211601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008c57600080fd5b506040518060400160405280600c81526020017f75707570757075707570757000000000000000000000000000000000000000008152506040518060400160405280600281526020017f555000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011192919062000244565b5080600390805190602001906200012a92919062000244565b506200013b6200017160201b60201c565b600081905550505060016008819055506200016b6200015f6200017660201b60201c565b6200017e60201b60201c565b62000358565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002529062000323565b90600052602060002090601f016020900481019282620002765760008555620002c2565b82601f106200029157805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c1578251825591602001919060010190620002a4565b5b509050620002d19190620002d5565b5090565b5b80821115620002f0576000816000905550600101620002d6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033c57607f821691505b602082108103620003525762000351620002f4565b5b50919050565b61365a80620003686000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105b3578063e985e9c5146105de578063f2fde38b1461061b578063f968adbe14610644576101b7565b8063b88d4fde14610522578063c7c39ffc1461054b578063c87b56dd14610576576101b7565b806395d89b41116100c657806395d89b4114610487578063a035b1fe146104b2578063a0712d68146104dd578063a22cb465146104f9576101b7565b8063715018a61461042e57806376645315146104455780638da5cb5b1461045c576101b7565b80633ccfd60b11610159578063502b33af11610133578063502b33af1461037457806355f804b31461038b5780636352211e146103b457806370a08231146103f1576101b7565b80633ccfd60b1461030957806342842e0e14610320578063453c231014610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612853565b61066f565b6040516101f0919061289b565b60405180910390f35b34801561020557600080fd5b5061020e610751565b60405161021b919061294f565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906129a7565b6107e3565b6040516102589190612a15565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a5c565b61085f565b005b34801561029657600080fd5b5061029f610963565b6040516102ac9190612aab565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ac6565b61097a565b005b3480156102ea57600080fd5b506102f361098a565b6040516103009190612aab565b60405180910390f35b34801561031557600080fd5b5061031e610990565b005b34801561032c57600080fd5b5061034760048036038101906103429190612ac6565b610a7d565b005b34801561035557600080fd5b5061035e610a9d565b60405161036b9190612aab565b60405180910390f35b34801561038057600080fd5b50610389610aa3565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612c4e565b610b4b565b005b3480156103c057600080fd5b506103db60048036038101906103d691906129a7565b610be1565b6040516103e89190612a15565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612c97565b610bf7565b6040516104259190612aab565b60405180910390f35b34801561043a57600080fd5b50610443610cc6565b005b34801561045157600080fd5b5061045a610d4e565b005b34801561046857600080fd5b50610471610df6565b60405161047e9190612a15565b60405180910390f35b34801561049357600080fd5b5061049c610e20565b6040516104a9919061294f565b60405180910390f35b3480156104be57600080fd5b506104c7610eb2565b6040516104d49190612aab565b60405180910390f35b6104f760048036038101906104f291906129a7565b610eb8565b005b34801561050557600080fd5b50610520600480360381019061051b9190612cf0565b6110a1565b005b34801561052e57600080fd5b5061054960048036038101906105449190612dd1565b611218565b005b34801561055757600080fd5b50610560611290565b60405161056d9190612aab565b60405180910390f35b34801561058257600080fd5b5061059d600480360381019061059891906129a7565b611296565b6040516105aa919061294f565b60405180910390f35b3480156105bf57600080fd5b506105c8611397565b6040516105d59190612aab565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612e54565b61139d565b604051610612919061289b565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612c97565b611431565b005b34801561065057600080fd5b50610659611528565b6040516106669190612aab565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074a57506107498261152e565b5b9050919050565b60606002805461076090612ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90612ec3565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107ee82611598565b610824576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086a82610be1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f06115e6565b73ffffffffffffffffffffffffffffffffffffffff16146109535761091c816109176115e6565b61139d565b610952576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61095e8383836115ee565b505050565b600061096d6116a0565b6001546000540303905090565b6109858383836116a5565b505050565b600f5481565b6109986115e6565b73ffffffffffffffffffffffffffffffffffffffff166109b6610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612f40565b60405180910390fd5b6000479050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a79573d6000803e3d6000fd5b5050565b610a9883838360405180602001604052806000815250611218565b505050565b600c5481565b610aab6115e6565b73ffffffffffffffffffffffffffffffffffffffff16610ac9610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690612f40565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610b536115e6565b73ffffffffffffffffffffffffffffffffffffffff16610b71610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612f40565b60405180910390fd5b80600a9080519060200190610bdd929190612701565b5050565b6000610bec82611b59565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cce6115e6565b73ffffffffffffffffffffffffffffffffffffffff16610cec610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612f40565b60405180910390fd5b610d4c6000611de4565b565b610d566115e6565b73ffffffffffffffffffffffffffffffffffffffff16610d74610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612f40565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e2f90612ec3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5b90612ec3565b8015610ea85780601f10610e7d57610100808354040283529160200191610ea8565b820191906000526020600020905b815481529060010190602001808311610e8b57829003601f168201915b5050505050905090565b60105481565b600060105490506001600f54610ece9190612f8f565b82610ed7610963565b610ee19190612f8f565b1015610eec57600090505b8082610ef89190612fe5565b341015610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f319061308b565b60405180910390fd5b6001600b54610f499190612f8f565b82610f52610963565b610f5c9190612f8f565b10610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906130f7565b60405180910390fd5b601160009054906101000a900460ff16610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613189565b60405180910390fd5b6001600d54610ffa9190612f8f565b821061103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906131f5565b60405180910390fd5b600c548261104833611eaa565b6110529190612f8f565b1115611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613261565b60405180910390fd5b61109d3383611f14565b5050565b6110a96115e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061111a6115e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111c76115e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120c919061289b565b60405180910390a35050565b6112238484846116a5565b6112428373ffffffffffffffffffffffffffffffffffffffff16611f32565b1561128a5761125384848484611f55565b611289576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b60606112a182611598565b6112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d7906132f3565b60405180910390fd5b601160019054906101000a900460ff1661138657600a805461130190612ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461132d90612ec3565b801561137a5780601f1061134f5761010080835404028352916020019161137a565b820191906000526020600020905b81548152906001019060200180831161135d57829003601f168201915b50505050509050611392565b61138f826120a5565b90505b919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114396115e6565b73ffffffffffffffffffffffffffffffffffffffff16611457610df6565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490612f40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613385565b60405180910390fd5b61152581611de4565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816115a36116a0565b111580156115b2575060005482105b80156115df575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116b082611b59565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461171b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661173c6115e6565b73ffffffffffffffffffffffffffffffffffffffff16148061176b575061176a856117656115e6565b61139d565b5b806117b057506117796115e6565b73ffffffffffffffffffffffffffffffffffffffff16611798846107e3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361184f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61185c8585856001612143565b611868600084876115ee565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ae7576000548214611ae657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b528585856001612149565b5050505050565b611b61612787565b600082905080611b6f6116a0565b11611dad57600054811015611dac576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611daa57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c8e578092505050611ddf565b5b600115611da957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611da4578092505050611ddf565b611c8f565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611f2e82826040518060200160405280600081525061214f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f7b6115e6565b8786866040518563ffffffff1660e01b8152600401611f9d94939291906133fa565b6020604051808303816000875af1925050508015611fd957506040513d601f19601f82011682018060405250810190611fd6919061345b565b60015b612052573d8060008114612009576040519150601f19603f3d011682016040523d82523d6000602084013e61200e565b606091505b50600081510361204a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606120b082611598565b6120e6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120f061250f565b90506000815103612110576040518060200160405280600081525061213b565b8061211a846125a1565b60405160200161212b9291906134c4565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121bb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036121f5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122026000858386612143565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506123c38673ffffffffffffffffffffffffffffffffffffffff16611f32565b15612488575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124386000878480600101955087611f55565b61246e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123c957826000541461248357600080fd5b6124f3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612489575b8160008190555050506125096000858386612149565b50505050565b6060600a805461251e90612ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461254a90612ec3565b80156125975780601f1061256c57610100808354040283529160200191612597565b820191906000526020600020905b81548152906001019060200180831161257a57829003601f168201915b5050505050905090565b6060600082036125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a578080612603906134e8565b915050600a82612613919061355f565b91506125f0565b60008167ffffffffffffffff81111561263657612635612b23565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613590565b9150600a8561269091906135c4565b603061269c9190612f8f565b60f81b8183815181106126b2576126b16135f5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee919061355f565b945061266c565b8093505050505b919050565b82805461270d90612ec3565b90600052602060002090601f01602090048101928261272f5760008555612776565b82601f1061274857805160ff1916838001178555612776565b82800160010185558215612776579182015b8281111561277557825182559160200191906001019061275a565b5b50905061278391906127ca565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156127e35760008160009055506001016127cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612830816127fb565b811461283b57600080fd5b50565b60008135905061284d81612827565b92915050565b600060208284031215612869576128686127f1565b5b60006128778482850161283e565b91505092915050565b60008115159050919050565b61289581612880565b82525050565b60006020820190506128b0600083018461288c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128f05780820151818401526020810190506128d5565b838111156128ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612921826128b6565b61292b81856128c1565b935061293b8185602086016128d2565b61294481612905565b840191505092915050565b600060208201905081810360008301526129698184612916565b905092915050565b6000819050919050565b61298481612971565b811461298f57600080fd5b50565b6000813590506129a18161297b565b92915050565b6000602082840312156129bd576129bc6127f1565b5b60006129cb84828501612992565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ff826129d4565b9050919050565b612a0f816129f4565b82525050565b6000602082019050612a2a6000830184612a06565b92915050565b612a39816129f4565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b60008060408385031215612a7357612a726127f1565b5b6000612a8185828601612a47565b9250506020612a9285828601612992565b9150509250929050565b612aa581612971565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b600080600060608486031215612adf57612ade6127f1565b5b6000612aed86828701612a47565b9350506020612afe86828701612a47565b9250506040612b0f86828701612992565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b5b82612905565b810181811067ffffffffffffffff82111715612b7a57612b79612b23565b5b80604052505050565b6000612b8d6127e7565b9050612b998282612b52565b919050565b600067ffffffffffffffff821115612bb957612bb8612b23565b5b612bc282612905565b9050602081019050919050565b82818337600083830152505050565b6000612bf1612bec84612b9e565b612b83565b905082815260208101848484011115612c0d57612c0c612b1e565b5b612c18848285612bcf565b509392505050565b600082601f830112612c3557612c34612b19565b5b8135612c45848260208601612bde565b91505092915050565b600060208284031215612c6457612c636127f1565b5b600082013567ffffffffffffffff811115612c8257612c816127f6565b5b612c8e84828501612c20565b91505092915050565b600060208284031215612cad57612cac6127f1565b5b6000612cbb84828501612a47565b91505092915050565b612ccd81612880565b8114612cd857600080fd5b50565b600081359050612cea81612cc4565b92915050565b60008060408385031215612d0757612d066127f1565b5b6000612d1585828601612a47565b9250506020612d2685828601612cdb565b9150509250929050565b600067ffffffffffffffff821115612d4b57612d4a612b23565b5b612d5482612905565b9050602081019050919050565b6000612d74612d6f84612d30565b612b83565b905082815260208101848484011115612d9057612d8f612b1e565b5b612d9b848285612bcf565b509392505050565b600082601f830112612db857612db7612b19565b5b8135612dc8848260208601612d61565b91505092915050565b60008060008060808587031215612deb57612dea6127f1565b5b6000612df987828801612a47565b9450506020612e0a87828801612a47565b9350506040612e1b87828801612992565b925050606085013567ffffffffffffffff811115612e3c57612e3b6127f6565b5b612e4887828801612da3565b91505092959194509250565b60008060408385031215612e6b57612e6a6127f1565b5b6000612e7985828601612a47565b9250506020612e8a85828601612a47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612edb57607f821691505b602082108103612eee57612eed612e94565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f2a6020836128c1565b9150612f3582612ef4565b602082019050919050565b60006020820190508181036000830152612f5981612f1d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f9a82612971565b9150612fa583612971565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fda57612fd9612f60565b5b828201905092915050565b6000612ff082612971565b9150612ffb83612971565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303457613033612f60565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613075601d836128c1565b91506130808261303f565b602082019050919050565b600060208201905081810360008301526130a481613068565b9050919050565b7f4e6f206d6f726520617661696c61626c65000000000000000000000000000000600082015250565b60006130e16011836128c1565b91506130ec826130ab565b602082019050919050565b60006020820190508181036000830152613110816130d4565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006131736021836128c1565b915061317e82613117565b604082019050919050565b600060208201905081810360008301526131a281613166565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006131df6013836128c1565b91506131ea826131a9565b602082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b600061324b6014836128c1565b915061325682613215565b602082019050919050565b6000602082019050818103600083015261327a8161323e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132dd602f836128c1565b91506132e882613281565b604082019050919050565b6000602082019050818103600083015261330c816132d0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061336f6026836128c1565b915061337a82613313565b604082019050919050565b6000602082019050818103600083015261339e81613362565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133cc826133a5565b6133d681856133b0565b93506133e68185602086016128d2565b6133ef81612905565b840191505092915050565b600060808201905061340f6000830187612a06565b61341c6020830186612a06565b6134296040830185612a9c565b818103606083015261343b81846133c1565b905095945050505050565b60008151905061345581612827565b92915050565b600060208284031215613471576134706127f1565b5b600061347f84828501613446565b91505092915050565b600081905092915050565b600061349e826128b6565b6134a88185613488565b93506134b88185602086016128d2565b80840191505092915050565b60006134d08285613493565b91506134dc8284613493565b91508190509392505050565b60006134f382612971565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361352557613524612f60565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061356a82612971565b915061357583612971565b92508261358557613584613530565b5b828204905092915050565b600061359b82612971565b91506135a683612971565b9250828210156135b9576135b8612f60565b5b828203905092915050565b60006135cf82612971565b91506135da83612971565b9250826135ea576135e9613530565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212205dfac1776dcc5da54b81b0e79d3a6a9b3ea0a55587b232008eb9e6245774493164736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105b3578063e985e9c5146105de578063f2fde38b1461061b578063f968adbe14610644576101b7565b8063b88d4fde14610522578063c7c39ffc1461054b578063c87b56dd14610576576101b7565b806395d89b41116100c657806395d89b4114610487578063a035b1fe146104b2578063a0712d68146104dd578063a22cb465146104f9576101b7565b8063715018a61461042e57806376645315146104455780638da5cb5b1461045c576101b7565b80633ccfd60b11610159578063502b33af11610133578063502b33af1461037457806355f804b31461038b5780636352211e146103b457806370a08231146103f1576101b7565b80633ccfd60b1461030957806342842e0e14610320578063453c231014610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612853565b61066f565b6040516101f0919061289b565b60405180910390f35b34801561020557600080fd5b5061020e610751565b60405161021b919061294f565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906129a7565b6107e3565b6040516102589190612a15565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a5c565b61085f565b005b34801561029657600080fd5b5061029f610963565b6040516102ac9190612aab565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ac6565b61097a565b005b3480156102ea57600080fd5b506102f361098a565b6040516103009190612aab565b60405180910390f35b34801561031557600080fd5b5061031e610990565b005b34801561032c57600080fd5b5061034760048036038101906103429190612ac6565b610a7d565b005b34801561035557600080fd5b5061035e610a9d565b60405161036b9190612aab565b60405180910390f35b34801561038057600080fd5b50610389610aa3565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612c4e565b610b4b565b005b3480156103c057600080fd5b506103db60048036038101906103d691906129a7565b610be1565b6040516103e89190612a15565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612c97565b610bf7565b6040516104259190612aab565b60405180910390f35b34801561043a57600080fd5b50610443610cc6565b005b34801561045157600080fd5b5061045a610d4e565b005b34801561046857600080fd5b50610471610df6565b60405161047e9190612a15565b60405180910390f35b34801561049357600080fd5b5061049c610e20565b6040516104a9919061294f565b60405180910390f35b3480156104be57600080fd5b506104c7610eb2565b6040516104d49190612aab565b60405180910390f35b6104f760048036038101906104f291906129a7565b610eb8565b005b34801561050557600080fd5b50610520600480360381019061051b9190612cf0565b6110a1565b005b34801561052e57600080fd5b5061054960048036038101906105449190612dd1565b611218565b005b34801561055757600080fd5b50610560611290565b60405161056d9190612aab565b60405180910390f35b34801561058257600080fd5b5061059d600480360381019061059891906129a7565b611296565b6040516105aa919061294f565b60405180910390f35b3480156105bf57600080fd5b506105c8611397565b6040516105d59190612aab565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612e54565b61139d565b604051610612919061289b565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612c97565b611431565b005b34801561065057600080fd5b50610659611528565b6040516106669190612aab565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074a57506107498261152e565b5b9050919050565b60606002805461076090612ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90612ec3565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107ee82611598565b610824576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086a82610be1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f06115e6565b73ffffffffffffffffffffffffffffffffffffffff16146109535761091c816109176115e6565b61139d565b610952576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61095e8383836115ee565b505050565b600061096d6116a0565b6001546000540303905090565b6109858383836116a5565b505050565b600f5481565b6109986115e6565b73ffffffffffffffffffffffffffffffffffffffff166109b6610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612f40565b60405180910390fd5b6000479050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a79573d6000803e3d6000fd5b5050565b610a9883838360405180602001604052806000815250611218565b505050565b600c5481565b610aab6115e6565b73ffffffffffffffffffffffffffffffffffffffff16610ac9610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690612f40565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610b536115e6565b73ffffffffffffffffffffffffffffffffffffffff16610b71610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612f40565b60405180910390fd5b80600a9080519060200190610bdd929190612701565b5050565b6000610bec82611b59565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cce6115e6565b73ffffffffffffffffffffffffffffffffffffffff16610cec610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612f40565b60405180910390fd5b610d4c6000611de4565b565b610d566115e6565b73ffffffffffffffffffffffffffffffffffffffff16610d74610df6565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612f40565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e2f90612ec3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5b90612ec3565b8015610ea85780601f10610e7d57610100808354040283529160200191610ea8565b820191906000526020600020905b815481529060010190602001808311610e8b57829003601f168201915b5050505050905090565b60105481565b600060105490506001600f54610ece9190612f8f565b82610ed7610963565b610ee19190612f8f565b1015610eec57600090505b8082610ef89190612fe5565b341015610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f319061308b565b60405180910390fd5b6001600b54610f499190612f8f565b82610f52610963565b610f5c9190612f8f565b10610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906130f7565b60405180910390fd5b601160009054906101000a900460ff16610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613189565b60405180910390fd5b6001600d54610ffa9190612f8f565b821061103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906131f5565b60405180910390fd5b600c548261104833611eaa565b6110529190612f8f565b1115611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613261565b60405180910390fd5b61109d3383611f14565b5050565b6110a96115e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061111a6115e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111c76115e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120c919061289b565b60405180910390a35050565b6112238484846116a5565b6112428373ffffffffffffffffffffffffffffffffffffffff16611f32565b1561128a5761125384848484611f55565b611289576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b60606112a182611598565b6112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d7906132f3565b60405180910390fd5b601160019054906101000a900460ff1661138657600a805461130190612ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461132d90612ec3565b801561137a5780601f1061134f5761010080835404028352916020019161137a565b820191906000526020600020905b81548152906001019060200180831161135d57829003601f168201915b50505050509050611392565b61138f826120a5565b90505b919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114396115e6565b73ffffffffffffffffffffffffffffffffffffffff16611457610df6565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490612f40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613385565b60405180910390fd5b61152581611de4565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816115a36116a0565b111580156115b2575060005482105b80156115df575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116b082611b59565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461171b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661173c6115e6565b73ffffffffffffffffffffffffffffffffffffffff16148061176b575061176a856117656115e6565b61139d565b5b806117b057506117796115e6565b73ffffffffffffffffffffffffffffffffffffffff16611798846107e3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361184f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61185c8585856001612143565b611868600084876115ee565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ae7576000548214611ae657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b528585856001612149565b5050505050565b611b61612787565b600082905080611b6f6116a0565b11611dad57600054811015611dac576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611daa57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c8e578092505050611ddf565b5b600115611da957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611da4578092505050611ddf565b611c8f565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611f2e82826040518060200160405280600081525061214f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f7b6115e6565b8786866040518563ffffffff1660e01b8152600401611f9d94939291906133fa565b6020604051808303816000875af1925050508015611fd957506040513d601f19601f82011682018060405250810190611fd6919061345b565b60015b612052573d8060008114612009576040519150601f19603f3d011682016040523d82523d6000602084013e61200e565b606091505b50600081510361204a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606120b082611598565b6120e6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120f061250f565b90506000815103612110576040518060200160405280600081525061213b565b8061211a846125a1565b60405160200161212b9291906134c4565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121bb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036121f5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122026000858386612143565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506123c38673ffffffffffffffffffffffffffffffffffffffff16611f32565b15612488575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124386000878480600101955087611f55565b61246e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123c957826000541461248357600080fd5b6124f3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612489575b8160008190555050506125096000858386612149565b50505050565b6060600a805461251e90612ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461254a90612ec3565b80156125975780601f1061256c57610100808354040283529160200191612597565b820191906000526020600020905b81548152906001019060200180831161257a57829003601f168201915b5050505050905090565b6060600082036125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a578080612603906134e8565b915050600a82612613919061355f565b91506125f0565b60008167ffffffffffffffff81111561263657612635612b23565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613590565b9150600a8561269091906135c4565b603061269c9190612f8f565b60f81b8183815181106126b2576126b16135f5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee919061355f565b945061266c565b8093505050505b919050565b82805461270d90612ec3565b90600052602060002090601f01602090048101928261272f5760008555612776565b82601f1061274857805160ff1916838001178555612776565b82800160010185558215612776579182015b8281111561277557825182559160200191906001019061275a565b5b50905061278391906127ca565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156127e35760008160009055506001016127cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612830816127fb565b811461283b57600080fd5b50565b60008135905061284d81612827565b92915050565b600060208284031215612869576128686127f1565b5b60006128778482850161283e565b91505092915050565b60008115159050919050565b61289581612880565b82525050565b60006020820190506128b0600083018461288c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128f05780820151818401526020810190506128d5565b838111156128ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612921826128b6565b61292b81856128c1565b935061293b8185602086016128d2565b61294481612905565b840191505092915050565b600060208201905081810360008301526129698184612916565b905092915050565b6000819050919050565b61298481612971565b811461298f57600080fd5b50565b6000813590506129a18161297b565b92915050565b6000602082840312156129bd576129bc6127f1565b5b60006129cb84828501612992565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ff826129d4565b9050919050565b612a0f816129f4565b82525050565b6000602082019050612a2a6000830184612a06565b92915050565b612a39816129f4565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b60008060408385031215612a7357612a726127f1565b5b6000612a8185828601612a47565b9250506020612a9285828601612992565b9150509250929050565b612aa581612971565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b600080600060608486031215612adf57612ade6127f1565b5b6000612aed86828701612a47565b9350506020612afe86828701612a47565b9250506040612b0f86828701612992565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b5b82612905565b810181811067ffffffffffffffff82111715612b7a57612b79612b23565b5b80604052505050565b6000612b8d6127e7565b9050612b998282612b52565b919050565b600067ffffffffffffffff821115612bb957612bb8612b23565b5b612bc282612905565b9050602081019050919050565b82818337600083830152505050565b6000612bf1612bec84612b9e565b612b83565b905082815260208101848484011115612c0d57612c0c612b1e565b5b612c18848285612bcf565b509392505050565b600082601f830112612c3557612c34612b19565b5b8135612c45848260208601612bde565b91505092915050565b600060208284031215612c6457612c636127f1565b5b600082013567ffffffffffffffff811115612c8257612c816127f6565b5b612c8e84828501612c20565b91505092915050565b600060208284031215612cad57612cac6127f1565b5b6000612cbb84828501612a47565b91505092915050565b612ccd81612880565b8114612cd857600080fd5b50565b600081359050612cea81612cc4565b92915050565b60008060408385031215612d0757612d066127f1565b5b6000612d1585828601612a47565b9250506020612d2685828601612cdb565b9150509250929050565b600067ffffffffffffffff821115612d4b57612d4a612b23565b5b612d5482612905565b9050602081019050919050565b6000612d74612d6f84612d30565b612b83565b905082815260208101848484011115612d9057612d8f612b1e565b5b612d9b848285612bcf565b509392505050565b600082601f830112612db857612db7612b19565b5b8135612dc8848260208601612d61565b91505092915050565b60008060008060808587031215612deb57612dea6127f1565b5b6000612df987828801612a47565b9450506020612e0a87828801612a47565b9350506040612e1b87828801612992565b925050606085013567ffffffffffffffff811115612e3c57612e3b6127f6565b5b612e4887828801612da3565b91505092959194509250565b60008060408385031215612e6b57612e6a6127f1565b5b6000612e7985828601612a47565b9250506020612e8a85828601612a47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612edb57607f821691505b602082108103612eee57612eed612e94565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f2a6020836128c1565b9150612f3582612ef4565b602082019050919050565b60006020820190508181036000830152612f5981612f1d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f9a82612971565b9150612fa583612971565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fda57612fd9612f60565b5b828201905092915050565b6000612ff082612971565b9150612ffb83612971565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303457613033612f60565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613075601d836128c1565b91506130808261303f565b602082019050919050565b600060208201905081810360008301526130a481613068565b9050919050565b7f4e6f206d6f726520617661696c61626c65000000000000000000000000000000600082015250565b60006130e16011836128c1565b91506130ec826130ab565b602082019050919050565b60006020820190508181036000830152613110816130d4565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006131736021836128c1565b915061317e82613117565b604082019050919050565b600060208201905081810360008301526131a281613166565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006131df6013836128c1565b91506131ea826131a9565b602082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b600061324b6014836128c1565b915061325682613215565b602082019050919050565b6000602082019050818103600083015261327a8161323e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132dd602f836128c1565b91506132e882613281565b604082019050919050565b6000602082019050818103600083015261330c816132d0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061336f6026836128c1565b915061337a82613313565b604082019050919050565b6000602082019050818103600083015261339e81613362565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133cc826133a5565b6133d681856133b0565b93506133e68185602086016128d2565b6133ef81612905565b840191505092915050565b600060808201905061340f6000830187612a06565b61341c6020830186612a06565b6134296040830185612a9c565b818103606083015261343b81846133c1565b905095945050505050565b60008151905061345581612827565b92915050565b600060208284031215613471576134706127f1565b5b600061347f84828501613446565b91505092915050565b600081905092915050565b600061349e826128b6565b6134a88185613488565b93506134b88185602086016128d2565b80840191505092915050565b60006134d08285613493565b91506134dc8284613493565b91508190509392505050565b60006134f382612971565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361352557613524612f60565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061356a82612971565b915061357583612971565b92508261358557613584613530565b5b828204905092915050565b600061359b82612971565b91506135a683612971565b9250828210156135b9576135b8612f60565b5b828203905092915050565b60006135cf82612971565b91506135da83612971565b9250826135ea576135e9613530565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212205dfac1776dcc5da54b81b0e79d3a6a9b3ea0a55587b232008eb9e6245774493164736f6c634300080e0033

Deployed Bytecode Sourcemap

50214:2254:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31304:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34419:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35923:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35485:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30544:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36788:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50455:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52317:148;;;;;;;;;;;;;:::i;:::-;;37029:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50347:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50925:87;;;;;;;;;;;;;:::i;:::-;;50709:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34227:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31673:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;51721:87;;;;;;;;;;;;;:::i;:::-;;6838;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34588:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50493:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51052:634;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36199:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37285:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50419:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51816:383;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50309:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36557:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50385:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31304:305;31406:4;31458:25;31443:40;;;:11;:40;;;;:105;;;;31515:33;31500:48;;;:11;:48;;;;31443:105;:158;;;;31565:36;31589:11;31565:23;:36::i;:::-;31443:158;31423:178;;31304:305;;;:::o;34419:100::-;34473:13;34506:5;34499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34419:100;:::o;35923:204::-;35991:7;36016:16;36024:7;36016;:16::i;:::-;36011:64;;36041:34;;;;;;;;;;;;;;36011:64;36095:15;:24;36111:7;36095:24;;;;;;;;;;;;;;;;;;;;;36088:31;;35923:204;;;:::o;35485:372::-;35558:13;35574:24;35590:7;35574:15;:24::i;:::-;35558:40;;35619:5;35613:11;;:2;:11;;;35609:48;;35633:24;;;;;;;;;;;;;;35609:48;35690:5;35674:21;;:12;:10;:12::i;:::-;:21;;;35670:139;;35701:37;35718:5;35725:12;:10;:12::i;:::-;35701:16;:37::i;:::-;35697:112;;35762:35;;;;;;;;;;;;;;35697:112;35670:139;35821:28;35830:2;35834:7;35843:5;35821:8;:28::i;:::-;35547:310;35485:372;;:::o;30544:312::-;30597:7;30822:15;:13;:15::i;:::-;30807:12;;30791:13;;:28;:46;30784:53;;30544:312;:::o;36788:170::-;36922:28;36932:4;36938:2;36942:7;36922:9;:28::i;:::-;36788:170;;;:::o;50455:31::-;;;;:::o;52317:148::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52367:15:::1;52385:21;52367:39;;52425:13;;;;;;;;;;;52417:31;;:40;52449:7;52417:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52356:109;52317:148::o:0;37029:185::-;37167:39;37184:4;37190:2;37194:7;37167:39;;;;;;;;;;;;:16;:39::i;:::-;37029:185;;;:::o;50347:31::-;;;;:::o;50925:87::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50994:10:::1;;;;;;;;;;;50993:11;50980:10;;:24;;;;;;;;;;;;;;;;;;50925:87::o:0;50709:92::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50789:4:::1;50779:7;:14;;;;;;;;;;;;:::i;:::-;;50709:92:::0;:::o;34227:125::-;34291:7;34318:21;34331:7;34318:12;:21::i;:::-;:26;;;34311:33;;34227:125;;;:::o;31673:206::-;31737:7;31778:1;31761:19;;:5;:19;;;31757:60;;31789:28;;;;;;;;;;;;;;31757:60;31843:12;:19;31856:5;31843:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31835:36;;31828:43;;31673:206;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;51721:87::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51788:12:::1;;;;;;;;;;;51787:13;51772:12;;:28;;;;;;;;;;;;;;;;;;51721:87::o:0;6838:::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;34588:104::-;34644:13;34677:7;34670:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34588:104;:::o;50493:34::-;;;;:::o;51052:634::-;51107:12;51122:5;;51107:20;;51176:1;51164:9;;:13;;;;:::i;:::-;51158:3;51142:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51138:76;;;51201:1;51194:8;;51138:76;51261:4;51255:3;:10;;;;:::i;:::-;51242:9;:23;;51234:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51352:1;51340:9;;:13;;;;:::i;:::-;51334:3;51318:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51310:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51394:10;;;;;;;;;;;51386:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51478:1;51467:8;;:12;;;;:::i;:::-;51461:3;:18;51453:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51571:12;;51564:3;51536:25;51550:10;51536:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;51514:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;51644:26;51654:10;51666:3;51644:9;:26::i;:::-;51096:590;51052:634;:::o;36199:287::-;36310:12;:10;:12::i;:::-;36298:24;;:8;:24;;;36294:54;;36331:17;;;;;;;;;;;;;;36294:54;36406:8;36361:18;:32;36380:12;:10;:12::i;:::-;36361:32;;;;;;;;;;;;;;;:42;36394:8;36361:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36459:8;36430:48;;36445:12;:10;:12::i;:::-;36430:48;;;36469:8;36430:48;;;;;;:::i;:::-;;;;;;;;36199:287;;:::o;37285:370::-;37452:28;37462:4;37468:2;37472:7;37452:9;:28::i;:::-;37495:15;:2;:13;;;:15::i;:::-;37491:157;;;37516:56;37547:4;37553:2;37557:7;37566:5;37516:30;:56::i;:::-;37512:136;;37596:40;;;;;;;;;;;;;;37512:136;37491:157;37285:370;;;;:::o;50419:29::-;;;;:::o;51816:383::-;51934:13;51987:16;51995:7;51987;:16::i;:::-;51965:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52096:12;;;;;;;;;;;52091:60;;52132:7;52125:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52091:60;52168:23;52183:7;52168:14;:23::i;:::-;52161:30;;51816:383;;;;:::o;50309:31::-;;;;:::o;36557:164::-;36654:4;36678:18;:25;36697:5;36678:25;;;;;;;;;;;;;;;:35;36704:8;36678:35;;;;;;;;;;;;;;;;;;;;;;;;;36671:42;;36557:164;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;::::0;7828:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;50385:27::-;;;;:::o;19645:157::-;19730:4;19769:25;19754:40;;;:11;:40;;;;19747:47;;19645:157;;;:::o;37910:174::-;37967:4;38010:7;37991:15;:13;:15::i;:::-;:26;;:53;;;;;38031:13;;38021:7;:23;37991:53;:85;;;;;38049:11;:20;38061:7;38049:20;;;;;;;;;;;:27;;;;;;;;;;;;38048:28;37991:85;37984:92;;37910:174;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;47132:196::-;47274:2;47247:15;:24;47263:7;47247:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47312:7;47308:2;47292:28;;47301:5;47292:28;;;;;;;;;;;;47132:196;;;:::o;30318:92::-;30374:7;30318:92;:::o;42080:2130::-;42195:35;42233:21;42246:7;42233:12;:21::i;:::-;42195:59;;42293:4;42271:26;;:13;:18;;;:26;;;42267:67;;42306:28;;;;;;;;;;;;;;42267:67;42347:22;42389:4;42373:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42410:36;42427:4;42433:12;:10;:12::i;:::-;42410:16;:36::i;:::-;42373:73;:126;;;;42487:12;:10;:12::i;:::-;42463:36;;:20;42475:7;42463:11;:20::i;:::-;:36;;;42373:126;42347:153;;42518:17;42513:66;;42544:35;;;;;;;;;;;;;;42513:66;42608:1;42594:16;;:2;:16;;;42590:52;;42619:23;;;;;;;;;;;;;;42590:52;42655:43;42677:4;42683:2;42687:7;42696:1;42655:21;:43::i;:::-;42763:35;42780:1;42784:7;42793:4;42763:8;:35::i;:::-;43124:1;43094:12;:18;43107:4;43094:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43168:1;43140:12;:16;43153:2;43140:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43186:31;43220:11;:20;43232:7;43220:20;;;;;;;;;;;43186:54;;43271:2;43255:8;:13;;;:18;;;;;;;;;;;;;;;;;;43321:15;43288:8;:23;;;:49;;;;;;;;;;;;;;;;;;43589:19;43621:1;43611:7;:11;43589:33;;43637:31;43671:11;:24;43683:11;43671:24;;;;;;;;;;;43637:58;;43739:1;43714:27;;:8;:13;;;;;;;;;;;;:27;;;43710:384;;43924:13;;43909:11;:28;43905:174;;43978:4;43962:8;:13;;;:20;;;;;;;;;;;;;;;;;;44031:13;:28;;;44005:8;:23;;;:54;;;;;;;;;;;;;;;;;;43905:174;43710:384;43069:1036;;;44141:7;44137:2;44122:27;;44131:4;44122:27;;;;;;;;;;;;44160:42;44181:4;44187:2;44191:7;44200:1;44160:20;:42::i;:::-;42184:2026;;42080:2130;;;:::o;33054:1111::-;33116:21;;:::i;:::-;33150:12;33165:7;33150:22;;33233:4;33214:15;:13;:15::i;:::-;:23;33210:888;;33250:13;;33243:4;:20;33239:859;;;33284:31;33318:11;:17;33330:4;33318:17;;;;;;;;;;;33284:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33359:9;:16;;;33354:729;;33430:1;33404:28;;:9;:14;;;:28;;;33400:101;;33468:9;33461:16;;;;;;33400:101;33803:261;33810:4;33803:261;;;33843:6;;;;;;;;33888:11;:17;33900:4;33888:17;;;;;;;;;;;33876:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33962:1;33936:28;;:9;:14;;;:28;;;33932:109;;34004:9;33997:16;;;;;;33932:109;33803:261;;;33354:729;33265:833;33239:859;33210:888;34126:31;;;;;;;;;;;;;;33054:1111;;;;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8171:128;8108:191;:::o;31961:137::-;32022:7;32057:12;:19;32070:5;32057:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;32049:41;;32042:48;;31961:137;;;:::o;38168:104::-;38237:27;38247:2;38251:8;38237:27;;;;;;;;;;;;:9;:27::i;:::-;38168:104;;:::o;9539:326::-;9599:4;9856:1;9834:7;:19;;;:23;9827:30;;9539:326;;;:::o;47820:667::-;47983:4;48020:2;48004:36;;;48041:12;:10;:12::i;:::-;48055:4;48061:7;48070:5;48004:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48000:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48255:1;48238:6;:13;:18;48234:235;;48284:40;;;;;;;;;;;;;;48234:235;48427:6;48421:13;48412:6;48408:2;48404:15;48397:38;48000:480;48133:45;;;48123:55;;;:6;:55;;;;48116:62;;;47820:667;;;;;;:::o;34763:318::-;34836:13;34867:16;34875:7;34867;:16::i;:::-;34862:59;;34892:29;;;;;;;;;;;;;;34862:59;34934:21;34958:10;:8;:10::i;:::-;34934:34;;35011:1;34992:7;34986:21;:26;:87;;;;;;;;;;;;;;;;;35039:7;35048:18;:7;:16;:18::i;:::-;35022:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34986:87;34979:94;;;34763:318;;;:::o;49135:159::-;;;;;:::o;49953:158::-;;;;;:::o;38645:1749::-;38768:20;38791:13;;38768:36;;38833:1;38819:16;;:2;:16;;;38815:48;;38844:19;;;;;;;;;;;;;;38815:48;38890:1;38878:8;:13;38874:44;;38900:18;;;;;;;;;;;;;;38874:44;38931:61;38961:1;38965:2;38969:12;38983:8;38931:21;:61::i;:::-;39304:8;39269:12;:16;39282:2;39269:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39368:8;39328:12;:16;39341:2;39328:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39427:2;39394:11;:25;39406:12;39394:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39494:15;39444:11;:25;39456:12;39444:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39527:20;39550:12;39527:35;;39577:11;39606:8;39591:12;:23;39577:37;;39635:15;:2;:13;;;:15::i;:::-;39631:631;;;39671:313;39727:12;39723:2;39702:38;;39719:1;39702:38;;;;;;;;;;;;39768:69;39807:1;39811:2;39815:14;;;;;;39831:5;39768:30;:69::i;:::-;39763:174;;39873:40;;;;;;;;;;;;;;39763:174;39979:3;39964:12;:18;39671:313;;40065:12;40048:13;;:29;40044:43;;40079:8;;;40044:43;39631:631;;;40128:119;40184:14;;;;;;40180:2;40159:40;;40176:1;40159:40;;;;;;;;;;;;40242:3;40227:12;:18;40128:119;;39631:631;40292:12;40276:13;:28;;;;39244:1072;;40326:60;40355:1;40359:2;40363:12;40377:8;40326:20;:60::i;:::-;38757:1637;38645:1749;;;:::o;50809:108::-;50869:13;50902:7;50895:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50809:108;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:180::-;13666:77;13663:1;13656:88;13763:4;13760:1;13753:15;13787:4;13784:1;13777:15;13804:305;13844:3;13863:20;13881:1;13863:20;:::i;:::-;13858:25;;13897:20;13915:1;13897:20;:::i;:::-;13892:25;;14051:1;13983:66;13979:74;13976:1;13973:81;13970:107;;;14057:18;;:::i;:::-;13970:107;14101:1;14098;14094:9;14087:16;;13804:305;;;;:::o;14115:348::-;14155:7;14178:20;14196:1;14178:20;:::i;:::-;14173:25;;14212:20;14230:1;14212:20;:::i;:::-;14207:25;;14400:1;14332:66;14328:74;14325:1;14322:81;14317:1;14310:9;14303:17;14299:105;14296:131;;;14407:18;;:::i;:::-;14296:131;14455:1;14452;14448:9;14437:20;;14115:348;;;;:::o;14469:179::-;14609:31;14605:1;14597:6;14593:14;14586:55;14469:179;:::o;14654:366::-;14796:3;14817:67;14881:2;14876:3;14817:67;:::i;:::-;14810:74;;14893:93;14982:3;14893:93;:::i;:::-;15011:2;15006:3;15002:12;14995:19;;14654:366;;;:::o;15026:419::-;15192:4;15230:2;15219:9;15215:18;15207:26;;15279:9;15273:4;15269:20;15265:1;15254:9;15250:17;15243:47;15307:131;15433:4;15307:131;:::i;:::-;15299:139;;15026:419;;;:::o;15451:167::-;15591:19;15587:1;15579:6;15575:14;15568:43;15451:167;:::o;15624:366::-;15766:3;15787:67;15851:2;15846:3;15787:67;:::i;:::-;15780:74;;15863:93;15952:3;15863:93;:::i;:::-;15981:2;15976:3;15972:12;15965:19;;15624:366;;;:::o;15996:419::-;16162:4;16200:2;16189:9;16185:18;16177:26;;16249:9;16243:4;16239:20;16235:1;16224:9;16220:17;16213:47;16277:131;16403:4;16277:131;:::i;:::-;16269:139;;15996:419;;;:::o;16421:220::-;16561:34;16557:1;16549:6;16545:14;16538:58;16630:3;16625:2;16617:6;16613:15;16606:28;16421:220;:::o;16647:366::-;16789:3;16810:67;16874:2;16869:3;16810:67;:::i;:::-;16803:74;;16886:93;16975:3;16886:93;:::i;:::-;17004:2;16999:3;16995:12;16988:19;;16647:366;;;:::o;17019:419::-;17185:4;17223:2;17212:9;17208:18;17200:26;;17272:9;17266:4;17262:20;17258:1;17247:9;17243:17;17236:47;17300:131;17426:4;17300:131;:::i;:::-;17292:139;;17019:419;;;:::o;17444:169::-;17584:21;17580:1;17572:6;17568:14;17561:45;17444:169;:::o;17619:366::-;17761:3;17782:67;17846:2;17841:3;17782:67;:::i;:::-;17775:74;;17858:93;17947:3;17858:93;:::i;:::-;17976:2;17971:3;17967:12;17960:19;;17619:366;;;:::o;17991:419::-;18157:4;18195:2;18184:9;18180:18;18172:26;;18244:9;18238:4;18234:20;18230:1;18219:9;18215:17;18208:47;18272:131;18398:4;18272:131;:::i;:::-;18264:139;;17991:419;;;:::o;18416:170::-;18556:22;18552:1;18544:6;18540:14;18533:46;18416:170;:::o;18592:366::-;18734:3;18755:67;18819:2;18814:3;18755:67;:::i;:::-;18748:74;;18831:93;18920:3;18831:93;:::i;:::-;18949:2;18944:3;18940:12;18933:19;;18592:366;;;:::o;18964:419::-;19130:4;19168:2;19157:9;19153:18;19145:26;;19217:9;19211:4;19207:20;19203:1;19192:9;19188:17;19181:47;19245:131;19371:4;19245:131;:::i;:::-;19237:139;;18964:419;;;:::o;19389:234::-;19529:34;19525:1;19517:6;19513:14;19506:58;19598:17;19593:2;19585:6;19581:15;19574:42;19389:234;:::o;19629:366::-;19771:3;19792:67;19856:2;19851:3;19792:67;:::i;:::-;19785:74;;19868:93;19957:3;19868:93;:::i;:::-;19986:2;19981:3;19977:12;19970:19;;19629:366;;;:::o;20001:419::-;20167:4;20205:2;20194:9;20190:18;20182:26;;20254:9;20248:4;20244:20;20240:1;20229:9;20225:17;20218:47;20282:131;20408:4;20282:131;:::i;:::-;20274:139;;20001:419;;;:::o;20426:225::-;20566:34;20562:1;20554:6;20550:14;20543:58;20635:8;20630:2;20622:6;20618:15;20611:33;20426:225;:::o;20657:366::-;20799:3;20820:67;20884:2;20879:3;20820:67;:::i;:::-;20813:74;;20896:93;20985:3;20896:93;:::i;:::-;21014:2;21009:3;21005:12;20998:19;;20657:366;;;:::o;21029:419::-;21195:4;21233:2;21222:9;21218:18;21210:26;;21282:9;21276:4;21272:20;21268:1;21257:9;21253:17;21246:47;21310:131;21436:4;21310:131;:::i;:::-;21302:139;;21029:419;;;:::o;21454:98::-;21505:6;21539:5;21533:12;21523:22;;21454:98;;;:::o;21558:168::-;21641:11;21675:6;21670:3;21663:19;21715:4;21710:3;21706:14;21691:29;;21558:168;;;;:::o;21732:360::-;21818:3;21846:38;21878:5;21846:38;:::i;:::-;21900:70;21963:6;21958:3;21900:70;:::i;:::-;21893:77;;21979:52;22024:6;22019:3;22012:4;22005:5;22001:16;21979:52;:::i;:::-;22056:29;22078:6;22056:29;:::i;:::-;22051:3;22047:39;22040:46;;21822:270;21732:360;;;;:::o;22098:640::-;22293:4;22331:3;22320:9;22316:19;22308:27;;22345:71;22413:1;22402:9;22398:17;22389:6;22345:71;:::i;:::-;22426:72;22494:2;22483:9;22479:18;22470:6;22426:72;:::i;:::-;22508;22576:2;22565:9;22561:18;22552:6;22508:72;:::i;:::-;22627:9;22621:4;22617:20;22612:2;22601:9;22597:18;22590:48;22655:76;22726:4;22717:6;22655:76;:::i;:::-;22647:84;;22098:640;;;;;;;:::o;22744:141::-;22800:5;22831:6;22825:13;22816:22;;22847:32;22873:5;22847:32;:::i;:::-;22744:141;;;;:::o;22891:349::-;22960:6;23009:2;22997:9;22988:7;22984:23;22980:32;22977:119;;;23015:79;;:::i;:::-;22977:119;23135:1;23160:63;23215:7;23206:6;23195:9;23191:22;23160:63;:::i;:::-;23150:73;;23106:127;22891:349;;;;:::o;23246:148::-;23348:11;23385:3;23370:18;;23246:148;;;;:::o;23400:377::-;23506:3;23534:39;23567:5;23534:39;:::i;:::-;23589:89;23671:6;23666:3;23589:89;:::i;:::-;23582:96;;23687:52;23732:6;23727:3;23720:4;23713:5;23709:16;23687:52;:::i;:::-;23764:6;23759:3;23755:16;23748:23;;23510:267;23400:377;;;;:::o;23783:435::-;23963:3;23985:95;24076:3;24067:6;23985:95;:::i;:::-;23978:102;;24097:95;24188:3;24179:6;24097:95;:::i;:::-;24090:102;;24209:3;24202:10;;23783:435;;;;;:::o;24224:233::-;24263:3;24286:24;24304:5;24286:24;:::i;:::-;24277:33;;24332:66;24325:5;24322:77;24319:103;;24402:18;;:::i;:::-;24319:103;24449:1;24442:5;24438:13;24431:20;;24224:233;;;:::o;24463:180::-;24511:77;24508:1;24501:88;24608:4;24605:1;24598:15;24632:4;24629:1;24622:15;24649:185;24689:1;24706:20;24724:1;24706:20;:::i;:::-;24701:25;;24740:20;24758:1;24740:20;:::i;:::-;24735:25;;24779:1;24769:35;;24784:18;;:::i;:::-;24769:35;24826:1;24823;24819:9;24814:14;;24649:185;;;;:::o;24840:191::-;24880:4;24900:20;24918:1;24900:20;:::i;:::-;24895:25;;24934:20;24952:1;24934:20;:::i;:::-;24929:25;;24973:1;24970;24967:8;24964:34;;;24978:18;;:::i;:::-;24964:34;25023:1;25020;25016:9;25008:17;;24840:191;;;;:::o;25037:176::-;25069:1;25086:20;25104:1;25086:20;:::i;:::-;25081:25;;25120:20;25138:1;25120:20;:::i;:::-;25115:25;;25159:1;25149:35;;25164:18;;:::i;:::-;25149:35;25205:1;25202;25198:9;25193:14;;25037:176;;;;:::o;25219:180::-;25267:77;25264:1;25257:88;25364:4;25361:1;25354:15;25388:4;25385:1;25378:15

Swarm Source

ipfs://5dfac1776dcc5da54b81b0e79d3a6a9b3ea0a55587b232008eb9e62457744931
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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