ETH Price: $2,455.92 (+2.54%)

Token

SpaceConvicts (SC)
 

Overview

Max Total Supply

356 SC

Holders

220

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SC
0xaf0429816e6ed303cf5d1080cdd6fbffefb178f1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceConvicts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : SpaceConvicts.sol
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity >=0.8.0 <0.9.0;





// ===========================================================================================








/**
 * @title SpaceConvicts
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract SpaceConvicts is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using Address for address;

    struct Conf {
        bool mintEnabled;
        uint8 perMint;
        uint16 perAccount;
        uint16 perAccountWl;
        uint16 supply;
        uint16 maxNFTs;
        uint64 price;
        bool whitelistEnabled;
        address whitelister;
        uint256 honorary;
        uint256 honoraryIDs;
        uint256 honoraryIDsStart;
    }

    address private controller;
    string private defaultURI;
    string private defaultURIh;
    string private baseURI;
    string private baseURIh;
    string private metaURI;
    uint256 public startingIndex;

    Conf private conf;

    struct ExtensionContract {
      string name;
      address addr;
    }

    mapping (uint => ExtensionContract) private extensionContracts;

    /**
     * @notice Setup ERC721 and initial config
     */
    constructor(
        string memory name,
        string memory symbol,
        string memory _defaultURI,
        string memory _defaultURIh
    ) ERC721(name, symbol) {
        conf = Conf(
          false, // mintEnabled: if minting is enabled
          10, // perMint: max number of NFTs that can be minted per TX
          20, // perAccount: max number of NFTs that can be minted per ETH address
          10, // perAccountWL: max number of NFTs that can be minted per ETH address during WL pre-sale
          200, // supply: reserved NFTs
          9999, // maxNFTs: maximum supply
          60000000000000000, // price: price per NFT in wei
          true, // whitelistEnabled: if whitelist is required for minting
          0xDbCADD59B8387B1279712967fc93e4d5b2aD5B3a, // whitelister: the address that signs the whitelisted transactions
          25, // honorary amount
          100000,  // honorary id counter
          100000  // honorary start id
        );
        defaultURI = _defaultURI;
        defaultURIh = _defaultURIh;
    }

    function getExtensions(uint extensionId) public view returns (string memory, address) {
        return (extensionContracts[extensionId].name, extensionContracts[extensionId].addr);
    }

    function setExtensions(uint extensionId, string memory name, address addr) public onlyOwner {
        extensionContracts[extensionId] = ExtensionContract(name, addr);
    }

    /**
     * @notice Mint reserved SpaceConvicts.
     * @param accounts Array of accounts to receive reserves.
     * @param start Index to start minting at.
     * @dev Utilize unchecked {} and calldata for gas savings.
     */
    function mintReserved(address[] calldata accounts, uint16 start)
        public
        onlyOwner
    {
        address[] memory _accounts = accounts;
        unchecked {
            for (uint8 i = 0; i < _accounts.length; i++) {
                _safeMint(_accounts[i], start + i);
            }
        }
    }

    /**
     * @notice Take eth out of the contract
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * @notice Mint SpaceConvicts.
     * @param amount Number of SpaceConvicts to mint.
     * @dev Utilize unchecked {} and calldata for gas savings.
     */
    function mint(uint256 amount) public payable {
        require(conf.mintEnabled, "Minting is disabled.");
        require(!conf.whitelistEnabled, "Whitelist sale only");
        require(
            conf.supply + amount <= conf.maxNFTs,
            "Amount exceeds maximum supply of Test."
        );
        require(
            balanceOf(msg.sender) + amount <= conf.perAccount,
            "Amount exceeds current maximum mints per account."
        );
        require(
            amount <= conf.perMint,
            "Amount exceeds current maximum SpaceConvicts per mint."
        );
        require(
            conf.price * amount <= msg.value,
            "Ether value sent is not correct."
        );


        uint16 supply = conf.supply;
        unchecked {
            for (uint16 i = 0; i < amount; i++) {
                _safeMint(msg.sender, supply++);
            }
        }
        conf.supply = supply;
    }

    function toString(bytes memory data) public pure returns(string memory) {
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < data.length; i++) {
            str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))];
            str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }

    function mintWhitelist(uint256 amount, bytes32 msgh, uint8 v, bytes32 r, bytes32 s) public payable {
        require(conf.mintEnabled, "Minting is disabled.");
        require(conf.whitelistEnabled, "Whitelist sale has ended.");
        require(
            conf.supply + amount <= conf.maxNFTs,
            "Amount exceeds maximum supply of Test."
        );
        require(
            balanceOf(msg.sender) + amount <= conf.perAccountWl,
            "Amount exceeds current maximum mints per account."
        );
        require(
            amount <= conf.perMint,
            "Amount exceeds current maximum SpaceConvicts per mint."
        );
        require(
            conf.price * amount <= msg.value,
            "Ether value sent is not correct."
        );
        string memory collector = toString(abi.encodePacked(msg.sender));
        require(
            isWhitelisted(collector, msgh, v, r, s),
            "Address is not whitelisted"
        );
        uint16 supply = conf.supply;
        unchecked {
            for (uint16 i = 0; i < amount; i++) {
                _safeMint(msg.sender, supply++);
            }
        }
        conf.supply = supply;
    }


    // Function for minting honorary NFTs to partners
    function mint_h(address _to, uint256 amount) external onlyOwner {
        require( _to !=  address(0), "Zero address error");
        require( amount <= conf.honorary, "Exceeds honorary supply" );

        for(uint256 i; i < amount; i++){
            _safeMint( _to, conf.honoraryIDs++);
            conf.honorary --;
        }
    }


    /**
     * @dev Returns minting state.
     */
    function getMintEnabled() public view returns (bool) {
        return conf.mintEnabled;
    }

    /**
     * @notice Toggles minting state.
     */
    function toggleMintEnabled() public onlyOwner {
        conf.mintEnabled = !conf.mintEnabled;
    }

    /**
     * @notice Toggles minting state. FIXEM: TEST THIS
     */

    function changeMintPrice(uint64 _price) public onlyOwner {
        conf.price = _price;
    }

    /**
     * @dev Returns minting state.
     */
    function getMintPrice() public view returns (uint64) {
        return conf.price;
    }

    /**
     * @notice Returns max SpaceConvicts per mint.
     */
    function getPerMint() public view returns (uint8) {
        return conf.perMint;
    }

    /**
     * @notice Sets max SpaceConvicts per mint.
     */
    function setPerMint(uint8 _perMint) public onlyOwner {
        conf.perMint = _perMint;
    }

    /**
     * @notice Returns max mints per account.
     */
    function getPerAccount() public view returns (uint16) {
        return conf.perAccount;
    }

    /**
     * @notice Sets max mints per account.
     */
    function setPerAccountWl(uint16 _perAccountWl) public onlyOwner {
        conf.perAccountWl = _perAccountWl;
    }

    /**
     * @notice Returns max mints per account.
     */
    function getPerAccountWl() public view returns (uint16) {
        return conf.perAccountWl;
    }

    /**
     * @notice Sets max mints per account.
     */
    function setPerAccount(uint16 _perAccount) public onlyOwner {
        conf.perAccount = _perAccount;
    }

    /**
     * @notice Set base URI.
     */
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    function setBaseURIh(string memory _baseURIh) public onlyOwner {
        baseURIh = _baseURIh;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist.");

        if (bytes(baseURI).length == 0) {
            return string(abi.encodePacked(defaultURI, (tokenId + 1).toString()));
        } else {
            if (tokenId < conf.honoraryIDsStart){
              uint256 revealedId = (tokenId + startingIndex) % conf.maxNFTs + 1;
              return string(abi.encodePacked(baseURI, revealedId.toString()));
            } else {
              if (bytes(baseURIh).length == 0) {
                return string(abi.encodePacked(defaultURIh, tokenId.toString()));
              } else {
                return string(abi.encodePacked(baseURIh, tokenId.toString()));
              }
            }
        }
    }


    /**
     * @dev Returns whitelist state.
     */
    function getWhitelistEnabled() public view returns (bool) {
        return conf.whitelistEnabled;
    }

    /**
     * @notice Toggles whitelist state.
     */
    function toggleWhitelistEnabled() public onlyOwner {
        conf.whitelistEnabled = !conf.whitelistEnabled;
    }


    function isWhitelisted(string memory collector, bytes32 msgh, uint8 v, bytes32 r, bytes32 s) public view returns (bool) {

      if (keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n" , "42", collector)) != msgh){return false;}
      if (ecrecover(msgh, v, r, s) != conf.whitelister){return false;}
      return true;
    }

    function setRandomStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndex = uint(blockhash(block.number-1)) % (conf.maxNFTs - 1);
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }




}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"string","name":"_defaultURIh","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_price","type":"uint64"}],"name":"changeMintPrice","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":"uint256","name":"extensionId","type":"uint256"}],"name":"getExtensions","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPerAccount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPerAccountWl","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPerMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"string","name":"collector","type":"string"},{"internalType":"bytes32","name":"msgh","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint16","name":"start","type":"uint16"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"msgh","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint_h","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIh","type":"string"}],"name":"setBaseURIh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"extensionId","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"addr","type":"address"}],"name":"setExtensions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_perAccount","type":"uint16"}],"name":"setPerAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_perAccountWl","type":"uint16"}],"name":"setPerAccountWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_perMint","type":"uint8"}],"name":"setPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRandomStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bytes","name":"data","type":"bytes"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"toggleMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162006492380380620064928339818101604052810190620000379190620004f6565b8383816000908051906020019062000051929190620003d4565b5080600190805190602001906200006a929190620003d4565b5050506200008d620000816200030660201b60201c565b6200030e60201b60201c565b604051806101800160405280600015158152602001600a60ff168152602001601461ffff168152602001600a61ffff16815260200160c861ffff16815260200161270f61ffff16815260200166d529ae9e86000067ffffffffffffffff16815260200160011515815260200173dbcadd59b8387b1279712967fc93e4d5b2ad5b3a73ffffffffffffffffffffffffffffffffffffffff16815260200160198152602001620186a08152602001620186a0815250601260008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160000160026101000a81548161ffff021916908361ffff16021790555060608201518160000160046101000a81548161ffff021916908361ffff16021790555060808201518160000160066101000a81548161ffff021916908361ffff16021790555060a08201518160000160086101000a81548161ffff021916908361ffff16021790555060c082015181600001600a6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060e08201518160000160126101000a81548160ff0219169083151502179055506101008201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061012082015181600201556101408201518160030155610160820151816004015590505081600c9080519060200190620002e2929190620003d4565b5080600d9080519060200190620002fb929190620003d4565b5050505050620006f7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003e29062000663565b90600052602060002090601f01602090048101928262000406576000855562000452565b82601f106200042157805160ff191683800117855562000452565b8280016001018555821562000452579182015b828111156200045157825182559160200191906001019062000434565b5b50905062000461919062000465565b5090565b5b808211156200048057600081600090555060010162000466565b5090565b60006200049b6200049584620005fa565b620005c6565b905082815260208101848484011115620004b457600080fd5b620004c18482856200062d565b509392505050565b600082601f830112620004db57600080fd5b8151620004ed84826020860162000484565b91505092915050565b600080600080608085870312156200050d57600080fd5b600085015167ffffffffffffffff8111156200052857600080fd5b6200053687828801620004c9565b945050602085015167ffffffffffffffff8111156200055457600080fd5b6200056287828801620004c9565b935050604085015167ffffffffffffffff8111156200058057600080fd5b6200058e87828801620004c9565b925050606085015167ffffffffffffffff811115620005ac57600080fd5b620005ba87828801620004c9565b91505092959194509250565b6000604051905081810181811067ffffffffffffffff82111715620005f057620005ef620006c8565b5b8060405250919050565b600067ffffffffffffffff821115620006185762000617620006c8565b5b601f19601f8301169050602081019050919050565b60005b838110156200064d57808201518184015260208101905062000630565b838111156200065d576000848401525b50505050565b600060028204905060018216806200067c57607f821691505b6020821081141562000693576200069262000699565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615d8b80620007076000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063a22cb465116100b6578063c95e74a01161007a578063c95e74a0146108d6578063cb6f238d14610914578063cb774d471461093d578063e985e9c514610968578063f2fde38b146109a5578063f64ca261146109ce57610267565b8063a22cb465146107f3578063a7f93ebd1461081c578063b29a061c14610847578063b88d4fde14610870578063c87b56dd1461089957610267565b806371aad10d1161010857806371aad10d146106f05780638da5cb5b1461072d57806393461e931461075857806395bc87fa1461078157806395d89b41146107ac578063a0712d68146107d757610267565b80636352211e1461060b5780636f19cc13146106485780636ffd0c971461067157806370a082311461069c578063715018a6146106d957610267565b806338f8f815116101dd57806349bf7358116101a157806349bf73581461050f5780634f6ccce7146105265780635308612f1461056357806355f804b3146105a05780635b492741146105c957806361f5baeb146105f457610267565b806338f8f815146104735780633b7cc8671461048f5780633ccfd60b146104b857806342842e0e146104cf57806346fd1268146104f857610267565b80631a0f29fe1161022f5780631a0f29fe1461036557806323b872dd14610390578063252c70cb146103b95780632aa5db28146103e25780632b00d1a01461040b5780632f745c591461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806318160ddd1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190614370565b6109f7565b6040516102a091906152ea565b60405180910390f35b3480156102b557600080fd5b506102be610a71565b6040516102cb919061534a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906144fc565b610b03565b6040516103089190615283565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906142dc565b610b88565b005b34801561034657600080fd5b5061034f610ca0565b60405161035c9190615757565b60405180910390f35b34801561037157600080fd5b5061037a610cad565b604051610387919061573c565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b291906141d6565b610cc8565b005b3480156103c557600080fd5b506103e060048036038101906103db919061459c565b610d28565b005b3480156103ee57600080fd5b5061040960048036038101906104049190614603565b610e4e565b005b34801561041757600080fd5b50610420610ef9565b60405161042d919061578d565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906142dc565b610f13565b60405161046a9190615757565b60405180910390f35b61048d60048036038101906104889190614525565b610fb8565b005b34801561049b57600080fd5b506104b660048036038101906104b191906144d3565b6112f8565b005b3480156104c457600080fd5b506104cd611397565b005b3480156104db57600080fd5b506104f660048036038101906104f191906141d6565b611462565b005b34801561050457600080fd5b5061050d611482565b005b34801561051b57600080fd5b50610524611530565b005b34801561053257600080fd5b5061054d600480360381019061054891906144fc565b611659565b60405161055a9190615757565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190614444565b6116f0565b60405161059791906152ea565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190614403565b6117e5565b005b3480156105d557600080fd5b506105de61187b565b6040516105eb91906152ea565b60405180910390f35b34801561060057600080fd5b50610609611895565b005b34801561061757600080fd5b50610632600480360381019061062d91906144fc565b611943565b60405161063f9190615283565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190614318565b6119f5565b005b34801561067d57600080fd5b50610686611b30565b60405161069391906152ea565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190614171565b611b4a565b6040516106d09190615757565b60405180910390f35b3480156106e557600080fd5b506106ee611c02565b005b3480156106fc57600080fd5b50610717600480360381019061071291906143c2565b611c8a565b604051610724919061534a565b60405180910390f35b34801561073957600080fd5b506107426120da565b60405161074f9190615283565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a91906142dc565b612104565b005b34801561078d57600080fd5b50610796612299565b6040516107a3919061573c565b60405180910390f35b3480156107b857600080fd5b506107c16122b4565b6040516107ce919061534a565b60405180910390f35b6107f160048036038101906107ec91906144fc565b612346565b005b3480156107ff57600080fd5b5061081a600480360381019061081591906142a0565b61260a565b005b34801561082857600080fd5b5061083161278b565b60405161083e9190615772565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190614403565b6127ac565b005b34801561087c57600080fd5b5061089760048036038101906108929190614225565b612842565b005b3480156108a557600080fd5b506108c060048036038101906108bb91906144fc565b6128a4565b6040516108cd919061534a565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906144fc565b612a3f565b60405161090b92919061536c565b60405180910390f35b34801561092057600080fd5b5061093b6004803603810190610936919061462c565b612b25565b005b34801561094957600080fd5b50610952612bc2565b60405161095f9190615757565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a919061419a565b612bc8565b60405161099c91906152ea565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c79190614171565b612c5c565b005b3480156109da57600080fd5b506109f560048036038101906109f091906144d3565b612d54565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6a5750610a6982612df3565b5b9050919050565b606060008054610a8090615af3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90615af3565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b6000610b0e82612ed5565b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b44906155fc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9382611943565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061565c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c23612f41565b73ffffffffffffffffffffffffffffffffffffffff161480610c525750610c5181610c4c612f41565b612bc8565b5b610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c889061555c565b60405180910390fd5b610c9b8383612f49565b505050565b6000600880549050905090565b6000601260000160049054906101000a900461ffff16905090565b610cd9610cd3612f41565b82613002565b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061567c565b60405180910390fd5b610d238383836130e0565b505050565b610d30612f41565b73ffffffffffffffffffffffffffffffffffffffff16610d4e6120da565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b9061561c565b60405180910390fd5b60405180604001604052808381526020018273ffffffffffffffffffffffffffffffffffffffff16815250601760008581526020019081526020016000206000820151816000019080519060200190610dfe929190613ef7565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050505050565b610e56612f41565b73ffffffffffffffffffffffffffffffffffffffff16610e746120da565b73ffffffffffffffffffffffffffffffffffffffff1614610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061561c565b60405180910390fd5b806012600001600a6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6000601260000160019054906101000a900460ff16905090565b6000610f1e83611b4a565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061541c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601260000160009054906101000a900460ff1661100a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611001906153bc565b60405180910390fd5b601260000160129054906101000a900460ff1661105c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611053906156dc565b60405180910390fd5b601260000160089054906101000a900461ffff1661ffff1685601260000160069054906101000a900461ffff1661ffff166110979190615891565b11156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906156bc565b60405180910390fd5b601260000160049054906101000a900461ffff1661ffff16856110fa33611b4a565b6111049190615891565b1115611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906153dc565b60405180910390fd5b601260000160019054906101000a900460ff1660ff1685111561119d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111949061571c565b60405180910390fd5b34856012600001600a9054906101000a900467ffffffffffffffff1667ffffffffffffffff166111cd9190615918565b111561120e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611205906153fc565b60405180910390fd5b6000611238336040516020016112249190615217565b604051602081830303815290604052611c8a565b905061124781868686866116f0565b611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d906154fc565b60405180910390fd5b6000601260000160069054906101000a900461ffff16905060005b878161ffff1610156112ce576112c1338380600101945061ffff1661333c565b80806001019150506112a1565b5080601260000160066101000a81548161ffff021916908361ffff16021790555050505050505050565b611300612f41565b73ffffffffffffffffffffffffffffffffffffffff1661131e6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b9061561c565b60405180910390fd5b80601260000160046101000a81548161ffff021916908361ffff16021790555050565b61139f612f41565b73ffffffffffffffffffffffffffffffffffffffff166113bd6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a9061561c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561145e573d6000803e3d6000fd5b5050565b61147d83838360405180602001604052806000815250612842565b505050565b61148a612f41565b73ffffffffffffffffffffffffffffffffffffffff166114a86120da565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f59061561c565b60405180910390fd5b601260000160129054906101000a900460ff1615601260000160126101000a81548160ff021916908315150217905550565b611538612f41565b73ffffffffffffffffffffffffffffffffffffffff166115566120da565b73ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a39061561c565b60405180910390fd5b6000601154146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e89061553c565b60405180910390fd5b6001601260000160089054906101000a900461ffff166116119190615972565b61ffff1660014361162291906159a6565b4060001c6116309190615b92565b601181905550600060115414156116575760016011546116509190615891565b6011819055505b565b6000611663610ca0565b82106116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061569c565b60405180910390fd5b600882815481106116de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600084866040516020016117049190615256565b604051602081830303815290604052805190602001201461172857600090506117dc565b601260010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600186868686604051600081526020016040526040516117879493929190615305565b6020604051602081039080840390855afa1580156117a9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16146117d757600090506117dc565b600190505b95945050505050565b6117ed612f41565b73ffffffffffffffffffffffffffffffffffffffff1661180b6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118589061561c565b60405180910390fd5b80600e9080519060200190611877929190613ef7565b5050565b6000601260000160129054906101000a900460ff16905090565b61189d612f41565b73ffffffffffffffffffffffffffffffffffffffff166118bb6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119089061561c565b60405180910390fd5b601260000160009054906101000a900460ff1615601260000160006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e39061559c565b60405180910390fd5b80915050919050565b6119fd612f41565b73ffffffffffffffffffffffffffffffffffffffff16611a1b6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a689061561c565b60405180910390fd5b6000838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050905060005b81518160ff161015611b2957611b1c828260ff1681518110611b05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518260ff16850161ffff1661333c565b8080600101915050611aba565b5050505050565b6000601260000160009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb29061557c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c0a612f41565b73ffffffffffffffffffffffffffffffffffffffff16611c286120da565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c759061561c565b60405180910390fd5b611c88600061335a565b565b606060006040518060400160405280601081526020017f30313233343536373839616263646566000000000000000000000000000000008152509050600060028451611cd69190615918565b6002611ce29190615891565b67ffffffffffffffff811115611d21577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d535781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611db1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b84518110156120cf57826004868381518110611eb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110611f1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b82600283611f379190615918565b6002611f439190615891565b81518110611f7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b868381518110611fe8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff1681518110612031577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361204a9190615918565b60036120569190615891565b8151811061208d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806120c790615b25565b915050611e6d565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61210c612f41565b73ffffffffffffffffffffffffffffffffffffffff1661212a6120da565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121779061561c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e79061549c565b60405180910390fd5b601260020154811115612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f906156fc565b60405180910390fd5b60005b8181101561229457612266836012600301600081548092919061225d90615b25565b9190505561333c565b6012600201600081548092919061227c90615ac9565b9190505550808061228c90615b25565b91505061223b565b505050565b6000601260000160029054906101000a900461ffff16905090565b6060600180546122c390615af3565b80601f01602080910402602001604051908101604052809291908181526020018280546122ef90615af3565b801561233c5780601f106123115761010080835404028352916020019161233c565b820191906000526020600020905b81548152906001019060200180831161231f57829003601f168201915b5050505050905090565b601260000160009054906101000a900460ff16612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f906153bc565b60405180910390fd5b601260000160129054906101000a900460ff16156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e29061539c565b60405180910390fd5b601260000160089054906101000a900461ffff1661ffff1681601260000160069054906101000a900461ffff1661ffff166124269190615891565b1115612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e906156bc565b60405180910390fd5b601260000160029054906101000a900461ffff1661ffff168161248933611b4a565b6124939190615891565b11156124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb906153dc565b60405180910390fd5b601260000160019054906101000a900460ff1660ff1681111561252c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125239061571c565b60405180910390fd5b34816012600001600a9054906101000a900467ffffffffffffffff1667ffffffffffffffff1661255c9190615918565b111561259d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612594906153fc565b60405180910390fd5b6000601260000160069054906101000a900461ffff16905060005b828161ffff1610156125e5576125d8338380600101945061ffff1661333c565b80806001019150506125b8565b5080601260000160066101000a81548161ffff021916908361ffff1602179055505050565b612612612f41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612677906154dc565b60405180910390fd5b806005600061268d612f41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661273a612f41565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161277f91906152ea565b60405180910390a35050565b60006012600001600a9054906101000a900467ffffffffffffffff16905090565b6127b4612f41565b73ffffffffffffffffffffffffffffffffffffffff166127d26120da565b73ffffffffffffffffffffffffffffffffffffffff1614612828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281f9061561c565b60405180910390fd5b80600f908051906020019061283e929190613ef7565b5050565b61285361284d612f41565b83613002565b612892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128899061567c565b60405180910390fd5b61289e84848484613420565b50505050565b60606128af82612ed5565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e5906155dc565b60405180910390fd5b6000600e80546128fd90615af3565b9050141561294357600c61291c6001846129179190615891565b61347c565b60405160200161292d929190615232565b6040516020818303038152906040529050612a3a565b6012600401548210156129c35760006001601260000160089054906101000a900461ffff1661ffff166011548561297a9190615891565b6129849190615b92565b61298e9190615891565b9050600e61299b8261347c565b6040516020016129ac929190615232565b604051602081830303815290604052915050612a3a565b6000600f80546129d290615af3565b90501415612a0c57600d6129e58361347c565b6040516020016129f6929190615232565b6040516020818303038152906040529050612a3a565b600f612a178361347c565b604051602001612a28929190615232565b60405160208183030381529060405290505b919050565b60606000601760008481526020019081526020016000206000016017600085815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16818054612a9c90615af3565b80601f0160208091040260200160405190810160405280929190818152602001828054612ac890615af3565b8015612b155780601f10612aea57610100808354040283529160200191612b15565b820191906000526020600020905b815481529060010190602001808311612af857829003601f168201915b5050505050915091509150915091565b612b2d612f41565b73ffffffffffffffffffffffffffffffffffffffff16612b4b6120da565b73ffffffffffffffffffffffffffffffffffffffff1614612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b989061561c565b60405180910390fd5b80601260000160016101000a81548160ff021916908360ff16021790555050565b60115481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c64612f41565b73ffffffffffffffffffffffffffffffffffffffff16612c826120da565b73ffffffffffffffffffffffffffffffffffffffff1614612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccf9061561c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3f9061545c565b60405180910390fd5b612d518161335a565b50565b612d5c612f41565b73ffffffffffffffffffffffffffffffffffffffff16612d7a6120da565b73ffffffffffffffffffffffffffffffffffffffff1614612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc79061561c565b60405180910390fd5b80601260000160026101000a81548161ffff021916908361ffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ebe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ece5750612ecd82613629565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fbc83611943565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061300d82612ed5565b61304c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130439061551c565b60405180910390fd5b600061305783611943565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130c657508373ffffffffffffffffffffffffffffffffffffffff166130ae84610b03565b73ffffffffffffffffffffffffffffffffffffffff16145b806130d757506130d68185612bc8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661310082611943565b73ffffffffffffffffffffffffffffffffffffffff1614613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d9061563c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bd906154bc565b60405180910390fd5b6131d1838383613693565b6131dc600082612f49565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461322c91906159a6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132839190615891565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6133568282604051806020016040528060008152506137a7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61342b8484846130e0565b61343784848484613802565b613476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346d9061543c565b60405180910390fd5b50505050565b606060008214156134c4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613624565b600082905060005b600082146134f65780806134df90615b25565b915050600a826134ef91906158e7565b91506134cc565b60008167ffffffffffffffff811115613538577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561356a5781602001600182028036833780820191505090505b5090505b6000851461361d5760018261358391906159a6565b9150600a856135929190615b92565b603061359e9190615891565b60f81b8183815181106135da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561361691906158e7565b945061356e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61369e838383613999565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136e1576136dc8161399e565b613720565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461371f5761371e83826139e7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137635761375e81613b54565b6137a2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137a1576137a08282613c97565b5b5b505050565b6137b18383613d16565b6137be6000848484613802565b6137fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f49061543c565b60405180910390fd5b505050565b60006138238473ffffffffffffffffffffffffffffffffffffffff16613ee4565b1561398c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261384c612f41565b8786866040518563ffffffff1660e01b815260040161386e949392919061529e565b602060405180830381600087803b15801561388857600080fd5b505af19250505080156138b957506040513d601f19601f820116820180604052508101906138b69190614399565b60015b61393c573d80600081146138e9576040519150601f19603f3d011682016040523d82523d6000602084013e6138ee565b606091505b50600081511415613934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392b9061543c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613991565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139f484611b4a565b6139fe91906159a6565b9050600060076000848152602001908152602001600020549050818114613ae3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b6891906159a6565b9050600060096000848152602001908152602001600020549050600060088381548110613bbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ca283611b4a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7d906155bc565b60405180910390fd5b613d8f81612ed5565b15613dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc69061547c565b60405180910390fd5b613ddb60008383613693565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e2b9190615891565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613f0390615af3565b90600052602060002090601f016020900481019282613f255760008555613f6c565b82601f10613f3e57805160ff1916838001178555613f6c565b82800160010185558215613f6c579182015b82811115613f6b578251825591602001919060010190613f50565b5b509050613f799190613f7d565b5090565b5b80821115613f96576000816000905550600101613f7e565b5090565b6000613fad613fa8846157d9565b6157a8565b905082815260208101848484011115613fc557600080fd5b613fd0848285615a87565b509392505050565b6000613feb613fe684615809565b6157a8565b90508281526020810184848401111561400357600080fd5b61400e848285615a87565b509392505050565b60008135905061402581615c9d565b92915050565b60008083601f84011261403d57600080fd5b8235905067ffffffffffffffff81111561405657600080fd5b60208301915083602082028301111561406e57600080fd5b9250929050565b60008135905061408481615cb4565b92915050565b60008135905061409981615ccb565b92915050565b6000813590506140ae81615ce2565b92915050565b6000815190506140c381615ce2565b92915050565b600082601f8301126140da57600080fd5b81356140ea848260208601613f9a565b91505092915050565b600082601f83011261410457600080fd5b8135614114848260208601613fd8565b91505092915050565b60008135905061412c81615cf9565b92915050565b60008135905061414181615d10565b92915050565b60008135905061415681615d27565b92915050565b60008135905061416b81615d3e565b92915050565b60006020828403121561418357600080fd5b600061419184828501614016565b91505092915050565b600080604083850312156141ad57600080fd5b60006141bb85828601614016565b92505060206141cc85828601614016565b9150509250929050565b6000806000606084860312156141eb57600080fd5b60006141f986828701614016565b935050602061420a86828701614016565b925050604061421b86828701614132565b9150509250925092565b6000806000806080858703121561423b57600080fd5b600061424987828801614016565b945050602061425a87828801614016565b935050604061426b87828801614132565b925050606085013567ffffffffffffffff81111561428857600080fd5b614294878288016140c9565b91505092959194509250565b600080604083850312156142b357600080fd5b60006142c185828601614016565b92505060206142d285828601614075565b9150509250929050565b600080604083850312156142ef57600080fd5b60006142fd85828601614016565b925050602061430e85828601614132565b9150509250929050565b60008060006040848603121561432d57600080fd5b600084013567ffffffffffffffff81111561434757600080fd5b6143538682870161402b565b935093505060206143668682870161411d565b9150509250925092565b60006020828403121561438257600080fd5b60006143908482850161409f565b91505092915050565b6000602082840312156143ab57600080fd5b60006143b9848285016140b4565b91505092915050565b6000602082840312156143d457600080fd5b600082013567ffffffffffffffff8111156143ee57600080fd5b6143fa848285016140c9565b91505092915050565b60006020828403121561441557600080fd5b600082013567ffffffffffffffff81111561442f57600080fd5b61443b848285016140f3565b91505092915050565b600080600080600060a0868803121561445c57600080fd5b600086013567ffffffffffffffff81111561447657600080fd5b614482888289016140f3565b95505060206144938882890161408a565b94505060406144a48882890161415c565b93505060606144b58882890161408a565b92505060806144c68882890161408a565b9150509295509295909350565b6000602082840312156144e557600080fd5b60006144f38482850161411d565b91505092915050565b60006020828403121561450e57600080fd5b600061451c84828501614132565b91505092915050565b600080600080600060a0868803121561453d57600080fd5b600061454b88828901614132565b955050602061455c8882890161408a565b945050604061456d8882890161415c565b935050606061457e8882890161408a565b925050608061458f8882890161408a565b9150509295509295909350565b6000806000606084860312156145b157600080fd5b60006145bf86828701614132565b935050602084013567ffffffffffffffff8111156145dc57600080fd5b6145e8868287016140f3565b92505060406145f986828701614016565b9150509250925092565b60006020828403121561461557600080fd5b600061462384828501614147565b91505092915050565b60006020828403121561463e57600080fd5b600061464c8482850161415c565b91505092915050565b61465e816159da565b82525050565b614675614670826159da565b615b6e565b82525050565b614684816159ec565b82525050565b614693816159f8565b82525050565b60006146a48261584e565b6146ae8185615864565b93506146be818560208601615a96565b6146c781615c7f565b840191505092915050565b60006146dd82615859565b6146e78185615875565b93506146f7818560208601615a96565b61470081615c7f565b840191505092915050565b600061471682615859565b6147208185615886565b9350614730818560208601615a96565b80840191505092915050565b6000815461474981615af3565b6147538186615886565b9450600182166000811461476e576001811461477f576147b2565b60ff198316865281860193506147b2565b61478885615839565b60005b838110156147aa5781548189015260018201915060208101905061478b565b838801955050505b50505092915050565b60006147c8601383615875565b91507f57686974656c6973742073616c65206f6e6c79000000000000000000000000006000830152602082019050919050565b6000614808601483615875565b91507f4d696e74696e672069732064697361626c65642e0000000000000000000000006000830152602082019050919050565b6000614848603183615875565b91507f416d6f756e7420657863656564732063757272656e74206d6178696d756d206d60008301527f696e747320706572206163636f756e742e0000000000000000000000000000006020830152604082019050919050565b60006148ae602083615875565b91507f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6000830152602082019050919050565b60006148ee602b83615875565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614954603283615875565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006149ba602683615875565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a20601c83615875565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614a60601283615875565b91507f5a65726f2061646472657373206572726f7200000000000000000000000000006000830152602082019050919050565b6000614aa0602483615875565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b06601983615875565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614b46601a83615875565b91507f41646472657373206973206e6f742077686974656c69737465640000000000006000830152602082019050919050565b6000614b86602c83615875565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bec601d83615875565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b6000614c2c603883615875565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614c92602a83615875565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cf8602983615875565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d5e602083615875565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614d9e601583615875565b91507f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006000830152602082019050919050565b6000614dde602c83615875565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614e44602083615875565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614e84601a83615886565b91507f19457468657265756d205369676e6564204d6573736167653a0a0000000000006000830152601a82019050919050565b6000614ec4602983615875565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f2a602183615875565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f90603183615875565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614ff6600283615886565b91507f34320000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000615036602c83615875565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061509c602683615875565b91507f416d6f756e742065786365656473206d6178696d756d20737570706c79206f6660008301527f20546573742e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615102601983615875565b91507f57686974656c6973742073616c652068617320656e6465642e000000000000006000830152602082019050919050565b6000615142601783615875565b91507f4578636565647320686f6e6f7261727920737570706c790000000000000000006000830152602082019050919050565b6000615182603683615875565b91507f416d6f756e7420657863656564732063757272656e74206d6178696d756d205360008301527f70616365436f6e766963747320706572206d696e742e000000000000000000006020830152604082019050919050565b6151e481615a2e565b82525050565b6151f381615a5c565b82525050565b61520281615a66565b82525050565b61521181615a7a565b82525050565b60006152238284614664565b60148201915081905092915050565b600061523e828561473c565b915061524a828461470b565b91508190509392505050565b600061526182614e77565b915061526c82614fe9565b9150615278828461470b565b915081905092915050565b60006020820190506152986000830184614655565b92915050565b60006080820190506152b36000830187614655565b6152c06020830186614655565b6152cd60408301856151ea565b81810360608301526152df8184614699565b905095945050505050565b60006020820190506152ff600083018461467b565b92915050565b600060808201905061531a600083018761468a565b6153276020830186615208565b615334604083018561468a565b615341606083018461468a565b95945050505050565b6000602082019050818103600083015261536481846146d2565b905092915050565b6000604082019050818103600083015261538681856146d2565b90506153956020830184614655565b9392505050565b600060208201905081810360008301526153b5816147bb565b9050919050565b600060208201905081810360008301526153d5816147fb565b9050919050565b600060208201905081810360008301526153f58161483b565b9050919050565b60006020820190508181036000830152615415816148a1565b9050919050565b60006020820190508181036000830152615435816148e1565b9050919050565b6000602082019050818103600083015261545581614947565b9050919050565b60006020820190508181036000830152615475816149ad565b9050919050565b6000602082019050818103600083015261549581614a13565b9050919050565b600060208201905081810360008301526154b581614a53565b9050919050565b600060208201905081810360008301526154d581614a93565b9050919050565b600060208201905081810360008301526154f581614af9565b9050919050565b6000602082019050818103600083015261551581614b39565b9050919050565b6000602082019050818103600083015261553581614b79565b9050919050565b6000602082019050818103600083015261555581614bdf565b9050919050565b6000602082019050818103600083015261557581614c1f565b9050919050565b6000602082019050818103600083015261559581614c85565b9050919050565b600060208201905081810360008301526155b581614ceb565b9050919050565b600060208201905081810360008301526155d581614d51565b9050919050565b600060208201905081810360008301526155f581614d91565b9050919050565b6000602082019050818103600083015261561581614dd1565b9050919050565b6000602082019050818103600083015261563581614e37565b9050919050565b6000602082019050818103600083015261565581614eb7565b9050919050565b6000602082019050818103600083015261567581614f1d565b9050919050565b6000602082019050818103600083015261569581614f83565b9050919050565b600060208201905081810360008301526156b581615029565b9050919050565b600060208201905081810360008301526156d58161508f565b9050919050565b600060208201905081810360008301526156f5816150f5565b9050919050565b6000602082019050818103600083015261571581615135565b9050919050565b6000602082019050818103600083015261573581615175565b9050919050565b600060208201905061575160008301846151db565b92915050565b600060208201905061576c60008301846151ea565b92915050565b600060208201905061578760008301846151f9565b92915050565b60006020820190506157a26000830184615208565b92915050565b6000604051905081810181811067ffffffffffffffff821117156157cf576157ce615c50565b5b8060405250919050565b600067ffffffffffffffff8211156157f4576157f3615c50565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561582457615823615c50565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061589c82615a5c565b91506158a783615a5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156158dc576158db615bc3565b5b828201905092915050565b60006158f282615a5c565b91506158fd83615a5c565b92508261590d5761590c615bf2565b5b828204905092915050565b600061592382615a5c565b915061592e83615a5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561596757615966615bc3565b5b828202905092915050565b600061597d82615a2e565b915061598883615a2e565b92508282101561599b5761599a615bc3565b5b828203905092915050565b60006159b182615a5c565b91506159bc83615a5c565b9250828210156159cf576159ce615bc3565b5b828203905092915050565b60006159e582615a3c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615ab4578082015181840152602081019050615a99565b83811115615ac3576000848401525b50505050565b6000615ad482615a5c565b91506000821415615ae857615ae7615bc3565b5b600182039050919050565b60006002820490506001821680615b0b57607f821691505b60208210811415615b1f57615b1e615c21565b5b50919050565b6000615b3082615a5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b6357615b62615bc3565b5b600182019050919050565b6000615b7982615b80565b9050919050565b6000615b8b82615c90565b9050919050565b6000615b9d82615a5c565b9150615ba883615a5c565b925082615bb857615bb7615bf2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615ca6816159da565b8114615cb157600080fd5b50565b615cbd816159ec565b8114615cc857600080fd5b50565b615cd4816159f8565b8114615cdf57600080fd5b50565b615ceb81615a02565b8114615cf657600080fd5b50565b615d0281615a2e565b8114615d0d57600080fd5b50565b615d1981615a5c565b8114615d2457600080fd5b50565b615d3081615a66565b8114615d3b57600080fd5b50565b615d4781615a7a565b8114615d5257600080fd5b5056fea264697066735822122003a050c593318b78c87334b846de8f9d82969e3dcea0a6a58208430c6ecaf77e64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000d5370616365436f6e76696374730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025343000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7370616365636f6e766963732e636f6d2f6170692f000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7370616365636f6e766963732e636f6d2f6170692f000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063a22cb465116100b6578063c95e74a01161007a578063c95e74a0146108d6578063cb6f238d14610914578063cb774d471461093d578063e985e9c514610968578063f2fde38b146109a5578063f64ca261146109ce57610267565b8063a22cb465146107f3578063a7f93ebd1461081c578063b29a061c14610847578063b88d4fde14610870578063c87b56dd1461089957610267565b806371aad10d1161010857806371aad10d146106f05780638da5cb5b1461072d57806393461e931461075857806395bc87fa1461078157806395d89b41146107ac578063a0712d68146107d757610267565b80636352211e1461060b5780636f19cc13146106485780636ffd0c971461067157806370a082311461069c578063715018a6146106d957610267565b806338f8f815116101dd57806349bf7358116101a157806349bf73581461050f5780634f6ccce7146105265780635308612f1461056357806355f804b3146105a05780635b492741146105c957806361f5baeb146105f457610267565b806338f8f815146104735780633b7cc8671461048f5780633ccfd60b146104b857806342842e0e146104cf57806346fd1268146104f857610267565b80631a0f29fe1161022f5780631a0f29fe1461036557806323b872dd14610390578063252c70cb146103b95780632aa5db28146103e25780632b00d1a01461040b5780632f745c591461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806318160ddd1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190614370565b6109f7565b6040516102a091906152ea565b60405180910390f35b3480156102b557600080fd5b506102be610a71565b6040516102cb919061534a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906144fc565b610b03565b6040516103089190615283565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906142dc565b610b88565b005b34801561034657600080fd5b5061034f610ca0565b60405161035c9190615757565b60405180910390f35b34801561037157600080fd5b5061037a610cad565b604051610387919061573c565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b291906141d6565b610cc8565b005b3480156103c557600080fd5b506103e060048036038101906103db919061459c565b610d28565b005b3480156103ee57600080fd5b5061040960048036038101906104049190614603565b610e4e565b005b34801561041757600080fd5b50610420610ef9565b60405161042d919061578d565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906142dc565b610f13565b60405161046a9190615757565b60405180910390f35b61048d60048036038101906104889190614525565b610fb8565b005b34801561049b57600080fd5b506104b660048036038101906104b191906144d3565b6112f8565b005b3480156104c457600080fd5b506104cd611397565b005b3480156104db57600080fd5b506104f660048036038101906104f191906141d6565b611462565b005b34801561050457600080fd5b5061050d611482565b005b34801561051b57600080fd5b50610524611530565b005b34801561053257600080fd5b5061054d600480360381019061054891906144fc565b611659565b60405161055a9190615757565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190614444565b6116f0565b60405161059791906152ea565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190614403565b6117e5565b005b3480156105d557600080fd5b506105de61187b565b6040516105eb91906152ea565b60405180910390f35b34801561060057600080fd5b50610609611895565b005b34801561061757600080fd5b50610632600480360381019061062d91906144fc565b611943565b60405161063f9190615283565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190614318565b6119f5565b005b34801561067d57600080fd5b50610686611b30565b60405161069391906152ea565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190614171565b611b4a565b6040516106d09190615757565b60405180910390f35b3480156106e557600080fd5b506106ee611c02565b005b3480156106fc57600080fd5b50610717600480360381019061071291906143c2565b611c8a565b604051610724919061534a565b60405180910390f35b34801561073957600080fd5b506107426120da565b60405161074f9190615283565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a91906142dc565b612104565b005b34801561078d57600080fd5b50610796612299565b6040516107a3919061573c565b60405180910390f35b3480156107b857600080fd5b506107c16122b4565b6040516107ce919061534a565b60405180910390f35b6107f160048036038101906107ec91906144fc565b612346565b005b3480156107ff57600080fd5b5061081a600480360381019061081591906142a0565b61260a565b005b34801561082857600080fd5b5061083161278b565b60405161083e9190615772565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190614403565b6127ac565b005b34801561087c57600080fd5b5061089760048036038101906108929190614225565b612842565b005b3480156108a557600080fd5b506108c060048036038101906108bb91906144fc565b6128a4565b6040516108cd919061534a565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906144fc565b612a3f565b60405161090b92919061536c565b60405180910390f35b34801561092057600080fd5b5061093b6004803603810190610936919061462c565b612b25565b005b34801561094957600080fd5b50610952612bc2565b60405161095f9190615757565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a919061419a565b612bc8565b60405161099c91906152ea565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c79190614171565b612c5c565b005b3480156109da57600080fd5b506109f560048036038101906109f091906144d3565b612d54565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6a5750610a6982612df3565b5b9050919050565b606060008054610a8090615af3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90615af3565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b6000610b0e82612ed5565b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b44906155fc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9382611943565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061565c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c23612f41565b73ffffffffffffffffffffffffffffffffffffffff161480610c525750610c5181610c4c612f41565b612bc8565b5b610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c889061555c565b60405180910390fd5b610c9b8383612f49565b505050565b6000600880549050905090565b6000601260000160049054906101000a900461ffff16905090565b610cd9610cd3612f41565b82613002565b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061567c565b60405180910390fd5b610d238383836130e0565b505050565b610d30612f41565b73ffffffffffffffffffffffffffffffffffffffff16610d4e6120da565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b9061561c565b60405180910390fd5b60405180604001604052808381526020018273ffffffffffffffffffffffffffffffffffffffff16815250601760008581526020019081526020016000206000820151816000019080519060200190610dfe929190613ef7565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050505050565b610e56612f41565b73ffffffffffffffffffffffffffffffffffffffff16610e746120da565b73ffffffffffffffffffffffffffffffffffffffff1614610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061561c565b60405180910390fd5b806012600001600a6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6000601260000160019054906101000a900460ff16905090565b6000610f1e83611b4a565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061541c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601260000160009054906101000a900460ff1661100a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611001906153bc565b60405180910390fd5b601260000160129054906101000a900460ff1661105c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611053906156dc565b60405180910390fd5b601260000160089054906101000a900461ffff1661ffff1685601260000160069054906101000a900461ffff1661ffff166110979190615891565b11156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906156bc565b60405180910390fd5b601260000160049054906101000a900461ffff1661ffff16856110fa33611b4a565b6111049190615891565b1115611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906153dc565b60405180910390fd5b601260000160019054906101000a900460ff1660ff1685111561119d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111949061571c565b60405180910390fd5b34856012600001600a9054906101000a900467ffffffffffffffff1667ffffffffffffffff166111cd9190615918565b111561120e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611205906153fc565b60405180910390fd5b6000611238336040516020016112249190615217565b604051602081830303815290604052611c8a565b905061124781868686866116f0565b611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d906154fc565b60405180910390fd5b6000601260000160069054906101000a900461ffff16905060005b878161ffff1610156112ce576112c1338380600101945061ffff1661333c565b80806001019150506112a1565b5080601260000160066101000a81548161ffff021916908361ffff16021790555050505050505050565b611300612f41565b73ffffffffffffffffffffffffffffffffffffffff1661131e6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b9061561c565b60405180910390fd5b80601260000160046101000a81548161ffff021916908361ffff16021790555050565b61139f612f41565b73ffffffffffffffffffffffffffffffffffffffff166113bd6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a9061561c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561145e573d6000803e3d6000fd5b5050565b61147d83838360405180602001604052806000815250612842565b505050565b61148a612f41565b73ffffffffffffffffffffffffffffffffffffffff166114a86120da565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f59061561c565b60405180910390fd5b601260000160129054906101000a900460ff1615601260000160126101000a81548160ff021916908315150217905550565b611538612f41565b73ffffffffffffffffffffffffffffffffffffffff166115566120da565b73ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a39061561c565b60405180910390fd5b6000601154146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e89061553c565b60405180910390fd5b6001601260000160089054906101000a900461ffff166116119190615972565b61ffff1660014361162291906159a6565b4060001c6116309190615b92565b601181905550600060115414156116575760016011546116509190615891565b6011819055505b565b6000611663610ca0565b82106116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061569c565b60405180910390fd5b600882815481106116de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600084866040516020016117049190615256565b604051602081830303815290604052805190602001201461172857600090506117dc565b601260010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600186868686604051600081526020016040526040516117879493929190615305565b6020604051602081039080840390855afa1580156117a9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16146117d757600090506117dc565b600190505b95945050505050565b6117ed612f41565b73ffffffffffffffffffffffffffffffffffffffff1661180b6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118589061561c565b60405180910390fd5b80600e9080519060200190611877929190613ef7565b5050565b6000601260000160129054906101000a900460ff16905090565b61189d612f41565b73ffffffffffffffffffffffffffffffffffffffff166118bb6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119089061561c565b60405180910390fd5b601260000160009054906101000a900460ff1615601260000160006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e39061559c565b60405180910390fd5b80915050919050565b6119fd612f41565b73ffffffffffffffffffffffffffffffffffffffff16611a1b6120da565b73ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a689061561c565b60405180910390fd5b6000838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050905060005b81518160ff161015611b2957611b1c828260ff1681518110611b05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518260ff16850161ffff1661333c565b8080600101915050611aba565b5050505050565b6000601260000160009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb29061557c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c0a612f41565b73ffffffffffffffffffffffffffffffffffffffff16611c286120da565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c759061561c565b60405180910390fd5b611c88600061335a565b565b606060006040518060400160405280601081526020017f30313233343536373839616263646566000000000000000000000000000000008152509050600060028451611cd69190615918565b6002611ce29190615891565b67ffffffffffffffff811115611d21577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d535781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611db1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b84518110156120cf57826004868381518110611eb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110611f1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b82600283611f379190615918565b6002611f439190615891565b81518110611f7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b868381518110611fe8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff1681518110612031577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361204a9190615918565b60036120569190615891565b8151811061208d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806120c790615b25565b915050611e6d565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61210c612f41565b73ffffffffffffffffffffffffffffffffffffffff1661212a6120da565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121779061561c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e79061549c565b60405180910390fd5b601260020154811115612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f906156fc565b60405180910390fd5b60005b8181101561229457612266836012600301600081548092919061225d90615b25565b9190505561333c565b6012600201600081548092919061227c90615ac9565b9190505550808061228c90615b25565b91505061223b565b505050565b6000601260000160029054906101000a900461ffff16905090565b6060600180546122c390615af3565b80601f01602080910402602001604051908101604052809291908181526020018280546122ef90615af3565b801561233c5780601f106123115761010080835404028352916020019161233c565b820191906000526020600020905b81548152906001019060200180831161231f57829003601f168201915b5050505050905090565b601260000160009054906101000a900460ff16612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f906153bc565b60405180910390fd5b601260000160129054906101000a900460ff16156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e29061539c565b60405180910390fd5b601260000160089054906101000a900461ffff1661ffff1681601260000160069054906101000a900461ffff1661ffff166124269190615891565b1115612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e906156bc565b60405180910390fd5b601260000160029054906101000a900461ffff1661ffff168161248933611b4a565b6124939190615891565b11156124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb906153dc565b60405180910390fd5b601260000160019054906101000a900460ff1660ff1681111561252c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125239061571c565b60405180910390fd5b34816012600001600a9054906101000a900467ffffffffffffffff1667ffffffffffffffff1661255c9190615918565b111561259d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612594906153fc565b60405180910390fd5b6000601260000160069054906101000a900461ffff16905060005b828161ffff1610156125e5576125d8338380600101945061ffff1661333c565b80806001019150506125b8565b5080601260000160066101000a81548161ffff021916908361ffff1602179055505050565b612612612f41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612677906154dc565b60405180910390fd5b806005600061268d612f41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661273a612f41565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161277f91906152ea565b60405180910390a35050565b60006012600001600a9054906101000a900467ffffffffffffffff16905090565b6127b4612f41565b73ffffffffffffffffffffffffffffffffffffffff166127d26120da565b73ffffffffffffffffffffffffffffffffffffffff1614612828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281f9061561c565b60405180910390fd5b80600f908051906020019061283e929190613ef7565b5050565b61285361284d612f41565b83613002565b612892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128899061567c565b60405180910390fd5b61289e84848484613420565b50505050565b60606128af82612ed5565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e5906155dc565b60405180910390fd5b6000600e80546128fd90615af3565b9050141561294357600c61291c6001846129179190615891565b61347c565b60405160200161292d929190615232565b6040516020818303038152906040529050612a3a565b6012600401548210156129c35760006001601260000160089054906101000a900461ffff1661ffff166011548561297a9190615891565b6129849190615b92565b61298e9190615891565b9050600e61299b8261347c565b6040516020016129ac929190615232565b604051602081830303815290604052915050612a3a565b6000600f80546129d290615af3565b90501415612a0c57600d6129e58361347c565b6040516020016129f6929190615232565b6040516020818303038152906040529050612a3a565b600f612a178361347c565b604051602001612a28929190615232565b60405160208183030381529060405290505b919050565b60606000601760008481526020019081526020016000206000016017600085815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16818054612a9c90615af3565b80601f0160208091040260200160405190810160405280929190818152602001828054612ac890615af3565b8015612b155780601f10612aea57610100808354040283529160200191612b15565b820191906000526020600020905b815481529060010190602001808311612af857829003601f168201915b5050505050915091509150915091565b612b2d612f41565b73ffffffffffffffffffffffffffffffffffffffff16612b4b6120da565b73ffffffffffffffffffffffffffffffffffffffff1614612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b989061561c565b60405180910390fd5b80601260000160016101000a81548160ff021916908360ff16021790555050565b60115481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c64612f41565b73ffffffffffffffffffffffffffffffffffffffff16612c826120da565b73ffffffffffffffffffffffffffffffffffffffff1614612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccf9061561c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3f9061545c565b60405180910390fd5b612d518161335a565b50565b612d5c612f41565b73ffffffffffffffffffffffffffffffffffffffff16612d7a6120da565b73ffffffffffffffffffffffffffffffffffffffff1614612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc79061561c565b60405180910390fd5b80601260000160026101000a81548161ffff021916908361ffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ebe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ece5750612ecd82613629565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fbc83611943565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061300d82612ed5565b61304c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130439061551c565b60405180910390fd5b600061305783611943565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130c657508373ffffffffffffffffffffffffffffffffffffffff166130ae84610b03565b73ffffffffffffffffffffffffffffffffffffffff16145b806130d757506130d68185612bc8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661310082611943565b73ffffffffffffffffffffffffffffffffffffffff1614613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d9061563c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bd906154bc565b60405180910390fd5b6131d1838383613693565b6131dc600082612f49565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461322c91906159a6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132839190615891565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6133568282604051806020016040528060008152506137a7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61342b8484846130e0565b61343784848484613802565b613476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346d9061543c565b60405180910390fd5b50505050565b606060008214156134c4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613624565b600082905060005b600082146134f65780806134df90615b25565b915050600a826134ef91906158e7565b91506134cc565b60008167ffffffffffffffff811115613538577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561356a5781602001600182028036833780820191505090505b5090505b6000851461361d5760018261358391906159a6565b9150600a856135929190615b92565b603061359e9190615891565b60f81b8183815181106135da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561361691906158e7565b945061356e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61369e838383613999565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136e1576136dc8161399e565b613720565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461371f5761371e83826139e7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137635761375e81613b54565b6137a2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137a1576137a08282613c97565b5b5b505050565b6137b18383613d16565b6137be6000848484613802565b6137fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f49061543c565b60405180910390fd5b505050565b60006138238473ffffffffffffffffffffffffffffffffffffffff16613ee4565b1561398c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261384c612f41565b8786866040518563ffffffff1660e01b815260040161386e949392919061529e565b602060405180830381600087803b15801561388857600080fd5b505af19250505080156138b957506040513d601f19601f820116820180604052508101906138b69190614399565b60015b61393c573d80600081146138e9576040519150601f19603f3d011682016040523d82523d6000602084013e6138ee565b606091505b50600081511415613934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392b9061543c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613991565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139f484611b4a565b6139fe91906159a6565b9050600060076000848152602001908152602001600020549050818114613ae3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b6891906159a6565b9050600060096000848152602001908152602001600020549050600060088381548110613bbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ca283611b4a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7d906155bc565b60405180910390fd5b613d8f81612ed5565b15613dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc69061547c565b60405180910390fd5b613ddb60008383613693565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e2b9190615891565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613f0390615af3565b90600052602060002090601f016020900481019282613f255760008555613f6c565b82601f10613f3e57805160ff1916838001178555613f6c565b82800160010185558215613f6c579182015b82811115613f6b578251825591602001919060010190613f50565b5b509050613f799190613f7d565b5090565b5b80821115613f96576000816000905550600101613f7e565b5090565b6000613fad613fa8846157d9565b6157a8565b905082815260208101848484011115613fc557600080fd5b613fd0848285615a87565b509392505050565b6000613feb613fe684615809565b6157a8565b90508281526020810184848401111561400357600080fd5b61400e848285615a87565b509392505050565b60008135905061402581615c9d565b92915050565b60008083601f84011261403d57600080fd5b8235905067ffffffffffffffff81111561405657600080fd5b60208301915083602082028301111561406e57600080fd5b9250929050565b60008135905061408481615cb4565b92915050565b60008135905061409981615ccb565b92915050565b6000813590506140ae81615ce2565b92915050565b6000815190506140c381615ce2565b92915050565b600082601f8301126140da57600080fd5b81356140ea848260208601613f9a565b91505092915050565b600082601f83011261410457600080fd5b8135614114848260208601613fd8565b91505092915050565b60008135905061412c81615cf9565b92915050565b60008135905061414181615d10565b92915050565b60008135905061415681615d27565b92915050565b60008135905061416b81615d3e565b92915050565b60006020828403121561418357600080fd5b600061419184828501614016565b91505092915050565b600080604083850312156141ad57600080fd5b60006141bb85828601614016565b92505060206141cc85828601614016565b9150509250929050565b6000806000606084860312156141eb57600080fd5b60006141f986828701614016565b935050602061420a86828701614016565b925050604061421b86828701614132565b9150509250925092565b6000806000806080858703121561423b57600080fd5b600061424987828801614016565b945050602061425a87828801614016565b935050604061426b87828801614132565b925050606085013567ffffffffffffffff81111561428857600080fd5b614294878288016140c9565b91505092959194509250565b600080604083850312156142b357600080fd5b60006142c185828601614016565b92505060206142d285828601614075565b9150509250929050565b600080604083850312156142ef57600080fd5b60006142fd85828601614016565b925050602061430e85828601614132565b9150509250929050565b60008060006040848603121561432d57600080fd5b600084013567ffffffffffffffff81111561434757600080fd5b6143538682870161402b565b935093505060206143668682870161411d565b9150509250925092565b60006020828403121561438257600080fd5b60006143908482850161409f565b91505092915050565b6000602082840312156143ab57600080fd5b60006143b9848285016140b4565b91505092915050565b6000602082840312156143d457600080fd5b600082013567ffffffffffffffff8111156143ee57600080fd5b6143fa848285016140c9565b91505092915050565b60006020828403121561441557600080fd5b600082013567ffffffffffffffff81111561442f57600080fd5b61443b848285016140f3565b91505092915050565b600080600080600060a0868803121561445c57600080fd5b600086013567ffffffffffffffff81111561447657600080fd5b614482888289016140f3565b95505060206144938882890161408a565b94505060406144a48882890161415c565b93505060606144b58882890161408a565b92505060806144c68882890161408a565b9150509295509295909350565b6000602082840312156144e557600080fd5b60006144f38482850161411d565b91505092915050565b60006020828403121561450e57600080fd5b600061451c84828501614132565b91505092915050565b600080600080600060a0868803121561453d57600080fd5b600061454b88828901614132565b955050602061455c8882890161408a565b945050604061456d8882890161415c565b935050606061457e8882890161408a565b925050608061458f8882890161408a565b9150509295509295909350565b6000806000606084860312156145b157600080fd5b60006145bf86828701614132565b935050602084013567ffffffffffffffff8111156145dc57600080fd5b6145e8868287016140f3565b92505060406145f986828701614016565b9150509250925092565b60006020828403121561461557600080fd5b600061462384828501614147565b91505092915050565b60006020828403121561463e57600080fd5b600061464c8482850161415c565b91505092915050565b61465e816159da565b82525050565b614675614670826159da565b615b6e565b82525050565b614684816159ec565b82525050565b614693816159f8565b82525050565b60006146a48261584e565b6146ae8185615864565b93506146be818560208601615a96565b6146c781615c7f565b840191505092915050565b60006146dd82615859565b6146e78185615875565b93506146f7818560208601615a96565b61470081615c7f565b840191505092915050565b600061471682615859565b6147208185615886565b9350614730818560208601615a96565b80840191505092915050565b6000815461474981615af3565b6147538186615886565b9450600182166000811461476e576001811461477f576147b2565b60ff198316865281860193506147b2565b61478885615839565b60005b838110156147aa5781548189015260018201915060208101905061478b565b838801955050505b50505092915050565b60006147c8601383615875565b91507f57686974656c6973742073616c65206f6e6c79000000000000000000000000006000830152602082019050919050565b6000614808601483615875565b91507f4d696e74696e672069732064697361626c65642e0000000000000000000000006000830152602082019050919050565b6000614848603183615875565b91507f416d6f756e7420657863656564732063757272656e74206d6178696d756d206d60008301527f696e747320706572206163636f756e742e0000000000000000000000000000006020830152604082019050919050565b60006148ae602083615875565b91507f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6000830152602082019050919050565b60006148ee602b83615875565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614954603283615875565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006149ba602683615875565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a20601c83615875565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614a60601283615875565b91507f5a65726f2061646472657373206572726f7200000000000000000000000000006000830152602082019050919050565b6000614aa0602483615875565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b06601983615875565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614b46601a83615875565b91507f41646472657373206973206e6f742077686974656c69737465640000000000006000830152602082019050919050565b6000614b86602c83615875565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bec601d83615875565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b6000614c2c603883615875565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614c92602a83615875565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cf8602983615875565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d5e602083615875565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614d9e601583615875565b91507f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006000830152602082019050919050565b6000614dde602c83615875565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614e44602083615875565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614e84601a83615886565b91507f19457468657265756d205369676e6564204d6573736167653a0a0000000000006000830152601a82019050919050565b6000614ec4602983615875565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f2a602183615875565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f90603183615875565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614ff6600283615886565b91507f34320000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000615036602c83615875565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061509c602683615875565b91507f416d6f756e742065786365656473206d6178696d756d20737570706c79206f6660008301527f20546573742e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615102601983615875565b91507f57686974656c6973742073616c652068617320656e6465642e000000000000006000830152602082019050919050565b6000615142601783615875565b91507f4578636565647320686f6e6f7261727920737570706c790000000000000000006000830152602082019050919050565b6000615182603683615875565b91507f416d6f756e7420657863656564732063757272656e74206d6178696d756d205360008301527f70616365436f6e766963747320706572206d696e742e000000000000000000006020830152604082019050919050565b6151e481615a2e565b82525050565b6151f381615a5c565b82525050565b61520281615a66565b82525050565b61521181615a7a565b82525050565b60006152238284614664565b60148201915081905092915050565b600061523e828561473c565b915061524a828461470b565b91508190509392505050565b600061526182614e77565b915061526c82614fe9565b9150615278828461470b565b915081905092915050565b60006020820190506152986000830184614655565b92915050565b60006080820190506152b36000830187614655565b6152c06020830186614655565b6152cd60408301856151ea565b81810360608301526152df8184614699565b905095945050505050565b60006020820190506152ff600083018461467b565b92915050565b600060808201905061531a600083018761468a565b6153276020830186615208565b615334604083018561468a565b615341606083018461468a565b95945050505050565b6000602082019050818103600083015261536481846146d2565b905092915050565b6000604082019050818103600083015261538681856146d2565b90506153956020830184614655565b9392505050565b600060208201905081810360008301526153b5816147bb565b9050919050565b600060208201905081810360008301526153d5816147fb565b9050919050565b600060208201905081810360008301526153f58161483b565b9050919050565b60006020820190508181036000830152615415816148a1565b9050919050565b60006020820190508181036000830152615435816148e1565b9050919050565b6000602082019050818103600083015261545581614947565b9050919050565b60006020820190508181036000830152615475816149ad565b9050919050565b6000602082019050818103600083015261549581614a13565b9050919050565b600060208201905081810360008301526154b581614a53565b9050919050565b600060208201905081810360008301526154d581614a93565b9050919050565b600060208201905081810360008301526154f581614af9565b9050919050565b6000602082019050818103600083015261551581614b39565b9050919050565b6000602082019050818103600083015261553581614b79565b9050919050565b6000602082019050818103600083015261555581614bdf565b9050919050565b6000602082019050818103600083015261557581614c1f565b9050919050565b6000602082019050818103600083015261559581614c85565b9050919050565b600060208201905081810360008301526155b581614ceb565b9050919050565b600060208201905081810360008301526155d581614d51565b9050919050565b600060208201905081810360008301526155f581614d91565b9050919050565b6000602082019050818103600083015261561581614dd1565b9050919050565b6000602082019050818103600083015261563581614e37565b9050919050565b6000602082019050818103600083015261565581614eb7565b9050919050565b6000602082019050818103600083015261567581614f1d565b9050919050565b6000602082019050818103600083015261569581614f83565b9050919050565b600060208201905081810360008301526156b581615029565b9050919050565b600060208201905081810360008301526156d58161508f565b9050919050565b600060208201905081810360008301526156f5816150f5565b9050919050565b6000602082019050818103600083015261571581615135565b9050919050565b6000602082019050818103600083015261573581615175565b9050919050565b600060208201905061575160008301846151db565b92915050565b600060208201905061576c60008301846151ea565b92915050565b600060208201905061578760008301846151f9565b92915050565b60006020820190506157a26000830184615208565b92915050565b6000604051905081810181811067ffffffffffffffff821117156157cf576157ce615c50565b5b8060405250919050565b600067ffffffffffffffff8211156157f4576157f3615c50565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561582457615823615c50565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061589c82615a5c565b91506158a783615a5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156158dc576158db615bc3565b5b828201905092915050565b60006158f282615a5c565b91506158fd83615a5c565b92508261590d5761590c615bf2565b5b828204905092915050565b600061592382615a5c565b915061592e83615a5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561596757615966615bc3565b5b828202905092915050565b600061597d82615a2e565b915061598883615a2e565b92508282101561599b5761599a615bc3565b5b828203905092915050565b60006159b182615a5c565b91506159bc83615a5c565b9250828210156159cf576159ce615bc3565b5b828203905092915050565b60006159e582615a3c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615ab4578082015181840152602081019050615a99565b83811115615ac3576000848401525b50505050565b6000615ad482615a5c565b91506000821415615ae857615ae7615bc3565b5b600182039050919050565b60006002820490506001821680615b0b57607f821691505b60208210811415615b1f57615b1e615c21565b5b50919050565b6000615b3082615a5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b6357615b62615bc3565b5b600182019050919050565b6000615b7982615b80565b9050919050565b6000615b8b82615c90565b9050919050565b6000615b9d82615a5c565b9150615ba883615a5c565b925082615bb857615bb7615bf2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615ca6816159da565b8114615cb157600080fd5b50565b615cbd816159ec565b8114615cc857600080fd5b50565b615cd4816159f8565b8114615cdf57600080fd5b50565b615ceb81615a02565b8114615cf657600080fd5b50565b615d0281615a2e565b8114615d0d57600080fd5b50565b615d1981615a5c565b8114615d2457600080fd5b50565b615d3081615a66565b8114615d3b57600080fd5b50565b615d4781615a7a565b8114615d5257600080fd5b5056fea264697066735822122003a050c593318b78c87334b846de8f9d82969e3dcea0a6a58208430c6ecaf77e64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000d5370616365436f6e76696374730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025343000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7370616365636f6e766963732e636f6d2f6170692f000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7370616365636f6e766963732e636f6d2f6170692f000000

-----Decoded View---------------
Arg [0] : name (string): SpaceConvicts
Arg [1] : symbol (string): SC
Arg [2] : _defaultURI (string): https://spaceconvics.com/api/
Arg [3] : _defaultURIh (string): https://spaceconvics.com/api/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 5370616365436f6e766963747300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5343000000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [9] : 68747470733a2f2f7370616365636f6e766963732e636f6d2f6170692f000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [11] : 68747470733a2f2f7370616365636f6e766963732e636f6d2f6170692f000000


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.