ETH Price: $2,838.25 (-10.19%)
Gas: 14 Gwei

Token

Reactor Motors (REACTOR)
 

Overview

Max Total Supply

8,888 REACTOR

Holders

3,941

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
s1nghara.eth
Balance
1 REACTOR
0xbdc48feac848d0d1d3714ef61dc3e15637248a40
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[MINT HERE](https://opensea.io/assets/0xcbc762be1e45e998fe495cba27d422efeea34d4e/0) Reactor Motors is a collection of 8,888 unique NFTs that exist on the Ethereum Blockchain and upgrade over time. One Reactor NFT unlocks physical ownership of the Iron McLaren supercar - airdropped 24 hours after close of mint! Each Reactor NFT powers your unique Reactor Motors Car, ready to race on the Reactor Raceway, state-of-the-art metaverse racing game, coming Q1 2022. All Reactor NFTs include a unique Reykium Crystal, interior color design, container color design, ring color design, casing, converter, and border ring. Keep an eye out for the ultra-rare, Spectrum Reykium Crystal! All Reactor NFT holders gain access to the Reactorverse, which includes the future of metaverse racing on the Reactor Raceway, IRL reactors and activations, exclusive airdrops and whitelist access to future Reactor drops, premium merchandise, and the Reactor Raceway World Cup! GM and welcome to the Reactorverse…

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ReactorMotors

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : ReactorMotors.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.11;

import "@divergencetech/ethier/contracts/erc721/ERC721Common.sol";
import "@divergencetech/ethier/contracts/erc721/BaseTokenURI.sol";
import "@divergencetech/ethier/contracts/thirdparty/opensea/OpenSeaERC721Mintable.sol";
import "@divergencetech/ethier/contracts/utils/Monotonic.sol";

contract ReactorMotors is OpenSeaERC721Mintable, BaseTokenURI, ERC721Common {
    using Monotonic for Monotonic.Increaser;
    using Monotonic for Monotonic.Decreaser;

    /// @notice Maximum number of tokens to be minted.
    uint256 public immutable MAX_TOKENS;

    constructor(
        uint256 maxTokens,
        string memory baseTokenURI,
        string memory baseOptionURI
    )
        ERC721Common("Reactor Motors", "REACTOR")
        OpenSeaERC721Mintable(
            "Reactor Motors Sale",
            "REACTORSALE",
            1,
            baseOptionURI
        )
        BaseTokenURI(baseTokenURI)
    {
        MAX_TOKENS = maxTokens;
    }

    /// @notice Tracks the number of tokens minted.
    Monotonic.Increaser private _totalSupply;

    /// @notice Required override for OpenSea-enabled minting.
    function factoryCanMint(uint256 optionId)
        public
        view
        override
        returns (bool)
    {
        return
            !paused() && optionId == 0 && _totalSupply.current() < MAX_TOKENS;
    }

    /// @notice Mint a new token when invoked by OpenSea minting mechanism.
    function _factoryMint(uint256 optionId, address to) internal override {
        require(optionId == 0, "Invalid option");
        uint256 curr = _totalSupply.current();
        require(curr < MAX_TOKENS, "Sold out");

        ERC721._safeMint(to, curr + 1);
        _totalSupply.add(1);
    }

    /// @notice Remaining quota available for mint by contract owner.
    Monotonic.Decreaser public ownerQuota = Monotonic.Decreaser(130);

    /// @notice Direct minting as the contract owner.
    function ownerMint(address to, uint256 n) external onlyOwner {
        require(n <= ownerQuota.current(), "Owner quota exceeded");

        uint256 curr = _totalSupply.current();
        uint256 last = curr + n;
        require(last < MAX_TOKENS, "Too many tokens");

        // Token IDs are 1-indexed.
        for (curr++; curr <= last; curr++) {
            ERC721._safeMint(to, curr);
        }
        _totalSupply.add(n);
        ownerQuota.subtract(n);
    }

    /// @notice Return the total number of tokens minted.
    function totalSupply() external view returns (uint256) {
        return _totalSupply.current();
    }

    /// @notice Public commitment to unrevealed metadata for all tokens.
    bytes32 public constant ALL_TOKEN_METADATA_KECCAK256 =
        0xb6eb383acd39b0a2f3b10b0c4cf1615ed8a5d2886f92a975f8d9b8db6e78c97d;

    /**
    @notice Override ERC721's base URI to use BaseTokenURI contract's mechanism.
    tokenURI() will return concatenation of _baseURI() and token ID.
     */
    function _baseURI()
        internal
        view
        override(ERC721, BaseTokenURI)
        returns (string memory)
    {
        return BaseTokenURI._baseURI();
    }
}

File 2 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 3 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 5 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 7 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 8 of 20 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 9 of 20 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 12 of 20 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 13 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 14 of 20 : OwnerPausable.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

/// @notice A Pausable contract that can only be toggled by the Owner.
contract OwnerPausable is Ownable, Pausable {
    /// @notice Pauses the contract.
    function pause() public onlyOwner {
        Pausable._pause();
    }

    /// @notice Unpauses the contract.
    function unpause() public onlyOwner {
        Pausable._unpause();
    }
}

File 15 of 20 : Monotonic.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

/**
@notice Provides monotonic increasing and decreasing values, similar to
OpenZeppelin's Counter but (a) limited in direction, and (b) allowing for steps
> 1.
 */
library Monotonic {
    /**
    @notice Holds a value that can only increase.
    @dev The internal value MUST NOT be accessed directly. Instead use current()
    and add().
     */
    struct Increaser {
        uint256 value;
    }

    /// @notice Returns the current value of the Increaser.
    function current(Increaser storage incr) internal view returns (uint256) {
        return incr.value;
    }

    /// @notice Adds x to the Increaser's value.
    function add(Increaser storage incr, uint256 x) internal {
        incr.value += x;
    }

    /**
    @notice Holds a value that can only decrease.
    @dev The internal value MUST NOT be accessed directly. Instead use current()
    and subtract().
     */
    struct Decreaser {
        uint256 value;
    }

    /// @notice Returns the current value of the Decreaser.
    function current(Decreaser storage decr) internal view returns (uint256) {
        return decr.value;
    }

    /// @notice Subtracts x from the Decreaser's value.
    function subtract(Decreaser storage decr, uint256 x) internal {
        decr.value -= x;
    }
}

File 16 of 20 : ProxyRegistry.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

/// @notice A minimal interface describing OpenSea's Wyvern proxy registry.
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
@dev This pattern of using an empty contract is cargo-culted directly from
OpenSea's example code. TODO: it's likely that the above mapping can be changed
to address => address without affecting anything, but further investigation is
needed (i.e. is there a subtle reason that OpenSea released it like this?).
 */
contract OwnableDelegateProxy {

}

File 17 of 20 : OpenSeaGasFreeListing.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

// Inspired by BaseOpenSea by Simon Fremaux (@dievardump) but without the need
// to pass specific addresses depending on deployment network.
// https://gist.github.com/dievardump/483eb43bc6ed30b14f01e01842e3339b/

import "./ProxyRegistry.sol";

/// @notice Library to achieve gas-free listings on OpenSea.
library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator)
        internal
        view
        returns (bool)
    {
        address proxy = proxyFor(owner);
        return proxy != address(0) && proxy == operator;
    }

    /**
    @notice Returns the OpenSea proxy address for the owner.
     */
    function proxyFor(address owner) internal view returns (address) {
        address registry;
        uint256 chainId;

        assembly {
            chainId := chainid()
            switch chainId
            // Production networks are placed higher to minimise the number of
            // checks performed and therefore reduce gas. By the same rationale,
            // mainnet comes before Polygon as it's more expensive.
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 137 {
                // polygon
                registry := 0x58807baD0B376efc12F5AD86aAc70E78ed67deaE
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
            case 80001 {
                // mumbai
                registry := 0xff7Ca10aF37178BdD056628eF42fD7F799fAc77c
            }
            case 1337 {
                // The geth SimulatedBackend iff used with the ethier
                // openseatest package. This is mocked as a Wyvern proxy as it's
                // more complex than the 0x ones.
                registry := 0xE1a2bbc877b29ADBC56D2659DBcb0ae14ee62071
            }
        }

        // Unlike Wyvern, the registry itself is the proxy for all owners on 0x
        // chains.
        if (registry == address(0) || chainId == 137 || chainId == 80001) {
            return registry;
        }

        return address(ProxyRegistry(registry).proxies(owner));
    }
}

File 18 of 20 : OpenSeaERC721Mintable.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

import "./OpenSeaGasFreeListing.sol";
import "../../utils/OwnerPausable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
@notice An ERC721 extension that allows for minting directly from OpenSea using
"option IDs". See https://docs.opensea.io/docs/2-custom-item-sale-contract.
@dev All factory logic is abstracted away such that it's possible to deploy
without any interaction with the factory contract. Apart from requiring the
factory address for OpenSea listings, users of this contract can generally
ignore the existence of the extra contract.
 */
abstract contract OpenSeaERC721Mintable {
    /// @notice Factory contract deployed by this one's constructor.
    OpenSeaERC721Factory public factory;

    constructor(
        string memory factoryName,
        string memory factorySymbol,
        uint256 numFactoryOptions,
        string memory baseOptionURI
    ) {
        factory = new OpenSeaERC721Factory(
            factoryName,
            factorySymbol,
            baseOptionURI,
            msg.sender,
            numFactoryOptions
        );
    }

    /**
    @notice Returns whether the factory can currently mint the specified option.
     */
    function factoryCanMint(uint256 optionId)
        public
        view
        virtual
        returns (bool);

    /**
    @notice Mints the specified option for the recipient. Tip: although there is
    no field for the number of tokens to mint, this can be encoded in the option
    number.
    @dev Note that this has internal visibility and its access is subject to
    caller requirements so no further checks are necessary.
     */
    function _factoryMint(uint256 optionId, address to) internal virtual;

    /**
    @notice Mints the sp[ecified option for the recipient.
    @dev Only callable by the factory; instead use factory.mint().
     */
    function factoryMint(uint256 optionId, address to) external {
        require(
            msg.sender == address(factory),
            "OpenSeaERC721Mintable: only factory"
        );

        _factoryMint(optionId, to);
    }
}

/**
@notice Factory contract to mint OpenSeaERC721Mintable tokens.
@dev There is likely no need to use this contract directly; intead, inherit from
OpenSeaERC721Mintable and implement the necessary virtual functions.
 */
contract OpenSeaERC721Factory is OwnerPausable {
    using Strings for uint256;

    /// @notice Contract that deployed this factory.
    OpenSeaERC721Mintable public token;

    /// @notice Factory name and symbol.
    string private name_;
    string private symbol_;

    /// @notice Base URI for constructing tokenURI values for options.
    string private baseOptionURI;

    /**
    @notice Standard ERC721 Transfer event, used to trigger OpenSea into
    recognising the existence of the factory.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    uint256 private immutable NUM_OPTIONS;

    /**
    @param owner Initial contract owner as it will be deployed by another
    contract but ownership should be transferred to an EOA.
     */
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseOptionURI,
        address owner,
        uint256 _numOptions
    ) {
        _name = name_;
        _symbol = symbol_;
        token = OpenSeaERC721Mintable(msg.sender);
        setBaseOptionURI(_baseOptionURI);

        NUM_OPTIONS = _numOptions;

        super.transferOwnership(owner);
        emitTransfers(address(0), owner);
    }

    /// @notice Sets the base URI for constructing tokenURI values for options.
    function setBaseOptionURI(string memory _baseOptionURI) public onlyOwner {
        baseOptionURI = _baseOptionURI;
    }

    /// @notice Returns the factory name.
    function name() external view returns (string memory) {
        return name_;
    }

    /// @notice Returns the factory symbol.
    function symbol() external view returns (string memory) {
        return symbol_;
    }

    /**
    @notice Returns the number of minting options available, read from the
    contract that deployed this factory.
     */
    function numOptions() external view returns (uint256) {
        return NUM_OPTIONS;
    }

    /**
    @notice Emits standard ERC721.Transfer events for all of the option "tokens"
    to induce correct OpenSea behaviour. These are first emitted upon contract
    deployment to signal "creation" of the option tokens, and on any ownership
    transfer of the contract.

     */
    function emitTransfers(address from, address to) internal {
        for (uint256 i = 0; i < NUM_OPTIONS; i++) {
            emit Transfer(from, to, i);
        }
    }

    /**
    @notice Transfers contract ownership just as with OpenZeppelin's Ownable,
    but also triggers Transfer events as OpenSea expects the option "tokens" to
    be owned by the contract owner.
     */
    function transferOwnership(address to) public override onlyOwner {
        emitTransfers(super.owner(), to);
        super.transferOwnership(to);
    }

    /**
    @notice Returns whether the option ID can be minted, deferring the logic to
    the factoryCanMint() method of the contract that deployed this factory.
     */
    function canMint(uint256 optionId) external view returns (bool) {
        return
            !paused() &&
            optionId < NUM_OPTIONS &&
            token.factoryCanMint(optionId);
    }

    /**
    @notice Returns a URL specifying option metadata, conforming to standard
    ERC721 metadata format.
     */
    function tokenURI(uint256 optionId) external view returns (string memory) {
        return string(abi.encodePacked(baseOptionURI, optionId.toString()));
    }

    /**
    @dev The OpenSea FactoryERC721 interface requires this instead of using
    EIP165 supportsInterface().
    @return true.
     */
    function supportsFactoryInterface() external pure returns (bool) {
        return true;
    }

    /**
    @notice Requires that the caller is either the owner or the owner's OpenSea
    Wyvern proxy, then proxies the call to the factoryMint() method of the
    contract that deployed this factory.
     */
    function mint(uint256 optionId, address to) public whenNotPaused {
        require(
            msg.sender == owner() ||
                msg.sender == OpenSeaGasFreeListing.proxyFor(owner()),
            "OpenSeaERC721Factory: only owner or proxy"
        );
        token.factoryMint(optionId, to);
    }

    /**
    @dev Calls mint(tokenId, to) to comply with OpenSea's overriding of the use
    of the ERC721 interface. Presumably they have hijacked their standard sale
    workflow to "transfer" a factory NFT to the buyer, which must have the
    effect of minting them a real NFT (this also explains the isApprovedForAll
    behaviour).
     */
    function transferFrom(
        address,
        address to,
        uint256 tokenId
    ) public {
        mint(tokenId, to);
    }

    /**
    @dev Returns true if owner is the contract owner, and either (a) operator is
    the OpenSea Wyver proxy for the owner; or (b) operator == owner. This is
    required to comply with OpenSea's overriding of the use of the ERC721
    interface. See comment on transferFrom().
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        returns (bool)
    {
        return
            owner == super.owner() &&
            (owner == operator ||
                OpenSeaGasFreeListing.isApprovedForAll(owner, operator));
    }

    /**
    @dev Always returns the contract owner. This is required to comply with
    OpenSea's overriding of the use of the ERC721 interface.
     */
    function ownerOf(uint256) public view returns (address) {
        return owner();
    }
}

File 19 of 20 : ERC721Common.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

import "../thirdparty/opensea/OpenSeaGasFreeListing.sol";
import "../utils/OwnerPausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/utils/Context.sol";

/**
@notice An ERC721 contract with common functionality:
 - OpenSea gas-free listings
 - OpenZeppelin Pausable
 - OpenZeppelin Pausable with functions exposed to Owner only
 */
contract ERC721Common is Context, ERC721Pausable, OwnerPausable {
    constructor(string memory name, string memory symbol)
        ERC721(name, symbol)
    {}

    /// @notice Requires that the token exists.
    modifier tokenExists(uint256 tokenId) {
        require(ERC721._exists(tokenId), "ERC721Common: Token doesn't exist");
        _;
    }

    /// @notice Requires that msg.sender owns or is approved for the token.
    modifier onlyApprovedOrOwner(uint256 tokenId) {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Common: Not approved nor owner"
        );
        _;
    }

    /// @notice Overrides _beforeTokenTransfer as required by inheritance.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /// @notice Overrides supportsInterface as required by inheritance.
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /**
    @notice Returns true if either standard isApprovedForAll() returns true or
    the operator is the OpenSea proxy for the owner.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            super.isApprovedForAll(owner, operator) ||
            OpenSeaGasFreeListing.isApprovedForAll(owner, operator);
    }
}

File 20 of 20 : BaseTokenURI.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";

/**
@notice ERC721 extension that overrides the OpenZeppelin _baseURI() function to
return a prefix that can be set by the contract owner.
 */
contract BaseTokenURI is Ownable {
    /// @notice Base token URI used as a prefix by tokenURI().
    string public baseTokenURI;

    constructor(string memory _baseTokenURI) {
        setBaseTokenURI(_baseTokenURI);
    }

    /// @notice Sets the base token URI prefix.
    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    /**
    @notice Concatenates and returns the base token URI and the token ID without
    any additional characters (e.g. a slash).
    @dev This requires that an inheriting contract that also inherits from OZ's
    ERC721 will have to override both contracts; although we could simply
    require that users implement their own _baseURI() as here, this can easily
    be forgotten and the current approach guides them with compiler errors. This
    favours the latter half of "APIs should be easy to use and hard to misuse"
    from https://www.infoq.com/articles/API-Design-Joshua-Bloch/.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return baseTokenURI;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"baseOptionURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ALL_TOKEN_METADATA_KECCAK256","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract OpenSeaERC721Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"optionId","type":"uint256"}],"name":"factoryCanMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"optionId","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"factoryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"n","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerQuota","outputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260405180602001604052806082815250600b6000820151816000015550503480156200002f57600080fd5b50604051620071e8380380620071e8833981810160405281019062000055919062000684565b6040518060400160405280600e81526020017f52656163746f72204d6f746f72730000000000000000000000000000000000008152506040518060400160405280600781526020017f52454143544f52000000000000000000000000000000000000000000000000008152508382826040518060400160405280601381526020017f52656163746f72204d6f746f72732053616c65000000000000000000000000008152506040518060400160405280600b81526020017f52454143544f5253414c4500000000000000000000000000000000000000000081525060018883838233856040516200014690620003ee565b62000156959493929190620007d1565b604051809103906000f08015801562000173573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050508160019080519060200190620001cf929190620003fc565b508060029080519060200190620001e8929190620003fc565b5050506200020b620001ff6200024b60201b60201c565b6200025360201b60201c565b6200021c816200031960201b60201c565b506000600960006101000a81548160ff021916908315150217905550505082608081815250505050506200091a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003296200024b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034f620003c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039f9062000893565b60405180910390fd5b8060089080519060200190620003c0929190620003fc565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6129e0806200480883390190565b8280546200040a90620008e4565b90600052602060002090601f0160209004810192826200042e57600085556200047a565b82601f106200044957805160ff19168380011785556200047a565b828001600101855582156200047a579182015b82811115620004795782518255916020019190600101906200045c565b5b5090506200048991906200048d565b5090565b5b80821115620004a85760008160009055506001016200048e565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620004d581620004c0565b8114620004e157600080fd5b50565b600081519050620004f581620004ca565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005508262000505565b810181811067ffffffffffffffff8211171562000572576200057162000516565b5b80604052505050565b600062000587620004ac565b905062000595828262000545565b919050565b600067ffffffffffffffff821115620005b857620005b762000516565b5b620005c38262000505565b9050602081019050919050565b60005b83811015620005f0578082015181840152602081019050620005d3565b8381111562000600576000848401525b50505050565b60006200061d62000617846200059a565b6200057b565b9050828152602081018484840111156200063c576200063b62000500565b5b62000649848285620005d0565b509392505050565b600082601f830112620006695762000668620004fb565b5b81516200067b84826020860162000606565b91505092915050565b600080600060608486031215620006a0576200069f620004b6565b5b6000620006b086828701620004e4565b935050602084015167ffffffffffffffff811115620006d457620006d3620004bb565b5b620006e28682870162000651565b925050604084015167ffffffffffffffff811115620007065762000705620004bb565b5b620007148682870162000651565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b600062000747826200071e565b62000753818562000729565b935062000765818560208601620005d0565b620007708162000505565b840191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a8826200077b565b9050919050565b620007ba816200079b565b82525050565b620007cb81620004c0565b82525050565b600060a0820190508181036000830152620007ed81886200073a565b905081810360208301526200080381876200073a565b905081810360408301526200081981866200073a565b90506200082a6060830185620007af565b620008396080830184620007c0565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200087b60208362000729565b9150620008888262000843565b602082019050919050565b60006020820190508181036000830152620008ae816200086c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008fd57607f821691505b60208210811415620009145762000913620008b5565b5b50919050565b608051613ebd6200094b60003960008181610a400152818161110c0152818161125d0152611c670152613ebd6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063c398b2a9116100a2578063d69eef1411610071578063d69eef14146104d0578063e985e9c514610500578063f2fde38b14610530578063f47c84c51461054c576101cf565b8063c398b2a914610446578063c45a015514610464578063c87b56dd14610482578063d547cfb7146104b2576101cf565b806395d89b41116100de57806395d89b41146103d4578063a22cb465146103f2578063b88d4fde1461040e578063be07dace1461042a576101cf565b8063715018a6146103a25780638456cb59146103ac5780638da5cb5b146103b6576101cf565b80633f4ba83a116101715780635c975abb1161014b5780635c975abb146103065780636352211e146103245780636b81114d1461035457806370a0823114610372576101cf565b80633f4ba83a146102c457806342842e0e146102ce578063484b973c146102ea576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c57806330176e13146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612753565b61056a565b6040516101fb919061279b565b60405180910390f35b61020c61057c565b604051610219919061284f565b60405180910390f35b61023c600480360381019061023791906128a7565b61060e565b6040516102499190612915565b60405180910390f35b61026c6004803603810190610267919061295c565b610693565b005b6102766107ab565b60405161028391906129ab565b60405180910390f35b6102a660048036038101906102a191906129c6565b6107bc565b005b6102c260048036038101906102bd9190612b4e565b61081c565b005b6102cc6108b2565b005b6102e860048036038101906102e391906129c6565b610938565b005b61030460048036038101906102ff919061295c565b610958565b005b61030e610b01565b60405161031b919061279b565b60405180910390f35b61033e600480360381019061033991906128a7565b610b18565b60405161034b9190612915565b60405180910390f35b61035c610bca565b60405161036991906129ab565b60405180910390f35b61038c60048036038101906103879190612b97565b610bd6565b60405161039991906129ab565b60405180910390f35b6103aa610c8e565b005b6103b4610d16565b005b6103be610d9c565b6040516103cb9190612915565b60405180910390f35b6103dc610dc6565b6040516103e9919061284f565b60405180910390f35b61040c60048036038101906104079190612bf0565b610e58565b005b61042860048036038101906104239190612cd1565b610e6e565b005b610444600480360381019061043f9190612d54565b610ed0565b005b61044e610f6c565b60405161045b9190612dad565b60405180910390f35b61046c610f93565b6040516104799190612e27565b60405180910390f35b61049c600480360381019061049791906128a7565b610fb7565b6040516104a9919061284f565b60405180910390f35b6104ba61105e565b6040516104c7919061284f565b60405180910390f35b6104ea60048036038101906104e591906128a7565b6110ec565b6040516104f7919061279b565b60405180910390f35b61051a60048036038101906105159190612e42565b61113e565b604051610527919061279b565b60405180910390f35b61054a60048036038101906105459190612b97565b611163565b005b61055461125b565b60405161056191906129ab565b60405180910390f35b60006105758261127f565b9050919050565b60606001805461058b90612eb1565b80601f01602080910402602001604051908101604052809291908181526020018280546105b790612eb1565b80156106045780601f106105d957610100808354040283529160200191610604565b820191906000526020600020905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b600061061982611361565b610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90612f55565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069e82610b18565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690612fe7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6113cd565b73ffffffffffffffffffffffffffffffffffffffff16148061075d575061075c816107576113cd565b61113e565b5b61079c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079390613079565b60405180910390fd5b6107a683836113d5565b505050565b60006107b7600a61148e565b905090565b6107cd6107c76113cd565b8261149c565b61080c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108039061310b565b60405180910390fd5b61081783838361157a565b505050565b6108246113cd565b73ffffffffffffffffffffffffffffffffffffffff16610842610d9c565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90613177565b60405180910390fd5b80600890805190602001906108ae929190612644565b5050565b6108ba6113cd565b73ffffffffffffffffffffffffffffffffffffffff166108d8610d9c565b73ffffffffffffffffffffffffffffffffffffffff161461092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590613177565b60405180910390fd5b6109366117d6565b565b61095383838360405180602001604052806000815250610e6e565b505050565b6109606113cd565b73ffffffffffffffffffffffffffffffffffffffff1661097e610d9c565b73ffffffffffffffffffffffffffffffffffffffff16146109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb90613177565b60405180910390fd5b6109de600b611878565b811115610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a17906131e3565b60405180910390fd5b6000610a2c600a61148e565b905060008282610a3c9190613232565b90507f00000000000000000000000000000000000000000000000000000000000000008110610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a97906132d4565b60405180910390fd5b8180610aab906132f4565b9250505b808211610ad357610ac08483611886565b8180610acb906132f4565b925050610aaf565b610ae783600a6118a490919063ffffffff16565b610afb83600b6118c390919063ffffffff16565b50505050565b6000600960009054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906133af565b60405180910390fd5b80915050919050565b600b8060000154905081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613441565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c966113cd565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610d9c565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613177565b60405180910390fd5b610d1460006118e2565b565b610d1e6113cd565b73ffffffffffffffffffffffffffffffffffffffff16610d3c610d9c565b73ffffffffffffffffffffffffffffffffffffffff1614610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990613177565b60405180910390fd5b610d9a6119a8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610dd590612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0190612eb1565b8015610e4e5780601f10610e2357610100808354040283529160200191610e4e565b820191906000526020600020905b815481529060010190602001808311610e3157829003601f168201915b5050505050905090565b610e6a610e636113cd565b8383611a4b565b5050565b610e7f610e796113cd565b8361149c565b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb59061310b565b60405180910390fd5b610eca84848484611bb8565b50505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f55906134d3565b60405180910390fd5b610f688282611c14565b5050565b7fb6eb383acd39b0a2f3b10b0c4cf1615ed8a5d2886f92a975f8d9b8db6e78c97d60001b81565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610fc282611361565b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890613565565b60405180910390fd5b600061100b611cf7565b9050600081511161102b5760405180602001604052806000815250611056565b8061103584611d06565b6040516020016110469291906135c1565b6040516020818303038152906040525b915050919050565b6008805461106b90612eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461109790612eb1565b80156110e45780601f106110b9576101008083540402835291602001916110e4565b820191906000526020600020905b8154815290600101906020018083116110c757829003601f168201915b505050505081565b60006110f6610b01565b1580156111035750600082145b801561113757507f0000000000000000000000000000000000000000000000000000000000000000611135600a61148e565b105b9050919050565b600061114a8383611e67565b8061115b575061115a8383611efb565b5b905092915050565b61116b6113cd565b73ffffffffffffffffffffffffffffffffffffffff16611189610d9c565b73ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613177565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690613657565b60405180910390fd5b611258816118e2565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061134a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061135a575061135982611f7a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661144883610b18565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006114a782611361565b6114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd906136e9565b60405180910390fd5b60006114f183610b18565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061156057508373ffffffffffffffffffffffffffffffffffffffff166115488461060e565b73ffffffffffffffffffffffffffffffffffffffff16145b806115715750611570818561113e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661159a82610b18565b73ffffffffffffffffffffffffffffffffffffffff16146115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e79061377b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579061380d565b60405180910390fd5b61166b838383611fe4565b6116766000826113d5565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c6919061382d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461171d9190613232565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6117de610b01565b61181d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611814906138ad565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118616113cd565b60405161186e9190612915565b60405180910390a1565b600081600001549050919050565b6118a0828260405180602001604052806000815250611ff4565b5050565b808260000160008282546118b89190613232565b925050819055505050565b808260000160008282546118d7919061382d565b925050819055505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119b0610b01565b156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613919565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a346113cd565b604051611a419190612915565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190613985565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bab919061279b565b60405180910390a3505050565b611bc384848461157a565b611bcf8484848461204f565b611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590613a17565b60405180910390fd5b50505050565b60008214611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613a83565b60405180910390fd5b6000611c63600a61148e565b90507f00000000000000000000000000000000000000000000000000000000000000008110611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90613aef565b60405180910390fd5b611cdd82600183611cd89190613232565b611886565b611cf26001600a6118a490919063ffffffff16565b505050565b6060611d016121d7565b905090565b60606000821415611d4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e62565b600082905060005b60008214611d80578080611d69906132f4565b915050600a82611d799190613b3e565b9150611d56565b60008167ffffffffffffffff811115611d9c57611d9b612a23565b5b6040519080825280601f01601f191660200182016040528015611dce5781602001600182028036833780820191505090505b5090505b60008514611e5b57600182611de7919061382d565b9150600a85611df69190613b6f565b6030611e029190613232565b60f81b818381518110611e1857611e17613ba0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e549190613b3e565b9450611dd2565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080611f0784612269565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611f7157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fef838383612406565b505050565b611ffe838361245e565b61200b600084848461204f565b61204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613a17565b60405180910390fd5b505050565b60006120708473ffffffffffffffffffffffffffffffffffffffff1661262c565b156121ca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120996113cd565b8786866040518563ffffffff1660e01b81526004016120bb9493929190613c24565b6020604051808303816000875af19250505080156120f757506040513d601f19601f820116820180604052508101906120f49190613c85565b60015b61217a573d8060008114612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b50600081511415612172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216990613a17565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121cf565b600190505b949350505050565b6060600880546121e690612eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461221290612eb1565b801561225f5780601f106122345761010080835404028352916020019161225f565b820191906000526020600020905b81548152906001019060200180831161224257829003601f168201915b5050505050905090565b600080600046905080600181146122a257608981146122be57600481146122da576201388181146122f65761053981146123125761232a565b73a5409ec958c83c3f309868babaca7c86dcb077c1925061232a565b7358807bad0b376efc12f5ad86aac70e78ed67deae925061232a565b73f57b2c51ded3a29e6891aba85459d600256cf317925061232a565b73ff7ca10af37178bdd056628ef42fd7f799fac77c925061232a565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b50600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806123665750608981145b8061237357506201388181145b15612382578192505050612401565b8173ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b81526004016123bb9190612915565b602060405180830381865afa1580156123d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fc9190613cf0565b925050505b919050565b61241183838361263f565b612419610b01565b15612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090613d8f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c590613dfb565b60405180910390fd5b6124d781611361565b15612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e90613e67565b60405180910390fd5b61252360008383611fe4565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125739190613232565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b82805461265090612eb1565b90600052602060002090601f01602090048101928261267257600085556126b9565b82601f1061268b57805160ff19168380011785556126b9565b828001600101855582156126b9579182015b828111156126b857825182559160200191906001019061269d565b5b5090506126c691906126ca565b5090565b5b808211156126e35760008160009055506001016126cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612730816126fb565b811461273b57600080fd5b50565b60008135905061274d81612727565b92915050565b600060208284031215612769576127686126f1565b5b60006127778482850161273e565b91505092915050565b60008115159050919050565b61279581612780565b82525050565b60006020820190506127b0600083018461278c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127f05780820151818401526020810190506127d5565b838111156127ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612821826127b6565b61282b81856127c1565b935061283b8185602086016127d2565b61284481612805565b840191505092915050565b600060208201905081810360008301526128698184612816565b905092915050565b6000819050919050565b61288481612871565b811461288f57600080fd5b50565b6000813590506128a18161287b565b92915050565b6000602082840312156128bd576128bc6126f1565b5b60006128cb84828501612892565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ff826128d4565b9050919050565b61290f816128f4565b82525050565b600060208201905061292a6000830184612906565b92915050565b612939816128f4565b811461294457600080fd5b50565b60008135905061295681612930565b92915050565b60008060408385031215612973576129726126f1565b5b600061298185828601612947565b925050602061299285828601612892565b9150509250929050565b6129a581612871565b82525050565b60006020820190506129c0600083018461299c565b92915050565b6000806000606084860312156129df576129de6126f1565b5b60006129ed86828701612947565b93505060206129fe86828701612947565b9250506040612a0f86828701612892565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a5b82612805565b810181811067ffffffffffffffff82111715612a7a57612a79612a23565b5b80604052505050565b6000612a8d6126e7565b9050612a998282612a52565b919050565b600067ffffffffffffffff821115612ab957612ab8612a23565b5b612ac282612805565b9050602081019050919050565b82818337600083830152505050565b6000612af1612aec84612a9e565b612a83565b905082815260208101848484011115612b0d57612b0c612a1e565b5b612b18848285612acf565b509392505050565b600082601f830112612b3557612b34612a19565b5b8135612b45848260208601612ade565b91505092915050565b600060208284031215612b6457612b636126f1565b5b600082013567ffffffffffffffff811115612b8257612b816126f6565b5b612b8e84828501612b20565b91505092915050565b600060208284031215612bad57612bac6126f1565b5b6000612bbb84828501612947565b91505092915050565b612bcd81612780565b8114612bd857600080fd5b50565b600081359050612bea81612bc4565b92915050565b60008060408385031215612c0757612c066126f1565b5b6000612c1585828601612947565b9250506020612c2685828601612bdb565b9150509250929050565b600067ffffffffffffffff821115612c4b57612c4a612a23565b5b612c5482612805565b9050602081019050919050565b6000612c74612c6f84612c30565b612a83565b905082815260208101848484011115612c9057612c8f612a1e565b5b612c9b848285612acf565b509392505050565b600082601f830112612cb857612cb7612a19565b5b8135612cc8848260208601612c61565b91505092915050565b60008060008060808587031215612ceb57612cea6126f1565b5b6000612cf987828801612947565b9450506020612d0a87828801612947565b9350506040612d1b87828801612892565b925050606085013567ffffffffffffffff811115612d3c57612d3b6126f6565b5b612d4887828801612ca3565b91505092959194509250565b60008060408385031215612d6b57612d6a6126f1565b5b6000612d7985828601612892565b9250506020612d8a85828601612947565b9150509250929050565b6000819050919050565b612da781612d94565b82525050565b6000602082019050612dc26000830184612d9e565b92915050565b6000819050919050565b6000612ded612de8612de3846128d4565b612dc8565b6128d4565b9050919050565b6000612dff82612dd2565b9050919050565b6000612e1182612df4565b9050919050565b612e2181612e06565b82525050565b6000602082019050612e3c6000830184612e18565b92915050565b60008060408385031215612e5957612e586126f1565b5b6000612e6785828601612947565b9250506020612e7885828601612947565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ec957607f821691505b60208210811415612edd57612edc612e82565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f3f602c836127c1565b9150612f4a82612ee3565b604082019050919050565b60006020820190508181036000830152612f6e81612f32565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fd16021836127c1565b9150612fdc82612f75565b604082019050919050565b6000602082019050818103600083015261300081612fc4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006130636038836127c1565b915061306e82613007565b604082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006130f56031836127c1565b915061310082613099565b604082019050919050565b60006020820190508181036000830152613124816130e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131616020836127c1565b915061316c8261312b565b602082019050919050565b6000602082019050818103600083015261319081613154565b9050919050565b7f4f776e65722071756f7461206578636565646564000000000000000000000000600082015250565b60006131cd6014836127c1565b91506131d882613197565b602082019050919050565b600060208201905081810360008301526131fc816131c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061323d82612871565b915061324883612871565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561327d5761327c613203565b5b828201905092915050565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b60006132be600f836127c1565b91506132c982613288565b602082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b60006132ff82612871565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333257613331613203565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133996029836127c1565b91506133a48261333d565b604082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061342b602a836127c1565b9150613436826133cf565b604082019050919050565b6000602082019050818103600083015261345a8161341e565b9050919050565b7f4f70656e5365614552433732314d696e7461626c653a206f6e6c79206661637460008201527f6f72790000000000000000000000000000000000000000000000000000000000602082015250565b60006134bd6023836127c1565b91506134c882613461565b604082019050919050565b600060208201905081810360008301526134ec816134b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061354f602f836127c1565b915061355a826134f3565b604082019050919050565b6000602082019050818103600083015261357e81613542565b9050919050565b600081905092915050565b600061359b826127b6565b6135a58185613585565b93506135b58185602086016127d2565b80840191505092915050565b60006135cd8285613590565b91506135d98284613590565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136416026836127c1565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006136d3602c836127c1565b91506136de82613677565b604082019050919050565b60006020820190508181036000830152613702816136c6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006137656029836127c1565b915061377082613709565b604082019050919050565b6000602082019050818103600083015261379481613758565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137f76024836127c1565b91506138028261379b565b604082019050919050565b60006020820190508181036000830152613826816137ea565b9050919050565b600061383882612871565b915061384383612871565b92508282101561385657613855613203565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006138976014836127c1565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139036010836127c1565b915061390e826138cd565b602082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061396f6019836127c1565b915061397a82613939565b602082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613a016032836127c1565b9150613a0c826139a5565b604082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b7f496e76616c6964206f7074696f6e000000000000000000000000000000000000600082015250565b6000613a6d600e836127c1565b9150613a7882613a37565b602082019050919050565b60006020820190508181036000830152613a9c81613a60565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613ad96008836127c1565b9150613ae482613aa3565b602082019050919050565b60006020820190508181036000830152613b0881613acc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4982612871565b9150613b5483612871565b925082613b6457613b63613b0f565b5b828204905092915050565b6000613b7a82612871565b9150613b8583612871565b925082613b9557613b94613b0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613bf682613bcf565b613c008185613bda565b9350613c108185602086016127d2565b613c1981612805565b840191505092915050565b6000608082019050613c396000830187612906565b613c466020830186612906565b613c53604083018561299c565b8181036060830152613c658184613beb565b905095945050505050565b600081519050613c7f81612727565b92915050565b600060208284031215613c9b57613c9a6126f1565b5b6000613ca984828501613c70565b91505092915050565b6000613cbd826128f4565b9050919050565b613ccd81613cb2565b8114613cd857600080fd5b50565b600081519050613cea81613cc4565b92915050565b600060208284031215613d0657613d056126f1565b5b6000613d1484828501613cdb565b91505092915050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b6000613d79602b836127c1565b9150613d8482613d1d565b604082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613de56020836127c1565b9150613df082613daf565b602082019050919050565b60006020820190508181036000830152613e1481613dd8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613e51601c836127c1565b9150613e5c82613e1b565b602082019050919050565b60006020820190508181036000830152613e8081613e44565b905091905056fea2646970667358221220ca466f73c31b32b7601d0653a6b0046b1395291f67a873b3bccf32da7981dc8e64736f6c634300080b003360a06040523480156200001157600080fd5b50604051620029e0380380620029e0833981810160405281019062000037919062000850565b620000576200004b6200022960201b60201c565b6200023160201b60201c565b60008060146101000a81548160ff02191690831515021790555060028054620000809062000964565b80601f0160208091040260200160405190810160405280929190818152602001828054620000ae9062000964565b8015620000ff5780601f10620000d357610100808354040283529160200191620000ff565b820191906000526020600020905b815481529060010190602001808311620000e157829003601f168201915b5050505050945060038054620001159062000964565b80601f0160208091040260200160405190810160405280929190818152602001828054620001439062000964565b8015620001945780601f10620001685761010080835404028352916020019162000194565b820191906000526020600020905b8154815290600101906020018083116200017657829003601f168201915b5050505050935033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001ed83620002f560201b60201c565b80608081815250506200020b82620003a060201b62000b0a1760201c565b6200021e600083620004b660201b60201c565b505050505062000b32565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003056200022960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200032b6200053a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000384576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037b90620009fb565b60405180910390fd5b80600490805190602001906200039c92919062000563565b5050565b620003b06200022960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d66200053a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200042f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042690620009fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620004a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004999062000a93565b60405180910390fd5b620004b3816200023160201b60201c565b50565b60005b6080518110156200053557808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480806200052c9062000ae4565b915050620004b9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005719062000964565b90600052602060002090601f016020900481019282620005955760008555620005e1565b82601f10620005b057805160ff1916838001178555620005e1565b82800160010185558215620005e1579182015b82811115620005e0578251825591602001919060010190620005c3565b5b509050620005f09190620005f4565b5090565b5b808211156200060f576000816000905550600101620005f5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200067c8262000631565b810181811067ffffffffffffffff821117156200069e576200069d62000642565b5b80604052505050565b6000620006b362000613565b9050620006c1828262000671565b919050565b600067ffffffffffffffff821115620006e457620006e362000642565b5b620006ef8262000631565b9050602081019050919050565b60005b838110156200071c578082015181840152602081019050620006ff565b838111156200072c576000848401525b50505050565b6000620007496200074384620006c6565b620006a7565b9050828152602081018484840111156200076857620007676200062c565b5b62000775848285620006fc565b509392505050565b600082601f83011262000795576200079462000627565b5b8151620007a784826020860162000732565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007dd82620007b0565b9050919050565b620007ef81620007d0565b8114620007fb57600080fd5b50565b6000815190506200080f81620007e4565b92915050565b6000819050919050565b6200082a8162000815565b81146200083657600080fd5b50565b6000815190506200084a816200081f565b92915050565b600080600080600060a086880312156200086f576200086e6200061d565b5b600086015167ffffffffffffffff81111562000890576200088f62000622565b5b6200089e888289016200077d565b955050602086015167ffffffffffffffff811115620008c257620008c162000622565b5b620008d0888289016200077d565b945050604086015167ffffffffffffffff811115620008f457620008f362000622565b5b62000902888289016200077d565b93505060606200091588828901620007fe565b9250506080620009288882890162000839565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200097d57607f821691505b6020821081141562000994576200099362000935565b5b50919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009e36020836200099a565b9150620009f082620009ab565b602082019050919050565b6000602082019050818103600083015262000a1681620009d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000a7b6026836200099a565b915062000a888262000a1d565b604082019050919050565b6000602082019050818103600083015262000aae8162000a6c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af18262000815565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b275762000b2662000ab5565b5b600182019050919050565b608051611e8462000b5c600039600081816104fc0152818161054a01526111940152611e846000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638456cb59116100a2578063c311c52311610071578063c311c52314610283578063c87b56dd146102a1578063e985e9c5146102d1578063f2fde38b14610301578063fc0c546a1461031d57610116565b80638456cb59146102215780638da5cb5b1461022b57806394bf804d1461024957806395d89b411461026557610116565b80634b97aed9116100e95780634b97aed91461017b5780635c975abb146101995780635dd871a3146101b75780636352211e146101e7578063715018a61461021757610116565b806306fdde031461011b57806323b872dd146101395780633f4ba83a14610155578063443f54091461015f575b600080fd5b61012361033b565b6040516101309190611369565b60405180910390f35b610153600480360381019061014e9190611433565b6103cd565b005b61015d6103dc565b005b610179600480360381019061017491906115bb565b610462565b005b6101836104f8565b6040516101909190611613565b60405180910390f35b6101a1610520565b6040516101ae9190611649565b60405180910390f35b6101d160048036038101906101cc9190611664565b610536565b6040516101de9190611649565b60405180910390f35b61020160048036038101906101fc9190611664565b610617565b60405161020e91906116a0565b60405180910390f35b61021f610628565b005b6102296106b0565b005b610233610736565b60405161024091906116a0565b60405180910390f35b610263600480360381019061025e91906116bb565b61075f565b005b61026d6108f4565b60405161027a9190611369565b60405180910390f35b61028b610986565b6040516102989190611649565b60405180910390f35b6102bb60048036038101906102b69190611664565b61098f565b6040516102c89190611369565b60405180910390f35b6102eb60048036038101906102e691906116fb565b6109c3565b6040516102f89190611649565b60405180910390f35b61031b6004803603810190610316919061173b565b610a4b565b005b610325610ae4565b60405161033291906117c7565b60405180910390f35b60606002805461034a90611811565b80601f016020809104026020016040519081016040528092919081815260200182805461037690611811565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b5050505050905090565b6103d7818361075f565b505050565b6103e4610c02565b73ffffffffffffffffffffffffffffffffffffffff16610402610736565b73ffffffffffffffffffffffffffffffffffffffff1614610458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044f9061188f565b60405180910390fd5b610460610c0a565b565b61046a610c02565b73ffffffffffffffffffffffffffffffffffffffff16610488610736565b73ffffffffffffffffffffffffffffffffffffffff16146104de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d59061188f565b60405180910390fd5b80600490805190602001906104f492919061122d565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008060149054906101000a900460ff16905090565b6000610540610520565b15801561056c57507f000000000000000000000000000000000000000000000000000000000000000082105b80156106105750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d69eef14836040518263ffffffff1660e01b81526004016105ce9190611613565b602060405180830381865afa1580156105eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060f91906118db565b5b9050919050565b6000610621610736565b9050919050565b610630610c02565b73ffffffffffffffffffffffffffffffffffffffff1661064e610736565b73ffffffffffffffffffffffffffffffffffffffff16146106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b9061188f565b60405180910390fd5b6106ae6000610cab565b565b6106b8610c02565b73ffffffffffffffffffffffffffffffffffffffff166106d6610736565b73ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107239061188f565b60405180910390fd5b610734610d6f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610767610520565b156107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611954565b60405180910390fd5b6107af610736565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061082257506107f36107ee610736565b610e12565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610858906119e6565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663be07dace83836040518363ffffffff1660e01b81526004016108be929190611a06565b600060405180830381600087803b1580156108d857600080fd5b505af11580156108ec573d6000803e3d6000fd5b505050505050565b60606003805461090390611811565b80601f016020809104026020016040519081016040528092919081815260200182805461092f90611811565b801561097c5780601f106109515761010080835404028352916020019161097c565b820191906000526020600020905b81548152906001019060200180831161095f57829003601f168201915b5050505050905090565b60006001905090565b6060600461099c83610faf565b6040516020016109ad929190611aff565b6040516020818303038152906040529050919050565b60006109cd610736565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610a4357508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a425750610a418383611110565b5b5b905092915050565b610a53610c02565b73ffffffffffffffffffffffffffffffffffffffff16610a71610736565b73ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe9061188f565b60405180910390fd5b610ad8610ad2610736565b8261118f565b610ae181610b0a565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b12610c02565b73ffffffffffffffffffffffffffffffffffffffff16610b30610736565b73ffffffffffffffffffffffffffffffffffffffff1614610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061188f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90611b95565b60405180910390fd5b610bff81610cab565b50565b600033905090565b610c12610520565b610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611c01565b60405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610c94610c02565b604051610ca191906116a0565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610d77610520565b15610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611954565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dfb610c02565b604051610e0891906116a0565b60405180910390a1565b60008060004690508060018114610e4b5760898114610e675760048114610e8357620138818114610e9f576105398114610ebb57610ed3565b73a5409ec958c83c3f309868babaca7c86dcb077c19250610ed3565b7358807bad0b376efc12f5ad86aac70e78ed67deae9250610ed3565b73f57b2c51ded3a29e6891aba85459d600256cf3179250610ed3565b73ff7ca10af37178bdd056628ef42fd7f799fac77c9250610ed3565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b50600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610f0f5750608981145b80610f1c57506201388181145b15610f2b578192505050610faa565b8173ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b8152600401610f6491906116a0565b602060405180830381865afa158015610f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa59190611c5f565b925050505b919050565b60606000821415610ff7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061110b565b600082905060005b6000821461102957808061101290611cbb565b915050600a826110229190611d33565b9150610fff565b60008167ffffffffffffffff81111561104557611044611490565b5b6040519080825280601f01601f1916602001820160405280156110775781602001600182028036833780820191505090505b5090505b60008514611104576001826110909190611d64565b9150600a8561109f9190611d98565b60306110ab9190611dc9565b60f81b8183815181106110c1576110c0611e1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856110fd9190611d33565b945061107b565b8093505050505b919050565b60008061111c84610e12565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561118657508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60005b7f000000000000000000000000000000000000000000000000000000000000000081101561122857808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061122090611cbb565b915050611192565b505050565b82805461123990611811565b90600052602060002090601f01602090048101928261125b57600085556112a2565b82601f1061127457805160ff19168380011785556112a2565b828001600101855582156112a2579182015b828111156112a1578251825591602001919060010190611286565b5b5090506112af91906112b3565b5090565b5b808211156112cc5760008160009055506001016112b4565b5090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561130a5780820151818401526020810190506112ef565b83811115611319576000848401525b50505050565b6000601f19601f8301169050919050565b600061133b826112d0565b61134581856112db565b93506113558185602086016112ec565b61135e8161131f565b840191505092915050565b600060208201905081810360008301526113838184611330565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113ca8261139f565b9050919050565b6113da816113bf565b81146113e557600080fd5b50565b6000813590506113f7816113d1565b92915050565b6000819050919050565b611410816113fd565b811461141b57600080fd5b50565b60008135905061142d81611407565b92915050565b60008060006060848603121561144c5761144b611395565b5b600061145a868287016113e8565b935050602061146b868287016113e8565b925050604061147c8682870161141e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114c88261131f565b810181811067ffffffffffffffff821117156114e7576114e6611490565b5b80604052505050565b60006114fa61138b565b905061150682826114bf565b919050565b600067ffffffffffffffff82111561152657611525611490565b5b61152f8261131f565b9050602081019050919050565b82818337600083830152505050565b600061155e6115598461150b565b6114f0565b90508281526020810184848401111561157a5761157961148b565b5b61158584828561153c565b509392505050565b600082601f8301126115a2576115a1611486565b5b81356115b284826020860161154b565b91505092915050565b6000602082840312156115d1576115d0611395565b5b600082013567ffffffffffffffff8111156115ef576115ee61139a565b5b6115fb8482850161158d565b91505092915050565b61160d816113fd565b82525050565b60006020820190506116286000830184611604565b92915050565b60008115159050919050565b6116438161162e565b82525050565b600060208201905061165e600083018461163a565b92915050565b60006020828403121561167a57611679611395565b5b60006116888482850161141e565b91505092915050565b61169a816113bf565b82525050565b60006020820190506116b56000830184611691565b92915050565b600080604083850312156116d2576116d1611395565b5b60006116e08582860161141e565b92505060206116f1858286016113e8565b9150509250929050565b6000806040838503121561171257611711611395565b5b6000611720858286016113e8565b9250506020611731858286016113e8565b9150509250929050565b60006020828403121561175157611750611395565b5b600061175f848285016113e8565b91505092915050565b6000819050919050565b600061178d6117886117838461139f565b611768565b61139f565b9050919050565b600061179f82611772565b9050919050565b60006117b182611794565b9050919050565b6117c1816117a6565b82525050565b60006020820190506117dc60008301846117b8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182957607f821691505b6020821081141561183d5761183c6117e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118796020836112db565b915061188482611843565b602082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b6118b88161162e565b81146118c357600080fd5b50565b6000815190506118d5816118af565b92915050565b6000602082840312156118f1576118f0611395565b5b60006118ff848285016118c6565b91505092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061193e6010836112db565b915061194982611908565b602082019050919050565b6000602082019050818103600083015261196d81611931565b9050919050565b7f4f70656e536561455243373231466163746f72793a206f6e6c79206f776e657260008201527f206f722070726f78790000000000000000000000000000000000000000000000602082015250565b60006119d06029836112db565b91506119db82611974565b604082019050919050565b600060208201905081810360008301526119ff816119c3565b9050919050565b6000604082019050611a1b6000830185611604565b611a286020830184611691565b9392505050565b600081905092915050565b60008190508160005260206000209050919050565b60008154611a5c81611811565b611a668186611a2f565b94506001821660008114611a815760018114611a9257611ac5565b60ff19831686528186019350611ac5565b611a9b85611a3a565b60005b83811015611abd57815481890152600182019150602081019050611a9e565b838801955050505b50505092915050565b6000611ad9826112d0565b611ae38185611a2f565b9350611af38185602086016112ec565b80840191505092915050565b6000611b0b8285611a4f565b9150611b178284611ace565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b7f6026836112db565b9150611b8a82611b23565b604082019050919050565b60006020820190508181036000830152611bae81611b72565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611beb6014836112db565b9150611bf682611bb5565b602082019050919050565b60006020820190508181036000830152611c1a81611bde565b9050919050565b6000611c2c826113bf565b9050919050565b611c3c81611c21565b8114611c4757600080fd5b50565b600081519050611c5981611c33565b92915050565b600060208284031215611c7557611c74611395565b5b6000611c8384828501611c4a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cc6826113fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611cf957611cf8611c8c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d3e826113fd565b9150611d49836113fd565b925082611d5957611d58611d04565b5b828204905092915050565b6000611d6f826113fd565b9150611d7a836113fd565b925082821015611d8d57611d8c611c8c565b5b828203905092915050565b6000611da3826113fd565b9150611dae836113fd565b925082611dbe57611dbd611d04565b5b828206905092915050565b6000611dd4826113fd565b9150611ddf836113fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e1457611e13611c8c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206b4eb240129a9f2c091cc34d168afca6106ffa9e88cb76f3d09721e9333e2e2d64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6d61696e6e65742d2d2d6d657461646174612d786c656d6b76367a77612d75632e612e72756e2e6170700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6d61696e6e65742d2d2d6d657461646174612d786c656d6b76367a77612d75632e612e72756e2e6170700000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063c398b2a9116100a2578063d69eef1411610071578063d69eef14146104d0578063e985e9c514610500578063f2fde38b14610530578063f47c84c51461054c576101cf565b8063c398b2a914610446578063c45a015514610464578063c87b56dd14610482578063d547cfb7146104b2576101cf565b806395d89b41116100de57806395d89b41146103d4578063a22cb465146103f2578063b88d4fde1461040e578063be07dace1461042a576101cf565b8063715018a6146103a25780638456cb59146103ac5780638da5cb5b146103b6576101cf565b80633f4ba83a116101715780635c975abb1161014b5780635c975abb146103065780636352211e146103245780636b81114d1461035457806370a0823114610372576101cf565b80633f4ba83a146102c457806342842e0e146102ce578063484b973c146102ea576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c57806330176e13146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612753565b61056a565b6040516101fb919061279b565b60405180910390f35b61020c61057c565b604051610219919061284f565b60405180910390f35b61023c600480360381019061023791906128a7565b61060e565b6040516102499190612915565b60405180910390f35b61026c6004803603810190610267919061295c565b610693565b005b6102766107ab565b60405161028391906129ab565b60405180910390f35b6102a660048036038101906102a191906129c6565b6107bc565b005b6102c260048036038101906102bd9190612b4e565b61081c565b005b6102cc6108b2565b005b6102e860048036038101906102e391906129c6565b610938565b005b61030460048036038101906102ff919061295c565b610958565b005b61030e610b01565b60405161031b919061279b565b60405180910390f35b61033e600480360381019061033991906128a7565b610b18565b60405161034b9190612915565b60405180910390f35b61035c610bca565b60405161036991906129ab565b60405180910390f35b61038c60048036038101906103879190612b97565b610bd6565b60405161039991906129ab565b60405180910390f35b6103aa610c8e565b005b6103b4610d16565b005b6103be610d9c565b6040516103cb9190612915565b60405180910390f35b6103dc610dc6565b6040516103e9919061284f565b60405180910390f35b61040c60048036038101906104079190612bf0565b610e58565b005b61042860048036038101906104239190612cd1565b610e6e565b005b610444600480360381019061043f9190612d54565b610ed0565b005b61044e610f6c565b60405161045b9190612dad565b60405180910390f35b61046c610f93565b6040516104799190612e27565b60405180910390f35b61049c600480360381019061049791906128a7565b610fb7565b6040516104a9919061284f565b60405180910390f35b6104ba61105e565b6040516104c7919061284f565b60405180910390f35b6104ea60048036038101906104e591906128a7565b6110ec565b6040516104f7919061279b565b60405180910390f35b61051a60048036038101906105159190612e42565b61113e565b604051610527919061279b565b60405180910390f35b61054a60048036038101906105459190612b97565b611163565b005b61055461125b565b60405161056191906129ab565b60405180910390f35b60006105758261127f565b9050919050565b60606001805461058b90612eb1565b80601f01602080910402602001604051908101604052809291908181526020018280546105b790612eb1565b80156106045780601f106105d957610100808354040283529160200191610604565b820191906000526020600020905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b600061061982611361565b610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90612f55565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069e82610b18565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690612fe7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6113cd565b73ffffffffffffffffffffffffffffffffffffffff16148061075d575061075c816107576113cd565b61113e565b5b61079c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079390613079565b60405180910390fd5b6107a683836113d5565b505050565b60006107b7600a61148e565b905090565b6107cd6107c76113cd565b8261149c565b61080c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108039061310b565b60405180910390fd5b61081783838361157a565b505050565b6108246113cd565b73ffffffffffffffffffffffffffffffffffffffff16610842610d9c565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90613177565b60405180910390fd5b80600890805190602001906108ae929190612644565b5050565b6108ba6113cd565b73ffffffffffffffffffffffffffffffffffffffff166108d8610d9c565b73ffffffffffffffffffffffffffffffffffffffff161461092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590613177565b60405180910390fd5b6109366117d6565b565b61095383838360405180602001604052806000815250610e6e565b505050565b6109606113cd565b73ffffffffffffffffffffffffffffffffffffffff1661097e610d9c565b73ffffffffffffffffffffffffffffffffffffffff16146109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb90613177565b60405180910390fd5b6109de600b611878565b811115610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a17906131e3565b60405180910390fd5b6000610a2c600a61148e565b905060008282610a3c9190613232565b90507f00000000000000000000000000000000000000000000000000000000000022b88110610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a97906132d4565b60405180910390fd5b8180610aab906132f4565b9250505b808211610ad357610ac08483611886565b8180610acb906132f4565b925050610aaf565b610ae783600a6118a490919063ffffffff16565b610afb83600b6118c390919063ffffffff16565b50505050565b6000600960009054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906133af565b60405180910390fd5b80915050919050565b600b8060000154905081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613441565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c966113cd565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610d9c565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613177565b60405180910390fd5b610d1460006118e2565b565b610d1e6113cd565b73ffffffffffffffffffffffffffffffffffffffff16610d3c610d9c565b73ffffffffffffffffffffffffffffffffffffffff1614610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990613177565b60405180910390fd5b610d9a6119a8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610dd590612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0190612eb1565b8015610e4e5780601f10610e2357610100808354040283529160200191610e4e565b820191906000526020600020905b815481529060010190602001808311610e3157829003601f168201915b5050505050905090565b610e6a610e636113cd565b8383611a4b565b5050565b610e7f610e796113cd565b8361149c565b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb59061310b565b60405180910390fd5b610eca84848484611bb8565b50505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f55906134d3565b60405180910390fd5b610f688282611c14565b5050565b7fb6eb383acd39b0a2f3b10b0c4cf1615ed8a5d2886f92a975f8d9b8db6e78c97d60001b81565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610fc282611361565b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890613565565b60405180910390fd5b600061100b611cf7565b9050600081511161102b5760405180602001604052806000815250611056565b8061103584611d06565b6040516020016110469291906135c1565b6040516020818303038152906040525b915050919050565b6008805461106b90612eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461109790612eb1565b80156110e45780601f106110b9576101008083540402835291602001916110e4565b820191906000526020600020905b8154815290600101906020018083116110c757829003601f168201915b505050505081565b60006110f6610b01565b1580156111035750600082145b801561113757507f00000000000000000000000000000000000000000000000000000000000022b8611135600a61148e565b105b9050919050565b600061114a8383611e67565b8061115b575061115a8383611efb565b5b905092915050565b61116b6113cd565b73ffffffffffffffffffffffffffffffffffffffff16611189610d9c565b73ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613177565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690613657565b60405180910390fd5b611258816118e2565b50565b7f00000000000000000000000000000000000000000000000000000000000022b881565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061134a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061135a575061135982611f7a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661144883610b18565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006114a782611361565b6114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd906136e9565b60405180910390fd5b60006114f183610b18565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061156057508373ffffffffffffffffffffffffffffffffffffffff166115488461060e565b73ffffffffffffffffffffffffffffffffffffffff16145b806115715750611570818561113e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661159a82610b18565b73ffffffffffffffffffffffffffffffffffffffff16146115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e79061377b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579061380d565b60405180910390fd5b61166b838383611fe4565b6116766000826113d5565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c6919061382d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461171d9190613232565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6117de610b01565b61181d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611814906138ad565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118616113cd565b60405161186e9190612915565b60405180910390a1565b600081600001549050919050565b6118a0828260405180602001604052806000815250611ff4565b5050565b808260000160008282546118b89190613232565b925050819055505050565b808260000160008282546118d7919061382d565b925050819055505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119b0610b01565b156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613919565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a346113cd565b604051611a419190612915565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190613985565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bab919061279b565b60405180910390a3505050565b611bc384848461157a565b611bcf8484848461204f565b611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590613a17565b60405180910390fd5b50505050565b60008214611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613a83565b60405180910390fd5b6000611c63600a61148e565b90507f00000000000000000000000000000000000000000000000000000000000022b88110611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90613aef565b60405180910390fd5b611cdd82600183611cd89190613232565b611886565b611cf26001600a6118a490919063ffffffff16565b505050565b6060611d016121d7565b905090565b60606000821415611d4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e62565b600082905060005b60008214611d80578080611d69906132f4565b915050600a82611d799190613b3e565b9150611d56565b60008167ffffffffffffffff811115611d9c57611d9b612a23565b5b6040519080825280601f01601f191660200182016040528015611dce5781602001600182028036833780820191505090505b5090505b60008514611e5b57600182611de7919061382d565b9150600a85611df69190613b6f565b6030611e029190613232565b60f81b818381518110611e1857611e17613ba0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e549190613b3e565b9450611dd2565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080611f0784612269565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611f7157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fef838383612406565b505050565b611ffe838361245e565b61200b600084848461204f565b61204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613a17565b60405180910390fd5b505050565b60006120708473ffffffffffffffffffffffffffffffffffffffff1661262c565b156121ca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120996113cd565b8786866040518563ffffffff1660e01b81526004016120bb9493929190613c24565b6020604051808303816000875af19250505080156120f757506040513d601f19601f820116820180604052508101906120f49190613c85565b60015b61217a573d8060008114612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b50600081511415612172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216990613a17565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121cf565b600190505b949350505050565b6060600880546121e690612eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461221290612eb1565b801561225f5780601f106122345761010080835404028352916020019161225f565b820191906000526020600020905b81548152906001019060200180831161224257829003601f168201915b5050505050905090565b600080600046905080600181146122a257608981146122be57600481146122da576201388181146122f65761053981146123125761232a565b73a5409ec958c83c3f309868babaca7c86dcb077c1925061232a565b7358807bad0b376efc12f5ad86aac70e78ed67deae925061232a565b73f57b2c51ded3a29e6891aba85459d600256cf317925061232a565b73ff7ca10af37178bdd056628ef42fd7f799fac77c925061232a565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b50600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806123665750608981145b8061237357506201388181145b15612382578192505050612401565b8173ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b81526004016123bb9190612915565b602060405180830381865afa1580156123d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fc9190613cf0565b925050505b919050565b61241183838361263f565b612419610b01565b15612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090613d8f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c590613dfb565b60405180910390fd5b6124d781611361565b15612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e90613e67565b60405180910390fd5b61252360008383611fe4565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125739190613232565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b82805461265090612eb1565b90600052602060002090601f01602090048101928261267257600085556126b9565b82601f1061268b57805160ff19168380011785556126b9565b828001600101855582156126b9579182015b828111156126b857825182559160200191906001019061269d565b5b5090506126c691906126ca565b5090565b5b808211156126e35760008160009055506001016126cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612730816126fb565b811461273b57600080fd5b50565b60008135905061274d81612727565b92915050565b600060208284031215612769576127686126f1565b5b60006127778482850161273e565b91505092915050565b60008115159050919050565b61279581612780565b82525050565b60006020820190506127b0600083018461278c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127f05780820151818401526020810190506127d5565b838111156127ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612821826127b6565b61282b81856127c1565b935061283b8185602086016127d2565b61284481612805565b840191505092915050565b600060208201905081810360008301526128698184612816565b905092915050565b6000819050919050565b61288481612871565b811461288f57600080fd5b50565b6000813590506128a18161287b565b92915050565b6000602082840312156128bd576128bc6126f1565b5b60006128cb84828501612892565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ff826128d4565b9050919050565b61290f816128f4565b82525050565b600060208201905061292a6000830184612906565b92915050565b612939816128f4565b811461294457600080fd5b50565b60008135905061295681612930565b92915050565b60008060408385031215612973576129726126f1565b5b600061298185828601612947565b925050602061299285828601612892565b9150509250929050565b6129a581612871565b82525050565b60006020820190506129c0600083018461299c565b92915050565b6000806000606084860312156129df576129de6126f1565b5b60006129ed86828701612947565b93505060206129fe86828701612947565b9250506040612a0f86828701612892565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a5b82612805565b810181811067ffffffffffffffff82111715612a7a57612a79612a23565b5b80604052505050565b6000612a8d6126e7565b9050612a998282612a52565b919050565b600067ffffffffffffffff821115612ab957612ab8612a23565b5b612ac282612805565b9050602081019050919050565b82818337600083830152505050565b6000612af1612aec84612a9e565b612a83565b905082815260208101848484011115612b0d57612b0c612a1e565b5b612b18848285612acf565b509392505050565b600082601f830112612b3557612b34612a19565b5b8135612b45848260208601612ade565b91505092915050565b600060208284031215612b6457612b636126f1565b5b600082013567ffffffffffffffff811115612b8257612b816126f6565b5b612b8e84828501612b20565b91505092915050565b600060208284031215612bad57612bac6126f1565b5b6000612bbb84828501612947565b91505092915050565b612bcd81612780565b8114612bd857600080fd5b50565b600081359050612bea81612bc4565b92915050565b60008060408385031215612c0757612c066126f1565b5b6000612c1585828601612947565b9250506020612c2685828601612bdb565b9150509250929050565b600067ffffffffffffffff821115612c4b57612c4a612a23565b5b612c5482612805565b9050602081019050919050565b6000612c74612c6f84612c30565b612a83565b905082815260208101848484011115612c9057612c8f612a1e565b5b612c9b848285612acf565b509392505050565b600082601f830112612cb857612cb7612a19565b5b8135612cc8848260208601612c61565b91505092915050565b60008060008060808587031215612ceb57612cea6126f1565b5b6000612cf987828801612947565b9450506020612d0a87828801612947565b9350506040612d1b87828801612892565b925050606085013567ffffffffffffffff811115612d3c57612d3b6126f6565b5b612d4887828801612ca3565b91505092959194509250565b60008060408385031215612d6b57612d6a6126f1565b5b6000612d7985828601612892565b9250506020612d8a85828601612947565b9150509250929050565b6000819050919050565b612da781612d94565b82525050565b6000602082019050612dc26000830184612d9e565b92915050565b6000819050919050565b6000612ded612de8612de3846128d4565b612dc8565b6128d4565b9050919050565b6000612dff82612dd2565b9050919050565b6000612e1182612df4565b9050919050565b612e2181612e06565b82525050565b6000602082019050612e3c6000830184612e18565b92915050565b60008060408385031215612e5957612e586126f1565b5b6000612e6785828601612947565b9250506020612e7885828601612947565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ec957607f821691505b60208210811415612edd57612edc612e82565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f3f602c836127c1565b9150612f4a82612ee3565b604082019050919050565b60006020820190508181036000830152612f6e81612f32565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fd16021836127c1565b9150612fdc82612f75565b604082019050919050565b6000602082019050818103600083015261300081612fc4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006130636038836127c1565b915061306e82613007565b604082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006130f56031836127c1565b915061310082613099565b604082019050919050565b60006020820190508181036000830152613124816130e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131616020836127c1565b915061316c8261312b565b602082019050919050565b6000602082019050818103600083015261319081613154565b9050919050565b7f4f776e65722071756f7461206578636565646564000000000000000000000000600082015250565b60006131cd6014836127c1565b91506131d882613197565b602082019050919050565b600060208201905081810360008301526131fc816131c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061323d82612871565b915061324883612871565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561327d5761327c613203565b5b828201905092915050565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b60006132be600f836127c1565b91506132c982613288565b602082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b60006132ff82612871565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333257613331613203565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133996029836127c1565b91506133a48261333d565b604082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061342b602a836127c1565b9150613436826133cf565b604082019050919050565b6000602082019050818103600083015261345a8161341e565b9050919050565b7f4f70656e5365614552433732314d696e7461626c653a206f6e6c79206661637460008201527f6f72790000000000000000000000000000000000000000000000000000000000602082015250565b60006134bd6023836127c1565b91506134c882613461565b604082019050919050565b600060208201905081810360008301526134ec816134b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061354f602f836127c1565b915061355a826134f3565b604082019050919050565b6000602082019050818103600083015261357e81613542565b9050919050565b600081905092915050565b600061359b826127b6565b6135a58185613585565b93506135b58185602086016127d2565b80840191505092915050565b60006135cd8285613590565b91506135d98284613590565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136416026836127c1565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006136d3602c836127c1565b91506136de82613677565b604082019050919050565b60006020820190508181036000830152613702816136c6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006137656029836127c1565b915061377082613709565b604082019050919050565b6000602082019050818103600083015261379481613758565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137f76024836127c1565b91506138028261379b565b604082019050919050565b60006020820190508181036000830152613826816137ea565b9050919050565b600061383882612871565b915061384383612871565b92508282101561385657613855613203565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006138976014836127c1565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139036010836127c1565b915061390e826138cd565b602082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061396f6019836127c1565b915061397a82613939565b602082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613a016032836127c1565b9150613a0c826139a5565b604082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b7f496e76616c6964206f7074696f6e000000000000000000000000000000000000600082015250565b6000613a6d600e836127c1565b9150613a7882613a37565b602082019050919050565b60006020820190508181036000830152613a9c81613a60565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613ad96008836127c1565b9150613ae482613aa3565b602082019050919050565b60006020820190508181036000830152613b0881613acc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4982612871565b9150613b5483612871565b925082613b6457613b63613b0f565b5b828204905092915050565b6000613b7a82612871565b9150613b8583612871565b925082613b9557613b94613b0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613bf682613bcf565b613c008185613bda565b9350613c108185602086016127d2565b613c1981612805565b840191505092915050565b6000608082019050613c396000830187612906565b613c466020830186612906565b613c53604083018561299c565b8181036060830152613c658184613beb565b905095945050505050565b600081519050613c7f81612727565b92915050565b600060208284031215613c9b57613c9a6126f1565b5b6000613ca984828501613c70565b91505092915050565b6000613cbd826128f4565b9050919050565b613ccd81613cb2565b8114613cd857600080fd5b50565b600081519050613cea81613cc4565b92915050565b600060208284031215613d0657613d056126f1565b5b6000613d1484828501613cdb565b91505092915050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b6000613d79602b836127c1565b9150613d8482613d1d565b604082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613de56020836127c1565b9150613df082613daf565b602082019050919050565b60006020820190508181036000830152613e1481613dd8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613e51601c836127c1565b9150613e5c82613e1b565b602082019050919050565b60006020820190508181036000830152613e8081613e44565b905091905056fea2646970667358221220ca466f73c31b32b7601d0653a6b0046b1395291f67a873b3bccf32da7981dc8e64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6d61696e6e65742d2d2d6d657461646174612d786c656d6b76367a77612d75632e612e72756e2e6170700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6d61696e6e65742d2d2d6d657461646174612d786c656d6b76367a77612d75632e612e72756e2e6170700000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxTokens (uint256): 8888
Arg [1] : baseTokenURI (string): https://mainnet---metadata-xlemkv6zwa-uc.a.run.app
Arg [2] : baseOptionURI (string): https://mainnet---metadata-xlemkv6zwa-uc.a.run.app

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 68747470733a2f2f6d61696e6e65742d2d2d6d657461646174612d786c656d6b
Arg [5] : 76367a77612d75632e612e72756e2e6170700000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [7] : 68747470733a2f2f6d61696e6e65742d2d2d6d657461646174612d786c656d6b
Arg [8] : 76367a77612d75632e612e72756e2e6170700000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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