ETH Price: $2,941.71 (-4.10%)
Gas: 1 Gwei

Token

Genesis 8sian Halloween (G8H)
 

Overview

Max Total Supply

50 G8H

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
11x11.eth
Balance
1 G8H
0x9b7feb7510c2162be71991798319fc89eea7a1cb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

50 only GENESIS 8SIAN HALLOWEEN collection by MrHike (artist who has created 3D digital assets for DC Comics & Warner Bros). Check out [8SIAN Discord](https://discord.gg/8sian) and [8SIAN Website](https://8siannft.com) [8SIAN VIP GOLD PASS](https://opensea.io/collection/8si...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Genesis8sianHalloween

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-31
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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(to).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.4;

/*

 ██████  ███████ ███    ██ ███████ ███████ ██ ███████      █████  ███████ ██  █████  ███    ██     ██   ██  █████  ██      ██       ██████  ██     ██ ███████ ███████ ███    ██ 
██       ██      ████   ██ ██      ██      ██ ██          ██   ██ ██      ██ ██   ██ ████   ██     ██   ██ ██   ██ ██      ██      ██    ██ ██     ██ ██      ██      ████   ██ 
██   ███ █████   ██ ██  ██ █████   ███████ ██ ███████      █████  ███████ ██ ███████ ██ ██  ██     ███████ ███████ ██      ██      ██    ██ ██  █  ██ █████   █████   ██ ██  ██ 
██    ██ ██      ██  ██ ██ ██           ██ ██      ██     ██   ██      ██ ██ ██   ██ ██  ██ ██     ██   ██ ██   ██ ██      ██      ██    ██ ██ ███ ██ ██      ██      ██  ██ ██ 
 ██████  ███████ ██   ████ ███████ ███████ ██ ███████      █████  ███████ ██ ██   ██ ██   ████     ██   ██ ██   ██ ███████ ███████  ██████   ███ ███  ███████ ███████ ██   ████ 
                                                                                                                                                                                
                                                By Devko.dev#7286 
*/

contract Genesis8sianHalloween is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant G8H_MAX = 50;
    uint256 public constant G8H_PRICE = 0.088 ether;
    string private _tokenBaseURI = "https://halloweenapi.8siannft.com/api/token/";
    bool public saleLive;
    bool public locked;
    
    constructor() ERC721("Genesis 8sian Halloween", "G8H") {}
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    
    function buy() external payable {
        require(saleLive, "SALE_CLOSED");
        require(totalSupply() + 1 <= G8H_MAX, "OUT_OF_STOCK");
        require(G8H_PRICE <= msg.value, "INSUFFICIENT_ETH");
        
        _safeMint(msg.sender, totalSupply() + 1);
    }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    
    function lockMetadata() external onlyOwner {
        locked = true;
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"G8H_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"G8H_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"toggleSaleStatus","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"}]

60806040526040518060600160405280602c815260200162003fa6602c9139600b908051906020019062000035929190620001d8565b503480156200004357600080fd5b506040518060400160405280601781526020017f47656e6573697320387369616e2048616c6c6f7765656e0000000000000000008152506040518060400160405280600381526020017f47384800000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c8929190620001d8565b508060019080519060200190620000e1929190620001d8565b50505062000104620000f86200010a60201b60201c565b6200011260201b60201c565b620002ed565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e69062000288565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b60006002820490506001821680620002a157607f821691505b60208210811415620002b857620002b7620002be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ca980620002fd6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063dbadfc4311610064578063dbadfc43146105c5578063e081b781146105f0578063e985e9c51461061b578063f2fde38b14610658576101b7565b8063b88d4fde14610534578063c87b56dd1461055d578063cf3090121461059a576101b7565b806395d89b41116100c657806395d89b41146104bf578063989bdbb6146104ea578063a22cb46514610501578063a6f2ae3a1461052a576101b7565b806370a0823114610440578063715018a61461047d5780638da5cb5b14610494576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103745780634f6ccce71461039d57806355f804b3146103da5780636352211e14610403576101b7565b806323b872dd146102f75780632f745c59146103205780633ccfd60b1461035d576101b7565b8063081812fc11610195578063081812fc1461023b578063095ea7b31461027857806318160ddd146102a15780631f0123be146102cc576101b7565b806301ffc9a7146101bc578063049c5c49146101f957806306fdde0314610210575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612970565b610681565b6040516101f09190612f20565b60405180910390f35b34801561020557600080fd5b5061020e6106fb565b005b34801561021c57600080fd5b506102256107a3565b6040516102329190612f3b565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612a17565b610835565b60405161026f9190612eb9565b60405180910390f35b34801561028457600080fd5b5061029f600480360381019061029a9190612930565b6108ba565b005b3480156102ad57600080fd5b506102b66109d2565b6040516102c3919061321d565b60405180910390f35b3480156102d857600080fd5b506102e16109df565b6040516102ee919061321d565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061281a565b6109eb565b005b34801561032c57600080fd5b5061034760048036038101906103429190612930565b610a4b565b604051610354919061321d565b60405180910390f35b34801561036957600080fd5b50610372610af0565b005b34801561038057600080fd5b5061039b6004803603810190610396919061281a565b610bb5565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612a17565b610bd5565b6040516103d1919061321d565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906129ca565b610c46565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612a17565b610d28565b6040516104379190612eb9565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906127ad565b610dda565b604051610474919061321d565b60405180910390f35b34801561048957600080fd5b50610492610e92565b005b3480156104a057600080fd5b506104a9610f1a565b6040516104b69190612eb9565b60405180910390f35b3480156104cb57600080fd5b506104d4610f44565b6040516104e19190612f3b565b60405180910390f35b3480156104f657600080fd5b506104ff610fd6565b005b34801561050d57600080fd5b50610528600480360381019061052391906128f0565b61106f565b005b6105326111f0565b005b34801561054057600080fd5b5061055b6004803603810190610556919061286d565b611300565b005b34801561056957600080fd5b50610584600480360381019061057f9190612a17565b611362565b6040516105919190612f3b565b60405180910390f35b3480156105a657600080fd5b506105af6113de565b6040516105bc9190612f20565b60405180910390f35b3480156105d157600080fd5b506105da6113f1565b6040516105e7919061321d565b60405180910390f35b3480156105fc57600080fd5b506106056113f6565b6040516106129190612f20565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906127da565b611409565b60405161064f9190612f20565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906127ad565b61149d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f457506106f382611595565b5b9050919050565b610703611677565b73ffffffffffffffffffffffffffffffffffffffff16610721610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e9061311d565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600080546107b290613457565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90613457565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b60006108408261167f565b61087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610876906130fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c582610d28565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d9061319d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610955611677565b73ffffffffffffffffffffffffffffffffffffffff16148061098457506109838161097e611677565b611409565b5b6109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba9061307d565b60405180910390fd5b6109cd83836116eb565b505050565b6000600880549050905090565b670138a388a43c000081565b6109fc6109f6611677565b826117a4565b610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906131bd565b60405180910390fd5b610a46838383611882565b505050565b6000610a5683610dda565b8210610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612f5d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af8611677565b73ffffffffffffffffffffffffffffffffffffffff16610b16610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061311d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb2573d6000803e3d6000fd5b50565b610bd083838360405180602001604052806000815250611300565b505050565b6000610bdf6109d2565b8210610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906131dd565b60405180910390fd5b60088281548110610c3457610c336135f0565b5b90600052602060002001549050919050565b610c4e611677565b73ffffffffffffffffffffffffffffffffffffffff16610c6c610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061311d565b60405180910390fd5b600c60019054906101000a900460ff1615610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d099061315d565b60405180910390fd5b8181600b9190610d239291906125db565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc8906130bd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e429061309d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9a611677565b73ffffffffffffffffffffffffffffffffffffffff16610eb8610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061311d565b60405180910390fd5b610f186000611ade565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f5390613457565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f90613457565b8015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b5050505050905090565b610fde611677565b73ffffffffffffffffffffffffffffffffffffffff16610ffc610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061311d565b60405180910390fd5b6001600c60016101000a81548160ff021916908315150217905550565b611077611677565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612ffd565b60405180910390fd5b80600560006110f2611677565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119f611677565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111e49190612f20565b60405180910390a35050565b600c60009054906101000a900460ff1661123f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112369061303d565b60405180910390fd5b6032600161124b6109d2565b61125591906132e6565b1115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d9061301d565b60405180910390fd5b34670138a388a43c000011156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906131fd565b60405180910390fd5b6112fe3360016112ef6109d2565b6112f991906132e6565b611ba4565b565b61131161130b611677565b836117a4565b611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906131bd565b60405180910390fd5b61135c84848484611bc2565b50505050565b606061136d8261167f565b6113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a39061317d565b60405180910390fd5b600b6113b783611c1e565b6040516020016113c8929190612e95565b6040516020818303038152906040529050919050565b600c60019054906101000a900460ff1681565b603281565b600c60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114a5611677565b73ffffffffffffffffffffffffffffffffffffffff166114c3610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061311d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612f9d565b60405180910390fd5b61159281611ade565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061166057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611670575061166f82611d7f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661175e83610d28565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117af8261167f565b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e59061305d565b60405180910390fd5b60006117f983610d28565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061186857508373ffffffffffffffffffffffffffffffffffffffff1661185084610835565b73ffffffffffffffffffffffffffffffffffffffff16145b8061187957506118788185611409565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118a282610d28565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef9061313d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90612fdd565b60405180910390fd5b611973838383611de9565b61197e6000826116eb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ce919061336d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2591906132e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bbe828260405180602001604052806000815250611efd565b5050565b611bcd848484611882565b611bd984848484611f58565b611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90612f7d565b60405180910390fd5b50505050565b60606000821415611c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d7a565b600082905060005b60008214611c98578080611c81906134ba565b915050600a82611c91919061333c565b9150611c6e565b60008167ffffffffffffffff811115611cb457611cb361361f565b5b6040519080825280601f01601f191660200182016040528015611ce65781602001600182028036833780820191505090505b5090505b60008514611d7357600182611cff919061336d565b9150600a85611d0e9190613503565b6030611d1a91906132e6565b60f81b818381518110611d3057611d2f6135f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d6c919061333c565b9450611cea565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611df48383836120ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e3757611e32816120f4565b611e76565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e7557611e74838261213d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb957611eb4816122aa565b611ef8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ef757611ef6828261237b565b5b5b505050565b611f0783836123fa565b611f146000848484611f58565b611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90612f7d565b60405180910390fd5b505050565b6000611f798473ffffffffffffffffffffffffffffffffffffffff166125c8565b156120e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fa2611677565b8786866040518563ffffffff1660e01b8152600401611fc49493929190612ed4565b602060405180830381600087803b158015611fde57600080fd5b505af192505050801561200f57506040513d601f19601f8201168201806040525081019061200c919061299d565b60015b612092573d806000811461203f576040519150601f19603f3d011682016040523d82523d6000602084013e612044565b606091505b5060008151141561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190612f7d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120e7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161214a84610dda565b612154919061336d565b9050600060076000848152602001908152602001600020549050818114612239576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506122be919061336d565b90506000600960008481526020019081526020016000205490506000600883815481106122ee576122ed6135f0565b5b9060005260206000200154905080600883815481106123105761230f6135f0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061235f5761235e6135c1565b5b6001900381819060005260206000200160009055905550505050565b600061238683610dda565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561246a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612461906130dd565b60405180910390fd5b6124738161167f565b156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90612fbd565b60405180910390fd5b6124bf60008383611de9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250f91906132e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546125e790613457565b90600052602060002090601f0160209004810192826126095760008555612650565b82601f1061262257803560ff1916838001178555612650565b82800160010185558215612650579182015b8281111561264f578235825591602001919060010190612634565b5b50905061265d9190612661565b5090565b5b8082111561267a576000816000905550600101612662565b5090565b600061269161268c8461325d565b613238565b9050828152602081018484840111156126ad576126ac61365d565b5b6126b8848285613415565b509392505050565b6000813590506126cf81613c17565b92915050565b6000813590506126e481613c2e565b92915050565b6000813590506126f981613c45565b92915050565b60008151905061270e81613c45565b92915050565b600082601f83011261272957612728613653565b5b813561273984826020860161267e565b91505092915050565b60008083601f84011261275857612757613653565b5b8235905067ffffffffffffffff8111156127755761277461364e565b5b60208301915083600182028301111561279157612790613658565b5b9250929050565b6000813590506127a781613c5c565b92915050565b6000602082840312156127c3576127c2613667565b5b60006127d1848285016126c0565b91505092915050565b600080604083850312156127f1576127f0613667565b5b60006127ff858286016126c0565b9250506020612810858286016126c0565b9150509250929050565b60008060006060848603121561283357612832613667565b5b6000612841868287016126c0565b9350506020612852868287016126c0565b925050604061286386828701612798565b9150509250925092565b6000806000806080858703121561288757612886613667565b5b6000612895878288016126c0565b94505060206128a6878288016126c0565b93505060406128b787828801612798565b925050606085013567ffffffffffffffff8111156128d8576128d7613662565b5b6128e487828801612714565b91505092959194509250565b6000806040838503121561290757612906613667565b5b6000612915858286016126c0565b9250506020612926858286016126d5565b9150509250929050565b6000806040838503121561294757612946613667565b5b6000612955858286016126c0565b925050602061296685828601612798565b9150509250929050565b60006020828403121561298657612985613667565b5b6000612994848285016126ea565b91505092915050565b6000602082840312156129b3576129b2613667565b5b60006129c1848285016126ff565b91505092915050565b600080602083850312156129e1576129e0613667565b5b600083013567ffffffffffffffff8111156129ff576129fe613662565b5b612a0b85828601612742565b92509250509250929050565b600060208284031215612a2d57612a2c613667565b5b6000612a3b84828501612798565b91505092915050565b612a4d816133a1565b82525050565b612a5c816133b3565b82525050565b6000612a6d826132a3565b612a7781856132b9565b9350612a87818560208601613424565b612a908161366c565b840191505092915050565b6000612aa6826132ae565b612ab081856132ca565b9350612ac0818560208601613424565b612ac98161366c565b840191505092915050565b6000612adf826132ae565b612ae981856132db565b9350612af9818560208601613424565b80840191505092915050565b60008154612b1281613457565b612b1c81866132db565b94506001821660008114612b375760018114612b4857612b7b565b60ff19831686528186019350612b7b565b612b518561328e565b60005b83811015612b7357815481890152600182019150602081019050612b54565b838801955050505b50505092915050565b6000612b91602b836132ca565b9150612b9c8261367d565b604082019050919050565b6000612bb46032836132ca565b9150612bbf826136cc565b604082019050919050565b6000612bd76026836132ca565b9150612be28261371b565b604082019050919050565b6000612bfa601c836132ca565b9150612c058261376a565b602082019050919050565b6000612c1d6024836132ca565b9150612c2882613793565b604082019050919050565b6000612c406019836132ca565b9150612c4b826137e2565b602082019050919050565b6000612c63600c836132ca565b9150612c6e8261380b565b602082019050919050565b6000612c86600b836132ca565b9150612c9182613834565b602082019050919050565b6000612ca9602c836132ca565b9150612cb48261385d565b604082019050919050565b6000612ccc6038836132ca565b9150612cd7826138ac565b604082019050919050565b6000612cef602a836132ca565b9150612cfa826138fb565b604082019050919050565b6000612d126029836132ca565b9150612d1d8261394a565b604082019050919050565b6000612d356020836132ca565b9150612d4082613999565b602082019050919050565b6000612d58602c836132ca565b9150612d63826139c2565b604082019050919050565b6000612d7b6020836132ca565b9150612d8682613a11565b602082019050919050565b6000612d9e6029836132ca565b9150612da982613a3a565b604082019050919050565b6000612dc16024836132ca565b9150612dcc82613a89565b604082019050919050565b6000612de4601f836132ca565b9150612def82613ad8565b602082019050919050565b6000612e076021836132ca565b9150612e1282613b01565b604082019050919050565b6000612e2a6031836132ca565b9150612e3582613b50565b604082019050919050565b6000612e4d602c836132ca565b9150612e5882613b9f565b604082019050919050565b6000612e706010836132ca565b9150612e7b82613bee565b602082019050919050565b612e8f8161340b565b82525050565b6000612ea18285612b05565b9150612ead8284612ad4565b91508190509392505050565b6000602082019050612ece6000830184612a44565b92915050565b6000608082019050612ee96000830187612a44565b612ef66020830186612a44565b612f036040830185612e86565b8181036060830152612f158184612a62565b905095945050505050565b6000602082019050612f356000830184612a53565b92915050565b60006020820190508181036000830152612f558184612a9b565b905092915050565b60006020820190508181036000830152612f7681612b84565b9050919050565b60006020820190508181036000830152612f9681612ba7565b9050919050565b60006020820190508181036000830152612fb681612bca565b9050919050565b60006020820190508181036000830152612fd681612bed565b9050919050565b60006020820190508181036000830152612ff681612c10565b9050919050565b6000602082019050818103600083015261301681612c33565b9050919050565b6000602082019050818103600083015261303681612c56565b9050919050565b6000602082019050818103600083015261305681612c79565b9050919050565b6000602082019050818103600083015261307681612c9c565b9050919050565b6000602082019050818103600083015261309681612cbf565b9050919050565b600060208201905081810360008301526130b681612ce2565b9050919050565b600060208201905081810360008301526130d681612d05565b9050919050565b600060208201905081810360008301526130f681612d28565b9050919050565b6000602082019050818103600083015261311681612d4b565b9050919050565b6000602082019050818103600083015261313681612d6e565b9050919050565b6000602082019050818103600083015261315681612d91565b9050919050565b6000602082019050818103600083015261317681612db4565b9050919050565b6000602082019050818103600083015261319681612dd7565b9050919050565b600060208201905081810360008301526131b681612dfa565b9050919050565b600060208201905081810360008301526131d681612e1d565b9050919050565b600060208201905081810360008301526131f681612e40565b9050919050565b6000602082019050818103600083015261321681612e63565b9050919050565b60006020820190506132326000830184612e86565b92915050565b6000613242613253565b905061324e8282613489565b919050565b6000604051905090565b600067ffffffffffffffff8211156132785761327761361f565b5b6132818261366c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132f18261340b565b91506132fc8361340b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333157613330613534565b5b828201905092915050565b60006133478261340b565b91506133528361340b565b92508261336257613361613563565b5b828204905092915050565b60006133788261340b565b91506133838361340b565b92508282101561339657613395613534565b5b828203905092915050565b60006133ac826133eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613442578082015181840152602081019050613427565b83811115613451576000848401525b50505050565b6000600282049050600182168061346f57607f821691505b6020821081141561348357613482613592565b5b50919050565b6134928261366c565b810181811067ffffffffffffffff821117156134b1576134b061361f565b5b80604052505050565b60006134c58261340b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134f8576134f7613534565b5b600182019050919050565b600061350e8261340b565b91506135198361340b565b92508261352957613528613563565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b613c20816133a1565b8114613c2b57600080fd5b50565b613c37816133b3565b8114613c4257600080fd5b50565b613c4e816133bf565b8114613c5957600080fd5b50565b613c658161340b565b8114613c7057600080fd5b5056fea264697066735822122075f8dfcd9ad7d86f096afa1f2c1057b2c6008430e3ec8d427e9aa8f47696a7d264736f6c6343000807003368747470733a2f2f68616c6c6f7765656e6170692e387369616e6e66742e636f6d2f6170692f746f6b656e2f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063dbadfc4311610064578063dbadfc43146105c5578063e081b781146105f0578063e985e9c51461061b578063f2fde38b14610658576101b7565b8063b88d4fde14610534578063c87b56dd1461055d578063cf3090121461059a576101b7565b806395d89b41116100c657806395d89b41146104bf578063989bdbb6146104ea578063a22cb46514610501578063a6f2ae3a1461052a576101b7565b806370a0823114610440578063715018a61461047d5780638da5cb5b14610494576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103745780634f6ccce71461039d57806355f804b3146103da5780636352211e14610403576101b7565b806323b872dd146102f75780632f745c59146103205780633ccfd60b1461035d576101b7565b8063081812fc11610195578063081812fc1461023b578063095ea7b31461027857806318160ddd146102a15780631f0123be146102cc576101b7565b806301ffc9a7146101bc578063049c5c49146101f957806306fdde0314610210575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612970565b610681565b6040516101f09190612f20565b60405180910390f35b34801561020557600080fd5b5061020e6106fb565b005b34801561021c57600080fd5b506102256107a3565b6040516102329190612f3b565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612a17565b610835565b60405161026f9190612eb9565b60405180910390f35b34801561028457600080fd5b5061029f600480360381019061029a9190612930565b6108ba565b005b3480156102ad57600080fd5b506102b66109d2565b6040516102c3919061321d565b60405180910390f35b3480156102d857600080fd5b506102e16109df565b6040516102ee919061321d565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061281a565b6109eb565b005b34801561032c57600080fd5b5061034760048036038101906103429190612930565b610a4b565b604051610354919061321d565b60405180910390f35b34801561036957600080fd5b50610372610af0565b005b34801561038057600080fd5b5061039b6004803603810190610396919061281a565b610bb5565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612a17565b610bd5565b6040516103d1919061321d565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906129ca565b610c46565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612a17565b610d28565b6040516104379190612eb9565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906127ad565b610dda565b604051610474919061321d565b60405180910390f35b34801561048957600080fd5b50610492610e92565b005b3480156104a057600080fd5b506104a9610f1a565b6040516104b69190612eb9565b60405180910390f35b3480156104cb57600080fd5b506104d4610f44565b6040516104e19190612f3b565b60405180910390f35b3480156104f657600080fd5b506104ff610fd6565b005b34801561050d57600080fd5b50610528600480360381019061052391906128f0565b61106f565b005b6105326111f0565b005b34801561054057600080fd5b5061055b6004803603810190610556919061286d565b611300565b005b34801561056957600080fd5b50610584600480360381019061057f9190612a17565b611362565b6040516105919190612f3b565b60405180910390f35b3480156105a657600080fd5b506105af6113de565b6040516105bc9190612f20565b60405180910390f35b3480156105d157600080fd5b506105da6113f1565b6040516105e7919061321d565b60405180910390f35b3480156105fc57600080fd5b506106056113f6565b6040516106129190612f20565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906127da565b611409565b60405161064f9190612f20565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906127ad565b61149d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f457506106f382611595565b5b9050919050565b610703611677565b73ffffffffffffffffffffffffffffffffffffffff16610721610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e9061311d565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600080546107b290613457565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90613457565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b60006108408261167f565b61087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610876906130fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c582610d28565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d9061319d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610955611677565b73ffffffffffffffffffffffffffffffffffffffff16148061098457506109838161097e611677565b611409565b5b6109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba9061307d565b60405180910390fd5b6109cd83836116eb565b505050565b6000600880549050905090565b670138a388a43c000081565b6109fc6109f6611677565b826117a4565b610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906131bd565b60405180910390fd5b610a46838383611882565b505050565b6000610a5683610dda565b8210610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612f5d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af8611677565b73ffffffffffffffffffffffffffffffffffffffff16610b16610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061311d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb2573d6000803e3d6000fd5b50565b610bd083838360405180602001604052806000815250611300565b505050565b6000610bdf6109d2565b8210610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906131dd565b60405180910390fd5b60088281548110610c3457610c336135f0565b5b90600052602060002001549050919050565b610c4e611677565b73ffffffffffffffffffffffffffffffffffffffff16610c6c610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061311d565b60405180910390fd5b600c60019054906101000a900460ff1615610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d099061315d565b60405180910390fd5b8181600b9190610d239291906125db565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc8906130bd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e429061309d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9a611677565b73ffffffffffffffffffffffffffffffffffffffff16610eb8610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061311d565b60405180910390fd5b610f186000611ade565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f5390613457565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f90613457565b8015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b5050505050905090565b610fde611677565b73ffffffffffffffffffffffffffffffffffffffff16610ffc610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061311d565b60405180910390fd5b6001600c60016101000a81548160ff021916908315150217905550565b611077611677565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612ffd565b60405180910390fd5b80600560006110f2611677565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119f611677565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111e49190612f20565b60405180910390a35050565b600c60009054906101000a900460ff1661123f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112369061303d565b60405180910390fd5b6032600161124b6109d2565b61125591906132e6565b1115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d9061301d565b60405180910390fd5b34670138a388a43c000011156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906131fd565b60405180910390fd5b6112fe3360016112ef6109d2565b6112f991906132e6565b611ba4565b565b61131161130b611677565b836117a4565b611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906131bd565b60405180910390fd5b61135c84848484611bc2565b50505050565b606061136d8261167f565b6113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a39061317d565b60405180910390fd5b600b6113b783611c1e565b6040516020016113c8929190612e95565b6040516020818303038152906040529050919050565b600c60019054906101000a900460ff1681565b603281565b600c60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114a5611677565b73ffffffffffffffffffffffffffffffffffffffff166114c3610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061311d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612f9d565b60405180910390fd5b61159281611ade565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061166057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611670575061166f82611d7f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661175e83610d28565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117af8261167f565b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e59061305d565b60405180910390fd5b60006117f983610d28565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061186857508373ffffffffffffffffffffffffffffffffffffffff1661185084610835565b73ffffffffffffffffffffffffffffffffffffffff16145b8061187957506118788185611409565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118a282610d28565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef9061313d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90612fdd565b60405180910390fd5b611973838383611de9565b61197e6000826116eb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ce919061336d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2591906132e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bbe828260405180602001604052806000815250611efd565b5050565b611bcd848484611882565b611bd984848484611f58565b611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90612f7d565b60405180910390fd5b50505050565b60606000821415611c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d7a565b600082905060005b60008214611c98578080611c81906134ba565b915050600a82611c91919061333c565b9150611c6e565b60008167ffffffffffffffff811115611cb457611cb361361f565b5b6040519080825280601f01601f191660200182016040528015611ce65781602001600182028036833780820191505090505b5090505b60008514611d7357600182611cff919061336d565b9150600a85611d0e9190613503565b6030611d1a91906132e6565b60f81b818381518110611d3057611d2f6135f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d6c919061333c565b9450611cea565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611df48383836120ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e3757611e32816120f4565b611e76565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e7557611e74838261213d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb957611eb4816122aa565b611ef8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ef757611ef6828261237b565b5b5b505050565b611f0783836123fa565b611f146000848484611f58565b611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90612f7d565b60405180910390fd5b505050565b6000611f798473ffffffffffffffffffffffffffffffffffffffff166125c8565b156120e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fa2611677565b8786866040518563ffffffff1660e01b8152600401611fc49493929190612ed4565b602060405180830381600087803b158015611fde57600080fd5b505af192505050801561200f57506040513d601f19601f8201168201806040525081019061200c919061299d565b60015b612092573d806000811461203f576040519150601f19603f3d011682016040523d82523d6000602084013e612044565b606091505b5060008151141561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190612f7d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120e7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161214a84610dda565b612154919061336d565b9050600060076000848152602001908152602001600020549050818114612239576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506122be919061336d565b90506000600960008481526020019081526020016000205490506000600883815481106122ee576122ed6135f0565b5b9060005260206000200154905080600883815481106123105761230f6135f0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061235f5761235e6135c1565b5b6001900381819060005260206000200160009055905550505050565b600061238683610dda565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561246a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612461906130dd565b60405180910390fd5b6124738161167f565b156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90612fbd565b60405180910390fd5b6124bf60008383611de9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250f91906132e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546125e790613457565b90600052602060002090601f0160209004810192826126095760008555612650565b82601f1061262257803560ff1916838001178555612650565b82800160010185558215612650579182015b8281111561264f578235825591602001919060010190612634565b5b50905061265d9190612661565b5090565b5b8082111561267a576000816000905550600101612662565b5090565b600061269161268c8461325d565b613238565b9050828152602081018484840111156126ad576126ac61365d565b5b6126b8848285613415565b509392505050565b6000813590506126cf81613c17565b92915050565b6000813590506126e481613c2e565b92915050565b6000813590506126f981613c45565b92915050565b60008151905061270e81613c45565b92915050565b600082601f83011261272957612728613653565b5b813561273984826020860161267e565b91505092915050565b60008083601f84011261275857612757613653565b5b8235905067ffffffffffffffff8111156127755761277461364e565b5b60208301915083600182028301111561279157612790613658565b5b9250929050565b6000813590506127a781613c5c565b92915050565b6000602082840312156127c3576127c2613667565b5b60006127d1848285016126c0565b91505092915050565b600080604083850312156127f1576127f0613667565b5b60006127ff858286016126c0565b9250506020612810858286016126c0565b9150509250929050565b60008060006060848603121561283357612832613667565b5b6000612841868287016126c0565b9350506020612852868287016126c0565b925050604061286386828701612798565b9150509250925092565b6000806000806080858703121561288757612886613667565b5b6000612895878288016126c0565b94505060206128a6878288016126c0565b93505060406128b787828801612798565b925050606085013567ffffffffffffffff8111156128d8576128d7613662565b5b6128e487828801612714565b91505092959194509250565b6000806040838503121561290757612906613667565b5b6000612915858286016126c0565b9250506020612926858286016126d5565b9150509250929050565b6000806040838503121561294757612946613667565b5b6000612955858286016126c0565b925050602061296685828601612798565b9150509250929050565b60006020828403121561298657612985613667565b5b6000612994848285016126ea565b91505092915050565b6000602082840312156129b3576129b2613667565b5b60006129c1848285016126ff565b91505092915050565b600080602083850312156129e1576129e0613667565b5b600083013567ffffffffffffffff8111156129ff576129fe613662565b5b612a0b85828601612742565b92509250509250929050565b600060208284031215612a2d57612a2c613667565b5b6000612a3b84828501612798565b91505092915050565b612a4d816133a1565b82525050565b612a5c816133b3565b82525050565b6000612a6d826132a3565b612a7781856132b9565b9350612a87818560208601613424565b612a908161366c565b840191505092915050565b6000612aa6826132ae565b612ab081856132ca565b9350612ac0818560208601613424565b612ac98161366c565b840191505092915050565b6000612adf826132ae565b612ae981856132db565b9350612af9818560208601613424565b80840191505092915050565b60008154612b1281613457565b612b1c81866132db565b94506001821660008114612b375760018114612b4857612b7b565b60ff19831686528186019350612b7b565b612b518561328e565b60005b83811015612b7357815481890152600182019150602081019050612b54565b838801955050505b50505092915050565b6000612b91602b836132ca565b9150612b9c8261367d565b604082019050919050565b6000612bb46032836132ca565b9150612bbf826136cc565b604082019050919050565b6000612bd76026836132ca565b9150612be28261371b565b604082019050919050565b6000612bfa601c836132ca565b9150612c058261376a565b602082019050919050565b6000612c1d6024836132ca565b9150612c2882613793565b604082019050919050565b6000612c406019836132ca565b9150612c4b826137e2565b602082019050919050565b6000612c63600c836132ca565b9150612c6e8261380b565b602082019050919050565b6000612c86600b836132ca565b9150612c9182613834565b602082019050919050565b6000612ca9602c836132ca565b9150612cb48261385d565b604082019050919050565b6000612ccc6038836132ca565b9150612cd7826138ac565b604082019050919050565b6000612cef602a836132ca565b9150612cfa826138fb565b604082019050919050565b6000612d126029836132ca565b9150612d1d8261394a565b604082019050919050565b6000612d356020836132ca565b9150612d4082613999565b602082019050919050565b6000612d58602c836132ca565b9150612d63826139c2565b604082019050919050565b6000612d7b6020836132ca565b9150612d8682613a11565b602082019050919050565b6000612d9e6029836132ca565b9150612da982613a3a565b604082019050919050565b6000612dc16024836132ca565b9150612dcc82613a89565b604082019050919050565b6000612de4601f836132ca565b9150612def82613ad8565b602082019050919050565b6000612e076021836132ca565b9150612e1282613b01565b604082019050919050565b6000612e2a6031836132ca565b9150612e3582613b50565b604082019050919050565b6000612e4d602c836132ca565b9150612e5882613b9f565b604082019050919050565b6000612e706010836132ca565b9150612e7b82613bee565b602082019050919050565b612e8f8161340b565b82525050565b6000612ea18285612b05565b9150612ead8284612ad4565b91508190509392505050565b6000602082019050612ece6000830184612a44565b92915050565b6000608082019050612ee96000830187612a44565b612ef66020830186612a44565b612f036040830185612e86565b8181036060830152612f158184612a62565b905095945050505050565b6000602082019050612f356000830184612a53565b92915050565b60006020820190508181036000830152612f558184612a9b565b905092915050565b60006020820190508181036000830152612f7681612b84565b9050919050565b60006020820190508181036000830152612f9681612ba7565b9050919050565b60006020820190508181036000830152612fb681612bca565b9050919050565b60006020820190508181036000830152612fd681612bed565b9050919050565b60006020820190508181036000830152612ff681612c10565b9050919050565b6000602082019050818103600083015261301681612c33565b9050919050565b6000602082019050818103600083015261303681612c56565b9050919050565b6000602082019050818103600083015261305681612c79565b9050919050565b6000602082019050818103600083015261307681612c9c565b9050919050565b6000602082019050818103600083015261309681612cbf565b9050919050565b600060208201905081810360008301526130b681612ce2565b9050919050565b600060208201905081810360008301526130d681612d05565b9050919050565b600060208201905081810360008301526130f681612d28565b9050919050565b6000602082019050818103600083015261311681612d4b565b9050919050565b6000602082019050818103600083015261313681612d6e565b9050919050565b6000602082019050818103600083015261315681612d91565b9050919050565b6000602082019050818103600083015261317681612db4565b9050919050565b6000602082019050818103600083015261319681612dd7565b9050919050565b600060208201905081810360008301526131b681612dfa565b9050919050565b600060208201905081810360008301526131d681612e1d565b9050919050565b600060208201905081810360008301526131f681612e40565b9050919050565b6000602082019050818103600083015261321681612e63565b9050919050565b60006020820190506132326000830184612e86565b92915050565b6000613242613253565b905061324e8282613489565b919050565b6000604051905090565b600067ffffffffffffffff8211156132785761327761361f565b5b6132818261366c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132f18261340b565b91506132fc8361340b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333157613330613534565b5b828201905092915050565b60006133478261340b565b91506133528361340b565b92508261336257613361613563565b5b828204905092915050565b60006133788261340b565b91506133838361340b565b92508282101561339657613395613534565b5b828203905092915050565b60006133ac826133eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613442578082015181840152602081019050613427565b83811115613451576000848401525b50505050565b6000600282049050600182168061346f57607f821691505b6020821081141561348357613482613592565b5b50919050565b6134928261366c565b810181811067ffffffffffffffff821117156134b1576134b061361f565b5b80604052505050565b60006134c58261340b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134f8576134f7613534565b5b600182019050919050565b600061350e8261340b565b91506135198361340b565b92508261352957613528613563565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b613c20816133a1565b8114613c2b57600080fd5b50565b613c37816133b3565b8114613c4257600080fd5b50565b613c4e816133bf565b8114613c5957600080fd5b50565b613c658161340b565b8114613c7057600080fd5b5056fea264697066735822122075f8dfcd9ad7d86f096afa1f2c1057b2c6008430e3ec8d427e9aa8f47696a7d264736f6c63430008070033

Deployed Bytecode Sourcemap

48346:1492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39815:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49363:86;;;;;;;;;;;;;:::i;:::-;;26975:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28668:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28191:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40618:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48490:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29727:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40199:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49155:109;;;;;;;;;;;;;:::i;:::-;;30174:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40808:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49461:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26582:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26225:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9682:94;;;;;;;;;;;;;:::i;:::-;;9031:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27144:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49276:75;;;;;;;;;;;;;:::i;:::-;;29048:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48873:270;;;:::i;:::-;;30430:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49581:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48655:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48447:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48628:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29446:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9931:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39815:300;39962:4;40019:35;40004:50;;;:11;:50;;;;:103;;;;40071:36;40095:11;40071:23;:36::i;:::-;40004:103;39984:123;;39815:300;;;:::o;49363:86::-;9262:12;:10;:12::i;:::-;9251:23;;:7;:5;:7::i;:::-;:23;;;9243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49433:8:::1;;;;;;;;;;;49432:9;49421:8;;:20;;;;;;;;;;;;;;;;;;49363:86::o:0;26975:100::-;27029:13;27062:5;27055:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26975:100;:::o;28668:308::-;28789:7;28836:16;28844:7;28836;:16::i;:::-;28814:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28944:15;:24;28960:7;28944:24;;;;;;;;;;;;;;;;;;;;;28937:31;;28668:308;;;:::o;28191:411::-;28272:13;28288:23;28303:7;28288:14;:23::i;:::-;28272:39;;28336:5;28330:11;;:2;:11;;;;28322:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28430:5;28414:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28439:37;28456:5;28463:12;:10;:12::i;:::-;28439:16;:37::i;:::-;28414:62;28392:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28573:21;28582:2;28586:7;28573:8;:21::i;:::-;28261:341;28191:411;;:::o;40618:113::-;40679:7;40706:10;:17;;;;40699:24;;40618:113;:::o;48490:47::-;48526:11;48490:47;:::o;29727:376::-;29936:41;29955:12;:10;:12::i;:::-;29969:7;29936:18;:41::i;:::-;29914:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30067:28;30077:4;30083:2;30087:7;30067:9;:28::i;:::-;29727:376;;;:::o;40199:343::-;40341:7;40396:23;40413:5;40396:16;:23::i;:::-;40388:5;:31;40366:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40508:12;:19;40521:5;40508:19;;;;;;;;;;;;;;;:26;40528:5;40508:26;;;;;;;;;;;;40501:33;;40199:343;;;;:::o;49155:109::-;9262:12;:10;:12::i;:::-;9251:23;;:7;:5;:7::i;:::-;:23;;;9243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49213:10:::1;49205:28;;:51;49234:21;49205:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49155:109::o:0;30174:185::-;30312:39;30329:4;30335:2;30339:7;30312:39;;;;;;;;;;;;:16;:39::i;:::-;30174:185;;;:::o;40808:320::-;40928:7;40983:30;:28;:30::i;:::-;40975:5;:38;40953:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41103:10;41114:5;41103:17;;;;;;;;:::i;:::-;;;;;;;;;;41096:24;;40808:320;;;:::o;49461:108::-;9262:12;:10;:12::i;:::-;9251:23;;:7;:5;:7::i;:::-;:23;;;9243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48794:6:::1;;;;;;;;;;;48793:7;48785:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49558:3:::2;;49542:13;:19;;;;;;;:::i;:::-;;49461:108:::0;;:::o;26582:326::-;26699:7;26724:13;26740:7;:16;26748:7;26740:16;;;;;;;;;;;;;;;;;;;;;26724:32;;26806:1;26789:19;;:5;:19;;;;26767:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26895:5;26888:12;;;26582:326;;;:::o;26225:295::-;26342:7;26406:1;26389:19;;:5;:19;;;;26367:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26496:9;:16;26506:5;26496:16;;;;;;;;;;;;;;;;26489:23;;26225:295;;;:::o;9682:94::-;9262:12;:10;:12::i;:::-;9251:23;;:7;:5;:7::i;:::-;:23;;;9243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9747:21:::1;9765:1;9747:9;:21::i;:::-;9682:94::o:0;9031:87::-;9077:7;9104:6;;;;;;;;;;;9097:13;;9031:87;:::o;27144:104::-;27200:13;27233:7;27226:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27144:104;:::o;49276:75::-;9262:12;:10;:12::i;:::-;9251:23;;:7;:5;:7::i;:::-;:23;;;9243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49339:4:::1;49330:6;;:13;;;;;;;;;;;;;;;;;;49276:75::o:0;29048:327::-;29195:12;:10;:12::i;:::-;29183:24;;:8;:24;;;;29175:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29295:8;29250:18;:32;29269:12;:10;:12::i;:::-;29250:32;;;;;;;;;;;;;;;:42;29283:8;29250:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29348:8;29319:48;;29334:12;:10;:12::i;:::-;29319:48;;;29358:8;29319:48;;;;;;:::i;:::-;;;;;;;;29048:327;;:::o;48873:270::-;48924:8;;;;;;;;;;;48916:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;48481:2;48983:1;48967:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:28;;48959:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49044:9;48526:11;49031:22;;49023:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49095:40;49105:10;49133:1;49117:13;:11;:13::i;:::-;:17;;;;:::i;:::-;49095:9;:40::i;:::-;48873:270::o;30430:365::-;30619:41;30638:12;:10;:12::i;:::-;30652:7;30619:18;:41::i;:::-;30597:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30748:39;30762:4;30768:2;30772:7;30781:5;30748:13;:39::i;:::-;30430:365;;;;:::o;49581:254::-;49654:13;49688:16;49696:7;49688;:16::i;:::-;49680:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49792:13;49807:18;:7;:16;:18::i;:::-;49775:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49761:66;;49581:254;;;:::o;48655:18::-;;;;;;;;;;;;;:::o;48447:36::-;48481:2;48447:36;:::o;48628:20::-;;;;;;;;;;;;;:::o;29446:214::-;29588:4;29617:18;:25;29636:5;29617:25;;;;;;;;;;;;;;;:35;29643:8;29617:35;;;;;;;;;;;;;;;;;;;;;;;;;29610:42;;29446:214;;;;:::o;9931:229::-;9262:12;:10;:12::i;:::-;9251:23;;:7;:5;:7::i;:::-;:23;;;9243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10054:1:::1;10034:22;;:8;:22;;;;10012:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10133:19;10143:8;10133:9;:19::i;:::-;9931:229:::0;:::o;25806:355::-;25953:4;26010:25;25995:40;;;:11;:40;;;;:105;;;;26067:33;26052:48;;;:11;:48;;;;25995:105;:158;;;;26117:36;26141:11;26117:23;:36::i;:::-;25995:158;25975:178;;25806:355;;;:::o;2004:98::-;2057:7;2084:10;2077:17;;2004:98;:::o;32342:127::-;32407:4;32459:1;32431:30;;:7;:16;32439:7;32431:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32424:37;;32342:127;;;:::o;36465:174::-;36567:2;36540:15;:24;36556:7;36540:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36623:7;36619:2;36585:46;;36594:23;36609:7;36594:14;:23::i;:::-;36585:46;;;;;;;;;;;;36465:174;;:::o;32636:452::-;32765:4;32809:16;32817:7;32809;:16::i;:::-;32787:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32908:13;32924:23;32939:7;32924:14;:23::i;:::-;32908:39;;32977:5;32966:16;;:7;:16;;;:64;;;;33023:7;32999:31;;:20;33011:7;32999:11;:20::i;:::-;:31;;;32966:64;:113;;;;33047:32;33064:5;33071:7;33047:16;:32::i;:::-;32966:113;32958:122;;;32636:452;;;;:::o;35732:615::-;35905:4;35878:31;;:23;35893:7;35878:14;:23::i;:::-;:31;;;35856:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36011:1;35997:16;;:2;:16;;;;35989:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36067:39;36088:4;36094:2;36098:7;36067:20;:39::i;:::-;36171:29;36188:1;36192:7;36171:8;:29::i;:::-;36232:1;36213:9;:15;36223:4;36213:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36261:1;36244:9;:13;36254:2;36244:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36292:2;36273:7;:16;36281:7;36273:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36331:7;36327:2;36312:27;;36321:4;36312:27;;;;;;;;;;;;35732:615;;;:::o;10168:173::-;10224:16;10243:6;;;;;;;;;;;10224:25;;10269:8;10260:6;;:17;;;;;;;;;;;;;;;;;;10324:8;10293:40;;10314:8;10293:40;;;;;;;;;;;;10213:128;10168:173;:::o;33430:110::-;33506:26;33516:2;33520:7;33506:26;;;;;;;;;;;;:9;:26::i;:::-;33430:110;;:::o;31677:352::-;31834:28;31844:4;31850:2;31854:7;31834:9;:28::i;:::-;31895:48;31918:4;31924:2;31928:7;31937:5;31895:22;:48::i;:::-;31873:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31677:352;;;;:::o;12673:723::-;12729:13;12959:1;12950:5;:10;12946:53;;;12977:10;;;;;;;;;;;;;;;;;;;;;12946:53;13009:12;13024:5;13009:20;;13040:14;13065:78;13080:1;13072:4;:9;13065:78;;13098:8;;;;;:::i;:::-;;;;13129:2;13121:10;;;;;:::i;:::-;;;13065:78;;;13153:19;13185:6;13175:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13153:39;;13203:154;13219:1;13210:5;:10;13203:154;;13247:1;13237:11;;;;;:::i;:::-;;;13314:2;13306:5;:10;;;;:::i;:::-;13293:2;:24;;;;:::i;:::-;13280:39;;13263:6;13270;13263:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13343:2;13334:11;;;;;:::i;:::-;;;13203:154;;;13381:6;13367:21;;;;;12673:723;;;;:::o;12152:207::-;12282:4;12326:25;12311:40;;;:11;:40;;;;12304:47;;12152:207;;;:::o;41741:589::-;41885:45;41912:4;41918:2;41922:7;41885:26;:45::i;:::-;41963:1;41947:18;;:4;:18;;;41943:187;;;41982:40;42014:7;41982:31;:40::i;:::-;41943:187;;;42052:2;42044:10;;:4;:10;;;42040:90;;42071:47;42104:4;42110:7;42071:32;:47::i;:::-;42040:90;41943:187;42158:1;42144:16;;:2;:16;;;42140:183;;;42177:45;42214:7;42177:36;:45::i;:::-;42140:183;;;42250:4;42244:10;;:2;:10;;;42240:83;;42271:40;42299:2;42303:7;42271:27;:40::i;:::-;42240:83;42140:183;41741:589;;;:::o;33767:321::-;33897:18;33903:2;33907:7;33897:5;:18::i;:::-;33948:54;33979:1;33983:2;33987:7;33996:5;33948:22;:54::i;:::-;33926:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33767:321;;;:::o;37204:984::-;37359:4;37380:15;:2;:13;;;:15::i;:::-;37376:805;;;37449:2;37433:36;;;37492:12;:10;:12::i;:::-;37527:4;37554:7;37584:5;37433:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37412:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37812:1;37795:6;:13;:18;37791:320;;;37838:108;;;;;;;;;;:::i;:::-;;;;;;;;37791:320;38061:6;38055:13;38046:6;38042:2;38038:15;38031:38;37412:714;37682:45;;;37672:55;;;:6;:55;;;;37665:62;;;;;37376:805;38165:4;38158:11;;37204:984;;;;;;;:::o;38760:126::-;;;;:::o;43053:164::-;43157:10;:17;;;;43130:15;:24;43146:7;43130:24;;;;;;;;;;;:44;;;;43185:10;43201:7;43185:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43053:164;:::o;43844:1002::-;44124:22;44174:1;44149:22;44166:4;44149:16;:22::i;:::-;:26;;;;:::i;:::-;44124:51;;44186:18;44207:17;:26;44225:7;44207:26;;;;;;;;;;;;44186:47;;44354:14;44340:10;:28;44336:328;;44385:19;44407:12;:18;44420:4;44407:18;;;;;;;;;;;;;;;:34;44426:14;44407:34;;;;;;;;;;;;44385:56;;44491:11;44458:12;:18;44471:4;44458:18;;;;;;;;;;;;;;;:30;44477:10;44458:30;;;;;;;;;;;:44;;;;44608:10;44575:17;:30;44593:11;44575:30;;;;;;;;;;;:43;;;;44370:294;44336:328;44760:17;:26;44778:7;44760:26;;;;;;;;;;;44753:33;;;44804:12;:18;44817:4;44804:18;;;;;;;;;;;;;;;:34;44823:14;44804:34;;;;;;;;;;;44797:41;;;43939:907;;43844:1002;;:::o;45141:1079::-;45394:22;45439:1;45419:10;:17;;;;:21;;;;:::i;:::-;45394:46;;45451:18;45472:15;:24;45488:7;45472:24;;;;;;;;;;;;45451:45;;45823:19;45845:10;45856:14;45845:26;;;;;;;;:::i;:::-;;;;;;;;;;45823:48;;45909:11;45884:10;45895;45884:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46020:10;45989:15;:28;46005:11;45989:28;;;;;;;;;;;:41;;;;46161:15;:24;46177:7;46161:24;;;;;;;;;;;46154:31;;;46196:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45212:1008;;;45141:1079;:::o;42631:221::-;42716:14;42733:20;42750:2;42733:16;:20::i;:::-;42716:37;;42791:7;42764:12;:16;42777:2;42764:16;;;;;;;;;;;;;;;:24;42781:6;42764:24;;;;;;;;;;;:34;;;;42838:6;42809:17;:26;42827:7;42809:26;;;;;;;;;;;:35;;;;42705:147;42631:221;;:::o;34424:382::-;34518:1;34504:16;;:2;:16;;;;34496:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34577:16;34585:7;34577;:16::i;:::-;34576:17;34568:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34639:45;34668:1;34672:2;34676:7;34639:20;:45::i;:::-;34714:1;34697:9;:13;34707:2;34697:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34745:2;34726:7;:16;34734:7;34726:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34790:7;34786:2;34765:33;;34782:1;34765:33;;;;;;;;;;;;34424:382;;:::o;15226:387::-;15286:4;15494:12;15561:7;15549:20;15541:28;;15604:1;15597:4;:8;15590:15;;;15226:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8355:845::-;8458:3;8495:5;8489:12;8524:36;8550:9;8524:36;:::i;:::-;8576:89;8658:6;8653:3;8576:89;:::i;:::-;8569:96;;8696:1;8685:9;8681:17;8712:1;8707:137;;;;8858:1;8853:341;;;;8674:520;;8707:137;8791:4;8787:9;8776;8772:25;8767:3;8760:38;8827:6;8822:3;8818:16;8811:23;;8707:137;;8853:341;8920:38;8952:5;8920:38;:::i;:::-;8980:1;8994:154;9008:6;9005:1;9002:13;8994:154;;;9082:7;9076:14;9072:1;9067:3;9063:11;9056:35;9132:1;9123:7;9119:15;9108:26;;9030:4;9027:1;9023:12;9018:17;;8994:154;;;9177:6;9172:3;9168:16;9161:23;;8860:334;;8674:520;;8462:738;;8355:845;;;;:::o;9206:366::-;9348:3;9369:67;9433:2;9428:3;9369:67;:::i;:::-;9362:74;;9445:93;9534:3;9445:93;:::i;:::-;9563:2;9558:3;9554:12;9547:19;;9206:366;;;:::o;9578:::-;9720:3;9741:67;9805:2;9800:3;9741:67;:::i;:::-;9734:74;;9817:93;9906:3;9817:93;:::i;:::-;9935:2;9930:3;9926:12;9919:19;;9578:366;;;:::o;9950:::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:::-;10464:3;10485:67;10549:2;10544:3;10485:67;:::i;:::-;10478:74;;10561:93;10650:3;10561:93;:::i;:::-;10679:2;10674:3;10670:12;10663:19;;10322:366;;;:::o;10694:::-;10836:3;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10933:93;11022:3;10933:93;:::i;:::-;11051:2;11046:3;11042:12;11035:19;;10694:366;;;:::o;11066:::-;11208:3;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11305:93;11394:3;11305:93;:::i;:::-;11423:2;11418:3;11414:12;11407:19;;11066:366;;;:::o;11438:::-;11580:3;11601:67;11665:2;11660:3;11601:67;:::i;:::-;11594:74;;11677:93;11766:3;11677:93;:::i;:::-;11795:2;11790:3;11786:12;11779:19;;11438:366;;;:::o;11810:::-;11952:3;11973:67;12037:2;12032:3;11973:67;:::i;:::-;11966:74;;12049:93;12138:3;12049:93;:::i;:::-;12167:2;12162:3;12158:12;12151:19;;11810:366;;;:::o;12182:::-;12324:3;12345:67;12409:2;12404:3;12345:67;:::i;:::-;12338:74;;12421:93;12510:3;12421:93;:::i;:::-;12539:2;12534:3;12530:12;12523:19;;12182:366;;;:::o;12554:::-;12696:3;12717:67;12781:2;12776:3;12717:67;:::i;:::-;12710:74;;12793:93;12882:3;12793:93;:::i;:::-;12911:2;12906:3;12902:12;12895:19;;12554:366;;;:::o;12926:::-;13068:3;13089:67;13153:2;13148:3;13089:67;:::i;:::-;13082:74;;13165:93;13254:3;13165:93;:::i;:::-;13283:2;13278:3;13274:12;13267:19;;12926:366;;;:::o;13298:::-;13440:3;13461:67;13525:2;13520:3;13461:67;:::i;:::-;13454:74;;13537:93;13626:3;13537:93;:::i;:::-;13655:2;13650:3;13646:12;13639:19;;13298:366;;;:::o;13670:::-;13812:3;13833:67;13897:2;13892:3;13833:67;:::i;:::-;13826:74;;13909:93;13998:3;13909:93;:::i;:::-;14027:2;14022:3;14018:12;14011:19;;13670:366;;;:::o;14042:::-;14184:3;14205:67;14269:2;14264:3;14205:67;:::i;:::-;14198:74;;14281:93;14370:3;14281:93;:::i;:::-;14399:2;14394:3;14390:12;14383:19;;14042:366;;;:::o;14414:::-;14556:3;14577:67;14641:2;14636:3;14577:67;:::i;:::-;14570:74;;14653:93;14742:3;14653:93;:::i;:::-;14771:2;14766:3;14762:12;14755:19;;14414:366;;;:::o;14786:::-;14928:3;14949:67;15013:2;15008:3;14949:67;:::i;:::-;14942:74;;15025:93;15114:3;15025:93;:::i;:::-;15143:2;15138:3;15134:12;15127:19;;14786:366;;;:::o;15158:::-;15300:3;15321:67;15385:2;15380:3;15321:67;:::i;:::-;15314:74;;15397:93;15486:3;15397:93;:::i;:::-;15515:2;15510:3;15506:12;15499:19;;15158:366;;;:::o;15530:::-;15672:3;15693:67;15757:2;15752:3;15693:67;:::i;:::-;15686:74;;15769:93;15858:3;15769:93;:::i;:::-;15887:2;15882:3;15878:12;15871:19;;15530:366;;;:::o;15902:::-;16044:3;16065:67;16129:2;16124:3;16065:67;:::i;:::-;16058:74;;16141:93;16230:3;16141:93;:::i;:::-;16259:2;16254:3;16250:12;16243:19;;15902:366;;;:::o;16274:::-;16416:3;16437:67;16501:2;16496:3;16437:67;:::i;:::-;16430:74;;16513:93;16602:3;16513:93;:::i;:::-;16631:2;16626:3;16622:12;16615:19;;16274:366;;;:::o;16646:::-;16788:3;16809:67;16873:2;16868:3;16809:67;:::i;:::-;16802:74;;16885:93;16974:3;16885:93;:::i;:::-;17003:2;16998:3;16994:12;16987:19;;16646:366;;;:::o;17018:::-;17160:3;17181:67;17245:2;17240:3;17181:67;:::i;:::-;17174:74;;17257:93;17346:3;17257:93;:::i;:::-;17375:2;17370:3;17366:12;17359:19;;17018:366;;;:::o;17390:118::-;17477:24;17495:5;17477:24;:::i;:::-;17472:3;17465:37;17390:118;;:::o;17514:429::-;17691:3;17713:92;17801:3;17792:6;17713:92;:::i;:::-;17706:99;;17822:95;17913:3;17904:6;17822:95;:::i;:::-;17815:102;;17934:3;17927:10;;17514:429;;;;;:::o;17949:222::-;18042:4;18080:2;18069:9;18065:18;18057:26;;18093:71;18161:1;18150:9;18146:17;18137:6;18093:71;:::i;:::-;17949:222;;;;:::o;18177:640::-;18372:4;18410:3;18399:9;18395:19;18387:27;;18424:71;18492:1;18481:9;18477:17;18468:6;18424:71;:::i;:::-;18505:72;18573:2;18562:9;18558:18;18549:6;18505:72;:::i;:::-;18587;18655:2;18644:9;18640:18;18631:6;18587:72;:::i;:::-;18706:9;18700:4;18696:20;18691:2;18680:9;18676:18;18669:48;18734:76;18805:4;18796:6;18734:76;:::i;:::-;18726:84;;18177:640;;;;;;;:::o;18823:210::-;18910:4;18948:2;18937:9;18933:18;18925:26;;18961:65;19023:1;19012:9;19008:17;18999:6;18961:65;:::i;:::-;18823:210;;;;:::o;19039:313::-;19152:4;19190:2;19179:9;19175:18;19167:26;;19239:9;19233:4;19229:20;19225:1;19214:9;19210:17;19203:47;19267:78;19340:4;19331:6;19267:78;:::i;:::-;19259:86;;19039:313;;;;:::o;19358:419::-;19524:4;19562:2;19551:9;19547:18;19539:26;;19611:9;19605:4;19601:20;19597:1;19586:9;19582:17;19575:47;19639:131;19765:4;19639:131;:::i;:::-;19631:139;;19358:419;;;:::o;19783:::-;19949:4;19987:2;19976:9;19972:18;19964:26;;20036:9;20030:4;20026:20;20022:1;20011:9;20007:17;20000:47;20064:131;20190:4;20064:131;:::i;:::-;20056:139;;19783:419;;;:::o;20208:::-;20374:4;20412:2;20401:9;20397:18;20389:26;;20461:9;20455:4;20451:20;20447:1;20436:9;20432:17;20425:47;20489:131;20615:4;20489:131;:::i;:::-;20481:139;;20208:419;;;:::o;20633:::-;20799:4;20837:2;20826:9;20822:18;20814:26;;20886:9;20880:4;20876:20;20872:1;20861:9;20857:17;20850:47;20914:131;21040:4;20914:131;:::i;:::-;20906:139;;20633:419;;;:::o;21058:::-;21224:4;21262:2;21251:9;21247:18;21239:26;;21311:9;21305:4;21301:20;21297:1;21286:9;21282:17;21275:47;21339:131;21465:4;21339:131;:::i;:::-;21331:139;;21058:419;;;:::o;21483:::-;21649:4;21687:2;21676:9;21672:18;21664:26;;21736:9;21730:4;21726:20;21722:1;21711:9;21707:17;21700:47;21764:131;21890:4;21764:131;:::i;:::-;21756:139;;21483:419;;;:::o;21908:::-;22074:4;22112:2;22101:9;22097:18;22089:26;;22161:9;22155:4;22151:20;22147:1;22136:9;22132:17;22125:47;22189:131;22315:4;22189:131;:::i;:::-;22181:139;;21908:419;;;:::o;22333:::-;22499:4;22537:2;22526:9;22522:18;22514:26;;22586:9;22580:4;22576:20;22572:1;22561:9;22557:17;22550:47;22614:131;22740:4;22614:131;:::i;:::-;22606:139;;22333:419;;;:::o;22758:::-;22924:4;22962:2;22951:9;22947:18;22939:26;;23011:9;23005:4;23001:20;22997:1;22986:9;22982:17;22975:47;23039:131;23165:4;23039:131;:::i;:::-;23031:139;;22758:419;;;:::o;23183:::-;23349:4;23387:2;23376:9;23372:18;23364:26;;23436:9;23430:4;23426:20;23422:1;23411:9;23407:17;23400:47;23464:131;23590:4;23464:131;:::i;:::-;23456:139;;23183:419;;;:::o;23608:::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:::-;24199:4;24237:2;24226:9;24222:18;24214:26;;24286:9;24280:4;24276:20;24272:1;24261:9;24257:17;24250:47;24314:131;24440:4;24314:131;:::i;:::-;24306:139;;24033:419;;;:::o;24458:::-;24624:4;24662:2;24651:9;24647:18;24639:26;;24711:9;24705:4;24701:20;24697:1;24686:9;24682:17;24675:47;24739:131;24865:4;24739:131;:::i;:::-;24731:139;;24458:419;;;:::o;24883:::-;25049:4;25087:2;25076:9;25072:18;25064:26;;25136:9;25130:4;25126:20;25122:1;25111:9;25107:17;25100:47;25164:131;25290:4;25164:131;:::i;:::-;25156:139;;24883:419;;;:::o;25308:::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25561:9;25555:4;25551:20;25547:1;25536:9;25532:17;25525:47;25589:131;25715:4;25589:131;:::i;:::-;25581:139;;25308:419;;;:::o;25733:::-;25899:4;25937:2;25926:9;25922:18;25914:26;;25986:9;25980:4;25976:20;25972:1;25961:9;25957:17;25950:47;26014:131;26140:4;26014:131;:::i;:::-;26006:139;;25733:419;;;:::o;26158:::-;26324:4;26362:2;26351:9;26347:18;26339:26;;26411:9;26405:4;26401:20;26397:1;26386:9;26382:17;26375:47;26439:131;26565:4;26439:131;:::i;:::-;26431:139;;26158:419;;;:::o;26583:::-;26749:4;26787:2;26776:9;26772:18;26764:26;;26836:9;26830:4;26826:20;26822:1;26811:9;26807:17;26800:47;26864:131;26990:4;26864:131;:::i;:::-;26856:139;;26583:419;;;:::o;27008:::-;27174:4;27212:2;27201:9;27197:18;27189:26;;27261:9;27255:4;27251:20;27247:1;27236:9;27232:17;27225:47;27289:131;27415:4;27289:131;:::i;:::-;27281:139;;27008:419;;;:::o;27433:::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:::-;28024:4;28062:2;28051:9;28047:18;28039:26;;28111:9;28105:4;28101:20;28097:1;28086:9;28082:17;28075:47;28139:131;28265:4;28139:131;:::i;:::-;28131:139;;27858:419;;;:::o;28283:::-;28449:4;28487:2;28476:9;28472:18;28464:26;;28536:9;28530:4;28526:20;28522:1;28511:9;28507:17;28500:47;28564:131;28690:4;28564:131;:::i;:::-;28556:139;;28283:419;;;:::o;28708:222::-;28801:4;28839:2;28828:9;28824:18;28816:26;;28852:71;28920:1;28909:9;28905:17;28896:6;28852:71;:::i;:::-;28708:222;;;;:::o;28936:129::-;28970:6;28997:20;;:::i;:::-;28987:30;;29026:33;29054:4;29046:6;29026:33;:::i;:::-;28936:129;;;:::o;29071:75::-;29104:6;29137:2;29131:9;29121:19;;29071:75;:::o;29152:307::-;29213:4;29303:18;29295:6;29292:30;29289:56;;;29325:18;;:::i;:::-;29289:56;29363:29;29385:6;29363:29;:::i;:::-;29355:37;;29447:4;29441;29437:15;29429:23;;29152:307;;;:::o;29465:141::-;29514:4;29537:3;29529:11;;29560:3;29557:1;29550:14;29594:4;29591:1;29581:18;29573:26;;29465:141;;;:::o;29612:98::-;29663:6;29697:5;29691:12;29681:22;;29612:98;;;:::o;29716:99::-;29768:6;29802:5;29796:12;29786:22;;29716:99;;;:::o;29821:168::-;29904:11;29938:6;29933:3;29926:19;29978:4;29973:3;29969:14;29954:29;;29821:168;;;;:::o;29995:169::-;30079:11;30113:6;30108:3;30101:19;30153:4;30148:3;30144:14;30129:29;;29995:169;;;;:::o;30170:148::-;30272:11;30309:3;30294:18;;30170:148;;;;:::o;30324:305::-;30364:3;30383:20;30401:1;30383:20;:::i;:::-;30378:25;;30417:20;30435:1;30417:20;:::i;:::-;30412:25;;30571:1;30503:66;30499:74;30496:1;30493:81;30490:107;;;30577:18;;:::i;:::-;30490:107;30621:1;30618;30614:9;30607:16;;30324:305;;;;:::o;30635:185::-;30675:1;30692:20;30710:1;30692:20;:::i;:::-;30687:25;;30726:20;30744:1;30726:20;:::i;:::-;30721:25;;30765:1;30755:35;;30770:18;;:::i;:::-;30755:35;30812:1;30809;30805:9;30800:14;;30635:185;;;;:::o;30826:191::-;30866:4;30886:20;30904:1;30886:20;:::i;:::-;30881:25;;30920:20;30938:1;30920:20;:::i;:::-;30915:25;;30959:1;30956;30953:8;30950:34;;;30964:18;;:::i;:::-;30950:34;31009:1;31006;31002:9;30994:17;;30826:191;;;;:::o;31023:96::-;31060:7;31089:24;31107:5;31089:24;:::i;:::-;31078:35;;31023:96;;;:::o;31125:90::-;31159:7;31202:5;31195:13;31188:21;31177:32;;31125:90;;;:::o;31221:149::-;31257:7;31297:66;31290:5;31286:78;31275:89;;31221:149;;;:::o;31376:126::-;31413:7;31453:42;31446:5;31442:54;31431:65;;31376:126;;;:::o;31508:77::-;31545:7;31574:5;31563:16;;31508:77;;;:::o;31591:154::-;31675:6;31670:3;31665;31652:30;31737:1;31728:6;31723:3;31719:16;31712:27;31591:154;;;:::o;31751:307::-;31819:1;31829:113;31843:6;31840:1;31837:13;31829:113;;;31928:1;31923:3;31919:11;31913:18;31909:1;31904:3;31900:11;31893:39;31865:2;31862:1;31858:10;31853:15;;31829:113;;;31960:6;31957:1;31954:13;31951:101;;;32040:1;32031:6;32026:3;32022:16;32015:27;31951:101;31800:258;31751:307;;;:::o;32064:320::-;32108:6;32145:1;32139:4;32135:12;32125:22;;32192:1;32186:4;32182:12;32213:18;32203:81;;32269:4;32261:6;32257:17;32247:27;;32203:81;32331:2;32323:6;32320:14;32300:18;32297:38;32294:84;;;32350:18;;:::i;:::-;32294:84;32115:269;32064:320;;;:::o;32390:281::-;32473:27;32495:4;32473:27;:::i;:::-;32465:6;32461:40;32603:6;32591:10;32588:22;32567:18;32555:10;32552:34;32549:62;32546:88;;;32614:18;;:::i;:::-;32546:88;32654:10;32650:2;32643:22;32433:238;32390:281;;:::o;32677:233::-;32716:3;32739:24;32757:5;32739:24;:::i;:::-;32730:33;;32785:66;32778:5;32775:77;32772:103;;;32855:18;;:::i;:::-;32772:103;32902:1;32895:5;32891:13;32884:20;;32677:233;;;:::o;32916:176::-;32948:1;32965:20;32983:1;32965:20;:::i;:::-;32960:25;;32999:20;33017:1;32999:20;:::i;:::-;32994:25;;33038:1;33028:35;;33043:18;;:::i;:::-;33028:35;33084:1;33081;33077:9;33072:14;;32916:176;;;;:::o;33098:180::-;33146:77;33143:1;33136:88;33243:4;33240:1;33233:15;33267:4;33264:1;33257:15;33284:180;33332:77;33329:1;33322:88;33429:4;33426:1;33419:15;33453:4;33450:1;33443:15;33470:180;33518:77;33515:1;33508:88;33615:4;33612:1;33605:15;33639:4;33636:1;33629:15;33656:180;33704:77;33701:1;33694:88;33801:4;33798:1;33791:15;33825:4;33822:1;33815:15;33842:180;33890:77;33887:1;33880:88;33987:4;33984:1;33977:15;34011:4;34008:1;34001:15;34028:180;34076:77;34073:1;34066:88;34173:4;34170:1;34163:15;34197:4;34194:1;34187:15;34214:117;34323:1;34320;34313:12;34337:117;34446:1;34443;34436:12;34460:117;34569:1;34566;34559:12;34583:117;34692:1;34689;34682:12;34706:117;34815:1;34812;34805:12;34829:117;34938:1;34935;34928:12;34952:102;34993:6;35044:2;35040:7;35035:2;35028:5;35024:14;35020:28;35010:38;;34952:102;;;:::o;35060:230::-;35200:34;35196:1;35188:6;35184:14;35177:58;35269:13;35264:2;35256:6;35252:15;35245:38;35060:230;:::o;35296:237::-;35436:34;35432:1;35424:6;35420:14;35413:58;35505:20;35500:2;35492:6;35488:15;35481:45;35296:237;:::o;35539:225::-;35679:34;35675:1;35667:6;35663:14;35656:58;35748:8;35743:2;35735:6;35731:15;35724:33;35539:225;:::o;35770:178::-;35910:30;35906:1;35898:6;35894:14;35887:54;35770:178;:::o;35954:223::-;36094:34;36090:1;36082:6;36078:14;36071:58;36163:6;36158:2;36150:6;36146:15;36139:31;35954:223;:::o;36183:175::-;36323:27;36319:1;36311:6;36307:14;36300:51;36183:175;:::o;36364:162::-;36504:14;36500:1;36492:6;36488:14;36481:38;36364:162;:::o;36532:161::-;36672:13;36668:1;36660:6;36656:14;36649:37;36532:161;:::o;36699:231::-;36839:34;36835:1;36827:6;36823:14;36816:58;36908:14;36903:2;36895:6;36891:15;36884:39;36699:231;:::o;36936:243::-;37076:34;37072:1;37064:6;37060:14;37053:58;37145:26;37140:2;37132:6;37128:15;37121:51;36936:243;:::o;37185:229::-;37325:34;37321:1;37313:6;37309:14;37302:58;37394:12;37389:2;37381:6;37377:15;37370:37;37185:229;:::o;37420:228::-;37560:34;37556:1;37548:6;37544:14;37537:58;37629:11;37624:2;37616:6;37612:15;37605:36;37420:228;:::o;37654:182::-;37794:34;37790:1;37782:6;37778:14;37771:58;37654:182;:::o;37842:231::-;37982:34;37978:1;37970:6;37966:14;37959:58;38051:14;38046:2;38038:6;38034:15;38027:39;37842:231;:::o;38079:182::-;38219:34;38215:1;38207:6;38203:14;38196:58;38079:182;:::o;38267:228::-;38407:34;38403:1;38395:6;38391:14;38384:58;38476:11;38471:2;38463:6;38459:15;38452:36;38267:228;:::o;38501:223::-;38641:34;38637:1;38629:6;38625:14;38618:58;38710:6;38705:2;38697:6;38693:15;38686:31;38501:223;:::o;38730:181::-;38870:33;38866:1;38858:6;38854:14;38847:57;38730:181;:::o;38917:220::-;39057:34;39053:1;39045:6;39041:14;39034:58;39126:3;39121:2;39113:6;39109:15;39102:28;38917:220;:::o;39143:236::-;39283:34;39279:1;39271:6;39267:14;39260:58;39352:19;39347:2;39339:6;39335:15;39328:44;39143:236;:::o;39385:231::-;39525:34;39521:1;39513:6;39509:14;39502:58;39594:14;39589:2;39581:6;39577:15;39570:39;39385:231;:::o;39622:166::-;39762:18;39758:1;39750:6;39746:14;39739:42;39622:166;:::o;39794:122::-;39867:24;39885:5;39867:24;:::i;:::-;39860:5;39857:35;39847:63;;39906:1;39903;39896:12;39847:63;39794:122;:::o;39922:116::-;39992:21;40007:5;39992:21;:::i;:::-;39985:5;39982:32;39972:60;;40028:1;40025;40018:12;39972:60;39922:116;:::o;40044:120::-;40116:23;40133:5;40116:23;:::i;:::-;40109:5;40106:34;40096:62;;40154:1;40151;40144:12;40096:62;40044:120;:::o;40170:122::-;40243:24;40261:5;40243:24;:::i;:::-;40236:5;40233:35;40223:63;;40282:1;40279;40272:12;40223:63;40170:122;:::o

Swarm Source

ipfs://75f8dfcd9ad7d86f096afa1f2c1057b2c6008430e3ec8d427e9aa8f47696a7d2
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.