ETH Price: $2,913.68 (-3.81%)
Gas: 1 Gwei

Token

STARLIGHTS (SXS)
 

Overview

Max Total Supply

753 SXS

Holders

355

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lirioo.eth
Balance
2 SXS
0x5b7ed7011fc84f2cb769201617aa414f26f057eb
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Starlight

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _nextTokenId;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _nextTokenId = 1;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _nextTokenId;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _nextTokenId;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

contract Starlight is ERC721A, Ownable {
  using Strings for uint256;
  address public contractOwner;
  bool public pausedTeamMint = false;
  uint256 public presalePrice = 0.09 ether;
  uint256 public mintPrice = 0.10 ether;
  uint256 public supply = 5000;
  string private baseURI   = "ipfs://QmSeJqXN7dojqeksixAcfpSnEZsPq6V7T6ZnaLhBBHCA51/";
  bytes32 public merkleRoot;
  uint8 public phase = 0;
  uint8 public maxBuy = 20;
  uint8 public whitelistMax = 3;

    
  mapping(address => bytes1) public manualWhitelist;
  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("STARLIGHTS", "SXS") {
    contractOwner = msg.sender;
  }

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

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

  function mintForAddress(address[] calldata _addresses, uint256 quantity) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], quantity);
    }
  }

  //Team Mint 
   function teamMint(uint8 quantity) external {
    require(phase != 0, "Sale has not started");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");

    require(manualWhitelist[msg.sender] >= 0x01, "No Team Mints!");
 
    manualWhitelist[msg.sender] = bytes1(uint8(manualWhitelist[msg.sender]) - quantity);

    _safeMint(msg.sender, quantity);

    }

  function mint(uint256 quantity) external payable {
    require(phase >= 2, "Sale has not started");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + quantity <= maxBuy, "Buy limit reached");
    require(msg.value >= mintPrice * quantity, "Insufficient funds");

    _safeMint(msg.sender, quantity);
  }

  function whitelistMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify whitelist requirements
    require(phase == 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= whitelistMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!");

    walletBuys[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function getBaseURI() public view returns (string memory) {
    return baseURI;
  }

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

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

  function setMintPrice (uint256 _newPrice) external onlyOwner {
    mintPrice = _newPrice;
  }

  function setPresalePrice (uint256 _newPrice) external onlyOwner {
    presalePrice = _newPrice;
  }

  function setTeamPaused (bool _pauseState) external onlyOwner {
    pausedTeamMint = _pauseState;
  }

  function setPhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

  function setMaxBuy(uint8 _maxBuy) external onlyOwner {
      maxBuy = _maxBuy;
  }

  function updateSupply(uint256 _supply) external onlyOwner {
      supply = _supply;
  }

  function changeRootHash(bytes32 _rootHash) external onlyOwner {
    merkleRoot = _rootHash;
  }

  function getContractBalance () external view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  function whitelist(address _user, bytes1 _status) external onlyOwner {
        manualWhitelist[_user] = _status;
    }

  function whitelistAddress(address[] memory _user, bytes1 _status) external onlyOwner {
      for (uint256 i = 0; i < _user.length; i++) {
          manualWhitelist[_user[i]] = _status;
      }
  }

  function changeTreasury(address payable _newWallet) external onlyOwner {
    contractOwner = _newWallet;
  }

  function withdraw() external payable onlyOwner {
    (bool os, ) = payable(contractOwner).call{value: address(this).balance}("");
    require(os);
  }

}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"manualWhitelist","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pausedTeamMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pauseState","type":"bool"}],"name":"setTeamPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"teamMint","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":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes1","name":"_status","type":"bytes1"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"bytes1","name":"_status","type":"bytes1"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6008805460ff60a01b1916905567013fbe85edc9000060095567016345785d8a0000600a55611388600b5560e0604052603660808181529062002fcb60a03980516200005491600c9160209091019062000154565b50600e805462ffffff1916620314001790553480156200007357600080fd5b50604080518082018252600a815269535441524c494748545360b01b60208083019182528351808501909452600384526253585360e81b908401528151919291620000c19160019162000154565b508051620000d790600290602084019062000154565b5050600160005550620000ea3362000102565b600880546001600160a01b0319163317905562000237565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016290620001fa565b90600052602060002090601f016020900481019282620001865760008555620001d1565b82601f10620001a157805160ff1916838001178555620001d1565b82800160010185558215620001d1579182015b82811115620001d1578251825591602001919060010190620001b4565b50620001df929150620001e3565b5090565b5b80821115620001df5760008155600101620001e4565b600181811c908216806200020f57607f821691505b602082108114156200023157634e487b7160e01b600052602260045260246000fd5b50919050565b612d8480620002476000396000f3fe6080604052600436106102925760003560e01c80637b6717801161015a578063ce606ee0116100c1578063e985e9c51161007a578063e985e9c5146107c8578063e98742f114610811578063ed5b729e14610831578063ee5e74e614610851578063f2fde38b14610871578063f4a0a5281461089157600080fd5b8063ce606ee0146106cf578063d9e9c978146106ef578063dbdf2dc014610738578063dbe17a5814610758578063dea96c9814610778578063dfcf15b0146107a857600080fd5b8063b14f2a3911610113578063b14f2a3914610615578063b1c9fe6e14610635578063b88d4fde1461064f578063bc629bf51461066f578063c03afb591461068f578063c87b56dd146106af57600080fd5b80637b6717801461056e57806380bc89651461058e5780638da5cb5b146105af57806395d89b41146105cd578063a0712d68146105e2578063a22cb465146105f557600080fd5b806342842e0e116101fe5780636bd08049116101b75780636bd08049146104be5780636f9fb98a146104de57806370a08231146104f357806370db69d614610513578063714c539814610544578063715018a61461055957600080fd5b806342842e0e146104155780634f6ccce71461043557806355f804b31461045557806358381669146104755780636352211e146104885780636817c76c146104a857600080fd5b806318160ddd1161025057806318160ddd1461038257806323b872dd146103975780632eb4a7ab146103b75780632f745c59146103cd5780633549345e146103ed5780633ccfd60b1461040d57600080fd5b80620e7fa81461029757806301ffc9a7146102c0578063047fc9aa146102f057806306fdde0314610306578063081812fc14610328578063095ea7b314610360575b600080fd5b3480156102a357600080fd5b506102ad60095481565b6040519081526020015b60405180910390f35b3480156102cc57600080fd5b506102e06102db3660046127d8565b6108b1565b60405190151581526020016102b7565b3480156102fc57600080fd5b506102ad600b5481565b34801561031257600080fd5b5061031b61091e565b6040516102b79190612a07565b34801561033457600080fd5b506103486103433660046127bf565b6109b0565b6040516001600160a01b0390911681526020016102b7565b34801561036c57600080fd5b5061038061037b366004612663565b610a40565b005b34801561038e57600080fd5b506102ad610b58565b3480156103a357600080fd5b506103806103b2366004612542565b610b6e565b3480156103c357600080fd5b506102ad600d5481565b3480156103d957600080fd5b506102ad6103e8366004612663565b610b79565b3480156103f957600080fd5b506103806104083660046127bf565b610cf0565b610380610d1f565b34801561042157600080fd5b50610380610430366004612542565b610dac565b34801561044157600080fd5b506102ad6104503660046127bf565b610dc7565b34801561046157600080fd5b50610380610470366004612812565b610e2f565b610380610483366004612875565b610e70565b34801561049457600080fd5b506103486104a33660046127bf565b611076565b3480156104b457600080fd5b506102ad600a5481565b3480156104ca57600080fd5b506103806104d93660046127bf565b611088565b3480156104ea57600080fd5b506102ad6110b7565b3480156104ff57600080fd5b506102ad61050e3660046124e5565b6110e9565b34801561051f57600080fd5b50600e5461053290610100900460ff1681565b60405160ff90911681526020016102b7565b34801561055057600080fd5b5061031b61117a565b34801561056557600080fd5b50610380611189565b34801561057a57600080fd5b5061038061058936600461285a565b6111bf565b34801561059a57600080fd5b506008546102e090600160a01b900460ff1681565b3480156105bb57600080fd5b506007546001600160a01b0316610348565b3480156105d957600080fd5b5061031b6112c2565b6103806105f03660046127bf565b6112d1565b34801561060157600080fd5b50610380610610366004612602565b6113f5565b34801561062157600080fd5b506103806106303660046124e5565b6114ba565b34801561064157600080fd5b50600e546105329060ff1681565b34801561065b57600080fd5b5061038061066a366004612583565b611506565b34801561067b57600080fd5b50600e546105329062010000900460ff1681565b34801561069b57600080fd5b506103806106aa36600461285a565b611539565b3480156106bb57600080fd5b5061031b6106ca3660046127bf565b611579565b3480156106db57600080fd5b50600854610348906001600160a01b031681565b3480156106fb57600080fd5b5061071f61070a3660046124e5565b600f6020526000908152604090205460f81b81565b6040516001600160f81b031990911681526020016102b7565b34801561074457600080fd5b5061038061075336600461285a565b611646565b34801561076457600080fd5b506103806107733660046127bf565b61168c565b34801561078457600080fd5b506105326107933660046124e5565b60106020526000908152604090205460ff1681565b3480156107b457600080fd5b506103806107c336600461268f565b6116bb565b3480156107d457600080fd5b506102e06107e3366004612509565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081d57600080fd5b5061038061082c3660046127a4565b611732565b34801561083d57600080fd5b5061038061084c366004612637565b61177a565b34801561085d57600080fd5b5061038061086c3660046126da565b6117d2565b34801561087d57600080fd5b5061038061088c3660046124e5565b611872565b34801561089d57600080fd5b506103806108ac3660046127bf565b61190a565b60006001600160e01b031982166380ac58cd60e01b14806108e257506001600160e01b03198216635b5e139f60e01b145b806108fd57506001600160e01b0319821663780e9d6360e01b145b8061091857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461092d90612c61565b80601f016020809104026020016040519081016040528092919081815260200182805461095990612c61565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b60006109bd826000541190565b610a245760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a4b82611076565b9050806001600160a01b0316836001600160a01b03161415610aba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a1b565b336001600160a01b0382161480610ad65750610ad681336107e3565b610b485760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a1b565b610b53838383611939565b505050565b60006001600054610b699190612be4565b905090565b610b53838383611995565b6000610b84836110e9565b8210610bdd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a1b565b6000610be7610b58565b905060008060005b83811015610c90576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c4157805192505b876001600160a01b0316836001600160a01b03161415610c7d5786841415610c6f5750935061091892505050565b83610c7981612c9c565b9450505b5080610c8881612c9c565b915050610bef565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a1b565b6007546001600160a01b03163314610d1a5760405162461bcd60e51b8152600401610a1b90612a63565b600955565b6007546001600160a01b03163314610d495760405162461bcd60e51b8152600401610a1b90612a63565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d96576040519150601f19603f3d011682016040523d82523d6000602084013e610d9b565b606091505b5050905080610da957600080fd5b50565b610b5383838360405180602001604052806000815250611506565b6000610dd1610b58565b8210610e2b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a1b565b5090565b6007546001600160a01b03163314610e595760405162461bcd60e51b8152600401610a1b90612a63565b8051610e6c90600c906020840190612375565b5050565b600e5460ff16600114610e955760405162461bcd60e51b8152600401610a1b90612aeb565b600e543360009081526010602052604090205460ff62010000909204821691610ec091869116612b8c565b60ff161115610f1d5760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b6064820152608401610a1b565b8260ff16600954610f2e9190612bc5565b341015610f725760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a1b565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fec83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cda565b6110295760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a1b565b336000908152601060205260408120805486929061104b90849060ff16612b8c565b92506101000a81548160ff021916908360ff160217905550611070338560ff16611cf0565b50505050565b600061108182611d0a565b5192915050565b6007546001600160a01b031633146110b25760405162461bcd60e51b8152600401610a1b90612a63565b600b55565b6007546000906001600160a01b031633146110e45760405162461bcd60e51b8152600401610a1b90612a63565b504790565b60006001600160a01b0382166111555760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a1b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600c805461092d90612c61565b6007546001600160a01b031633146111b35760405162461bcd60e51b8152600401610a1b90612a63565b6111bd6000611de9565b565b600e5460ff166111e15760405162461bcd60e51b8152600401610a1b90612aeb565b600b548160ff166111f0610b58565b6111fa9190612b74565b11156112185760405162461bcd60e51b8152600401610a1b90612a1a565b336000908152600f6020526040902054600160f81b60f89190911b6001600160f81b031916101561127c5760405162461bcd60e51b815260206004820152600e60248201526d4e6f205465616d204d696e74732160901b6044820152606401610a1b565b336000908152600f602052604090205461129a90829060ff16612bfb565b336000818152600f60205260409020805460ff191660ff938416179055610da9918316611cf0565b60606002805461092d90612c61565b600e54600260ff90911610156112f95760405162461bcd60e51b8152600401610a1b90612aeb565b600b5481611305610b58565b61130f9190612b74565b111561132d5760405162461bcd60e51b8152600401610a1b90612a1a565b600e543360009081526010602052604090205460ff61010090920482169161135791849116612b74565b11156113995760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610a1b565b80600a546113a79190612bc5565b3410156113eb5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a1b565b610da93382611cf0565b6001600160a01b03821633141561144e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a1b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114e45760405162461bcd60e51b8152600401610a1b90612a63565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b611511848484611995565b61151d84848484611e3b565b6110705760405162461bcd60e51b8152600401610a1b90612a98565b6007546001600160a01b031633146115635760405162461bcd60e51b8152600401610a1b90612a63565b600e805460ff191660ff92909216919091179055565b6060611586826000541190565b6115ea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a1b565b6000600c80546115f990612c61565b9050116116155760405180602001604052806000815250610918565b600c61162083611f49565b60405160200161163192919061290f565b60405160208183030381529060405292915050565b6007546001600160a01b031633146116705760405162461bcd60e51b8152600401610a1b90612a63565b600e805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146116b65760405162461bcd60e51b8152600401610a1b90612a63565b600d55565b6007546001600160a01b031633146116e55760405162461bcd60e51b8152600401610a1b90612a63565b60005b828110156110705761172084848381811061170557611705612cf7565b905060200201602081019061171a91906124e5565b83611cf0565b8061172a81612c9c565b9150506116e8565b6007546001600160a01b0316331461175c5760405162461bcd60e51b8152600401610a1b90612a63565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6007546001600160a01b031633146117a45760405162461bcd60e51b8152600401610a1b90612a63565b6001600160a01b03919091166000908152600f60205260409020805460ff191660f89290921c919091179055565b6007546001600160a01b031633146117fc5760405162461bcd60e51b8152600401610a1b90612a63565b60005b8251811015610b535781600f600085848151811061181f5761181f612cf7565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360f81c0217905550808061186a90612c9c565b9150506117ff565b6007546001600160a01b0316331461189c5760405162461bcd60e51b8152600401610a1b90612a63565b6001600160a01b0381166119015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1b565b610da981611de9565b6007546001600160a01b031633146119345760405162461bcd60e51b8152600401610a1b90612a63565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119a082611d0a565b80519091506000906001600160a01b0316336001600160a01b031614806119d75750336119cc846109b0565b6001600160a01b0316145b806119e9575081516119e990336107e3565b905080611a535760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a1b565b846001600160a01b031682600001516001600160a01b031614611ac75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a1b565b6001600160a01b038416611b2b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1b565b611b3b6000848460000151611939565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611bff908590612b74565b6000818152600360205260409020549091506001600160a01b0316611c9057611c29816000541190565b15611c905760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600082611ce78584612046565b14949350505050565b610e6c8282604051806020016040528060008152506120ba565b6040805180820190915260008082526020820152611d29826000541190565b611d885760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a1b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611dd6579392505050565b5080611de181612c4a565b915050611d8a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611f3d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e7f9033908990889088906004016129ca565b602060405180830381600087803b158015611e9957600080fd5b505af1925050508015611ec9575060408051601f3d908101601f19168201909252611ec6918101906127f5565b60015b611f23573d808015611ef7576040519150601f19603f3d011682016040523d82523d6000602084013e611efc565b606091505b508051611f1b5760405162461bcd60e51b8152600401610a1b90612a98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f41565b5060015b949350505050565b606081611f6d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f975780611f8181612c9c565b9150611f909050600a83612bb1565b9150611f71565b6000816001600160401b03811115611fb157611fb1612d0d565b6040519080825280601f01601f191660200182016040528015611fdb576020820181803683370190505b5090505b8415611f4157611ff0600183612be4565b9150611ffd600a86612cb7565b612008906030612b74565b60f81b81838151811061201d5761201d612cf7565b60200101906001600160f81b031916908160001a90535061203f600a86612bb1565b9450611fdf565b600081815b84518110156120b257600085828151811061206857612068612cf7565b6020026020010151905080831161208e576000838152602082905260409020925061209f565b600081815260208490526040902092505b50806120aa81612c9c565b91505061204b565b509392505050565b6000546001600160a01b03841661211d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a1b565b612128816000541190565b156121755760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a1b565b600083116121d15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a1b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061222d908790612b49565b6001600160801b0316815260200185836020015161224b9190612b49565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561236a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461232e6000888488611e3b565b61234a5760405162461bcd60e51b8152600401610a1b90612a98565b8161235481612c9c565b925050808061236290612c9c565b9150506122e1565b506000819055611cd2565b82805461238190612c61565b90600052602060002090601f0160209004810192826123a357600085556123e9565b82601f106123bc57805160ff19168380011785556123e9565b828001600101855582156123e9579182015b828111156123e95782518255916020019190600101906123ce565b50610e2b9291505b80821115610e2b57600081556001016123f1565b60006001600160401b0383111561241e5761241e612d0d565b612431601f8401601f1916602001612b19565b905082815283838301111561244557600080fd5b828260208301376000602084830101529392505050565b60008083601f84011261246e57600080fd5b5081356001600160401b0381111561248557600080fd5b6020830191508360208260051b85010111156124a057600080fd5b9250929050565b803580151581146124b757600080fd5b919050565b80356001600160f81b0319811681146124b757600080fd5b803560ff811681146124b757600080fd5b6000602082840312156124f757600080fd5b813561250281612d23565b9392505050565b6000806040838503121561251c57600080fd5b823561252781612d23565b9150602083013561253781612d23565b809150509250929050565b60008060006060848603121561255757600080fd5b833561256281612d23565b9250602084013561257281612d23565b929592945050506040919091013590565b6000806000806080858703121561259957600080fd5b84356125a481612d23565b935060208501356125b481612d23565b92506040850135915060608501356001600160401b038111156125d657600080fd5b8501601f810187136125e757600080fd5b6125f687823560208401612405565b91505092959194509250565b6000806040838503121561261557600080fd5b823561262081612d23565b915061262e602084016124a7565b90509250929050565b6000806040838503121561264a57600080fd5b823561265581612d23565b915061262e602084016124bc565b6000806040838503121561267657600080fd5b823561268181612d23565b946020939093013593505050565b6000806000604084860312156126a457600080fd5b83356001600160401b038111156126ba57600080fd5b6126c68682870161245c565b909790965060209590950135949350505050565b600080604083850312156126ed57600080fd5b82356001600160401b038082111561270457600080fd5b818501915085601f83011261271857600080fd5b813560208282111561272c5761272c612d0d565b8160051b925061273d818401612b19565b8281528181019085830185870184018b101561275857600080fd5b600096505b84871015612787578035955061277286612d23565b8583526001969096019591830191830161275d565b50965061279790508782016124bc565b9450505050509250929050565b6000602082840312156127b657600080fd5b612502826124a7565b6000602082840312156127d157600080fd5b5035919050565b6000602082840312156127ea57600080fd5b813561250281612d38565b60006020828403121561280757600080fd5b815161250281612d38565b60006020828403121561282457600080fd5b81356001600160401b0381111561283a57600080fd5b8201601f8101841361284b57600080fd5b611f4184823560208401612405565b60006020828403121561286c57600080fd5b612502826124d4565b60008060006040848603121561288a57600080fd5b612893846124d4565b925060208401356001600160401b038111156128ae57600080fd5b6128ba8682870161245c565b9497909650939450505050565b600081518084526128df816020860160208601612c1e565b601f01601f19169290920160200192915050565b60008151612905818560208601612c1e565b9290920192915050565b600080845481600182811c91508083168061292b57607f831692505b602080841082141561294b57634e487b7160e01b86526022600452602486fd5b81801561295f57600181146129705761299d565b60ff1986168952848901965061299d565b60008b81526020902060005b868110156129955781548b82015290850190830161297c565b505084890196505b5050505050506129c16129b082866128f3565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129fd908301846128c7565b9695505050505050565b60208152600061250260208301846128c7565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612b4157612b41612d0d565b604052919050565b60006001600160801b03808316818516808303821115612b6b57612b6b612ccb565b01949350505050565b60008219821115612b8757612b87612ccb565b500190565b600060ff821660ff84168060ff03821115612ba957612ba9612ccb565b019392505050565b600082612bc057612bc0612ce1565b500490565b6000816000190483118215151615612bdf57612bdf612ccb565b500290565b600082821015612bf657612bf6612ccb565b500390565b600060ff821660ff841680821015612c1557612c15612ccb565b90039392505050565b60005b83811015612c39578181015183820152602001612c21565b838111156110705750506000910152565b600081612c5957612c59612ccb565b506000190190565b600181811c90821680612c7557607f821691505b60208210811415612c9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cb057612cb0612ccb565b5060010190565b600082612cc657612cc6612ce1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610da957600080fd5b6001600160e01b031981168114610da957600080fdfea264697066735822122000ef2114b7e52d646257b38b58bb9a1459a209fcae5520a145c0999fe888d9c164736f6c63430008070033697066733a2f2f516d53654a71584e37646f6a71656b73697841636670536e455a73507136563754365a6e614c68424248434135312f

Deployed Bytecode

0x6080604052600436106102925760003560e01c80637b6717801161015a578063ce606ee0116100c1578063e985e9c51161007a578063e985e9c5146107c8578063e98742f114610811578063ed5b729e14610831578063ee5e74e614610851578063f2fde38b14610871578063f4a0a5281461089157600080fd5b8063ce606ee0146106cf578063d9e9c978146106ef578063dbdf2dc014610738578063dbe17a5814610758578063dea96c9814610778578063dfcf15b0146107a857600080fd5b8063b14f2a3911610113578063b14f2a3914610615578063b1c9fe6e14610635578063b88d4fde1461064f578063bc629bf51461066f578063c03afb591461068f578063c87b56dd146106af57600080fd5b80637b6717801461056e57806380bc89651461058e5780638da5cb5b146105af57806395d89b41146105cd578063a0712d68146105e2578063a22cb465146105f557600080fd5b806342842e0e116101fe5780636bd08049116101b75780636bd08049146104be5780636f9fb98a146104de57806370a08231146104f357806370db69d614610513578063714c539814610544578063715018a61461055957600080fd5b806342842e0e146104155780634f6ccce71461043557806355f804b31461045557806358381669146104755780636352211e146104885780636817c76c146104a857600080fd5b806318160ddd1161025057806318160ddd1461038257806323b872dd146103975780632eb4a7ab146103b75780632f745c59146103cd5780633549345e146103ed5780633ccfd60b1461040d57600080fd5b80620e7fa81461029757806301ffc9a7146102c0578063047fc9aa146102f057806306fdde0314610306578063081812fc14610328578063095ea7b314610360575b600080fd5b3480156102a357600080fd5b506102ad60095481565b6040519081526020015b60405180910390f35b3480156102cc57600080fd5b506102e06102db3660046127d8565b6108b1565b60405190151581526020016102b7565b3480156102fc57600080fd5b506102ad600b5481565b34801561031257600080fd5b5061031b61091e565b6040516102b79190612a07565b34801561033457600080fd5b506103486103433660046127bf565b6109b0565b6040516001600160a01b0390911681526020016102b7565b34801561036c57600080fd5b5061038061037b366004612663565b610a40565b005b34801561038e57600080fd5b506102ad610b58565b3480156103a357600080fd5b506103806103b2366004612542565b610b6e565b3480156103c357600080fd5b506102ad600d5481565b3480156103d957600080fd5b506102ad6103e8366004612663565b610b79565b3480156103f957600080fd5b506103806104083660046127bf565b610cf0565b610380610d1f565b34801561042157600080fd5b50610380610430366004612542565b610dac565b34801561044157600080fd5b506102ad6104503660046127bf565b610dc7565b34801561046157600080fd5b50610380610470366004612812565b610e2f565b610380610483366004612875565b610e70565b34801561049457600080fd5b506103486104a33660046127bf565b611076565b3480156104b457600080fd5b506102ad600a5481565b3480156104ca57600080fd5b506103806104d93660046127bf565b611088565b3480156104ea57600080fd5b506102ad6110b7565b3480156104ff57600080fd5b506102ad61050e3660046124e5565b6110e9565b34801561051f57600080fd5b50600e5461053290610100900460ff1681565b60405160ff90911681526020016102b7565b34801561055057600080fd5b5061031b61117a565b34801561056557600080fd5b50610380611189565b34801561057a57600080fd5b5061038061058936600461285a565b6111bf565b34801561059a57600080fd5b506008546102e090600160a01b900460ff1681565b3480156105bb57600080fd5b506007546001600160a01b0316610348565b3480156105d957600080fd5b5061031b6112c2565b6103806105f03660046127bf565b6112d1565b34801561060157600080fd5b50610380610610366004612602565b6113f5565b34801561062157600080fd5b506103806106303660046124e5565b6114ba565b34801561064157600080fd5b50600e546105329060ff1681565b34801561065b57600080fd5b5061038061066a366004612583565b611506565b34801561067b57600080fd5b50600e546105329062010000900460ff1681565b34801561069b57600080fd5b506103806106aa36600461285a565b611539565b3480156106bb57600080fd5b5061031b6106ca3660046127bf565b611579565b3480156106db57600080fd5b50600854610348906001600160a01b031681565b3480156106fb57600080fd5b5061071f61070a3660046124e5565b600f6020526000908152604090205460f81b81565b6040516001600160f81b031990911681526020016102b7565b34801561074457600080fd5b5061038061075336600461285a565b611646565b34801561076457600080fd5b506103806107733660046127bf565b61168c565b34801561078457600080fd5b506105326107933660046124e5565b60106020526000908152604090205460ff1681565b3480156107b457600080fd5b506103806107c336600461268f565b6116bb565b3480156107d457600080fd5b506102e06107e3366004612509565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081d57600080fd5b5061038061082c3660046127a4565b611732565b34801561083d57600080fd5b5061038061084c366004612637565b61177a565b34801561085d57600080fd5b5061038061086c3660046126da565b6117d2565b34801561087d57600080fd5b5061038061088c3660046124e5565b611872565b34801561089d57600080fd5b506103806108ac3660046127bf565b61190a565b60006001600160e01b031982166380ac58cd60e01b14806108e257506001600160e01b03198216635b5e139f60e01b145b806108fd57506001600160e01b0319821663780e9d6360e01b145b8061091857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461092d90612c61565b80601f016020809104026020016040519081016040528092919081815260200182805461095990612c61565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b60006109bd826000541190565b610a245760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a4b82611076565b9050806001600160a01b0316836001600160a01b03161415610aba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a1b565b336001600160a01b0382161480610ad65750610ad681336107e3565b610b485760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a1b565b610b53838383611939565b505050565b60006001600054610b699190612be4565b905090565b610b53838383611995565b6000610b84836110e9565b8210610bdd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a1b565b6000610be7610b58565b905060008060005b83811015610c90576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c4157805192505b876001600160a01b0316836001600160a01b03161415610c7d5786841415610c6f5750935061091892505050565b83610c7981612c9c565b9450505b5080610c8881612c9c565b915050610bef565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a1b565b6007546001600160a01b03163314610d1a5760405162461bcd60e51b8152600401610a1b90612a63565b600955565b6007546001600160a01b03163314610d495760405162461bcd60e51b8152600401610a1b90612a63565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d96576040519150601f19603f3d011682016040523d82523d6000602084013e610d9b565b606091505b5050905080610da957600080fd5b50565b610b5383838360405180602001604052806000815250611506565b6000610dd1610b58565b8210610e2b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a1b565b5090565b6007546001600160a01b03163314610e595760405162461bcd60e51b8152600401610a1b90612a63565b8051610e6c90600c906020840190612375565b5050565b600e5460ff16600114610e955760405162461bcd60e51b8152600401610a1b90612aeb565b600e543360009081526010602052604090205460ff62010000909204821691610ec091869116612b8c565b60ff161115610f1d5760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b6064820152608401610a1b565b8260ff16600954610f2e9190612bc5565b341015610f725760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a1b565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fec83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cda565b6110295760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a1b565b336000908152601060205260408120805486929061104b90849060ff16612b8c565b92506101000a81548160ff021916908360ff160217905550611070338560ff16611cf0565b50505050565b600061108182611d0a565b5192915050565b6007546001600160a01b031633146110b25760405162461bcd60e51b8152600401610a1b90612a63565b600b55565b6007546000906001600160a01b031633146110e45760405162461bcd60e51b8152600401610a1b90612a63565b504790565b60006001600160a01b0382166111555760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a1b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600c805461092d90612c61565b6007546001600160a01b031633146111b35760405162461bcd60e51b8152600401610a1b90612a63565b6111bd6000611de9565b565b600e5460ff166111e15760405162461bcd60e51b8152600401610a1b90612aeb565b600b548160ff166111f0610b58565b6111fa9190612b74565b11156112185760405162461bcd60e51b8152600401610a1b90612a1a565b336000908152600f6020526040902054600160f81b60f89190911b6001600160f81b031916101561127c5760405162461bcd60e51b815260206004820152600e60248201526d4e6f205465616d204d696e74732160901b6044820152606401610a1b565b336000908152600f602052604090205461129a90829060ff16612bfb565b336000818152600f60205260409020805460ff191660ff938416179055610da9918316611cf0565b60606002805461092d90612c61565b600e54600260ff90911610156112f95760405162461bcd60e51b8152600401610a1b90612aeb565b600b5481611305610b58565b61130f9190612b74565b111561132d5760405162461bcd60e51b8152600401610a1b90612a1a565b600e543360009081526010602052604090205460ff61010090920482169161135791849116612b74565b11156113995760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610a1b565b80600a546113a79190612bc5565b3410156113eb5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a1b565b610da93382611cf0565b6001600160a01b03821633141561144e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a1b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114e45760405162461bcd60e51b8152600401610a1b90612a63565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b611511848484611995565b61151d84848484611e3b565b6110705760405162461bcd60e51b8152600401610a1b90612a98565b6007546001600160a01b031633146115635760405162461bcd60e51b8152600401610a1b90612a63565b600e805460ff191660ff92909216919091179055565b6060611586826000541190565b6115ea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a1b565b6000600c80546115f990612c61565b9050116116155760405180602001604052806000815250610918565b600c61162083611f49565b60405160200161163192919061290f565b60405160208183030381529060405292915050565b6007546001600160a01b031633146116705760405162461bcd60e51b8152600401610a1b90612a63565b600e805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146116b65760405162461bcd60e51b8152600401610a1b90612a63565b600d55565b6007546001600160a01b031633146116e55760405162461bcd60e51b8152600401610a1b90612a63565b60005b828110156110705761172084848381811061170557611705612cf7565b905060200201602081019061171a91906124e5565b83611cf0565b8061172a81612c9c565b9150506116e8565b6007546001600160a01b0316331461175c5760405162461bcd60e51b8152600401610a1b90612a63565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6007546001600160a01b031633146117a45760405162461bcd60e51b8152600401610a1b90612a63565b6001600160a01b03919091166000908152600f60205260409020805460ff191660f89290921c919091179055565b6007546001600160a01b031633146117fc5760405162461bcd60e51b8152600401610a1b90612a63565b60005b8251811015610b535781600f600085848151811061181f5761181f612cf7565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360f81c0217905550808061186a90612c9c565b9150506117ff565b6007546001600160a01b0316331461189c5760405162461bcd60e51b8152600401610a1b90612a63565b6001600160a01b0381166119015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1b565b610da981611de9565b6007546001600160a01b031633146119345760405162461bcd60e51b8152600401610a1b90612a63565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119a082611d0a565b80519091506000906001600160a01b0316336001600160a01b031614806119d75750336119cc846109b0565b6001600160a01b0316145b806119e9575081516119e990336107e3565b905080611a535760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a1b565b846001600160a01b031682600001516001600160a01b031614611ac75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a1b565b6001600160a01b038416611b2b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1b565b611b3b6000848460000151611939565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611bff908590612b74565b6000818152600360205260409020549091506001600160a01b0316611c9057611c29816000541190565b15611c905760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600082611ce78584612046565b14949350505050565b610e6c8282604051806020016040528060008152506120ba565b6040805180820190915260008082526020820152611d29826000541190565b611d885760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a1b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611dd6579392505050565b5080611de181612c4a565b915050611d8a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611f3d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e7f9033908990889088906004016129ca565b602060405180830381600087803b158015611e9957600080fd5b505af1925050508015611ec9575060408051601f3d908101601f19168201909252611ec6918101906127f5565b60015b611f23573d808015611ef7576040519150601f19603f3d011682016040523d82523d6000602084013e611efc565b606091505b508051611f1b5760405162461bcd60e51b8152600401610a1b90612a98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f41565b5060015b949350505050565b606081611f6d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f975780611f8181612c9c565b9150611f909050600a83612bb1565b9150611f71565b6000816001600160401b03811115611fb157611fb1612d0d565b6040519080825280601f01601f191660200182016040528015611fdb576020820181803683370190505b5090505b8415611f4157611ff0600183612be4565b9150611ffd600a86612cb7565b612008906030612b74565b60f81b81838151811061201d5761201d612cf7565b60200101906001600160f81b031916908160001a90535061203f600a86612bb1565b9450611fdf565b600081815b84518110156120b257600085828151811061206857612068612cf7565b6020026020010151905080831161208e576000838152602082905260409020925061209f565b600081815260208490526040902092505b50806120aa81612c9c565b91505061204b565b509392505050565b6000546001600160a01b03841661211d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a1b565b612128816000541190565b156121755760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a1b565b600083116121d15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a1b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061222d908790612b49565b6001600160801b0316815260200185836020015161224b9190612b49565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561236a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461232e6000888488611e3b565b61234a5760405162461bcd60e51b8152600401610a1b90612a98565b8161235481612c9c565b925050808061236290612c9c565b9150506122e1565b506000819055611cd2565b82805461238190612c61565b90600052602060002090601f0160209004810192826123a357600085556123e9565b82601f106123bc57805160ff19168380011785556123e9565b828001600101855582156123e9579182015b828111156123e95782518255916020019190600101906123ce565b50610e2b9291505b80821115610e2b57600081556001016123f1565b60006001600160401b0383111561241e5761241e612d0d565b612431601f8401601f1916602001612b19565b905082815283838301111561244557600080fd5b828260208301376000602084830101529392505050565b60008083601f84011261246e57600080fd5b5081356001600160401b0381111561248557600080fd5b6020830191508360208260051b85010111156124a057600080fd5b9250929050565b803580151581146124b757600080fd5b919050565b80356001600160f81b0319811681146124b757600080fd5b803560ff811681146124b757600080fd5b6000602082840312156124f757600080fd5b813561250281612d23565b9392505050565b6000806040838503121561251c57600080fd5b823561252781612d23565b9150602083013561253781612d23565b809150509250929050565b60008060006060848603121561255757600080fd5b833561256281612d23565b9250602084013561257281612d23565b929592945050506040919091013590565b6000806000806080858703121561259957600080fd5b84356125a481612d23565b935060208501356125b481612d23565b92506040850135915060608501356001600160401b038111156125d657600080fd5b8501601f810187136125e757600080fd5b6125f687823560208401612405565b91505092959194509250565b6000806040838503121561261557600080fd5b823561262081612d23565b915061262e602084016124a7565b90509250929050565b6000806040838503121561264a57600080fd5b823561265581612d23565b915061262e602084016124bc565b6000806040838503121561267657600080fd5b823561268181612d23565b946020939093013593505050565b6000806000604084860312156126a457600080fd5b83356001600160401b038111156126ba57600080fd5b6126c68682870161245c565b909790965060209590950135949350505050565b600080604083850312156126ed57600080fd5b82356001600160401b038082111561270457600080fd5b818501915085601f83011261271857600080fd5b813560208282111561272c5761272c612d0d565b8160051b925061273d818401612b19565b8281528181019085830185870184018b101561275857600080fd5b600096505b84871015612787578035955061277286612d23565b8583526001969096019591830191830161275d565b50965061279790508782016124bc565b9450505050509250929050565b6000602082840312156127b657600080fd5b612502826124a7565b6000602082840312156127d157600080fd5b5035919050565b6000602082840312156127ea57600080fd5b813561250281612d38565b60006020828403121561280757600080fd5b815161250281612d38565b60006020828403121561282457600080fd5b81356001600160401b0381111561283a57600080fd5b8201601f8101841361284b57600080fd5b611f4184823560208401612405565b60006020828403121561286c57600080fd5b612502826124d4565b60008060006040848603121561288a57600080fd5b612893846124d4565b925060208401356001600160401b038111156128ae57600080fd5b6128ba8682870161245c565b9497909650939450505050565b600081518084526128df816020860160208601612c1e565b601f01601f19169290920160200192915050565b60008151612905818560208601612c1e565b9290920192915050565b600080845481600182811c91508083168061292b57607f831692505b602080841082141561294b57634e487b7160e01b86526022600452602486fd5b81801561295f57600181146129705761299d565b60ff1986168952848901965061299d565b60008b81526020902060005b868110156129955781548b82015290850190830161297c565b505084890196505b5050505050506129c16129b082866128f3565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129fd908301846128c7565b9695505050505050565b60208152600061250260208301846128c7565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612b4157612b41612d0d565b604052919050565b60006001600160801b03808316818516808303821115612b6b57612b6b612ccb565b01949350505050565b60008219821115612b8757612b87612ccb565b500190565b600060ff821660ff84168060ff03821115612ba957612ba9612ccb565b019392505050565b600082612bc057612bc0612ce1565b500490565b6000816000190483118215151615612bdf57612bdf612ccb565b500290565b600082821015612bf657612bf6612ccb565b500390565b600060ff821660ff841680821015612c1557612c15612ccb565b90039392505050565b60005b83811015612c39578181015183820152602001612c21565b838111156110705750506000910152565b600081612c5957612c59612ccb565b506000190190565b600181811c90821680612c7557607f821691505b60208210811415612c9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cb057612cb0612ccb565b5060010190565b600082612cc657612cc6612ce1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610da957600080fd5b6001600160e01b031981168114610da957600080fdfea264697066735822122000ef2114b7e52d646257b38b58bb9a1459a209fcae5520a145c0999fe888d9c164736f6c63430008070033

Deployed Bytecode Sourcemap

41404:4306:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41550:40;;;;;;;;;;;;;;;;;;;11816:25:1;;;11804:2;11789:18;41550:40:0;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;11443:14:1;;11436:22;11418:41;;11406:2;11391:18;24333:372:0;11278:187:1;41637:28:0;;;;;;;;;;;;;;;;25960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10741:32:1;;;10723:51;;10711:2;10696:18;27521:214:0;10577:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413:0;;;;;:::i;:::-;;:::i;:::-;;22770:104;;;;;;;;;;;;;:::i;28397:162::-;;;;;;;;;;-1:-1:-1;28397:162:0;;;;;:::i;:::-;;:::i;41758:25::-;;;;;;;;;;;;;;;;23438:823;;;;;;;;;;-1:-1:-1;23438:823:0;;;;;:::i;:::-;;:::i;44399:101::-;;;;;;;;;;-1:-1:-1;44399:101:0;;;;;:::i;:::-;;:::i;45552:153::-;;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;44198:94::-;;;;;;;;;;-1:-1:-1;44198:94:0;;;;;:::i;:::-;;:::i;43395:606::-;;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;41595:37::-;;;;;;;;;;;;;;;;44786:89;;;;;;;;;;-1:-1:-1;44786:89:0;;;;;:::i;:::-;;:::i;44984:114::-;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41815:24::-;;;;;;;;;;-1:-1:-1;41815:24:0;;;;;;;;;;;;;;23031:4:1;23019:17;;;23001:36;;22989:2;22974:18;41815:24:0;22859:184:1;44007:85:0;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;42590:402::-;;;;;;;;;;-1:-1:-1;42590:402:0;;;;;:::i;:::-;;:::i;41511:34::-;;;;;;;;;;-1:-1:-1;41511:34:0;;;;-1:-1:-1;;;41511:34:0;;;;;;37383:87;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;42998:391::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;45436:110::-;;;;;;;;;;-1:-1:-1;45436:110:0;;;;;:::i;:::-;;:::i;41788:22::-;;;;;;;;;;-1:-1:-1;41788:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;41844:29::-;;;;;;;;;;-1:-1:-1;41844:29:0;;;;;;;;;;;44614:76;;;;;;;;;;-1:-1:-1;44614:76:0;;;;;:::i;:::-;;:::i;42079:288::-;;;;;;;;;;-1:-1:-1;42079:288:0;;;;;:::i;:::-;;:::i;41478:28::-;;;;;;;;;;-1:-1:-1;41478:28:0;;;;-1:-1:-1;;;;;41478:28:0;;;41886:49;;;;;;;;;;-1:-1:-1;41886:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11632:26:1;;;11614:45;;11602:2;11587:18;41886:49:0;11470:195:1;44696:84:0;;;;;;;;;;-1:-1:-1;44696:84:0;;;;;:::i;:::-;;:::i;44881:97::-;;;;;;;;;;-1:-1:-1;44881:97:0;;;;;:::i;:::-;;:::i;41940:44::-;;;;;;;;;;-1:-1:-1;41940:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42373:194;;;;;;;;;;-1:-1:-1;42373:194:0;;;;;:::i;:::-;;:::i;28166:164::-;;;;;;;;;;-1:-1:-1;28166:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28287:25:0;;;28263:4;28287:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28166:164;44506:102;;;;;;;;;;-1:-1:-1;44506:102:0;;;;;:::i;:::-;;:::i;45104:120::-;;;;;;;;;;-1:-1:-1;45104:120:0;;;;;:::i;:::-;;:::i;45230:200::-;;;;;;;;;;-1:-1:-1;45230:200:0;;;;;:::i;:::-;;:::i;38292:201::-;;;;;;;;;;-1:-1:-1;38292:201:0;;;;;:::i;:::-;;:::i;44298:95::-;;;;;;;;;;-1:-1:-1;44298:95:0;;;;;:::i;:::-;;:::i;24333:372::-;24435:4;-1:-1:-1;;;;;;24472:40:0;;-1:-1:-1;;;24472:40:0;;:105;;-1:-1:-1;;;;;;;24529:48:0;;-1:-1:-1;;;24529:48:0;24472:105;:172;;;-1:-1:-1;;;;;;;24594:50:0;;-1:-1:-1;;;24594:50:0;24472:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24661:36;24452:245;24333:372;-1:-1:-1;;24333:372:0:o;25960:100::-;26014:13;26047:5;26040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25960:100;:::o;27521:214::-;27589:7;27617:16;27625:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;27617:16;27609:74;;;;-1:-1:-1;;;27609:74:0;;22465:2:1;27609:74:0;;;22447:21:1;22504:2;22484:18;;;22477:30;22543:34;22523:18;;;22516:62;-1:-1:-1;;;22594:18:1;;;22587:43;22647:19;;27609:74:0;;;;;;;;;-1:-1:-1;27703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27703:24:0;;27521:214::o;27042:413::-;27115:13;27131:24;27147:7;27131:15;:24::i;:::-;27115:40;;27180:5;-1:-1:-1;;;;;27174:11:0;:2;-1:-1:-1;;;;;27174:11:0;;;27166:58;;;;-1:-1:-1;;;27166:58:0;;19298:2:1;27166:58:0;;;19280:21:1;19337:2;19317:18;;;19310:30;19376:34;19356:18;;;19349:62;-1:-1:-1;;;19427:18:1;;;19420:32;19469:19;;27166:58:0;19096:398:1;27166:58:0;20792:10;-1:-1:-1;;;;;27259:21:0;;;;:62;;-1:-1:-1;27284:37:0;27301:5;20792:10;28166:164;:::i;27284:37::-;27237:169;;;;-1:-1:-1;;;27237:169:0;;15409:2:1;27237:169:0;;;15391:21:1;15448:2;15428:18;;;15421:30;15487:34;15467:18;;;15460:62;15558:27;15538:18;;;15531:55;15603:19;;27237:169:0;15207:421:1;27237:169:0;27419:28;27428:2;27432:7;27441:5;27419:8;:28::i;:::-;27104:351;27042:413;;:::o;22770:104::-;22823:7;22865:1;22850:12;;:16;;;;:::i;:::-;22843:23;;22770:104;:::o;28397:162::-;28523:28;28533:4;28539:2;28543:7;28523:9;:28::i;23438:823::-;23527:7;23563:16;23573:5;23563:9;:16::i;:::-;23555:5;:24;23547:71;;;;-1:-1:-1;;;23547:71:0;;12278:2:1;23547:71:0;;;12260:21:1;12317:2;12297:18;;;12290:30;12356:34;12336:18;;;12329:62;-1:-1:-1;;;12407:18:1;;;12400:32;12449:19;;23547:71:0;12076:398:1;23547:71:0;23629:22;23654:13;:11;:13::i;:::-;23629:38;;23678:19;23712:25;23766:9;23761:426;23785:14;23781:1;:18;23761:426;;;23821:31;23855:14;;;:11;:14;;;;;;;;;23821:48;;;;;;;;;-1:-1:-1;;;;;23821:48:0;;;;;-1:-1:-1;;;23821:48:0;;;-1:-1:-1;;;;;23821:48:0;;;;;;;;23888:28;23884:103;;23957:14;;;-1:-1:-1;23884:103:0;24026:5;-1:-1:-1;;;;;24005:26:0;:17;-1:-1:-1;;;;;24005:26:0;;24001:175;;;24071:5;24056:11;:20;24052:77;;;-1:-1:-1;24108:1:0;-1:-1:-1;24101:8:0;;-1:-1:-1;;;24101:8:0;24052:77;24147:13;;;;:::i;:::-;;;;24001:175;-1:-1:-1;23801:3:0;;;;:::i;:::-;;;;23761:426;;;-1:-1:-1;24197:56:0;;-1:-1:-1;;;24197:56:0;;21285:2:1;24197:56:0;;;21267:21:1;21324:2;21304:18;;;21297:30;21363:34;21343:18;;;21336:62;-1:-1:-1;;;21414:18:1;;;21407:44;21468:19;;24197:56:0;21083:410:1;44399:101:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44470:12:::1;:24:::0;44399:101::o;45552:153::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45628:13:::1;::::0;45620:61:::1;::::0;45607:7:::1;::::0;-1:-1:-1;;;;;45628:13:0::1;::::0;45655:21:::1;::::0;45607:7;45620:61;45607:7;45620:61;45655:21;45628:13;45620:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45606:75;;;45696:2;45688:11;;;::::0;::::1;;45599:106;45552:153::o:0;28630:177::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;22951:187::-;23018:7;23054:13;:11;:13::i;:::-;23046:5;:21;23038:69;;;;-1:-1:-1;;;23038:69:0;;13842:2:1;23038:69:0;;;13824:21:1;13881:2;13861:18;;;13854:30;13920:34;13900:18;;;13893:62;-1:-1:-1;;;13971:18:1;;;13964:33;14014:19;;23038:69:0;13640:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;44198:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44268:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44198:94:::0;:::o;43395:606::-;43538:5;;;;;:10;43530:43;;;;-1:-1:-1;;;43530:43:0;;;;;;;:::i;:::-;43628:12;;43599:10;43588:22;;;;:10;:22;;;;;;43628:12;;;;;;;;43588:36;;43613:11;;43588:22;:36;:::i;:::-;:52;;;;43580:100;;;;-1:-1:-1;;;43580:100:0;;16524:2:1;43580:100:0;;;16506:21:1;16563:2;16543:18;;;16536:30;16602:34;16582:18;;;16575:62;-1:-1:-1;;;16653:18:1;;;16646:33;16696:19;;43580:100:0;16322:399:1;43580:100:0;43723:11;43708:26;;:12;;:26;;;;:::i;:::-;43695:9;:39;;43687:70;;;;-1:-1:-1;;;43687:70:0;;14652:2:1;43687:70:0;;;14634:21:1;14691:2;14671:18;;;14664:30;-1:-1:-1;;;14710:18:1;;;14703:48;14768:18;;43687:70:0;14450:342:1;43687:70:0;43795:28;;-1:-1:-1;;43812:10:0;8976:2:1;8972:15;8968:53;43795:28:0;;;8956:66:1;43770:12:0;;9038::1;;43795:28:0;;;;;;;;;;;;43785:39;;;;;;43770:54;;43839:50;43858:12;;43839:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43872:10:0;;;-1:-1:-1;43884:4:0;;-1:-1:-1;43839:18:0;:50::i;:::-;43831:77;;;;-1:-1:-1;;;43831:77:0;;12681:2:1;43831:77:0;;;12663:21:1;12720:2;12700:18;;;12693:30;-1:-1:-1;;;12739:18:1;;;12732:44;12793:18;;43831:77:0;12479:338:1;43831:77:0;43928:10;43917:22;;;;:10;:22;;;;;:37;;43943:11;;43917:22;:37;;43943:11;;43917:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43961:34;43971:10;43983:11;43961:34;;:9;:34::i;:::-;43485:516;43395:606;;;:::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;44786:89::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44853:6:::1;:16:::0;44786:89::o;44984:114::-;37456:6;;45048:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;45071:21:0::1;44984:114:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;16928:2:1;24853:75:0;;;16910:21:1;16967:2;16947:18;;;16940:30;17006:34;16986:18;;;16979:62;-1:-1:-1;;;17057:18:1;;;17050:41;17108:19;;24853:75:0;16726:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;44007:85::-;44050:13;44079:7;44072:14;;;;;:::i;38034:103::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;38099:30:::1;38126:1;38099:18;:30::i;:::-;38034:103::o:0;42590:402::-;42648:5;;;;42640:43;;;;-1:-1:-1;;;42640:43:0;;;;;;;:::i;:::-;42726:6;;42714:8;42698:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42690:88;;;;-1:-1:-1;;;42690:88:0;;;;;;;:::i;:::-;42811:10;42795:27;;;;:15;:27;;;;;;-1:-1:-1;;;42795:35:0;:27;;;;-1:-1:-1;;;;;;42795:35:0;;;42787:62;;;;-1:-1:-1;;;42787:62:0;;15835:2:1;42787:62:0;;;15817:21:1;15874:2;15854:18;;;15847:30;-1:-1:-1;;;15893:18:1;;;15886:44;15947:18;;42787:62:0;15633:338:1;42787:62:0;42918:10;42902:27;;;;:15;:27;;;;;;42896:45;;42933:8;;42896:34;;:45;:::i;:::-;42875:10;42859:27;;;;:15;:27;;;;;:83;;-1:-1:-1;;42859:83:0;;;;;;;;42951:31;;;;:9;:31::i;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;42998:391::-;43062:5;;43071:1;43062:5;;;;:10;;43054:43;;;;-1:-1:-1;;;43054:43:0;;;;;;;:::i;:::-;43140:6;;43128:8;43112:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;43104:88;;;;-1:-1:-1;;;43104:88:0;;;;;;;:::i;:::-;43244:6;;43218:10;43207:22;;;;:10;:22;;;;;;43244:6;;;;;;;;43207:33;;43232:8;;43207:22;:33;:::i;:::-;:43;;43199:73;;;;-1:-1:-1;;;43199:73:0;;16178:2:1;43199:73:0;;;16160:21:1;16217:2;16197:18;;;16190:30;-1:-1:-1;;;16236:18:1;;;16229:47;16293:18;;43199:73:0;15976:341:1;43199:73:0;43312:8;43300:9;;:20;;;;:::i;:::-;43287:9;:33;;43279:64;;;;-1:-1:-1;;;43279:64:0;;14652:2:1;43279:64:0;;;14634:21:1;14691:2;14671:18;;;14664:30;-1:-1:-1;;;14710:18:1;;;14703:48;14768:18;;43279:64:0;14450:342:1;43279:64:0;43352:31;43362:10;43374:8;43352:9;:31::i;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;18524:2:1;27894:63:0;;;18506:21:1;18563:2;18543:18;;;18536:30;18602:28;18582:18;;;18575:56;18648:18;;27894:63:0;18322:350:1;27894:63:0;20792:10;27970:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27970:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27970:53:0;;;;;;;;;;28039:48;;11418:41:1;;;27970:42:0;;20792:10;28039:48;;11391:18:1;28039:48:0;;;;;;;27807:288;;:::o;45436:110::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45514:13:::1;:26:::0;;-1:-1:-1;;;;;;45514:26:0::1;-1:-1:-1::0;;;;;45514:26:0;;;::::1;::::0;;;::::1;::::0;;45436:110::o;28878:355::-;29037:28;29047:4;29053:2;29057:7;29037:9;:28::i;:::-;29098:48;29121:4;29127:2;29131:7;29140:5;29098:22;:48::i;:::-;29076:149;;;;-1:-1:-1;;;29076:149:0;;;;;;;:::i;44614:76::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44670:5:::1;:14:::0;;-1:-1:-1;;44670:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44614:76::o;42079:288::-;42152:13;42182:16;42190:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;42182:16;42174:76;;;;-1:-1:-1;;;42174:76:0;;18108:2:1;42174:76:0;;;18090:21:1;18147:2;18127:18;;;18120:30;18186:34;18166:18;;;18159:62;-1:-1:-1;;;18237:18:1;;;18230:45;18292:19;;42174:76:0;17906:411:1;42174:76:0;42290:1;42272:7;42266:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42318:7;42327:18;:7;:16;:18::i;:::-;42301:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42259:102;42079:288;-1:-1:-1;;42079:288:0:o;44696:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44758:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;44758:16:0;;::::1;::::0;;;::::1;::::0;;44696:84::o;44881:97::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44950:10:::1;:22:::0;44881:97::o;42373:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42475:6:::1;42470:92;42485:19:::0;;::::1;42470:92;;;42520:34;42530:10;;42541:1;42530:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42545:8;42520:9;:34::i;:::-;42506:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42470:92;;44506:102:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44574:14:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;44574:28:0::1;-1:-1:-1::0;;;;44574:28:0;;::::1;::::0;;;::::1;::::0;;44506:102::o;45104:120::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45184:22:0;;;::::1;;::::0;;;:15:::1;:22;::::0;;;;:32;;-1:-1:-1;;45184:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;45104:120::o;45230:200::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45329:9:::1;45324:101;45348:5;:12;45344:1;:16;45324:101;;;45408:7;45380:15;:25;45396:5;45402:1;45396:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;45380:25:0::1;-1:-1:-1::0;;;;;45380:25:0::1;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;45362:3;;;;;:::i;:::-;;;;45324:101;;38292:201:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38381:22:0;::::1;38373:73;;;::::0;-1:-1:-1;;;38373:73:0;;13024:2:1;38373:73:0::1;::::0;::::1;13006:21:1::0;13063:2;13043:18;;;13036:30;13102:34;13082:18;;;13075:62;-1:-1:-1;;;13153:18:1;;;13146:36;13199:19;;38373:73:0::1;12822:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;44298:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44366:9:::1;:21:::0;44298:95::o;33532:196::-;33647:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33647:29:0;-1:-1:-1;;;;;33647:29:0;;;;;;;;;33692:28;;33647:24;;33692:28;;;;;;;33532:196;;;:::o;31631:1783::-;31746:35;31784:20;31796:7;31784:11;:20::i;:::-;31859:18;;31746:58;;-1:-1:-1;31817:22:0;;-1:-1:-1;;;;;31843:34:0;20792:10;-1:-1:-1;;;;;31843:34:0;;:87;;;-1:-1:-1;20792:10:0;31894:20;31906:7;31894:11;:20::i;:::-;-1:-1:-1;;;;;31894:36:0;;31843:87;:154;;;-1:-1:-1;31964:18:0;;31947:50;;20792:10;28166:164;:::i;31947:50::-;31817:181;;32019:17;32011:80;;;;-1:-1:-1;;;32011:80:0;;18879:2:1;32011:80:0;;;18861:21:1;18918:2;18898:18;;;18891:30;18957:34;18937:18;;;18930:62;-1:-1:-1;;;19008:18:1;;;19001:48;19066:19;;32011:80:0;18677:414:1;32011:80:0;32134:4;-1:-1:-1;;;;;32112:26:0;:13;:18;;;-1:-1:-1;;;;;32112:26:0;;32104:77;;;;-1:-1:-1;;;32104:77:0;;17340:2:1;32104:77:0;;;17322:21:1;17379:2;17359:18;;;17352:30;17418:34;17398:18;;;17391:62;-1:-1:-1;;;17469:18:1;;;17462:36;17515:19;;32104:77:0;17138:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;14246:2:1;32192:66:0;;;14228:21:1;14285:2;14265:18;;;14258:30;14324:34;14304:18;;;14297:62;-1:-1:-1;;;14375:18:1;;;14368:35;14420:19;;32192:66:0;14044:401:1;32192:66:0;32379:49;32396:1;32400:7;32409:13;:18;;;32379:8;:49::i;:::-;-1:-1:-1;;;;;32633:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32633:31:0;;;-1:-1:-1;;;;;32633:31:0;;;-1:-1:-1;;32633:31:0;;;;;;;32679:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32679:29:0;;;;;;;;;;;;;32755:43;;;;;;;;;;32781:15;-1:-1:-1;;;;;32755:43:0;;;;;;;;;32732:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32732:66:0;;;;;;;-1:-1:-1;;;32732:66:0;;;;;;;;;;;;32633:18;33060:11;;32732:20;;33060:11;:::i;:::-;33127:1;33086:24;;;:11;:24;;;;;:29;33038:33;;-1:-1:-1;;;;;;33086:29:0;33082:227;;33150:20;33158:11;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;33150:20;33146:152;;;33218:64;;;;;;;;33233:18;;-1:-1:-1;;;;;33218:64:0;;;;;;33253:28;;;;-1:-1:-1;;;;;33218:64:0;;;;;;;;;-1:-1:-1;33191:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33191:91:0;-1:-1:-1;;;;;;33191:91:0;;;;;;;;;;;;33146:152;33345:7;33341:2;-1:-1:-1;;;;;33326:27:0;33335:4;-1:-1:-1;;;;;33326:27:0;;;;;;;;;;;33364:42;31735:1679;;;31631:1783;;;:::o;39910:190::-;40035:4;40088;40059:25;40072:5;40079:4;40059:12;:25::i;:::-;:33;;39910:190;-1:-1:-1;;;;39910:190:0:o;29607:104::-;29676:27;29686:2;29690:8;29676:27;;;;;;;;;;;;:9;:27::i;25235:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25338:16:0;25346:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;25338:16;25330:71;;;;-1:-1:-1;;;25330:71:0;;13431:2:1;25330:71:0;;;13413:21:1;13470:2;13450:18;;;13443:30;13509:34;13489:18;;;13482:62;-1:-1:-1;;;13560:18:1;;;13553:40;13610:19;;25330:71:0;13229:406:1;25330:71:0;25434:7;25414:216;25468:31;25502:17;;;:11;:17;;;;;;;;;25468:51;;;;;;;;;-1:-1:-1;;;;;25468:51:0;;;;;-1:-1:-1;;;25468:51:0;;;-1:-1:-1;;;;;25468:51:0;;;;;;;;25538:28;25534:85;;25594:9;25235:472;-1:-1:-1;;;25235:472:0:o;25534:85::-;-1:-1:-1;25445:6:0;;;;:::i;:::-;;;;25414:216;;38653:191;38746:6;;;-1:-1:-1;;;;;38763:17:0;;;-1:-1:-1;;;;;;38763:17:0;;;;;;;38796:40;;38746:6;;;38763:17;38746:6;;38796:40;;38727:16;;38796:40;38716:128;38653:191;:::o;34293:804::-;34448:4;-1:-1:-1;;;;;34469:13:0;;3300:20;3348:8;34465:625;;34505:72;;-1:-1:-1;;;34505:72:0;;-1:-1:-1;;;;;34505:36:0;;;;;:72;;20792:10;;34556:4;;34562:7;;34571:5;;34505:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34505:72:0;;;;;;;;-1:-1:-1;;34505:72:0;;;;;;;;;;;;:::i;:::-;;;34501:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34751:13:0;;34747:273;;34794:61;;-1:-1:-1;;;34794:61:0;;;;;;;:::i;34747:273::-;34970:6;34964:13;34955:6;34951:2;34947:15;34940:38;34501:534;-1:-1:-1;;;;;;34628:55:0;-1:-1:-1;;;34628:55:0;;-1:-1:-1;34621:62:0;;34465:625;-1:-1:-1;35074:4:0;34465:625;34293:804;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;40461:675;40544:7;40587:4;40544:7;40602:497;40626:5;:12;40622:1;:16;40602:497;;;40660:20;40683:5;40689:1;40683:8;;;;;;;;:::i;:::-;;;;;;;40660:31;;40726:12;40710;:28;40706:382;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;40838:57;;40706:382;;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;41015:57;;40706:382;-1:-1:-1;40640:3:0;;;;:::i;:::-;;;;40602:497;;;-1:-1:-1;41116:12:0;40461:675;-1:-1:-1;;;40461:675:0:o;29988:1389::-;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;20883:2:1;30157:62:0;;;20865:21:1;20922:2;20902:18;;;20895:30;20961:34;20941:18;;;20934:62;-1:-1:-1;;;21012:18:1;;;21005:31;21053:19;;30157:62:0;20681:397:1;30157:62:0;30364:21;30372:12;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;30364:21;30363:22;30355:64;;;;-1:-1:-1;;;30355:64:0;;20525:2:1;30355:64:0;;;20507:21:1;20564:2;20544:18;;;20537:30;20603:31;20583:18;;;20576:59;20652:18;;30355:64:0;20323:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;19701:2:1;30430:60:0;;;19683:21:1;19740:2;19720:18;;;19713:30;19779:34;19759:18;;;19752:62;-1:-1:-1;;;19830:18:1;;;19823:33;19873:19;;30430:60:0;19499:399:1;30430:60:0;-1:-1:-1;;;;;30610:16:0;;30577:30;30610:16;;;:12;:16;;;;;;;;;30577:49;;;;;;;;;-1:-1:-1;;;;;30577:49:0;;;;;-1:-1:-1;;;30577:49:0;;;;;;;;;;;30656:135;;;;;;;;30682:19;;30577:49;;30656:135;;;30682:39;;30712:8;;30682:39;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;30771:8;30736:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;;-1:-1:-1;;;;;30637:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30637:154:0;;;;;;;;;;;;30830:43;;;;;;;;;;-1:-1:-1;;;;;30856:15:0;30830:43;;;;;;;;30802:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30802:71:0;-1:-1:-1;;;;;;30802:71:0;;;;;;;;;;;;;;;;;;30814:12;;30934:325;30958:8;30954:1;:12;30934:325;;;30993:38;;31018:12;;-1:-1:-1;;;;;30993:38:0;;;31010:1;;30993:38;;31010:1;;30993:38;31072:59;31103:1;31107:2;31111:12;31125:5;31072:22;:59::i;:::-;31046:172;;;;-1:-1:-1;;;31046:172:0;;;;;;;:::i;:::-;31233:14;;;;:::i;:::-;;;;30968:3;;;;;:::i;:::-;;;;30934:325;;;-1:-1:-1;31271:12:0;:27;;;31309:60;43395:606;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:367::-;488:8;498:6;552:3;545:4;537:6;533:17;529:27;519:55;;570:1;567;560:12;519:55;-1:-1:-1;593:20:1;;-1:-1:-1;;;;;625:30:1;;622:50;;;668:1;665;658:12;622:50;705:4;697:6;693:17;681:29;;765:3;758:4;748:6;745:1;741:14;733:6;729:27;725:38;722:47;719:67;;;782:1;779;772:12;719:67;425:367;;;;;:::o;797:160::-;862:20;;918:13;;911:21;901:32;;891:60;;947:1;944;937:12;891:60;797:160;;;:::o;962:166::-;1029:20;;-1:-1:-1;;;;;;1078:25:1;;1068:36;;1058:64;;1118:1;1115;1108:12;1133:156;1199:20;;1259:4;1248:16;;1238:27;;1228:55;;1279:1;1276;1269:12;1294:247;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;1461:9;1448:23;1480:31;1505:5;1480:31;:::i;:::-;1530:5;1294:247;-1:-1:-1;;;1294:247:1:o;1806:388::-;1874:6;1882;1935:2;1923:9;1914:7;1910:23;1906:32;1903:52;;;1951:1;1948;1941:12;1903:52;1990:9;1977:23;2009:31;2034:5;2009:31;:::i;:::-;2059:5;-1:-1:-1;2116:2:1;2101:18;;2088:32;2129:33;2088:32;2129:33;:::i;:::-;2181:7;2171:17;;;1806:388;;;;;:::o;2199:456::-;2276:6;2284;2292;2345:2;2333:9;2324:7;2320:23;2316:32;2313:52;;;2361:1;2358;2351:12;2313:52;2400:9;2387:23;2419:31;2444:5;2419:31;:::i;:::-;2469:5;-1:-1:-1;2526:2:1;2511:18;;2498:32;2539:33;2498:32;2539:33;:::i;:::-;2199:456;;2591:7;;-1:-1:-1;;;2645:2:1;2630:18;;;;2617:32;;2199:456::o;2660:794::-;2755:6;2763;2771;2779;2832:3;2820:9;2811:7;2807:23;2803:33;2800:53;;;2849:1;2846;2839:12;2800:53;2888:9;2875:23;2907:31;2932:5;2907:31;:::i;:::-;2957:5;-1:-1:-1;3014:2:1;2999:18;;2986:32;3027:33;2986:32;3027:33;:::i;:::-;3079:7;-1:-1:-1;3133:2:1;3118:18;;3105:32;;-1:-1:-1;3188:2:1;3173:18;;3160:32;-1:-1:-1;;;;;3204:30:1;;3201:50;;;3247:1;3244;3237:12;3201:50;3270:22;;3323:4;3315:13;;3311:27;-1:-1:-1;3301:55:1;;3352:1;3349;3342:12;3301:55;3375:73;3440:7;3435:2;3422:16;3417:2;3413;3409:11;3375:73;:::i;:::-;3365:83;;;2660:794;;;;;;;:::o;3459:315::-;3524:6;3532;3585:2;3573:9;3564:7;3560:23;3556:32;3553:52;;;3601:1;3598;3591:12;3553:52;3640:9;3627:23;3659:31;3684:5;3659:31;:::i;:::-;3709:5;-1:-1:-1;3733:35:1;3764:2;3749:18;;3733:35;:::i;:::-;3723:45;;3459:315;;;;;:::o;3779:319::-;3846:6;3854;3907:2;3895:9;3886:7;3882:23;3878:32;3875:52;;;3923:1;3920;3913:12;3875:52;3962:9;3949:23;3981:31;4006:5;3981:31;:::i;:::-;4031:5;-1:-1:-1;4055:37:1;4088:2;4073:18;;4055:37;:::i;4103:315::-;4171:6;4179;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4287:9;4274:23;4306:31;4331:5;4306:31;:::i;:::-;4356:5;4408:2;4393:18;;;;4380:32;;-1:-1:-1;;;4103:315:1:o;4423:505::-;4518:6;4526;4534;4587:2;4575:9;4566:7;4562:23;4558:32;4555:52;;;4603:1;4600;4593:12;4555:52;4643:9;4630:23;-1:-1:-1;;;;;4668:6:1;4665:30;4662:50;;;4708:1;4705;4698:12;4662:50;4747:70;4809:7;4800:6;4789:9;4785:22;4747:70;:::i;:::-;4836:8;;4721:96;;-1:-1:-1;4918:2:1;4903:18;;;;4890:32;;4423:505;-1:-1:-1;;;;4423:505:1:o;4933:1106::-;5025:6;5033;5086:2;5074:9;5065:7;5061:23;5057:32;5054:52;;;5102:1;5099;5092:12;5054:52;5142:9;5129:23;-1:-1:-1;;;;;5212:2:1;5204:6;5201:14;5198:34;;;5228:1;5225;5218:12;5198:34;5266:6;5255:9;5251:22;5241:32;;5311:7;5304:4;5300:2;5296:13;5292:27;5282:55;;5333:1;5330;5323:12;5282:55;5369:2;5356:16;5391:4;5414:2;5410;5407:10;5404:36;;;5420:18;;:::i;:::-;5466:2;5463:1;5459:10;5449:20;;5489:28;5513:2;5509;5505:11;5489:28;:::i;:::-;5551:15;;;5582:12;;;;5614:11;;;5644;;;5640:20;;5637:33;-1:-1:-1;5634:53:1;;;5683:1;5680;5673:12;5634:53;5705:1;5696:10;;5715:238;5729:2;5726:1;5723:9;5715:238;;;5800:3;5787:17;5774:30;;5817:31;5842:5;5817:31;:::i;:::-;5861:18;;;5747:1;5740:9;;;;;5899:12;;;;5931;;5715:238;;;-1:-1:-1;5972:5:1;-1:-1:-1;5996:37:1;;-1:-1:-1;6014:18:1;;;5996:37;:::i;:::-;5986:47;;;;;;4933:1106;;;;;:::o;6044:180::-;6100:6;6153:2;6141:9;6132:7;6128:23;6124:32;6121:52;;;6169:1;6166;6159:12;6121:52;6192:26;6208:9;6192:26;:::i;6229:180::-;6288:6;6341:2;6329:9;6320:7;6316:23;6312:32;6309:52;;;6357:1;6354;6347:12;6309:52;-1:-1:-1;6380:23:1;;6229:180;-1:-1:-1;6229:180:1:o;6414:245::-;6472:6;6525:2;6513:9;6504:7;6500:23;6496:32;6493:52;;;6541:1;6538;6531:12;6493:52;6580:9;6567:23;6599:30;6623:5;6599:30;:::i;6664:249::-;6733:6;6786:2;6774:9;6765:7;6761:23;6757:32;6754:52;;;6802:1;6799;6792:12;6754:52;6834:9;6828:16;6853:30;6877:5;6853:30;:::i;6918:450::-;6987:6;7040:2;7028:9;7019:7;7015:23;7011:32;7008:52;;;7056:1;7053;7046:12;7008:52;7096:9;7083:23;-1:-1:-1;;;;;7121:6:1;7118:30;7115:50;;;7161:1;7158;7151:12;7115:50;7184:22;;7237:4;7229:13;;7225:27;-1:-1:-1;7215:55:1;;7266:1;7263;7256:12;7215:55;7289:73;7354:7;7349:2;7336:16;7331:2;7327;7323:11;7289:73;:::i;7558:182::-;7615:6;7668:2;7656:9;7647:7;7643:23;7639:32;7636:52;;;7684:1;7681;7674:12;7636:52;7707:27;7724:9;7707:27;:::i;7745:507::-;7838:6;7846;7854;7907:2;7895:9;7886:7;7882:23;7878:32;7875:52;;;7923:1;7920;7913:12;7875:52;7946:27;7963:9;7946:27;:::i;:::-;7936:37;;8024:2;8013:9;8009:18;7996:32;-1:-1:-1;;;;;8043:6:1;8040:30;8037:50;;;8083:1;8080;8073:12;8037:50;8122:70;8184:7;8175:6;8164:9;8160:22;8122:70;:::i;:::-;7745:507;;8211:8;;-1:-1:-1;8096:96:1;;-1:-1:-1;;;;7745:507:1:o;8257:257::-;8298:3;8336:5;8330:12;8363:6;8358:3;8351:19;8379:63;8435:6;8428:4;8423:3;8419:14;8412:4;8405:5;8401:16;8379:63;:::i;:::-;8496:2;8475:15;-1:-1:-1;;8471:29:1;8462:39;;;;8503:4;8458:50;;8257:257;-1:-1:-1;;8257:257:1:o;8519:185::-;8561:3;8599:5;8593:12;8614:52;8659:6;8654:3;8647:4;8640:5;8636:16;8614:52;:::i;:::-;8682:16;;;;;8519:185;-1:-1:-1;;8519:185:1:o;9061:1301::-;9338:3;9367:1;9400:6;9394:13;9430:3;9452:1;9480:9;9476:2;9472:18;9462:28;;9540:2;9529:9;9525:18;9562;9552:61;;9606:4;9598:6;9594:17;9584:27;;9552:61;9632:2;9680;9672:6;9669:14;9649:18;9646:38;9643:165;;;-1:-1:-1;;;9707:33:1;;9763:4;9760:1;9753:15;9793:4;9714:3;9781:17;9643:165;9824:18;9851:104;;;;9969:1;9964:320;;;;9817:467;;9851:104;-1:-1:-1;;9884:24:1;;9872:37;;9929:16;;;;-1:-1:-1;9851:104:1;;9964:320;23401:1;23394:14;;;23438:4;23425:18;;10059:1;10073:165;10087:6;10084:1;10081:13;10073:165;;;10165:14;;10152:11;;;10145:35;10208:16;;;;10102:10;;10073:165;;;10077:3;;10267:6;10262:3;10258:16;10251:23;;9817:467;;;;;;;10300:56;10325:30;10351:3;10343:6;10325:30;:::i;:::-;-1:-1:-1;;;8769:20:1;;8814:1;8805:11;;8709:113;10300:56;10293:63;9061:1301;-1:-1:-1;;;;;9061:1301:1:o;10785:488::-;-1:-1:-1;;;;;11054:15:1;;;11036:34;;11106:15;;11101:2;11086:18;;11079:43;11153:2;11138:18;;11131:34;;;11201:3;11196:2;11181:18;;11174:31;;;10979:4;;11222:45;;11247:19;;11239:6;11222:45;:::i;:::-;11214:53;10785:488;-1:-1:-1;;;;;;10785:488:1:o;11852:219::-;12001:2;11990:9;11983:21;11964:4;12021:44;12061:2;12050:9;12046:18;12038:6;12021:44;:::i;14797:405::-;14999:2;14981:21;;;15038:2;15018:18;;;15011:30;15077:34;15072:2;15057:18;;15050:62;-1:-1:-1;;;15143:2:1;15128:18;;15121:39;15192:3;15177:19;;14797:405::o;17545:356::-;17747:2;17729:21;;;17766:18;;;17759:30;17825:34;17820:2;17805:18;;17798:62;17892:2;17877:18;;17545:356::o;19903:415::-;20105:2;20087:21;;;20144:2;20124:18;;;20117:30;20183:34;20178:2;20163:18;;20156:62;-1:-1:-1;;;20249:2:1;20234:18;;20227:49;20308:3;20293:19;;19903:415::o;21498:344::-;21700:2;21682:21;;;21739:2;21719:18;;;21712:30;-1:-1:-1;;;21773:2:1;21758:18;;21751:50;21833:2;21818:18;;21498:344::o;23048:275::-;23119:2;23113:9;23184:2;23165:13;;-1:-1:-1;;23161:27:1;23149:40;;-1:-1:-1;;;;;23204:34:1;;23240:22;;;23201:62;23198:88;;;23266:18;;:::i;:::-;23302:2;23295:22;23048:275;;-1:-1:-1;23048:275:1:o;23454:253::-;23494:3;-1:-1:-1;;;;;23583:2:1;23580:1;23576:10;23613:2;23610:1;23606:10;23644:3;23640:2;23636:12;23631:3;23628:21;23625:47;;;23652:18;;:::i;:::-;23688:13;;23454:253;-1:-1:-1;;;;23454:253:1:o;23712:128::-;23752:3;23783:1;23779:6;23776:1;23773:13;23770:39;;;23789:18;;:::i;:::-;-1:-1:-1;23825:9:1;;23712:128::o;23845:204::-;23883:3;23919:4;23916:1;23912:12;23951:4;23948:1;23944:12;23986:3;23980:4;23976:14;23971:3;23968:23;23965:49;;;23994:18;;:::i;:::-;24030:13;;23845:204;-1:-1:-1;;;23845:204:1:o;24054:120::-;24094:1;24120;24110:35;;24125:18;;:::i;:::-;-1:-1:-1;24159:9:1;;24054:120::o;24179:168::-;24219:7;24285:1;24281;24277:6;24273:14;24270:1;24267:21;24262:1;24255:9;24248:17;24244:45;24241:71;;;24292:18;;:::i;:::-;-1:-1:-1;24332:9:1;;24179:168::o;24352:125::-;24392:4;24420:1;24417;24414:8;24411:34;;;24425:18;;:::i;:::-;-1:-1:-1;24462:9:1;;24352:125::o;24482:195::-;24520:4;24557;24554:1;24550:12;24589:4;24586:1;24582:12;24614:3;24609;24606:12;24603:38;;;24621:18;;:::i;:::-;24658:13;;;24482:195;-1:-1:-1;;;24482:195:1:o;24682:258::-;24754:1;24764:113;24778:6;24775:1;24772:13;24764:113;;;24854:11;;;24848:18;24835:11;;;24828:39;24800:2;24793:10;24764:113;;;24895:6;24892:1;24889:13;24886:48;;;-1:-1:-1;;24930:1:1;24912:16;;24905:27;24682:258::o;24945:136::-;24984:3;25012:5;25002:39;;25021:18;;:::i;:::-;-1:-1:-1;;;25057:18:1;;24945:136::o;25086:380::-;25165:1;25161:12;;;;25208;;;25229:61;;25283:4;25275:6;25271:17;25261:27;;25229:61;25336:2;25328:6;25325:14;25305:18;25302:38;25299:161;;;25382:10;25377:3;25373:20;25370:1;25363:31;25417:4;25414:1;25407:15;25445:4;25442:1;25435:15;25299:161;;25086:380;;;:::o;25471:135::-;25510:3;-1:-1:-1;;25531:17:1;;25528:43;;;25551:18;;:::i;:::-;-1:-1:-1;25598:1:1;25587:13;;25471:135::o;25611:112::-;25643:1;25669;25659:35;;25674:18;;:::i;:::-;-1:-1:-1;25708:9:1;;25611:112::o;25728:127::-;25789:10;25784:3;25780:20;25777:1;25770:31;25820:4;25817:1;25810:15;25844:4;25841:1;25834:15;25860:127;25921:10;25916:3;25912:20;25909:1;25902:31;25952:4;25949:1;25942:15;25976:4;25973:1;25966:15;25992:127;26053:10;26048:3;26044:20;26041:1;26034:31;26084:4;26081:1;26074:15;26108:4;26105:1;26098:15;26124:127;26185:10;26180:3;26176:20;26173:1;26166:31;26216:4;26213:1;26206:15;26240:4;26237:1;26230:15;26256:131;-1:-1:-1;;;;;26331:31:1;;26321:42;;26311:70;;26377:1;26374;26367:12;26392:131;-1:-1:-1;;;;;;26466:32:1;;26456:43;;26446:71;;26513:1;26510;26503:12

Swarm Source

ipfs://00ef2114b7e52d646257b38b58bb9a1459a209fcae5520a145c0999fe888d9c1
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.